-
Notifications
You must be signed in to change notification settings - Fork 2
/
2021.html
1768 lines (1727 loc) · 71.1 KB
/
2021.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><meta charset="UTF-8">
<head>
<title>FTM1337 : ftm.guru</title>
<meta name="description" content="FTM.guru : Fantom Opera blockchain tools, DEX pair Explorer, Fantom Scan, Top FTM Tokens on-chain voting.">
<meta name="keywords" content="Fantom Opera, FTM, Decentralized Finance, ELITE, 1337, defi, farming, FTM1337">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<link rel="shortcut icon" href="img/ftm1337.jpg" />
<style>
@font-face{font-family:bold;src: url(https://ftm.guru/font/bold.ttf);}
@font-face{ font-family:italic;src: url(https://ftm.guru/font/italic.ttf);}
@font-face{ font-family:light;src: url(https://ftm.guru/font/light.ttf);}
@font-face{ font-family:light_italic;src: url(https://ftm.guru/font/light_italic.ttf);}
@font-face{ font-family:regular;src: url(https://ftm.guru/font/regular.ttf);}
@font-face{ font-family:regular_italic;src: url(https://ftm.guru/font/regular_italic.ttf);}
*{font-family:regular;scroll-behavior: smooth !important;color:#e3e9f2;overflow-wrap:break-word;}
a{text-decoration-line:none;padding:0 2px}
*{text-shadow:6px 6px 5px black;color:#e3e9f2}
html{background:radial-gradient(circle at bottom, #125, #122, #100);background-attachment: fixed;color:#e3e9f2;}
img{border-radius: 50%}
input,button:not(.cybr-btn){border-radius:25px;background:black;text-align:center}
button:hover:not(.cybr-btn){ box-shadow: 0 0px 10px 5px rgba(255,255,255,.2), 0px 0px 10px 5px rgba(255,255,255,0.1);transition: 0.2s}
pre{overflow-x:auto;max-width:80%}
#votingmvg{background:#040b22;border-radius:20px;border: #aaa solid 1px}
.topbar{display:grid;grid-template-columns: auto;}
#mvg pre{margin: 0 0 0 0;}
#mvg hr{border: 0px dashed;width: 50%}
#mvg div{background: #000013;margin: auto;border-radius: 15px;border:dashed 1px;border-top: none }
#mvg{width: 70vw}
.mainpanels{display:grid;grid-template-columns:auto}
.olsa{display:grid;grid-template-columns:auto auto 1%;}
.mainstages{text-align:center;display:grid;grid-template-columns: auto}
.mainstage{padding:15px;box-shadow: rgba(0,255,255,0.2) 0px 0px 10px 10px;background: rgba(15,15,31,0.5);margin:5%;border-radius: 15px;border:aqua 2px solid}
hr{box-shadow: rgba(0,255,255,0.2) 0px 0px 10px 10px;background: #090919;border-radius: 15px;border:aqua 2px solid;}
.c2a{background: rgba(0,255,255,0.5);font-size:1em;padding:10px;margin:5px}
.advert{background: linear-gradient(45deg, rgba(255,0,0,0.25), rgba(0,0,255,0.25));padding:15px}
.lowercat {text-align: left;padding:10px}
.lowercat a{text-decoration-line: none}
.lowercat span{font-size: 1.25em; font-weight:bold}
.lowerbar{display: grid;grid-template-columns: auto;text-align:center}
.maincards{grid-template-columns:auto ;margin: auto;display:grid;}
.maincard{margin: calc(min(25px,10%));padding:10px;border : 1px aqua solid;
border-radius: 7px;
background: linear-gradient(45deg, rgba(0,255,0,0.125), rgba(0,0,255,0.125))}
.maincard hr{border: 1px solid aqua}
.gmul{border:1px solid;border-radius: 50%; padding: 4px;margin: 0 0 0 4px;font-size: 0.8em;background: linear-gradient(225deg, rgba(0,255,0,0.5), rgba(0,0,255,0.5))}
@media(min-width:641px){
.mainpanels{grid-template-columns:50% 50%}
.mainstages{grid-template-columns:50% 50%}
#mvg{width: 70%;}
.hhr{width: 555px}
.lowerbar{display: grid;grid-template-columns: auto auto auto auto;text-align:center}
.maincards{grid-template-columns:auto auto auto;margin: auto}
.maincard{margin: 10px;padding:10px;border : 1px aqua solid}
}
@media(min-width:641px){
.maincards{grid-template-columns:50% 50%;margin: auto}
}
@media(min-width:1024px){
.maincards{grid-template-columns:33% 33% 33%;margin: auto}
}
#c2a{
display: grid;
grid-template-columns: auto;
}
.c2a{
border: 2px solid ;
width:220px;
margin: auto;
padding:5px;
margin: 5px auto;
background: rgba(0,255,255,0.2);
border-radius: 10px;
cursor: grab;
}
.c2a:hover{box-shadow: rgba(0,255,195,0.2) 0px 0px 10px 10px;}
@media(min-width:641px){
#c2a{
display: grid;
grid-template-columns: auto 280px 280px auto;
}
}
* {
scrollbar-width: thick;
scrollbar-color: #07f #147;
}
*::-webkit-scrollbar {
width: 20px;
}
*::-webkit-scrollbar-track {
background: #147;
}
*::-webkit-scrollbar-thumb {
background-color: #07f;
border-radius: 20px;
border: 3px solid #147;
}
.container {
position: ;
height: ;
top: 60px;
left: calc(50% - 300px);
display: grid;
padding: 40px;
overflow: auto;
color: red !important;;
padding:60px;
}
.card {
display: flex;
overflow: hidden;
height: ;
min-width: 200px;
max-width: 240px;
background-color: rgba(23,20,30,.85);
border-radius: 10px;
box-shadow: -1rem 0 3rem #000;
transition: 0.4s ease-out;
position: relative;
margin: 20px auto;
border-width: 3px;
border-style: solid;
border-image:
linear-gradient(
to top,
aqua,
rgba(0, 0, 0, 0)
) 0 0 1 100%;
}
.card:hover {
transform: translateX(-20px) translateY(-20px);
transition: 0.4s ease-out;
background: linear-gradient(to left,rgba(0,255,127,.5),rgba(1,240,255,.5));
}
.title {
color: white;
font-weight: 1000;
position: absolute;
left: 20px;
top: 15px;
}
.bar {
position: absolute;
top: 100px;
left: 20px;
height: 5px;
width: 180px;
}
.emptybar {
background-color: #2e3033;
width: 100%;
height: 100%;
}
.filledbar {
position: absolute;
top: 0px;
z-index: 3;
width: 0px;
height: 100%;
background: rgb(0,154,217);
background: linear-gradient(to right,rgba(0,255,127,1),rgba(1,240,255,1));
transition: 0.6s ease-out;
border: 1px dashed black
}
.card:hover .filledbar {
width: 150px;
transition: 0.4s ease-out;
}
.stroke {
stroke: rgba(0,255,127,0.24);;
stroke-dasharray: 360;
stroke-dashoffset: 360;
transition: 0.6s ease-out;
}
svg {
fill: #17141d;
stroke-width: 2px;
}
.card:hover .stroke {
stroke-dashoffset: 100;
transition: 0.6s ease-out;
}
.hovli li:hover{font-size:1.125em;background:rgba(0,255,255,0.5);}
.partners img, .partners svg{height:120px;width:120px;border-radius: 0}
#tek{height:75vh;width:80%}
@font-face {
font-display: swap;
}
* {
box-sizing: border-box;
}
body .cybr-btn + .cybr-btn {
margin-top: 2rem;
}
.cybr-btn {
--primary: hsl(var(--primary-hue), 85%, calc(var(--primary-lightness, 50) * 1%));
--shadow-primary: hsl(var(--shadow-primary-hue), 90%, 50%);
--primary-hue: 0;
--primary-lightness: 50;
--color: hsl(0, 0%, 100%);
--font-size: 16px;
--shadow-primary-hue: 180;
--label-size: 10px;
--shadow-secondary-hue: 60;
--shadow-secondary: hsl(var(--shadow-secondary-hue), 90%, 60%);
--clip: polygon(0 0, 100% 0, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 70%);
--border: 4px;
--shimmy-distance: 5;
--clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
--clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
--clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
--clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
--clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
--clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
--clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
font-family: 'Cyber', sans-serif;
color: var(--color);
cursor: pointer;
background: transparent;
text-transform: uppercase;
font-size: var(--font-size);
outline: transparent;
letter-spacing: 2px;
position: relative;
font-weight: 700;
border: 0;
max-width: 260px;
height: 50px;
line-height: 50px;
transition: background 0.2s;
}
.cybr-btn {
--primary: hsl(var(--primary-hue), 85%, calc(var(--primary-lightness, 50) * 0.8%));
}
.cybr-btn:active {
--primary: hsl(var(--primary-hue), 85%, calc(var(--primary-lightness, 50) * 0.6%));
}
.cybr-btn:after,
.cybr-btn:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
clip-path: var(--clip);
z-index: -1;
}
.cybr-btn:before {
background: var(--shadow-primary);
transform: translate(var(--border), 0);
}
.cybr-btn:after {
background: var(--primary);
}
.cybr-btn__tag {
position: absolute;
padding: 1px 4px;
letter-spacing: 1px;
line-height: 1;
top: 5%;
left: 2%;
font-weight: normal;
color: #0f0;
font-size: var(--label-size);
}
.cybr-btn__glitch {
position: absolute;
top: calc(var(--border) * -1);
left: calc(var(--border) * -1);
right: calc(var(--border) * -1);
bottom: calc(var(--border) * -1);
background: var(--shadow-primary);
text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary);
clip-path: var(--clip);
animation: glitch 2s infinite;
display: none;
}
.cybr-btn .cybr-btn__glitch {
display: block;
}
.cybr-btn__glitch:before {
content: '';
position: absolute;
top: calc(var(--border) * 1);
right: calc(var(--border) * 1);
bottom: calc(var(--border) * 1);
left: calc(var(--border) * 1);
clip-path: var(--clip);
background: var(--primary);
z-index: -1;
}
@keyframes glitch {
0% {
clip-path: var(--clip-one);
}
2%, 8% {
clip-path: var(--clip-two);
transform: translate(calc(var(--shimmy-distance) * -1%), 0);
}
6% {
clip-path: var(--clip-two);
transform: translate(calc(var(--shimmy-distance) * 1%), 0);
}
9% {
clip-path: var(--clip-two);
transform: translate(0, 0);
}
10% {
clip-path: var(--clip-three);
transform: translate(calc(var(--shimmy-distance) * 1%), 0);
}
13% {
clip-path: var(--clip-three);
transform: translate(0, 0);
}
14%, 21% {
clip-path: var(--clip-four);
transform: translate(calc(var(--shimmy-distance) * 1%), 0);
}
25% {
clip-path: var(--clip-five);
transform: translate(calc(var(--shimmy-distance) * 1%), 0);
}
30% {
clip-path: var(--clip-five);
transform: translate(calc(var(--shimmy-distance) * -1%), 0);
}
35%, 45% {
clip-path: var(--clip-six);
transform: translate(calc(var(--shimmy-distance) * -1%));
}
40% {
clip-path: var(--clip-six);
transform: translate(calc(var(--shimmy-distance) * 1%));
}
50% {
clip-path: var(--clip-six);
transform: translate(0, 0);
}
55% {
clip-path: var(--clip-seven);
transform: translate(calc(var(--shimmy-distance) * 1%), 0);
}
60% {
clip-path: var(--clip-seven);
transform: translate(0, 0);
}
31%, 61%, 100% {
clip-path: var(--clip-four);
}
}
#othersites img {height:32px;border-radius:6px}
.cybr-btn:nth-of-type(1) {
--primary-hue: 260;
}
@media(min-width:639px){
.container,.mainstages{grid-template-columns: auto auto}
}
@media(min-width:899px){
.container,.mainstages{grid-template-columns: auto auto auto }
}
</style>
</head>
<div class="topbar">
<div align="center">
<a href="index.html"><b style="font-size:2em">FTM.guru</b></a><br><br>
<!--<a href="farmlands.html">Farmlands👽</a>
<a href="index.html">FTM-Gems</a>-->
<a href="bo/index.html">B.O.</a>
<a href="LF/index.html">LITE Farmlands👽</a>
<a href="pair.html">DEX-Explorer</a>
<a href="fantomscan.html">FantomScan</a>
<a href="elite.html">ELITE</a>
<a href="fmc.html">FantomMarketCap</a>
<a href="yieldstate.html">YieldState</a>
<!--<a href="airdrop.html">Airdrop-Tool</a>-->
<a href="apelist.html">Ape-List</a>
<a href="approver.html">Approver</a>
<a href="casino.html">CASINO🎰</a>
</div>
</div>
<br>
<hr class="hhr">
<br>
<div align="center">Serving Fantom Users & Developers<br><b style="font-size:1.5em">Since <span id="since"></span> Months.</b></div>
<br>
<br>
<h3 align="center">Discover GURU Network</h3>
<div align="center">A Multi-faceted growth hacker for indie projects, ftm.guru provides numerous Tools, Services and niche utility-applications to users and bespoke product customization, liquidity enhancement and data analytics products to De-Fi innovators. The Guru Network has something to offer for everyone.
<br><br>
<button class="cybr-btn" onclick="window.location='manifesto.html'">
<span aria-hidden> R34D M4N1F3570</span>
<span aria-hidden class="cybr-btn__glitch">Read Manifesto</span>
<span aria-hidden class="cybr-btn__tag">1337</span>
</button>
</div>
<br><br>
<div align="center" onclick="alert('IPFS version unavailable right now. Please check back later')">[<u>This page is here for historical reasons and may not include information about our latest products.</u>]<br><i>We're switching to IPFS for modern version.</i>
</div>
<h4 align="center" id="othersites"><a href="#subsidiaries">Looking for other Guru Network sites?</a><br>
<a href="https://ftm.guru" target="_blank"><img src="https://ftm.guru/icons/64.png"></a>
<a href="https://fmc.guru" target="_blank"><img src="https://ftm.guru/icons/FMC.svg"></a>
<a href="https://kcc.guru" target="_blank"><img src="https://ftm.guru/icons/kucino.svg"></a>
<a href="https://mtv.guru" target="_blank"><img src="https://ftm.guru/icons/mtvguru.png"></a>
<a href="https://ech.guru" target="_blank"><img src="https://ftm.guru/icons/echguru.png"></a>
</h4>
<!--
<h3><a href="https://fmc.guru" target="_blank">FMC.Guru</a> | <a href="https://kcc.guru" target="_blank">KCC.Guru</a> | <a href="https://mtv.guru" target="_blank">MTV.Guru</a> | <a href="https://ech.guru" target="_blank">ECH.Guru</a></h3>
-->
<br><br>
<div class="mainstages" align="center">
<div class="mainstage advert">
<a href="solidly/index.html"><div><b><span style="font-size:1.3em">🔵 Solidly Extended</span></b><br><br>
<b>BaseV1Router02</b> brings the exotica back to the Solidly Decentralized Exchange by implementing support for bleeding-edge tokenomics like Fee-on-Transfers, Rebase/Debase tokens & Self-compounders.<br><br>
<button class="c2a">Get Swapping</button><br>
<button class="c2a">Learn More</button></div></a>
</div>
<div class="mainstage advert">
<a href="GRAIN/index.html"><div><b><span style="font-size:1.3em">🌾Granaries🌾</span></b><br><br>
<b>Kompound Protocol</b> employs workers that work the "Granaries" planted on the highest yielding Farms of Fantom Opera, using a monolithic contract which acts as a vault+strat, and removes the rugBySwitchingStrategy vulnerabilities that most other compounders have. It incentivise users to press the "compound it" button, pay them 1% of the harvest.!<br><br>
<button class="c2a">Work @ Granary</button></div></a>
</div>
<div class="mainstage advert">
<a href="LF/index.html"><div><b><span style="font-size:1.3em">👽Farmlands</span></b><br><br>
<b>[LITE] Farmlands</b> enable any user to start their own farms and set their own conditions, including the Farmed asset, the Reward asset, the Duration and the Annual Percentage Returns. Active since June of 2021, our platform has amassed hundreds of thousands $ in TVL! Join our Farm-Maker program today to create your own Field on our Farmland!<br><br>
<!--<i>The upcoming version will make this process permissionless and be integrated with our IPFS-based user-interface.</i>-->
<button class="c2a">Explore Yield platforms</button></div></a>
</div>
<div class="mainstage advert">
<a href="https://fmc.guru" target="_blank"><div><b><span style="font-size:1.3em">FantomMarketCap</span></b><br><br>
<b>FMC.guru</b> is a data aggregator for Fantom Opera Blockchain. It provides a bird-eye view of the top and vetted projects running atop FTM. It is open to all users and includes vital information such as official links, contract addresses, social channels and categorical tags. FantomMarketCap brings us essential market data like Token Prices, Market Cap, Supply figures and other essential metrics.<br><br>
<button class="c2a">Explore FMC.guru</button></div></a>
</div>
<div class="mainstage">
<a href="pair.html"><div><b><span style="font-size:1.3em">Multi-DEX Pair Explorer</span></b><br><br>
Find out the latest movements in pools and liquidity depths and constituents of any AMM pair!
<div>
<br><input id="st" placeholder="Enter Pair Contract"><br><button style="font-size:1.5em;border-radius:50%" onclick="prefind(st.value)">▶</button>
<br><span id="lo"></span>
</div>
<br>FTM.guru's Pair Explorer can be used with Shiba, Elk, Zoo, Spooky, Spirit, Sushi, HyperJump, Waka, Cyber, Paint, Bomb, Jet, Soul, Totem, Nugget, Empire, Wraith, DMM and more!</div></a>
</div>
<div class="mainstage">
<a href="fantomscan.html"><div><b><span style="font-size:1.3em">FantomScan</span></b><br><br>
<i>(May 2021)<br><br> We know that FTMScan is not in the best shape right now and fellow Fanties need an alternative tool to track their Fantom Opera interactions in real-time.</i><br><br>
<u><b>Introducing —FantomScan.</b></u><br>
Find out anyone's FTM balance, Token Balances, View Token Allowances, find out the status of a Transaction, Check gas prices, estimate transaction costs and more useful data!</div></a>
</div>
<div class="mainstage advert">
<a href="yieldstate"><div><b><span style="font-size:1.3em">YieldState</span></b><br><br>
<b>YieldState</b> presents the "Core" liquidity providers of ELITE the opportunity to generate a passive yield on top of the AMM volumetric returns.<br><br>
Stake ELITE-paired LP tokens in the YieldState to boost your Liquidity APYs using Spooky/Sushi.<br><br>
<button class="c2a">Enter YieldState</button></div></a>
</div>
<div class="mainstage">
<a href="apelist"><div><b><span style="font-size:1.3em">Ape List</span></b><br><br>
<b>The Ape List</b> scans the Fantom Opera for latest markets created on its DEXes and brings the Elites an overview of the most recent Tokens created.<br><br>Essentially a Coal field studded with rare Diamonds, The Ape-List brings a plateful of opportunities and risks alike!<br><br>
<button class="c2a">Explore Top-6 Dexes</button></div></a>
</div>
<div class="mainstage">
<a href="airdrop.html"><div><b><span style="font-size:1.3em">The Airdropper</span></b><br><br>
<b>The Airdropper</b> tool can help you to distribute Tokens effortlessly and within 2-seconds, thanks to the Faassst speed of Fantom Opera.<br><br>All tokens are supported, including fee-on-Transfer, reflective, rebasing, baby, auto-LP, etc. other exotic De-Fi tokenomic assets.<br><br>
<button class="c2a">Airdropper</button></div></a>
</div>
<div class="mainstage">
<a href="approver"><div><b><span style="font-size:1.3em">The Approver</span></b><br><br>
<b>The Approver</b> tool enables everyone to create allowance, edit or modify spending limits, grant infinite permissions or Revoke any of these easily.<br><br>Two intuitive functions, "Soft Approve" and "Hard Approve" make editing allowances on Smart Contracts a lot quicker and comfortable, even for Mobile users.<br><br>
<button class="c2a">Approval Tool</button></div></a>
</div>
<div class="mainstage">
<a href="elite"><div><b><span style="font-size:1.3em">ELITE Token</span></b><br><br>
<b>The ELITE</b> Token is the access pass for ftm.guru's premium services.<br><br>A concept called "Eliteness" dictates elibility to use some of our decentralized apps. Holding ELITE unlocks our tiered services and grants holders exciting perks with our partner-platforms as well.<br><br>
ELITE token has a highly limited supply of 250 tokens and is an extremely scrace resource.<br><br>
<button class="c2a">Explore ELITE</button><br></div></a>
</div>
<div class="mainstage advert">
<a href="xelite"><div><b><span style="font-size:1.3em">The XELITE</span></b><br><br>
<b>The xELITE</b> is an interest-bearing, over-collateralized form of ELITE. In contrast, it is abundant in fungibility and yet envelopes all the qualities of its underlying.<br><br> XELITE introduces a novel approach that enables a unique kind of Yield farming - "Parallel Farming", enabling a single asset to participate in multiple yield farming opportunities together at once.<br><br>
<button class="c2a">Mint XELITE</button></div></a>
</div>
<div class="mainstage">
<a href="rawdata/tvl"><div><b><span style="font-size:1.3em">Universal TVL Finder</span></b><br><br>
We have deployed a Smart Contract that calculates instantaneous TVL (via on-chain calls) & per-block TVL (via web3 calls) of any Decentralized Finance platform. The ftm.guru platform, taking in consideration its huge collection of on-chain Stores of Value, uses this Smart Contract across its products.<br><br>The Universal TVL Finder can work with any Protocol, Project or EVM-like blockchain.<br><br>
<button class="c2a">Fork Contract</button></div></a>
</div>
<div class="mainstage">
<a href="bo/index.html"><div><b><span style="font-size:1.3em">FTMUSD Binary Options</span></b><br><br>
<b>B.O.</b> is the First Binary Options platform on Fantom Opera.<br><br>A perpetual Prediction Market enabled by Band Protocol. Current Markets include FTM/USD with contract expiries of 13hrs.37mins.<br><br>Another FTMUSD and an ETHBTC market with a 75hr expiry is releasing early January.<br><br>
Currently in pre-alpha! (v0.3.3) <br><br>
<button class="c2a">Go Long/Short on FTM</button></div></a>
</div>
<div class="mainstage">
<a href="treasury/index.html"><div><b><span style="font-size:1.3em">Our Treasury</span></b><br><br>
<b>Guru Network's Multi-Chain Treasury</b> stores diversified assets and Protocol Owned Liquidity.<br><br>Our Treasury also collects Governance Rights at thr prominent DeFi platforms of Fantom, including SpookySwap, Beethoven-x, Solidly and more!<br><br>
<button class="c2a">Visit Treasury</button></div></a>
</div>
<div class="mainstage">
<a href="solidly/sellid/index.html"><div><b><span style="font-size:1.3em">S-el-LID</span></b><br><br>
<b>Sellid, a.k.a. soELITE</b> is our in-house program that gives sellers a price quote for their veNFTs. We purchase vote-escrowed SOLID tokens that're locked for 4 years, in an initiative to bring liquidity to NFTs!<br><br>
<button class="c2a">Get a Quote</button></div></a>
</div>
<div class="mainstage">
<a href="solidly/analytics/vlsex.html"><div><b><span style="font-size:1.3em">Solidex Voter Tracker</span></b><br><br>
Our <b>vlSEX Voter-Tracker</b> aims to bring transparency and provide tools for analysis of voter behaviour by tracking their voting trends.<br><br>It can be used to explore statistics for any Solidly Gauge!<br><br>
<button class="c2a">Explore vlSEX Votes</button></div></a>
</div>
<div class="mainstage">
<a href="solidly/bribes/vlsex.html"><div><b><span style="font-size:1.3em">Solidex Bribe Tracker</span></b><br><br>
Our <b>Bribe-Tracker</b> provides a historical overview of bribes distributed to vlSEX voters of Solidex who voted in favor of ELITE pools.<br><br>This tool is extensible on-demand for any other project that aims to bribe Solidex voters.<br><br>
<button class="c2a">Track Bribes</button></div></a>
</div>
<div class="mainstage">
<a href="solidly/votes/vloxd.html"><div><b><span style="font-size:1.3em">vlOXD Vote Tracking</span></b><br><br>
The <b>real-time vlOXD vote</b> tracking enables everyone to see an overview of how the 0xDAO protocol's internal consensus about the "TopVote" pools elected by the members of this DAO. Its also beneficial to external projects for bribing and earning votes via a streamlined UI.<br><br>
<button class="c2a">Unravel 0xD Consensus</button></div></a>
</div>
<div class="mainstage">
<a href="casino.html"><div><b><span style="font-size:1.3em">deGAM: Degen Gambling</span></b><br><br>
<b>deGAM</b> was the first ever gambling dApp on Fantom Opera from early 2021. It's games continue to be enjoyed by hundreds of players even today, thanks to its seamless integration to Telegram & Discord bots. Speciality of this casino is that it accepts bets from both off-chain & on-chain mediums but always settles funds in real-time <b>On-Chain</b>, a featured showcase of the superfast abilities of Fantom Opera. It is the fore-father of the Kucino Casino, which now offers more than 10 gaming titles!<br><br>
<button class="c2a">Enter Casino</button></div></a>
</div>
<div class="mainstage">
<a href="rpc.html"><div><b><span style="font-size:1.3em">Fantom RPC Switch</span></b><br><br>
<b>The RPC Switch</b> is a nifty tool for selecting the best and verified Rapid Procedure Call Uniform Resource Location as your Web3 provider for interacting with the Fantom Opera's Ethereum virtual Machine.<br><br> Choose the best endpoint by analysing its Latency and Block height.<br><br>Find RPC rankings in real-time.<br><br>
<button class="c2a">Switch your RPC</button></div></a>
</div>
<div class="mainstage">
<a href="nftdrop"><div><b><span style="font-size:1.3em">NFT Airdrop Tool</span></b><br><br>
Want to send NFTs as an airdrop to your loyal supporters or simply distribute your creative Non-Fungible tokens to a wider audience? Bulk send ERC-721 NFT tokens to multiple addresses in a single transaction with the ELITE Distributor. Say Goodbye to the hassle of manually sending NFTs one by one. Upload <u>upto 150 Fantom Opera addresses</u> at a time and spread NFTs by custom TokenIDs to your patrons!<br><br>
<button class="c2a">Send NFTs</button></div></a>
</div>
<div class="mainstage">
<a href="https://ech.guru/dexch"><div><b><span style="font-size:1.3em">DEXCH</span></b><br><br>
Dexchelon, or Dexch, is the first and Native DEX Aggregator on Echelon Chain. It utilizes JIT-routing that was pioneered by Kompound's 100% Capital Efficient Granaries in a First to provide traders with the best value for their ECH-USDC trading needs. Design is inspired by Solidly and the Original 1inch prototype.<br><br>
<button class="c2a">Trade ECH-USDC</button></div></a>
</div>
<div class="mainstage">
<a href="https://vax.mtv.guru"><div><b><span style="font-size:1.3em">Value Added eXchage</span></b><br><br>
Value Added eXchage (aka, The VAX) is a Swapr-inspired DEX on the MultiVAC chain that features governable-fee pairs. It leverages the targetted fee-slots of UniswapV3 to enable efficient trading on Stablecoins with low-slippage, standard 0.3% on Blue-chips and 1% default-fee on exotic tokens.<br><br>
<button class="c2a">Get VAX'd</button></div></a>
</div>
<div class="mainstage">
<a href="treasury"><div><b><span style="font-size:1.3em">ELITENESS.eth</span></b><br><br>
In an effort to become self-sufficient and sustainable in the long term, we have started building a Multi-chain treasury with strategic investments and necessary runway. Acquiring Governance rights at Top DeFi protocols is a key aspect of our web3 portfolio.<br><br>
<button class="c2a">Count treasures</button></div></a>
</div>
<div class="mainstage">
<a href="solidly/oxdao/delegate"><div><b><span style="font-size:1.3em">vlOXD Delegation</span></b><br><br>
We bribe all vlOXD voters for giving the Guru Network DAO their voting powers in return of weekly rewards airdropped directly to their wallets. We then utilize these delegated voting rights to direct Solidly emissions to the pools we deem most important.<br><br>
<button class="c2a">Delegate Votes</button></div></a>
</div>
<!--<div class="mainstage">
<a href="delite.html"><div><h3>dELITE : Dark ELITE</h3>
Introducing: The Dark Elites - A special token backed 1:1 by FTM.
<br><br>
<b>What can dELITE do?</b><br>
Dark Elite are psuedonomous tokens, that break free from today's greater chain-analysis tools. dELITE are harder to trace than other regular cryprocurrency tokens using simple block-explorers, masking your Fantom transactions away from prying normies. <b>Learn more.</b></div></a>
</div>-->
</div>
<br>
<br>
<br>
<br>
<div class="mainpanels">
<div class="mainpanel" align="center">
<br>
<br>
<br>
<span style="font-size:1.3em">[FTM Tools & Analytics]</span><br>
<a href="https://t.me/FTM1337"><img width="256px" src="img/ftm1337.jpg"></a>
<br><br>Discover the shiniest of Gems from the Fantom Opera blockchain and ease your research efforts with FTM.guru<br><br>
<div align="center" class="hovli">
<h2>The Road so far..</h2>
<h3>Fantom Utilities by FTM.guru</h3>
<ul style="text-align:left;padding-left:25%">
<li><a href=".">Hot FTM Tokens (On-chain voting)</a></li>
<li><a href="pair.html">Multi-DEX Pair Explorer</a></li>
<li><a href="fantomscan.html">FantomScan</a></li>
<li><a href="fantomscan.html">Token Spending & Allowance Checker</a></li>
<li><a href="pair.html">A.M.M. Depth Monitor</a></li>
<li><a href="fantomscan.html">Pending Transaction Finder</a></li>
<li><a href="fantomscan.html">Live Gas Prices</a></li>
<li><a href="fantomscan.html">Transaction Cost Estimator</a></li>
<li><a href="fmc.html">FantomMarketCap (FMC.guru)</a></li>
<li><a href="yieldstate/index.html">ELITE Farms (YieldState)</a></li>
<li><a href="pair.html">Pool Explorer</a></li>
<li><a href="approver.html">Allowance Revoker Tool</a></li>
<li><a href="LF/1.html">LITE Farmlands👽</a></li>
<li><a href="casino.html">Casino & Games</a></li>
<li><a href="airdrop.html">Airdrop Tool</a></li>
<li><a href="bo/index.html">Binary Options Platform</a></li>
<li><a href="xelite.html">Earn interest on ELITE</a></li>
<li><a href="GRAIN/index.html">The Granary: Vault Workers</a></li>
<li><a href="https://app.beets.fi/#/pool/0xe402555efa3b232ee8bc4c79a446b47b38b93ebf00010000000000000000007e">eNFT : Index-Funds-as-a-NFT</a></li>
<li><a href="nftdrop.html">NFT Airdrop Tool</a></li>
<li><a href="solidly/index.html">Solidly: Fee-on-Transfer Tokens</a></li>
</ul>
<h3>Coming Soon…</h3>
<ul style="text-align:left;padding-left:25%">
<li>Token Locker Service</li>
<li>Elite DEX Aggregator</li>
<li>E.L.I.T.E. D.A.O.</li>
<li>Token Liquidity Finder</li>
<li>Pending Txn. Cancellations</li>
<li>Permissonless Farmlands👽</li>
</ul>
...and much more!
</div>
<br><br>
</div>
<div class="mainpanel" align="center">
<br>
<br>
<b><span style="font-size:1.3em">Top 10 Fantom Gems</span></b><br>
(Votes etched on Fantom blockchain)<br>
Unvetted & Not Financial Advice
<div id="mvg">
</div>
<br><br>
<!--
You hold <span id="eb">?</span> ELITE.<br>
Total Ownership : <span id="ebop">?</span>%<br>
Net Worth: <span id="ebnw">?</span> FTM.<br><br>
-->
</div>
</div>
<div class="mainpanel" style="display:block;">
<div class="mainpanels" style="display:block;width:calc(max(80%,255px));margin:auto">
<div id="votingmvg" style="padding: 10px" align="center">
<button style="font-size: 1.5em" id="cw" onclick="cw()">Connect Wallet</button><br>
<br><b>Vote for your fave tokens now!</b><br><br>
<input id="mvgcandidate" placeholder=" FTM Contract address"><br>
<button id="votemvg" onclick="mvgCV()"> ▶</button><br><br>
<span id="mvgmsg"></span><br>
<hr><br>
<i>Voting consumes .oo1337 ELITE tokens, which are burned subsequently.</i>
<br><br>
Brief explainer:
<div class="olsa">
<div class="ols"></div>
<div class="ols">
<ol style="text-align:left;">
<li>Input the contract address of your preferred token.</li>
<li>Approve <b>EliteVoting</b> contract to spend your ELITE.</li>
<li>Sign the Voting transaction in your Metamask wallet.</li>
</ol>
</div>
<div class="ols"></div>
</div>
<i>Voting pushes the Voted Token to the top of the Elite list.</i>
</div>
</div>
<br>
<br>
</div>
<br>
<br>
<br>
<br>
<h2 align="center">Gam(bl)ing Department 🎰</h2>
<br>
<br>
<div class="mainstages" align="center">
<div class="mainstage">
<a href="casino.html"><div><b><span style="font-size:1.3em">El Casino: <b>De</b>gen <b>Gam</b>es</span></b><br><br>
<b>The DeGam Casino</b> offers two simple games to triple your FTM coins. This 3-player indulgence selects a random winner from the three participants and rewards them with 3x their deposit.<br><br>This game is available on Telegram too using the @Fantom_Tip_bot to place the wagers, being the First-of-its-Kind on Fantom Opera.<br><br>While playing this game of chance, don't forget to wear your lucky socks!<br><br>
<button class="c2a">Hit the Casino</button></div></a>
</div>
<div class="mainstage">
<a href="https://kcc.guru" target="_blank"><div><b><span style="font-size:1.3em">KUCINO on Kucoin Chain</span></b><br><br>
<b>The Kucino Project</b> is the development arm of the DeGam and runs autonomously, independent of the ftm.guru project. It is part of the Guru Network that spans multiple chains.<br><br>The KUCINO are the in-game "chips" for accessing the Kucino Casino. On the tokenomics front, holders of KUCINO earn both KCS & KUCINO everyday due a sophisticated De-Fi strategy.<br><br>
<button class="c2a">🎰 Check it out!</button></div></a>
</div></a>
</div>
</div>
<div class="mainstage" align="center" style="font-size:1.2em;padding:0">
<div class="mte uo" align="center">
<br>
<b><span style="font-size:1.25em;">DeGam Casino x Kucino Casino</span>
<br>
<i>Decentralizd gaming platform on Fantom Opera & Kucoin Chain.</i><br>
<br>Fair & Secure
<br>100% Decentralized
<br>10+ innovative Games
<br>Played 1000s of Times
<br>Round-the-Clock, 1440x365
<br>Full On-chain Game History
<br>Real-Time Leaderboard
</b>
<br><br>
</div><!--
<a href="cointoss_1.html"><div class="tile et">
<div style="font-size:2em;color:"><i>Single-Player CoinToss,<b> Double or Nothing!</b></i></div>
<div style="font-size:1.25em;color:">Stake 0.01 KCS to our Smart Contract and get back 2x 0.01 = 0.02 KCS on winning! Be careful, a coin has two sides!<br><i>(Pot Limit : 0.02 KCS)</i></div>
</div></a>
<a href="jackpot_1.html"><div class="tile ot">
<div style="font-size:2em;color:"><i>2-player Jackpot,<b> Doubles your KCS!</b></i></div>
<div style="font-size:1.25em;color:">Bet against a friend or a random online player, one-on-one, for a chance to beat your opponent and Double your bet! <br><i>(Pot Limit : 0.11 KCS)</i></div>
</div></a>
<a href="instalotto.html"><div class="tile et">
<div style="font-size:2em;color:"><i>The instaLOTTO, <b>on-demand winners!</b></i></div>
<div style="font-size:1.25em;color:">A competetive game of Lotto where any number of players can buy unlimited tickets for just 0.01 KCS. Winning ticket is drawn on-demand: totally permissionless, and the winner takes home the entire Raise!
<br><i>(Pot Limit : Unlimited)</i></div>
</div></a>
<a href="21hrlotto.html"><div class="tile ot">
<div style="font-size:2em;color:"><i>21-hour Lotto, <b>Win KCS everyday!</b></i></div>
<div style="font-size:1.25em;color:">This special Daily can be contested by purchaing an entry ticket for 0.01 KCS. Winning ticket can be drawn only after a minimum of 21hrs being elapsesd after the first entry. Permissionles, decentralized and even smart contracts can play it as a yield strategy!
<br><i>(Pot Limit: 777 KCS)</i></div>
</div></a>-->
<br>
<div>
<div class="oc">
<div class="container">
<div class="card" onclick="window.location='https://ftm.guru/coinflip_1.html'">
<h3 class="title">FTM Coin-Flip</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">.1 FTM</span><br><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">.2 FTM</span>
<br><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://ftm.guru/degam.html'">
<h3 class="title">Mini Jackpot</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">1.337 FTM</span><br><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">4.011 FTM</span>
<br><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://ftm.guru/coinflip_1.html'">
<h3 class="title">Micro Jackpot</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">.1337 FTM</span><br><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">.4011 FTM</span>
<br><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://kcc.guru/jackpot_1.html'">
<h3 class="title">PvP Jackpot</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">.01 KCS</span><br><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">.02 KCS</span>
<br><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://kcc.guru/instalotto.html'">
<h3 class="title">instaLOTTO</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">.01 KCS</span><br><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">∞x KCS*</span>
<br><i>*No Limits</i><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://kcc.guru/casino'">
<h3 class="title">21-hour Lotto</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">.01 KCS</span><br><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">∞x KCS*</span>
<br><i>*No Limits</i><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://kcc.guru/cointoss_1.html'">
<h3 class="title">KCS Coin-Flip</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">.01 KCS</span><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">.02 KCS</span>
<br><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://kcc.guru/cointoss_2.html'">
<h3 class="title">1000 KUD Flipper</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">1000 KUD</span><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">2000 KUD</span>
<br><br><br>
</div>
</div>
<div class="card" onclick="window.location='https://kcc.guru/cointoss_3.html'">
<h3 class="title">The TIKU-Toss</h3>
<div class="bar">
<div class="emptybar"></div>
<div class="filledbar"></div>
</div>
<div>
<svg class="circle" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="stroke" cx="20" cy="20" r="10"/>
</svg>
<span style="font-size:">BET</span><br>
<span style="font-size:1.5em">3000 TIKU</span><br>
<span style="font-size:">EARN</span><br>
<span style="font-size:1.5em">6000 TIKU</span>
<br><br><br>
</div>
</div>
</div>
</div>
<div class="maincards">
<a href="cointoss_1.html">
<div class="maincard">
<span style="font-size:1.5em"><span class="gmul">2x</span> FTM Coin-Flip</span>
<hr>
<i>Classic Heads or Tails: Win 2x!<br>
Single-player & non-stop.<br>
Min. bet = o.1 FTM</i>
</div>
</a>
<a href="degam.html">
<div class="maincard">
<span style="font-size:1.5em"><span class="gmul">3x</span> Mini Jackpot</span>
<hr>
<i>Enter Jackpot, win 4 FTM!<br>
Played against 2 opponents.<br>
Min. bet = 1.337 FTM</i>
</div>
</a>
<a href="degam.html">
<div class="maincard">
<span style="font-size:1.5em"><span class="gmul">3x</span> Micro Jackpot</span>
<hr>
<i>Enter Jackpot, win .4 FTM!<br>
Played against 2 opponents.<br>
Min. bet = o.1337 FTM</i>
</div>
</a>
</div>
</div>
<br>
<div class="mte uo" align="center">
<br>
<i>More Games under active development!</i>
<br>
<br>
<div style="font-size:1.25em"><a href="https://kcc.guru/casino.html">Explore all titles ↗</a></div>
<br>
</div>
</div>
<br>
<br>
<br>
<br>
<div align="center" onclick="pantvl()">
<span style="font-size:13.37vw;font-weight:bold;color:aqua;text-shadow:2px 2px 5px gold" id="pantvl" class="fore"></span><sup style="font-size:1.2em;position:relative;top: -14px;">⟳</sup>
<h2>Total Value Locked</h2>
Across all <b>ftm.guru</b> Contracts
</div>
<br>
<br>
<hr>
<br>
<!--
<div align="center">
<h2>Trade ELITE with Aggregator</h2>
Select "Fantom" & Connect Wallet
<br>
<br><style>css-zkfaav{display: none !important;}</style>
<iframe id="tek" class="mainstage" src="https://kyberswap.com/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882&exactAmount=100&exactField=input&theme=dark" style="margin: 0 auto; display: block; border-radius: 20px;">
</iframe>
<br>
<br>
</div>
<hr>
<br>
<br>
<br>
-->
<div align="center" class="partners" style="">
<br><br>
<h2>Official Parnters and Associates</h2>
<br>
<h3>Public Data</h3>
<div>
<a href="https://fmc.guru" target="_blank"><img src="https://ftm.guru/icons/FMC.svg"></a>
<a href="https://coinmarketcap.com/currencies/elite-1337" target="_blank"><img src="https://ftm.guru/icons/cmc.svg"></a>
<a href="https://www.coingecko.com/en/coins/elite-1337" target="_blank"><img src="https://ftm.guru/icons/gecko.svg"></a>
<a href="https://defillama.com/protocol/ftmguru" target="_blank"><img src="https://ftm.guru/icons/defillama.svg"></a>
<a href="https://nomics.com/assets/elite2-ftmguru" target="_blank"><img src="https://ftm.guru/icons/nomics.svg"></a>
<a href="https://debank.com/profile/0x167d87a906da361a10061fe42bbe89451c2ee584" target="_blank"><img src="https://ftm.guru/icons/debank.svg"></a>
<a href="https://messari.io/asset/ftm-guru" target="_blank"><img src="https://ftm.guru/icons/messari.svg"></a>
</div>
<br><br><br><br>
<h3>Decentralized Echanges</h3>
All DEXes have Officially Whitelisted ftm.guru tokens!<br>(Mentioned in chronological order)
<br><br>
<div>
<a target="_blank" href="https://trade.zoocoin.cash/trade/market?inputCurrency=FTM&outputCurrency=0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882"><img src="https://ftm.guru/icons/zoo.png"></a>
<a target="_blank" href="https://app.elk.finance/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882"><img src="https://ftm.guru/icons/elk.svg"></a>
<a target="_blank" href="https://spookyswap.finance/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882"><img src="https://ftm.guru/icons/spooky.sq.svg"></a>
<a target="_blank" href="https://swap.shibafantom.finance/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882"><img src="https://ftm.guru/icons/shiba.sq.svg"></a>
<a target="_blank" href="https://exchange.nipplelabs.finance/#/swap?outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882"><img src="https://ftm.guru/icons/nips.svg"></a>
<a target="_blank" href="https://wraithswap.finance/add/FTM/0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882"><img src="https://ftm.guru/icons/wraith.svg"></a>
<a target="_blank" href="https://kyberswap.com/#/swap?inputCurrency=FTM&outputCurrency=0xf43cc235e686d7bc513f53fbffb61f760c3a1882&networkId=250"><img src="https://ftm.guru/icons/kyber.svg"></a>