generated from myreceiptt/myreceiptt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
935 lines (922 loc) · 49.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<script defer src="/_vercel/insights/script.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VXLXTMNG5V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VXLXTMNG5V');
</script>
<!-- Required Meta Tags -->
<title>The ROTY BROI NFTs by Prof. NOTA</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="title" content="The ROTY BROI NFTs by Prof. NOTA">
<meta name="description" content="The ROTY BROI is a collection of 1047 unique generative and handpicked NFTs, that live on the Polygon blockchain."/>
<meta name="keywords" content="the roty broi, the broy, logo pabrik roti, nft, nfts, art, polygon nft, roty broi opensea, roty broi crypto, roty broi polygon, roty broi art, roty broi nft, marketplace opensea, collectible, rarible">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="revisit-after" content="1 days">
<link rel="canonical" href="https://rotybroi.endhonesa.com/" />
<!-- Primary Meta Tags -->
<link rel="icon" type="image/png" href="/icon/asset-favicon.png">
<link rel="icon" sizes="48x48" href="/icon/asset-1-icon-48.png">
<link rel="icon" sizes="96x96" href="/icon/asset-1-icon-96.png">
<link rel="icon" sizes="144x144" href="/icon/asset-1-icon-144.png">
<link rel="icon" sizes="192x192" href="/icon/asset-1-icon-192.png">
<link rel="icon" sizes="256x256" href="/icon/asset-1-icon-256.png">
<link rel="icon" sizes="384x384" href="/icon/asset-1-icon-384.png">
<link rel="icon" sizes="512x512" href="/icon/asset-1-icon-512.png">
<link rel="apple-touch-icon" sizes="57x57" href="/icon/apple-touch-icon-57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/icon/apple-touch-icon-60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/icon/apple-touch-icon-72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/icon/apple-touch-icon-76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/icon/apple-touch-icon-114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/icon/apple-touch-icon-120.png">
<link rel="apple-touch-icon" sizes="152x152" href="/icon/apple-touch-icon-152.png">
<link rel="apple-touch-icon" sizes="167x167" href="/icon/apple-touch-icon-167.png">
<link rel="apple-touch-icon" sizes="180x180" href="/icon/apple-touch-icon-180.png">
<link rel="mask-icon" href="/icon/safari-pinned-tab.svg" color="#dfb018">
<meta name="msapplication-TileColor" content="#dfb018">
<meta name="msapplication-TileImage" content="/icon/asset-1-icon-144.png">
<link rel="manifest" href="/json/manifest.json">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://rotybroi.straight-line.org/">
<meta property="og:title" content="The ROTY BROI NFTs by Prof. NOTA">
<meta property="og:description" content="The ROTY BROI is a collection of 1047 unique generative and handpicked NFTs, that live on the Polygon blockchain.">
<meta property="og:image" content="https://rotybroi.straight-line.org/img/sik-ndelik.gif">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://rotybroi.straight-line.org/">
<meta property="twitter:title" content="The ROTY BROI NFTs by Prof. NOTA">
<meta property="twitter:description" content="The ROTY BROI is a collection of 1047 unique generative and handpicked NFTs, that live on the Polygon blockchain.">
<meta property="twitter:image" content="https://rotybroi.straight-line.org/img/sik-ndelik.gif">
<!-- Style Style Style -->
<link rel="stylesheet" href="/rotybroi.css">
<!-- Script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.0/gsap.min.js"></script>
</head>
<body>
<div id="crowdshow" style="display: none;">
<!-- Ahoy Hoy!!! -->
<div class="bigStretch" id="welcome">
<div id="landing1" class="innerStetch">
<div class="bigText">The DEAD can't REVEAL<br />any SECRET INFORMATION.</div>
<br />
<div class="regularText">
Whoever you are,<br />
you can't reveal any secret information<br />
if you have been killed or died.<br /><br />
Here your Cap’n<br />
will spare you as survivors.<br />
So, you can reveal this secret<br />
to your fellow brothers in the future.<br /><br />
But, this is not for those<br />
who are lazy to read,<br />
listen, and think.<br />
</div>
<br />
<button class="chaos-button" id="thisBtn" onclick="landingNext();">
Aye, Aye, Captain!!!
</button>
</div>
<div id="landing4" class="innerStetch" style="display: none;">
<div class="bigText">No PLACES to TREAD ON,<br />ALL we have is SINKING.</div>
<br />
<div class="regularText">
Panic swept the region of the land.<br />
All people from any strata<br />
are confused to save themselves.<br /><br />
They wear any clothes<br />
and carry any things they can get.<br /><br />
There is no more land to tread on.<br />
Everything has melted.<br /><br />
Only <a style="color: yellow">The Melting Land</a> on Earth<br />
that sinking all civilizations ever built.<br />
</div>
<br />
<button class="chaos-button" id="thisBtn" onclick="crowdFunction();init();playAlarm();">
All Hand Hoy!!!
</button>
</div>
<div id="landing3" class="innerStetch" style="display: none;">
<div id="landing3" class="bigText">RIOTS got worse,<br />PHENOMENON happens.</div>
<br />
<div class="regularText">
The riots continued and got worse<br />
in the land of <a style="color: yellow">Dunno What Water</a>.<br /><br />
Many people wearing masks<br />
carried away various kinds of loot.<br /><br />
The unique phenomenon,<br />
<a style="color: yellow">The Melting Land</a> on Earth<br />
is continuously happening...<br />
</div>
<br />
<button class="chaos-button" id="thisBtn" onclick="landingNexttt();">
Aaaarrrrgggghhhh!!!
</button>
</div>
<div id="landing2" class="innerStetch" style="display: none;">
<div class="bigText">RIOTING and LOOTING,<br />CHAOS happen.</div>
<br />
<div class="regularText">
In the land of <a style="color: yellow">Dunno What Water</a><br />
some people wearing masks,<br />
carrying crowbars and flags<br />
started rioting and looting,<br />
and chaos happens.<br /><br />
There is a unique phenomenon,<br />
<a style="color: yellow">The Melting Land</a> on Earth<br />
has already begun...<br />
</div>
<br />
<button class="chaos-button" id="thisBtn" onclick="landingNextt();">
Shiver Me Timbers!!!
</button>
</div>
</div>
<!-- Crowd Panic -->
<div id="panicroom" style="display: none;">
<audio id="thisAlarm" loop style="display: none;">
<source src="/mp3/rotybroi-news.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<!-- Alarm Script -->
<script>
var x = document.getElementById("thisAlarm");
function playAlarm() {
x.play();
}
function pauseAlarm() {
x.pause();
}
</script>
<canvas id="canvas" style="width: 100%; height: 100%;"></canvas>
<button style="width: 100%;" class="chaos-button" onclick="story1Function();pauseAlarm();">
Read The Story!
</button>
</div>
<!-- Story #1 -->
<div class="bigStretch" id="story1" style="display: none;">
<div class="innerStetch">
<div class="bigText">The MELTING LAND</div>
<br />
<div class="regularText">
So far, scientists have been aware of the fact that on Earth not only ice can melt, but even the land we step on can also melt. This fact is still kept secret to prevent the occurrence of chaos for mankind on Earth because in February 2022 it has been known that the land all over the surface of the Earth will melt completely without the consent of mankind.
</div>
<br />
<div class="bigText">DUNNO WHAT WATER</div>
<br />
<div class="regularText">
That secret fact is known by <a style="color: yellow">Mr. BROY</a>, a resident in the land of <a style="color: yellow">Dunno What Water</a>. The land of <a style="color: yellow">Dunno What Water</a> is a country that is famous for its natural products in the form of a liquid without a name but is able to bring peace to the drinker. But that peace will no longer be felt by <a style="color: yellow">Mr. BROY</a> because he knows that there is a phenomenon of <a style="color: yellow">The Melting Land</a> on Earth.
</div>
<br />
<div class="bigText">The ROTY BROI Ark</div>
<br />
<div class="regularText">
<a style="color: yellow">Mr. BROY</a> finds himself unable to find peace even though he has drunk liters of <a style="color: yellow">Nameless Liquid</a>. So, <a style="color: yellow">Mr. BROY</a> decided to build an ark that could survive when a unique phenomenon of <a style="color: yellow">The Melting Land</a> on Earth occurred.
</div>
<br />
<div class="regularText">
<a style="color: yellow">Mr. BROY</a> named the ark <a style="color: yellow">ROTY BROI</a> because it was inspired by the shape of <a style="color: yellow">BREAD (ROTI)</a> in a <a style="color: yellow">LOGO PABRIK ROTI</a> that resembles an ark for an emergency, a condition that seriously trapped, stuck, squeezed until pinched.
</div>
<br />
<div class="bigText">PSEUDONYMOUS INVITATION</div>
<br />
<div class="regularText">
Even on a limited basis, <a style="color: yellow">Mr. BROY</a> has a purpose to invite and save mankind who likes to drink the <a style="color: yellow">Nameless Liquid</a>, to participate and join in <a style="color: yellow">the ROTY BROI ark</a>, to sail <a style="color: yellow">The Melting Land</a> on Earth. Besides that, <a style="color: yellow">Mr. BROY</a> can also feel a little peace, a little restlessness can be put to sleep when he is busy building the ark.
</div>
<br />
<div class="regularText">
Pseudonymous invitations have been created and provided by <a style="color: yellow">Mr. BROY</a> in a very limited manner, there are only 1047 invitations, with unique illustrations, which were drawn by <a style="color: yellow">Mr. BROY</a> himself.
</div>
<br />
<div class="bigText">MINT The INVITATION</div>
<br />
<div class="regularText">
Whoever holds the invitation in their wallet can join <a style="color: yellow">the ROTY BROI ark</a>. Together we sail the sea of <a style="color: yellow">The Melting Land</a> on Earth. Without having to worry about running out of the <a style="color: yellow">Nameless Liquid</a> and ready to welcome a new leaf of life on the new surface of the Earth, which is eternal throughout time.
</div>
<br />
<div class="regularText">
Get <a style="color: yellow">the ROTY BROI ark</a> invitation, mint the invitation, hold it in your wallet, and make sure your fellow brothers are not left behind and forgotten.
</div>
<br />
<button class="chaos-button" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">
INVITATIONS 100% MINTED OUT!!!
</button>
<button class="chaos-button" onclick="story2Function();">
READ MORE ABOUT INVITATIONS!!!
</button>
<br />
<br />
<br />
<br />
</div>
</div>
</div>
<div id="nocrowd">
<div id="mobile">
<div id="mobile-div">
<a href="/index.html"><img id="logo1" src="/img/trb-logo-0.png?v=2" /></a>
<div id="social-pool">ROOM OF PARLAY</div>
<div id="social-button">
<div id="discord2">
<div id="discord2-button"><img id="discord2-img" src="/img/discord7b30.png?v=4" /></div>
<div id="discord2-text">Discord</div>
</div>
<div id="twitter2">
<div id="twitter2-button"><img id="twitter2-img" src="/img/twitter7b30.png?v=4" /></div>
<div id="twitter2-text">Twitter</div>
</div>
</div>
</div>
<div class="bigStretch"><img src="/img/line0.png" class="innerStetch" /></div>
<br /><br />
<div style="display: block;">
<div class="bigStretch">
<div class="bigText bigText-style">100% MINTED OUT!!!</div>
<br />
<div id="opensea-buy" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">Buy On OpenSea</div>
<br />
<div id="opensea-sell" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">Sell On OpenSea</div>
</div>
<div class="bigStretch"><img src="/img/line1.png" class="innerStetch" /></div>
<br /><br />
</div>
<div class="bigStretch">
<div class="innerStetch">
<div class="bigText">WELCOME to<br />the ROTY BROI</div>
<img class="previewable" src="/img/previewable/76.png?v=2" id="previewImg1" />
<div class="regularText" id="regularText-style">NFT PREVIEWS
<img onclick="prevImg()" src="/img/back5e1f.png?v=2" id="prevImg-arrow1" />
<img onclick="nextImg()" src="/img/forward5e1f.png?v=2" id="prevImg-arrow2" />
</div>
<br />
<div class="regularText">
<a style="color: yellow">The ROTY BROI</a> is the <a style="color: yellow">#NFTs</a> collection by <a style="color: yellow">Prof. NOTA</a> that initiates <a style="color: yellow">The Melting Land</a> phenomenon. <a style="color: yellow">The ROTY BROI</a> is part of <a style="color: yellow">The KING's NFTs</a> project by <a style="color: yellow">Prof. NOTA</a>.
<br /><br />
<a style="color: yellow">The ROTY BROI</a> is a collection of 1047 unique generative and handpicked <a style="color: yellow">#NFTs</a>, that live on <a style="color: yellow">the Polygon blockchain</a>. Each <a style="color: yellow">#NFT</a> is made from over 100+ traits. Each trait is meticulously hand-drawn and crafted by <a style="color: yellow">The BROY</a>, then mixed and generated by <a style="color: yellow">LOGO PABRIK ROTI</a> using an algorithm to create unique characters.
<br /><br />
<a style="color: yellow">The ROTY BROI #NFTs</a> used as the pseudonymous invitations to join <a style="color: yellow">The ROTY BROI Ark</a>. So, together we can sail the sea of <a style="color: yellow">The Melting Land</a> on Earth without having to worry about running out of the <a style="color: yellow">Nameless Liquid</a> and ready to welcome a new leaf of life on the new surface of the Earth, which is eternal throughout time.
</div>
</div>
</div>
</div>
<div id="desktop">
<div class="bigStretch" id="desktop-div">
<a href="/index.html"><img id="logo2" src="/img/trb-logo-0.png?v=2" /></a>
<div id="discord1">
<div id="discord1-button"><img id="discord1-img" src="/img/discord7b30.png?v=4" /></div>
<div id="discord1-text">Prof. NOTA's Discord</div>
</div>
<div id="twitter1">
<div id="twitter1-button"><img id="twitter1-img" src="/img/twitter7b30.png?v=4" /></div>
<div id="twitter1-text">Tweets Of Parrot</div>
</div>
</div>
<div class="bigStretch"><img src="/img/line0.png" class="innerStetch" /></div>
<br /><br />
<div style="display: none;">
<div class="bigStretch">
<div class="bigText bigText-style">
MINTING is<BR />COMING SOON!!!
</div>
<br />
<div class="regularText" id="regularText-footer">
<a style="color: yellow;">Note:</a> The date may change with prior notice. Please stay up to date by joining our Discord and following our Twitter.
</div>
</div>
<div class="bigStretch"><img src="/img/line1.png" class="innerStetch" /></div>
<br /><br />
</div>
<div style="display: none;">
<div class="bigStretch">
<div class="bigText bigText-style">
MINTING is<BR />LIVE NOW!!!
</div>
<br />
<div class="regularText" id="regularText-footer">
<a style="color: yellow;">MINT The INVITATION NOW!!!</a>
</div>
</div>
<div class="bigStretch"><img src="img/line1.png" class="innerStetch" /></div>
<br /><br />
</div>
<div style="display: block;">
<div class="bigStretch">
<div class="bigText bigText-style">100% MINTED OUT!!!</div>
<br />
<div id="opensea-buy" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">Buy On OpenSea</div>
<br />
<div id="opensea-sell" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">Sell On OpenSea</div>
</div>
<div class="bigStretch"><img src="/img/line1.png" class="innerStetch" /></div>
<br /><br />
</div>
<br />
<div class="bigStretch">
<div class="innerStetchHalf">
<div class="bigText">WELCOME to<br />the ROTY BROI</div>
<br />
<div class="regularText">
<a style="color: yellow">The ROTY BROI</a> is the <a style="color: yellow">#NFTs</a> collection by <a style="color: yellow">Prof. NOTA</a> that initiates <a style="color: yellow">The Melting Land</a> phenomenon. <a style="color: yellow">The ROTY BROI</a> is part of <a style="color: yellow">The KING's NFTs</a> project by <a style="color: yellow">Prof. NOTA</a>.
<br /><br />
<a style="color: yellow">The ROTY BROI</a> is a collection of 1047 unique generative and handpicked <a style="color: yellow">#NFTs</a>, that live on <a style="color: yellow">the Polygon blockchain</a>. Each <a style="color: yellow">#NFT</a> is made from over 100+ traits. Each trait is meticulously hand-drawn and crafted by <a style="color: yellow">The BROY</a>, then mixed and generated by <a style="color: yellow">LOGO PABRIK ROTI</a> using an algorithm to create unique characters.
<br /><br />
<a style="color: yellow">The ROTY BROI #NFTs</a> used as the pseudonymous invitations to join <a style="color: yellow">The ROTY BROI Ark</a>. So, together we can sail the sea of <a style="color: yellow">The Melting Land</a> on Earth without having to worry about running out of the <a style="color: yellow">Nameless Liquid</a> and ready to welcome a new leaf of life on the new surface of the Earth, which is eternal throughout time.
</div>
<br />
<div class="mediumText"></div>
<br />
<div class="regularText"><u style="color: #00b7ff"></u></div>
</div>
<div class="innerOtherHalf" id="innerOtherHalf-style">
<img class="previewable" src="/img/previewable/76.png?v=2" id="previewImg2" />
<div class="regularText" id="regularText-style">NFT PREVIEWS
<img onclick="prevImg()" src="/img/back5e1f.png?v=2" id="prevImg-arrow1" />
<img onclick="nextImg()" src="/img/forward5e1f.png?v=2" id="prevImg-arrow2" />
</div>
</div>
</div>
</div>
<br /><br />
<div class="bigStretch"><img src="/img/line2.png" class="innerStetch" /></div>
<br /><br />
<div class="bigStretch">
<div class="innerStetch">
<!-- <div class="bigText">the STORY</div> -->
<!-- <br /> -->
<!-- <div class="regularText">
So far, scientists have been aware of the fact that on Earth not only ice can melt, but even the land we step on can also melt. This fact is still kept secret to prevent the occurrence of chaos for mankind on Earth because in February 2022 it has been known that the land all over the surface of the Earth will melt completely without the consent of mankind.<br /><br /> -->
<!-- That secret fact is known by <a style="color: yellow">Mr. BROY</a>, a resident in the land of <a style="color: yellow">Dunno What Water</a>. The land of <a style="color: yellow">Dunno What Water</a> is a country that is famous for its natural products in the form of a liquid without a name but is able to bring peace to the drinker. But that peace will no longer be felt by <a style="color: yellow">Mr. BROY</a> because he knows that there is a phenomenon of <a style="color: yellow">The Melting Land</a> on Earth.<br /><br /> -->
<!-- <a style="color: yellow">Mr. BROY</a> finds himself unable to find peace even though he has drunk liters of <a style="color: yellow">Nameless Liquid</a>. So, <a style="color: yellow">Mr. BROY</a> decided to build an ark that could survive when a unique phenomenon of <a style="color: yellow">The Melting Land</a> on Earth occurred. <a style="color: yellow">Mr. BROY</a> named the ark <a style="color: yellow">ROTY BROI</a> because it was inspired by the shape of <a style="color: yellow">BREAD (ROTI)</a> in a <a style="color: yellow">LOGO PABRIK ROTI</a> that resembles an ark for an emergency, a condition that seriously trapped, stuck, squeezed until pinched.<br /><br /> -->
<!-- </div> -->
<img src="/img/the-melting-land.gif" id="minting-img" />
<!-- <br /><br /> -->
<!-- <div class="regularText">
Even on a limited basis, <a style="color: yellow">Mr. BROY</a> has a purpose to invite and save mankind who likes to drink the <a style="color: yellow">Nameless Liquid</a>, to participate and join in <a style="color: yellow">the ROTY BROI ark</a>, to sail <a style="color: yellow">The Melting Land</a> on Earth. Besides that, <a style="color: yellow">Mr. BROY</a> can also feel a little peace, a little restlessness can be put to sleep when he is busy building the ark.<br /><br /> -->
<!-- Pseudonymous invitations have been created and provided by <a style="color: yellow">Mr. BROY</a> in a very limited manner, there are only 1047 invitations, with unique illustrations, which were drawn by <a style="color: yellow">Mr. BROY</a> himself.<br /><br /> -->
<!-- Whoever hold the invitation in their wallet can join <a style="color: yellow">the ROTY BROI ark</a>. Together we sail the sea of <a style="color: yellow">The Melting Land</a> on Earth. Without having to worry about running out of the <a style="color: yellow">Nameless Liquid</a> and ready to welcome a new leaf of life on the new surface of the Earth, which is eternal throughout time.<br /><br /> -->
<!-- Get <a style="color: yellow">the ROTY BROI ark</a> invitation, mint the invitation, hold it in your wallet, and make sure your fellow brothers are not left behind and forgotten. -->
<!-- </div> -->
</div>
</div>
<br /><br />
<div class="bigStretch"><img src="/img/line0.png" class="innerStetch"></div>
<br /><br />
<div class="bigStretch">
<div class="innerStetch">
<div class="bigText">the ROADMAP</div>
</div>
<div id="desktop2">
<br />
<div class="innerStetch" id="previeww2" style="display: none;">
<div class="mediumText strikeT">0% Progress: The Preparation</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Started creating artwork.</li>
<li>Started a Discord server and Twitter account.</li>
<li>Launched a website presentation.</li>
<li>Promoting this project on social media.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">5% Progress: The Release</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Pre-sale #1, 10.47 Matic per NFT.</li>
<li>Pre-sale #2, 20.94 Matic per NFT.</li>
<li>Public sale, 31.41 Matic per NFT.</li>
<li>Giveaway 7 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">25% Progress: The Ongoing Release #1</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Reach 297 NFTs minted.</li>
<li>1000 Matic distributed for marketing promotion.</li>
<li>Hire community managers and moderators.</li>
<li>200 Matic distributed to community as giveaway.</li>
<li>Giveaway 5 NFTs on Discord and Twitter.</li>
<li>Partnerships with other projects.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">50% Progress: The Ongoing Release #2</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Reach 547 NFTs minted.</li>
<li>NFTs public revealed.</li>
<li>Rarity matrix traits published.</li>
<li>1.250 Matic for buying back the floor price.</li>
<li>200 Matic distributed to community as giveaway.</li>
<li>Giveaway 5 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">75% Progress: The Ongoing Release #3</div>
<br />
<div class="regularText">
<ul>
<li class="strikeT">Reach 797 NFTs minted.</li>
<li class="strikeT">Developing story of <a style="color: yellow">ROTY BROI The MOVIE: The Melting Land</a>.</li>
<li class="strikeT">Use all the characters in <a style="color: yellow">the ROTY BROI</a> NFTs.</li>
<li class="strikeT">1000 Matic distributed for marketing promotion.</li>
<li class="strikeT">200 Matic distributed to community as giveaway.</li>
<li class="strikeT">Giveaway 5 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">100% Progress: Happenings After Sold Out</div>
<br />
<div class="regularText">
<ul>
<li class="strikeT">Let's get the party started.</li>
<li class="strikeT">Rarity tools web published.</li>
<li class="strikeT">Kick-off production <a style="color: yellow">The Melting Land</a> movie.</li>
<li class="strikeT"><a style="color: yellow">The Melting Land</a> movie teaser released.</li>
</ul><br />
From here, this website and <a style="color: yellow;">Discord of ROTY BROI's Ark</a> will be archived but still available to be visited as one of the Memorial of <a style="color: yellow;">The Melting Land</a>. In advance, this collection's developments and roadmap were taken over 100% by <a style="color: yellow;">Prof. NOTA</a>. All passengers are welcome to join <a style="color: yellow;">Prof. NOTA's Discord</a> since all updates will always be conveyed there.<br />
</div>
<br />
<div class="mediumText">In Advanced #1: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 7474 NFTs as the limited pre-sale movie tickets.</li>
<li>The collection named <a style="color: yellow">ROTY BASE dETH</a>.</li>
<li>The movie tickets are reusable (tradable) and rentable.</li>
<li>Share updates about the movie production.</li>
<li>Share updates about the movie promotion.</li>
</ul>
</div>
<br />
<div class="mediumText">In Advanced #2: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 4747 NFTs as the limited public sale movie tickets part #1.</li>
<li>The collection named <a style="color: yellow">The Melting Land</a>.</li>
<li>The movie tickets are reusable (tradable).</li>
<li>Share updates about the movie production.</li>
<li>Share updates about the movie promotion.</li>
<li>Release <a style="color: yellow">The Melting Land</a> movie.</li>
</ul>
</div>
<br />
<div class="mediumText">In Advanced #3: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 4747 NFTs as the limited public sale movie tickets part #2.</li>
<li>The collection named <a style="color: yellow">Amanda Wives</a>.</li>
<li>The movie tickets are reusable (tradable).</li>
<li>Share updates about the movie promotion.</li>
<li>Distribute <a style="color: yellow">The Melting Land</a> movie.</li>
</ul><br />
<a style="color: yellow;">The future is elusive</a>, everyone know about that. <a style="color: yellow">The Melting Land</a> moves quickly on the surface of Earth. Our roadmap is just our hope. Together we will be exploring the unknown by sailing <a style="color: yellow">The Melting Land</a> with our ark. More details will be updated on Discord and Twitter. Any of your attention will be always rewarded.<br />
</div>
</div>
<div class="innerStetchHalf" id="previeww1">
<div class="mediumText strikeT">0% Progress: The Preparation</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Started creating artwork.</li>
<li>Started a Discord server and Twitter account.</li>
<li>Launched a website presentation.</li>
<li>Promoting this project on social media.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">5% Progress: The Release</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Pre-sale #1, 10.47 Matic per NFT.</li>
<li>Pre-sale #2, 20.94 Matic per NFT.</li>
<li>Public sale, 31.41 Matic per NFT.</li>
<li>Giveaway 7 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">25% Progress: The Ongoing Release #1</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Reach 297 NFTs minted.</li>
<li>1000 Matic distributed for marketing promotion.</li>
<li>Hire community managers and moderators.</li>
<li>200 Matic distributed to community as giveaway.</li>
<li>Giveaway 5 NFTs on Discord and Twitter.</li>
<li>Partnerships with other projects.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">50% Progress: The Ongoing Release #2</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Reach 547 NFTs minted.</li>
<li>NFTs public revealed.</li>
<li>Rarity matrix traits published.</li>
<li>1.250 Matic for buying back the floor price.</li>
<li>200 Matic distributed to community as giveaway.</li>
<li>Giveaway 5 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">75% Progress: The Ongoing Release #3</div>
<br />
<div class="regularText">
<ul>
<li class="strikeT">Reach 797 NFTs minted.</li>
<li class="strikeT">Developing story of <a style="color: yellow">ROTY BROI The MOVIE: The Melting Land</a>.</li>
<li class="strikeT">Use all the characters in <a style="color: yellow">the ROTY BROI</a> NFTs.</li>
<li class="strikeT">1000 Matic distributed for marketing promotion.</li>
<li class="strikeT">200 Matic distributed to community as giveaway.</li>
<li class="strikeT">Giveaway 5 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">100% Progress: Happenings After Sold Out</div>
<br />
<div class="regularText">
<ul>
<li class="strikeT">Let's get the party started.</li>
<li class="strikeT">Rarity tools web published.</li>
<li class="strikeT">Kick-off production <a style="color: yellow">The Melting Land</a> movie.</li>
<li class="strikeT"><a style="color: yellow">The Melting Land</a> movie teaser released.</li>
</ul><br />
From here, this website and <a style="color: yellow;">Discord of ROTY BROI's Ark</a> will be archived but still available to be visited as one of the Memorial of <a style="color: yellow;">The Melting Land</a>. In advance, this collection's developments and roadmap were taken over 100% by <a style="color: yellow;">Prof. NOTA</a>. All passengers are welcome to join <a style="color: yellow;">Prof. NOTA's Discord</a> since all updates will always be conveyed there.<br />
</div>
<br />
<div class="mediumText">In Advanced #1: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 7474 NFTs as the limited pre-sale movie tickets.</li>
<li>The collection named <a style="color: yellow">ROTY BASE dETH</a>.</li>
<li>The movie tickets are reusable (tradable) and rentable.</li>
<li>Share updates about the movie production.</li>
<li>Share updates about the movie promotion.</li>
</ul>
</div>
<br />
<div class="mediumText">In Advanced #2: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 4747 NFTs as the limited public sale movie tickets part #1.</li>
<li>The collection named <a style="color: yellow">The Melting Land</a>.</li>
<li>The movie tickets are reusable (tradable).</li>
<li>Share updates about the movie production.</li>
<li>Share updates about the movie promotion.</li>
<li>Release <a style="color: yellow">The Melting Land</a> movie.</li>
</ul>
</div>
<br />
<div class="mediumText">In Advanced #3: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 4747 NFTs as the limited public sale movie tickets part #2.</li>
<li>The collection named <a style="color: yellow">Amanda Wives</a>.</li>
<li>The movie tickets are reusable (tradable).</li>
<li>Share updates about the movie promotion.</li>
<li>Distribute <a style="color: yellow">The Melting Land</a> movie.</li>
</ul><br />
<a style="color: yellow;">The future is elusive</a>, everyone know about that. <a style="color: yellow">The Melting Land</a> moves quickly on the surface of Earth. Our roadmap is just our hope. Together we will be exploring the unknown by sailing <a style="color: yellow">The Melting Land</a> with our ark. More details will be updated on Discord and Twitter. Any of your attention will be always rewarded.<br />
</div>
</div>
<div class="innerOtherHalf" id="previewww">
<img class="previewable" src="/img/previewable/137.png?v=2" id="previewImg4" />
<div class="regularText" id="text-preview">INVITATION PROGRESS
<img onclick="prevMap()" src="/img/back5e1f.png?v=2" id="prevImg-arrow1" />
<img onclick="nextMap()" src="/img/forward5e1f.png?v=2" id="prevImg-arrow2" />
</div>
<!-- <img class="previewable" src="/img/previewable/137.png?v=1" id="previewable-img1" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/138.png?v=1" id="previewable-img2" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/139.png?v=1" id="previewable-img3" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/140.png?v=1" id="previewable-img4" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/141.png?v=1" id="previewable-img1" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/142.png?v=1" id="previewable-img2" /><br /><br /> -->
<!-- <div class="regularText" id="text-preview">INVITATION PROGRESS</div> -->
</div>
<br /><br />
</div>
<div id="mobile2">
<br />
<div class="innerStetch">
<!-- <img class="previewable" src="/img/previewable/37.png?v=2" id="previewable-img1" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/38.png?v=2" id="previewable-img2" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/39.png?v=2" id="previewable-img3" /> -->
<!--
-->
<!-- <img class="previewable" src="/img/previewable/40.png?v=2" id="previewable-img4" /> -->
<div class="mediumText strikeT">0% Progress: The Preparation</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Started creating artwork.</li>
<li>Started a Discord server and Twitter account.</li>
<li>Launched a website presentation.</li>
<li>Promoting this project on social media.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">5% Progress: The Release</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Pre-sale #1, 10.47 Matic per NFT.</li>
<li>Pre-sale #2, 20.94 Matic per NFT.</li>
<li>Public sale, 31.41 Matic per NFT.</li>
<li>Giveaway 7 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">25% Progress: The Ongoing Release #1</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Reach 297 NFTs minted.</li>
<li>1000 Matic distributed for marketing promotion.</li>
<li>Hire community managers and moderators.</li>
<li>200 Matic distributed to community as giveaway.</li>
<li>Giveaway 5 NFTs on Discord and Twitter.</li>
<li>Partnerships with other projects.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">50% Progress: The Ongoing Release #2</div>
<br />
<div class="regularText strikeT">
<ul>
<li>Reach 547 NFTs minted.</li>
<li>NFTs public revealed.</li>
<li>Rarity matrix traits published.</li>
<li>1.250 Matic for buying back the floor price.</li>
<li>200 Matic distributed to community as giveaway.</li>
<li>Giveaway 5 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">75% Progress: The Ongoing Release #3</div>
<br />
<div class="regularText">
<ul>
<li class="strikeT">Reach 797 NFTs minted.</li>
<li class="strikeT">Developing story of <a style="color: yellow">ROTY BROI The MOVIE: The Melting Land</a>.</li>
<li class="strikeT">Use all the characters in <a style="color: yellow">the ROTY BROI</a> NFTs.</li>
<li class="strikeT">1000 Matic distributed for marketing promotion.</li>
<li class="strikeT">200 Matic distributed to community as giveaway.</li>
<li class="strikeT">Giveaway 5 NFTs on Discord and Twitter.</li>
</ul>
</div>
<br />
<div class="mediumText strikeT">100% Progress: Happenings After Sold Out</div>
<br />
<div class="regularText">
<ul>
<li class="strikeT">Let's get the party started.</li>
<li class="strikeT">Rarity tools web published.</li>
<li class="strikeT">Kick-off production <a style="color: yellow">The Melting Land</a> movie.</li>
<li class="strikeT"><a style="color: yellow">The Melting Land</a> movie teaser released.</li>
</ul><br />
From here, this website and <a style="color: yellow;">Discord of ROTY BROI's Ark</a> will be archived but still available to be visited as one of the Memorial of <a style="color: yellow;">The Melting Land</a>. In advance, this collection's developments and roadmap were taken over 100% by <a style="color: yellow;">Prof. NOTA</a>. All passengers are welcome to join <a style="color: yellow;">Prof. NOTA's Discord</a> since all updates will always be conveyed there.<br />
</div>
<br />
<div class="mediumText">In Advanced #1: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 7474 NFTs as the limited pre-sale movie tickets.</li>
<li>The collection named <a style="color: yellow">ROTY BASE dETH</a>.</li>
<li>The movie tickets are reusable (tradable) and rentable.</li>
<li>Share updates about the movie production.</li>
<li>Share updates about the movie promotion.</li>
</ul>
</div>
<br />
<div class="mediumText">In Advanced #2: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 4747 NFTs as the limited public sale movie tickets part #1.</li>
<li>The collection named <a style="color: yellow">The Melting Land</a>.</li>
<li>The movie tickets are reusable (tradable).</li>
<li>Share updates about the movie production.</li>
<li>Share updates about the movie promotion.</li>
<li>Release <a style="color: yellow">The Melting Land</a> movie.</li>
</ul>
</div>
<br />
<div class="mediumText">In Advanced #3: Maintain The Community</div>
<br />
<div class="regularText">
<ul>
<li>Release 4747 NFTs as the limited public sale movie tickets part #2.</li>
<li>The collection named <a style="color: yellow">Amanda Wives</a>.</li>
<li>The movie tickets are reusable (tradable).</li>
<li>Share updates about the movie promotion.</li>
<li>Distribute <a style="color: yellow">The Melting Land</a> movie.</li>
</ul><br />
<a style="color: yellow;">The future is elusive</a>, everyone know about that. <a style="color: yellow">The Melting Land</a> moves quickly on the surface of Earth. Our roadmap is just our hope. Together we will be exploring the unknown by sailing <a style="color: yellow">The Melting Land</a> with our ark. More details will be updated on Discord and Twitter. Any of your attention will be always rewarded.<br />
</div>
<br />
<img class="previewable" src="/img/previewable/137.png?v=2" id="previewImg3" />
<div class="regularText" id="text-preview">INVITATION PROGRESS
<img onclick="prevMap()" src="/img/back5e1f.png?v=2" id="prevImg-arrow1" />
<img onclick="nextMap()" src="/img/forward5e1f.png?v=2" id="prevImg-arrow2" />
</div>
</div>
<br /><br />
</div>
</div>
<div class="bigStretch"><img src="/img/line1.png" class="innerStetch" /></div>
<br /><br />
<div class="bigStretch" id="desktop3">
<div class="innerStetchHalf">
<div class="bigText">lazy MINTING</div>
<br />
<!-- <div class="mediumText">Minting is coming soon!!!</div> -->
<div class="mediumText">The invitation 100% minted out!!!</div>
<br />
<div class="regularText">
<p class="strikeT">➞ Pre-sale #1: 20-25 Jan. 2022</p>
<p class="strikeT">➞ Minting price: 10.47 Matic per NFT</p>
<br />
<p class="strikeT">➞ Pre-sale #2: 30 Jan. - 05 Feb. 2022</p>
<p class="strikeT">➞ Minting price: 20.94 Matic per NFT</p>
<br />
<p class="strikeT">➞ Public sale: Start 10 Feb. 2022 - Sold Out</p>
<p class="strikeT">➞ Minting price: 31.41 Matic per NFT</p><br />
<br />
<a style="color: yellow">Note:</a> The date may change with prior notice. Please stay up to date by joining our Discord and following our Twitter.<br /><br />
<button class="chaos-button" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">
The INVITATION 100% MINTED OUT!!!
</button>
<br /><br />
<button class="chaos-button" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">
BUY and SELL it on OPENSEA!!!
</button>
<br /><br />
</div>
</div>
<div class="innerOtherHalf" id="innerOtherHalf-style">
<img src="/img/roty-broi-ark.png" id="minting-img" />
</div>
</div>
<div class="bigStretch" id="mobile3">
<div class="innerStetch">
<div class="bigText">lazy MINTING</div>
<br />
<img src="/img/roty-broi-ark.png" id="minting-img" />
<br /><br />
<!-- <div class="mediumText">Minting is coming soon!!!</div> -->
<div class="mediumText">The invitation 100% minted out!!!</div>
<br />
<div class="regularText">
<p class="strikeT">➞ Pre-sale #1: 20-25 Jan. 2022</p>
<p class="strikeT">➞ Minting price: 10.47 Matic per NFT</p>
<br />
<p class="strikeT">➞ Pre-sale #2: 30 Jan. - 05 Feb. 2022</p>
<p class="strikeT">➞ Minting price: 20.94 Matic per NFT</p>
<br />
<p class="strikeT">➞ Public sale: Start 10 Feb. 2022 - Sold Out</p>
<p class="strikeT">➞ Minting price: 31.41 Matic per NFT</p><br />
<br />
<a style="color: yellow">Note:</a> The date may change with prior notice. Please stay up to date by joining our Discord and following our Twitter.<br /><br />
<button class="chaos-button" onclick="window.open('https://opensea.io/collection/the-roty-broi/')">
The INVITATION 100% MINTED OUT!!!
</button>
<br /><br />
<button class="chaos-button" onclick="window.open('https://opensea.io/collection/the-roty-broi')">
BUY and SELL it on OPENSEA!!!
</button>
<br />
</div>
</div>
</div>
<br /><br />
<div class="bigStretch"><img src="/img/line2.png" class="innerStetch" /></div>
<br /><br />
<div class="bigStretch">
<div class="innerStetch">
<div class="bigText">Sneak Peaks</div>
<br />
<div class="regularText">
Here are some previews of pseudonymous invitations. All are unique generative and handpicked <a style="color: yellow;">#NFTs</a>, that live on <a style="color: yellow;">the Polygon blockchain</a>. Please consider sharing these with your fellow brothers so they are not left behind and forgotten.
</div>
<br /><br />
<img class="previewable" src="/img/previewable/16.png?v=2" id="sneakpeaks1" /><!--
--><img class="previewable" src="/img/previewable/17.png?v=2" id="sneakpeaks2" /><!--
--><img class="previewable" src="/img/previewable/18.png?v=2" id="sneakpeaks2" /><!--
--><img class="previewable" src="/img/previewable/19.png?v=2" id="sneakpeaks2" /><!--
--><img class="previewable" src="/img/previewable/20.png?v=2" id="sneakpeaks3" /><!--
--><img class="previewable" src="/img/previewable/21.png?v=2" id="sneakpeaks4" /><!--
--><img class="previewable" src="/img/previewable/22.png?v=2" id="sneakpeaks4" /><!--
--><img class="previewable" src="/img/previewable/23.png?v=2" id="sneakpeaks4" />
</div>
</div>
<br /><br />
<div class="bigStretch"><img src="/img/line0.png" class="innerStetch" /></div>
<br /><br />
<div class="bigStretch">
<div class="innerStetch">
<div class="bigText">The Teammate</div>
<br />
<div class="regularText">
The teammate is an infamous but powerful crew ruling their own world, baked by one of the <a style="color: yellow;">PabrikRoti.IDN</a> bakers. The exact strength of the crew as a whole is unknown, but since their baker is one of the <a style="color: yellow;">PabrikRoti.IDN</a>'s bakers, before <a style="color: yellow;">The Melting Land</a> happens, the crew is recognized as one of the strongest crew in the <a style="color: yellow;">PabrikRoti.IDN</a> of 0101 Universe. So, here they are:
</div>
<br /><br />
<div id="desktop4">
<img class="previewable" src="/img/previewable/33.gif?v=2" id="sneakpeaks1" /><!--
--><img class="previewable" src="/img/previewable/34.gif?v=2" id="sneakpeaks2" /><!--
--><img class="previewable" src="/img/previewable/35.gif?v=2" id="sneakpeaks2" /><!--
--><img class="previewable" src="/img/previewable/36.gif?v=2" id="sneakpeaks2" />
</div>
<div id="mobile4">
<img class="previewable" src="/img/previewable/34.gif?v=2" id="teammate1" /><!--
--><img class="previewable" src="/img/previewable/33.gif?v=2" id="teammate2" /><!--
--><img class="previewable" src="/img/previewable/35.gif?v=2" id="teammate3" /><!--
--><img class="previewable" src="/img/previewable/36.gif?v=2" id="teammate4" />
</div>
</div>
</div>
<br /><br />
<div class="bigStretch"><img src="/img/line1.png" class="innerStetch" /></div>
<br />
<div class="bigStretch">
<img id="logo-footer" src="/img/logo-footer.png?v=2" />
<br /><br />
<div class="regularText" id="regularText-footer">
<a style="color: yellow; cursor: pointer;" onclick="window.open('https://polygonscan.com/address/0x6d2723cb02c558cf67473dc959ac08737b6129a9');">
0x6d27...29a9<br />
VERIFIED SMART CONTRACT
</a><br />
Please, do your own research!
</div>
<br /><br />
<div id="parlay-footer">
<div id="discord3">
<div id="discord3-button"><img src="/img/discord7b30.png?v=4" id="discord3-img" /></div>
<div id="discord3-text">Discord</div>
</div>
<div id="twitter3">
<div id="twitter3-button"><img src="/img/twitter7b30.png?v=4" id="twitter3-img" /></div>
<div id="twitter3-text">Twitter</div>
</div>
</div>
<br /><br />
<div class="regularText" id="regularText-footer">
<img src="https://hitwebcounter.com/counter/counter.php?page=7919954&style=0038&nbdigits=7&type=ip&initCount=747" title="Humankind Counter" Alt="web counter" /><br /><br />
| <a style="color: yellow; cursor: pointer;" onclick="window.open('/terms.html')">TERMS</a> | <a style="color: yellow; cursor: pointer;" onclick="window.open('/privacy.html')">PRIVACY</a> | <a style="color: yellow; cursor: pointer;" onclick="window.open('https://iqraa.straight-line.org/the-kings-nfts/03-the-story.../theres-still-a-chance.')">STORY</a> | <a style="color: yellow; cursor: pointer;" onclick="window.open('https://rotyrarity.endhonesa.com/')">RARITY</a> | <a style="color: yellow; cursor: pointer;" onclick="window.open('https://iqraa.straight-line.org/tutor-x-educator/v/tutor-02-get-usdoioi-tokens/staking-the-roty-broi')">STAKING</a> |<br />
2022 <span class="copy-left">©</span> <a style="color: yellow; cursor: pointer;" onclick="window.open('https://iqraa.straight-line.org/the-kings-nfts/04-the-12th-stage.../professor-nota')">Prof. NOTA</a> xXx <a style="color: yellow; cursor: pointer;" onclick="window.open('https://iqraa.straight-line.org/the-kings-nfts/04-the-12th-stage.../the-breads-factory')">The Breads Factory</a>
</div>
</div>
<br />
<div class="bigStretch"><img src="/img/line1.png" class="innerStetch" /></div>
<div id="imgDisplay" onclick="closeImg()">
<div class="bigStretch" id="bigStretch-imgDisplay">
<center id="imgDisplay-center">
<div id="imgDisplay-div">
<img id="imgDisplay-img" src="/img/cross5e1f.png?v=2" />
<div id="imgDisplay-text">Close</div>
</div>
<img id="innerImg" />
<div id="innerText"></div>
</center>
</div>
</div>
</div>
</body>
<script type="text/javascript"src="/js/creeps.js"></script>
<script type="text/javascript" src="/js/croots.js"></script>
<script type="text/javascript" src="/js/allData5e1f.js?v=2"></script>
</html>