-
Notifications
You must be signed in to change notification settings - Fork 8
/
institution.html
1175 lines (1175 loc) · 104 KB
/
institution.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><!-- This site was created in Webflow. http://www.webflow.com -->
<!-- Last Published: Thu Feb 24 2022 18:14:47 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="619edc323bd61bbaeed0a2af" data-wf-site="60d237b6ea65be721ff4bbfa">
<head>
<meta charset="utf-8">
<title>Index Coop | Institutional Business | Index & Structured Products</title>
<meta content="Index Coop is a leading decentralized crypto asset manager in DeFi developing index and structured products that provide passive exposure to crypto investment themes." name="description">
<meta content="Index Coop | Institutional Business | Index & Structured Products" property="og:title">
<meta content="Index Coop is a leading decentralized crypto asset manager in DeFi developing index and structured products that provide passive exposure to crypto investment themes." property="og:description">
<meta content="Index Coop | Institutional Business | Index & Structured Products" property="twitter:title">
<meta content="Index Coop is a leading decentralized crypto asset manager in DeFi developing index and structured products that provide passive exposure to crypto investment themes." property="twitter:description">
<meta property="og:type" content="website">
<meta content="summary_large_image" name="twitter:card">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="YYE_SNX1HR3VztC6qDT8L01JTKn6CPjruKjP8jIp0YY" name="google-site-verification">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/homepage-22c36f.webflow.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["IBM Plex Sans:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic:cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese","IBM Plex Mono:regular,500,600"] }});</script>
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.ico" rel="apple-touch-icon">
<link href="https://indexcoop.com/institution" rel="canonical"><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WNPZF4R');</script>
<!-- End Google Tag Manager -->
<style>
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mainnavbar {
backdrop-filter: blur(5px);
}
.no-scroll {
overflow:hidden;
}
input.inputfield::placeholder,
textarea.inputfield::placeholder{
opacity: 0%;
}
/* Light Mode Styles */
/* Global Light Mode */
/* Dark Mode Styles */
/* Global Dark Mode */
#content.dark-mode .close-text {
color: #F7F6F2;
}
#content.dark-mode .bar-container {
border: 1px solid #F7F6F2;
}
#content.dark-mode .notice-text {
color: #F7F6F2;
}
#content.dark-mode .nav-link {
color: #F7F6F2;
}
#content.dark-mode .nav-link:hover {
border-bottom: 2px solid #F7F6F2;
}
#content.dark-mode{
background-color: #0F0E0B;
color: #F7F6F2;
}
#content.dark-mode a.bloglink {
color: #F7F6F2;
}
#content.dark-mode .accordion_header, #content.dark-mode .allparagraph2 {
color: #F7F1E4;
}
#content.dark-mode .mainnavbar{
background-color: rgba(15, 14, 11, 0.8);
}
#content.dark-mode .allh1,
#content.dark-mode .allh2,
#content.dark-mode .allh3{
color: #F7F6F2;
}
#content.dark-mode a {
color: #B9B6FC;
}
#content.dark-mode .gray_bg{
background-color: #1D1B16;
}
#content.dark-mode .app-button {
border: 2px solid #fff;
background-color: transparent;
color: #F7F6F2;
}
#content.dark-mode .app-button:hover {
background-color: #F7F6F2;
color: #000000;
}
#content.dark-mode .menu_title .menu_gov{
color: #F7F6F2;
}
#content.dark-mode .menu_titlecont{
border-bottom: 2px solid #F7F6F2;
}
/*#content.dark-mode .language_icon.black{
display: none;
}
#content.dark-mode .language_icon.white{
display: block;
}*/
#content.dark-mode .toggle-theme2{
display: none;
}
#content.dark-mode .togglethemefooter {
display: block;
}
#content.dark-mode .heroline {
border-top: 3px solid #F7F6F2;
}
#content.dark-mode .index_logo path {
fill: #F7F6F2;
}
#content.dark-mode .dropdown-text:hover {
border-bottom: 1px solid #F7F6F2;
}
#content.dark-mode .dropdown-list-2.w-dropdown-list.w--open {
background: rgba(15, 14, 11, 0.95);
border: 1px solid rgba(247, 246, 242, 0.12);
}
#content.dark-mode .eco-grid {
background-color: #0F0E0B;
}
#content.dark-mode .investors_icons {
filter: invert();
}
#content.dark-mode .accordion_maincontainer.trigger {
border-bottom: 1px solid #F7F6F2;
border-top: 1px solid #F7F6F2;
}
#content.dark-mode .prod_subtitle {
color: #F7F6F2;
}
#content.dark-mode a.dropdown-text {
color: #F7F6F2;
background: rgb(15, 14, 11, 0.8);
}
#content.dark-mode .view_link {
color: #B9B6FC;
}
#content.dark-mode a.footitem.footlink {
color: #F7F6F2;
}
@media only screen and (max-width: 991px){
#content.dark-mode .nav-menu-2{
background-color: #0F0E0B;
}
#content.dark-mode .close,
#content.dark-mode .menu,
#content.dark-mode .menu_prods a,
#content.dark-mode .menu_gov a{
color: #F7F6F2;
}
#content.dark-mode .stickytoggles {
filter: invert();
}
}
/* Home Page */
#content.dark-mode .slider_description {
color: #F7F6F2;
}
#content.dark-mode .w-slider-dot.w-active {
background-color: #327EE8;
}
#content.dark-mode .prodh3,
#content.dark-mode .listtextblock,
#content.dark-mode .grid_heading{
color: #F7F6F2;
}
#content.dark-mode .listico._3rd path,
#content.dark-mode .listico._3rd circle {
stroke: #B9B6FC;
}
#content.dark-mode .listico._2nd path,
#content.dark-mode .listico._2nd circle {
stroke: #699BF7;
}
#content.dark-mode .listico._3rdtrinity path {
fill: #B9B6FC;
}
#content.dark-mode .listico.lightmode {
display: none;
}
#content.dark-mode .listico.darkmode {
display: block;
}
#content.dark-mode a.social_box.w-button {
color: #0F0E0B;
}
/* About Page */
#content.dark-mode .dark_mode_tria {
display: block;
}
#content.dark-mode .lightmode_triangle {
display: none;
}
#content.dark-mode .social_box.aboutpage {
color: #00b9ff;
}
#content.dark-mode .social_box.discord.aboutpage {
color: #7289da;
}
#content.dark-mode .trinity_svg.darkmode {
display: block;
}
#content.dark-mode .trinity_svg.lightmode {
display: none;
}
/* Partners Page */
#content.dark-mode img.ecoprodimg.indexcoop {
filter:invert();
}
/* Institutions Page */
input[type="text"].inputfield::-webkit-input-placeholder {
color: #737373;
}
#content.dark-mode .sub_h2,
#content.dark-mode .eventtable_header,
#content.dark-mode .fieldtitle {
color: #F7F6F2;
}
#content.dark-mode .event_line {
border-top: 3px solid #F7F6F2;
}
#content.dark-mode .inputfield{
background: rgba(221, 221, 221, 0.12);
border: none;
border-bottom: 3px solid #ffff;
font-family: 'IBM Plex Sans', sans-serif;
font-size: 19px;
font-weight: 700;
}
#content.dark-mode .inputfield:hover {
border-style: none none solid;
border-width: 1px 1px 3px;
border-color: #000 #000 #327ee8;
background-color: rgba(50, 121, 232, 0.13);
}
#content.dark-mode .inputfield:focus {
border-style: none none solid;
border-width: 0px 0px 3px;
border-color: #000 #000 #fabf00;
background-color: rgba(250, 191, 0, 0.09);
}
#content.dark-mode .inputfield{
color: #F7F6F2;
}
@media only screen and (max-width: 991px){
input.inputfield::placeholder,
textarea.inputfield::placeholder{
color: #rgba(0, 0, 0, 0.5) !important;
opacity: 100%;
}
#content.dark-mode input.inputfield::placeholder,
#content.dark-mode textarea.inputfield::placeholder{
color: rgba(247, 246, 242, 0.5) !important;
opacity: 100%;
}
}
/* Methodologist Page */
#content.dark-mode .link_underline {
color: #B9B6FC;
}
#content.dark-mode .forum_box {
border: 3px solid #F7F6F2;
}
#content.dark-mode .forum_box a {
color: #F7F6F2;
}
#content.dark-mode .steps {
color: #000000;
}
/* Products Pages */
#content.dark-mode .prod_icon.index path {
fill: #F7F6F2;
}
#content.dark-mode .buy-button.buttons {
color: #F7F6F2;
}
#content.dark-mode .sell-button.buttons {
color: #09AA74;
}
#content.dark-mode .token_icon.lightdark {
filter: invert();
}
#content.dark-mode .dpi-formula {
filter: invert();
}
#content.dark-mode .bg-grey.lightdark,
#content.dark-mode .allparagraph.quote,
#content.dark-mode .allparagraph.quote.fli{
background-color: #0F0E0B;
color: #F7F6F2;
}
/* Contributors Page */
#content.dark-mode .flowchart {
filter: invert();
}
/* StyleGuide Page */
#content.dark-mode .token_textblock {
color: #F7F6F2;
}
#content.dark-mode .index_icon.w-embed path {
filter: invert();
}
</style>
<style>
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: #F7F6F2;
}
::-moz-placeholder { /* Firefox 19+ */
color: #F7F6F2;
}
:-ms-input-placeholder { /* IE 10+ */
color: #F7F6F2;
}
:-moz-placeholder { /* Firefox 18- */
color: #F7F6F2;
}
input::placeholder {
color: #F7F6F2;
}
</style>
</head>
<body>
<div class="goggle-tag-manager w-embed w-iframe">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WNPZF4R" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
</div>
<div id="content" class="light-mode">
<div data-collapse="medium" data-animation="default" data-duration="600" data-easing="ease" data-easing2="ease" data-doc-height="1" role="banner" class="mainnavbar w-nav">
<div class="maincontainer nav w-container">
<a href="index.html" class="brand-2 w-nav-brand">
<div class="index_logo w-embed"><svg width="150%" height="150%" viewbox="0 0 175 40" xmlns="http://www.w3.org/2000/svg">
<path d="M51.6465 2.5434H58.9825V36.7651H51.6465V2.5434Z"></path>
<path d="M78.7042 11.3214C81.6301 11.3214 84.0472 12.2543 85.9554 14.0778C87.8636 15.9013 88.7965 18.9121 88.7965 23.1103V36.7651H81.8845V23.5344C81.8845 19.2089 80.1883 17.0462 76.796 17.0462C75.015 17.0462 73.6156 17.6399 72.6403 18.8697C71.665 20.0571 71.1561 21.7533 71.1561 23.9584V36.8075H64.2441V11.6183H70.2656L70.9017 14.7563C71.7922 13.6962 72.8523 12.848 74.082 12.2543C75.3542 11.6607 76.8808 11.3214 78.7042 11.3214Z"></path>
<path d="M118.351 2.5434V36.7651H112.33L111.651 33.2878C109.743 35.7898 107.114 37.062 103.806 37.062C101.601 37.062 99.6083 36.5531 97.8273 35.4929C96.0463 34.4328 94.6894 32.9062 93.6717 30.9555C92.6964 29.0048 92.1875 26.7149 92.1875 24.1705C92.1875 21.6261 92.6964 19.3786 93.6717 17.4703C94.6894 15.5197 96.0887 13.993 97.8273 12.9753C99.6083 11.9151 101.644 11.3639 103.849 11.3639C107.114 11.3639 109.658 12.5088 111.439 14.7988V2.5434H118.351ZM105.418 31.4219C107.284 31.4219 108.768 30.7859 109.87 29.4713C110.973 28.1143 111.524 26.3756 111.524 24.2553C111.524 22.0502 110.973 20.3115 109.87 18.9546C108.768 17.5976 107.284 16.9615 105.418 16.9615C103.552 16.9615 102.068 17.64 100.923 18.9546C99.8204 20.3115 99.2691 22.0502 99.2691 24.1705C99.2691 26.3332 99.8204 28.0719 100.923 29.3865C102.025 30.7859 103.552 31.4219 105.418 31.4219Z"></path>
<path d="M122.168 24.2521C122.168 21.623 122.677 19.3754 123.737 17.4672C124.797 15.5165 126.281 13.9899 128.189 12.9721C130.098 11.912 132.345 11.3607 134.847 11.3607C137.391 11.3607 139.639 11.8696 141.547 12.8873C143.498 13.8626 145.024 15.262 146.084 17.0855C147.187 18.8666 147.781 20.9869 147.781 23.4464C147.781 24.337 147.696 25.1003 147.569 25.7788H129.292V25.9908C129.462 27.8143 130.055 29.2561 131.073 30.2738C132.091 31.334 133.49 31.8428 135.229 31.8428C136.628 31.8428 137.773 31.546 138.706 30.9523C139.639 30.3162 140.275 29.4257 140.572 28.2807H147.399C147.145 29.9346 146.508 31.4612 145.491 32.7758C144.473 34.0904 143.158 35.1929 141.462 35.9562C139.808 36.7195 137.9 37.1012 135.738 37.1012C132.939 37.1012 130.479 36.5923 128.444 35.5322C126.408 34.472 124.839 32.9878 123.737 31.0795C122.719 29.0864 122.168 26.8389 122.168 24.2521ZM140.953 21.2413C140.741 19.7147 140.105 18.5273 139.045 17.7216C138.027 16.8735 136.755 16.4494 135.186 16.4494C133.702 16.4494 132.43 16.8735 131.37 17.764C130.352 18.6121 129.758 19.7571 129.546 21.2413H140.953Z"></path>
<path d="M157.571 23.9576L148.666 11.6174H156.554L161.769 19.0809L167.112 11.6598H174.491L165.628 24L175 36.8066H167.112L161.345 28.9191L155.621 36.7642H148.242L157.571 23.9576Z"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8031 39.4377C30.7436 39.4377 39.6062 30.6172 39.6062 19.7188C39.6062 8.82047 30.7436 0 19.8031 0C8.86263 0 0 8.82047 0 19.7188C0 30.6172 8.86263 39.4377 19.8031 39.4377ZM19.8031 32.6527C27.8176 32.6527 34.2632 26.207 34.2632 18.277C34.2632 10.3471 27.7752 7.03941 19.8031 7.03941C11.7886 7.03941 5.34302 10.3047 5.34302 18.277C5.30061 26.2494 11.7886 32.6527 19.8031 32.6527Z"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2378 20.614C12.0859 20.614 12.8492 20.2747 13.4429 19.7659C13.7397 20.3172 14.1214 20.9108 14.4606 21.5045C15.2239 22.7767 16.072 24.0913 16.8353 25.0666C17.2169 25.5755 17.641 26.042 18.0226 26.3812C18.3618 26.6781 18.9555 27.1021 19.634 27.1021C20.3125 27.1021 20.9061 26.6781 21.2454 26.3812C21.6694 26.042 22.0935 25.5755 22.4751 25.109C23.2808 24.1337 24.1713 22.8191 24.977 21.5469C25.3586 20.9108 25.7403 20.3172 26.0795 19.7235C26.6732 20.2747 27.4789 20.6564 28.327 20.6564C30.108 20.6564 31.5921 19.2146 31.5921 17.4335C31.5921 15.6525 30.1504 14.2107 28.327 14.2107C26.8852 14.2107 25.6131 15.186 25.2314 16.5006C25.1466 16.6278 25.0618 16.7974 24.977 16.9671C24.4681 17.9 23.7472 19.1298 22.984 20.3596C22.2207 21.5893 21.3726 22.8191 20.6517 23.6672C20.27 24.0913 19.9732 24.4305 19.7188 24.6426C19.6764 24.685 19.634 24.685 19.634 24.7274C19.5916 24.7274 19.5916 24.685 19.5492 24.6426C19.2947 24.4305 18.9979 24.1337 18.6587 23.6672C17.9802 22.7767 17.1745 21.5893 16.4536 20.3596C15.7327 19.1298 15.0543 17.9 14.5454 16.9671C14.4606 16.8399 14.4182 16.7126 14.3758 16.6278C13.9941 15.2284 12.722 14.2107 11.2378 14.2107C9.45682 14.2107 7.97266 15.6525 7.97266 17.4335C7.97266 19.1722 9.41442 20.614 11.2378 20.614Z"></path>
</svg></div>
</a>
<nav role="navigation" class="nav-menu-2 w-nav-menu">
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Products</div>
</div>
<div class="menu_prodscontainer">
<div class="menu_prods">
<a href="defi-pulse-index-dpi.html" class="menu_producttitle">DPI</a>
<div class="menu_productdesc">No 1. DeFi Index</div>
</div>
<div class="menu_prods">
<a href="metaverse-index-mvi.html" class="menu_producttitle">MVI</a>
<div class="menu_productdesc">Welcome to the Metaverse</div>
</div>
<div class="menu_prods">
<a href="data-economy-index.html" class="menu_producttitle">DATA</a>
<div class="menu_productdesc">Data Centric, Chain Agnostic.</div>
</div>
<div class="menu_prods">
<a href="bankless-bed-index.html" class="menu_producttitle">BED</a>
<div class="menu_productdesc">It's time for bed</div>
</div>
<div class="menu_prods">
<a href="bankless-defi-innovation-index-gmi.html" class="menu_producttitle">GMI</a>
<div class="menu_productdesc">Gonna make it</div>
</div>
<div class="menu_prods">
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="menu_producttitle">ETH2x-FLI</a>
<div class="menu_productdesc">Fly me to the stars</div>
</div>
<div class="menu_prods">
<a href="polygon-eth2xfli.html" class="menu_producttitle">ETH2x-FLI-P</a>
<div class="menu_productdesc">Fly me to the stars using Polygon</div>
</div>
<div class="menu_prods">
<a href="polygon-inverse-iethfli.html" class="menu_producttitle">iETH-FLI-P</a>
<div class="menu_productdesc">Inverse exposure to ETH</div>
</div>
<div class="menu_prods">
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="menu_producttitle">BTC2x-FLI</a>
<div class="menu_productdesc">Fly me to the moon</div>
</div>
<div class="menu_prods">
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="menu_producttitle">MATIC2x-FLI-P</a>
<div class="menu_productdesc">2x exposure to MATIC</div>
</div>
<div class="menu_prods">
<a href="polygon-inverse-imaticfli.html" class="menu_producttitle">iMATIC-FLI-P</a>
<div class="menu_productdesc">Inverse exposure to MATIC</div>
</div>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Resources</div>
</div>
<div class="menu_gov">
<a href="https://docs.indexcoop.com/" class="menu_govlink">Gitbook</a>
</div>
<div class="menu_gov">
<a href="methodologist.html" class="menu_govlink">Methodologists</a>
</div>
<div class="menu_gov">
<a href="institution.html" aria-current="page" class="menu_govlink w--current">Institutions</a>
</div>
<div class="menu_gov">
<a href="contributor.html" class="menu_govlink">Contributors</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Community</div>
</div>
<div class="menu_gov">
<a href="https://gov.indexcoop.com" target="_blank" class="menu_govlink">Forum</a>
</div>
<div class="menu_gov">
<a href="https://twitter.com/indexcoop" class="menu_govlink">Twitter</a>
</div>
<div class="menu_gov">
<a href="https://discord.com/invite/BcqYxdNC3R" class="menu_govlink">Discord</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Token</div>
</div>
<div class="menu_gov">
<a href="index-token.html" class="menu_govlink">$INDEX</a>
</div>
<div class="menu_gov">
<a href="https://snapshot.org/#/index-coop.eth" class="menu_govlink">Vote</a>
</div>
<div class="menu_gov">
<a href="https://app.indexcoop.com/liquidity-mining" class="menu_govlink">Liquidity Mining</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">About</div>
</div>
<div class="menu_gov">
<a href="about-index-coop.html" class="menu_govlink">About Us</a>
</div>
<div class="menu_gov">
<a href="brand-style-guide.html" class="menu_govlink">Brand Guidelines</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_gov bloglink">
<a href="https://indexcoop.com/blog/" class="menu_govlink bloglink"><strong>Blog</strong></a>
</div>
</div>
<div class="div-block-93">
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Products</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="defi-pulse-index-dpi.html" class="dropdown-text w-dropdown-link">DPI</a>
<a href="metaverse-index-mvi.html" class="dropdown-text w-dropdown-link">MVI</a>
<a href="data-economy-index.html" class="dropdown-text w-dropdown-link">DATA</a>
<a href="bankless-bed-index.html" class="dropdown-text w-dropdown-link">BED</a>
<a href="bankless-defi-innovation-index-gmi.html" class="dropdown-text w-dropdown-link">GMI</a>
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="dropdown-text w-dropdown-link">ETH2x-FLI</a>
<a href="polygon-eth2xfli.html" class="dropdown-text w-dropdown-link">ETH2x-FLI-P</a>
<a href="polygon-inverse-iethfli.html" class="dropdown-text w-dropdown-link">iETH-FLI-P</a>
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="dropdown-text w-dropdown-link">BTC2x-FLI</a>
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="dropdown-text w-dropdown-link">MATIC2x-FLI-P</a>
<a href="polygon-inverse-imaticfli.html" class="dropdown-text w-dropdown-link">iMATIC-FLI-P</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Resources</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="https://docs.indexcoop.com/" class="dropdown-text w-dropdown-link">Gitbook</a>
<a href="methodologist.html" class="dropdown-text w-dropdown-link">Methodologists</a>
<a href="institution.html" aria-current="page" class="dropdown-text w-dropdown-link w--current">Institutions</a>
<a href="contributor.html" class="dropdown-text w-dropdown-link">Contributors</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Community</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="https://indexcoop.catapultlabs.xyz/" target="_blank" class="dropdown-text w-dropdown-link">Join us!</a>
<a href="https://gov.indexcoop.com/" target="_blank" class="dropdown-text w-dropdown-link">Forum</a>
<a href="https://twitter.com/indexcoop" target="_blank" class="dropdown-text w-dropdown-link">Twitter</a>
<a href="https://discord.gg/BcqYxdNC3R" target="_blank" class="dropdown-text w-dropdown-link">Discord</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Token</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="index-token.html" class="dropdown-text w-dropdown-link">$INDEX</a>
<a href="https://snapshot.org/#/index-coop.eth" target="_blank" class="dropdown-text w-dropdown-link">Vote</a>
<a href="https://app.indexcoop.com/liquidity-mining" class="dropdown-text w-dropdown-link">Liquidity Mining</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>About </div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="about-index-coop.html" class="dropdown-text w-dropdown-link">About Us</a>
<a href="brand-style-guide.html" class="dropdown-text w-dropdown-link">Brand Guidelines</a>
</nav>
</div>
<div data-delay="3" data-hover="true" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<a href="https://indexcoop.com/blog/" class="bloglink">Blog</a>
</div>
<nav class="dropdown-list-2 bloglink w-dropdown-list"></nav>
</div>
</div>
<div class="stickytoggles">
<div class="div-block-95">
<div class="toggle">
<div class="toggle-theme2 w-embed"><label for="toggleTheme" title="Toggle theme">
<input id="toggleTheme" name="theme" type="checkbox">
<div class="toggleTheme toggleThemeIcon"></div>
</label>
<style>
.toggleTheme {
text-align: left;
margin: auto;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
border-radius: 8rem;
height: 100%;
width: 100%;
}
.toggleTheme:before {
position: absolute;
content: '';
height: 2rem;
width: 2rem;
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="black"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked+.toggleTheme:before {
content: '';
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="black"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
</style>
</div>
<div class="togglethemefooter w-embed"><label for="toggleTheme" title="Toggle theme">
<input id="toggleTheme" name="theme" type="checkbox">
<div class="toggleThemefooter toggleThemeIcon"></div>
</label>
<style>
.toggleThemefooter {
text-align: left;
margin: auto;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
height: 100%;
border-radius: 8rem;
width: 100%;
}
.toggleThemefooter:before {
position: absolute;
content: '';
height: 2rem;
width: 2rem;
border-radius: 4rem;
background-image: url('data:image/svg+xml,%0A%3Csvg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="white"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="white"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="white"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="white"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="white"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="white"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="white"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="white"/%3E%3C/svg%3E%0A');
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked+.toggleThemefooter:before {
content: '';
background-image: url('data:image/svg+xml,%0A%3Csvg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
</style>
</div>
</div>
<div class="language">
<div class="language_icon white w-embed"><svg width="100%" height="100%" fill="black" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0C12.8355 0 9.74207 0.938384 7.11088 2.69649C4.4797 4.45459 2.42894 6.95345 1.21793 9.87707C0.00693253 12.8007 -0.309921 16.0177 0.307443 19.1214C0.924806 22.2251 2.44866 25.0761 4.6863 27.3137C6.92394 29.5513 9.77487 31.0752 12.8786 31.6926C15.9823 32.3099 19.1993 31.9931 22.1229 30.7821C25.0466 29.5711 27.5454 27.5203 29.3035 24.8891C31.0616 22.2579 32 19.1645 32 16C31.9952 11.758 30.308 7.69112 27.3084 4.69157C24.3089 1.69202 20.242 0.00477931 16 0ZM2.30858 16.4503L3.83818 16.9598L5.71429 19.7745V21.2409C5.7143 21.544 5.83471 21.8347 6.04903 22.049L9.14286 25.1429V27.8589C7.12912 26.6935 5.44513 25.0348 4.24949 23.0389C3.05385 21.043 2.38591 18.7756 2.30858 16.4503ZM16 29.7143C15.0114 29.7124 14.0259 29.6033 13.0608 29.3889L13.7143 27.4286L15.7767 22.2725C15.8455 22.1003 15.8715 21.914 15.8523 21.7297C15.8331 21.5453 15.7693 21.3683 15.6665 21.2141L14.0536 18.7946C13.9492 18.6381 13.8078 18.5097 13.6419 18.4209C13.476 18.3322 13.2908 18.2857 13.1026 18.2857H7.46835L6.04183 16.1456L8.47326 13.7143H10.2857V16H12.5714V12.875L16.9922 5.1384L15.0078 4.00446L14.0307 5.71429H10.8974L9.65623 3.85269C11.3224 2.97334 13.1536 2.45097 15.033 2.31891C16.9124 2.18686 18.7986 2.44801 20.5714 3.08571V6.85714C20.5714 7.16025 20.6918 7.45094 20.9062 7.66527C21.1205 7.87959 21.4112 8 21.7143 8H23.3883C23.5765 8.00001 23.7617 7.95356 23.9276 7.86478C24.0935 7.77601 24.2349 7.64764 24.3393 7.49109L25.3415 5.98777C26.6471 7.20505 27.7032 8.66485 28.4509 10.2857H23.7943C23.5301 10.2857 23.274 10.3772 23.0697 10.5448C22.8654 10.7123 22.7254 10.9454 22.6736 11.2045L21.8483 16.3139C21.8095 16.5543 21.8485 16.8007 21.9595 17.0173C22.0705 17.234 22.2478 17.4095 22.4655 17.5184L26.2857 19.4286L27.0687 24.0637C25.8003 25.8119 24.1362 27.2352 22.2124 28.2173C20.2887 29.1993 18.1599 29.7123 16 29.7143Z"></path>
</svg></div>
</div>
</div>
<div class="div-block-96">
<a href="https://app.indexcoop.com" class="app-button w-button">APP</a>
</div>
</div>
</nav>
<div data-w-id="4110e30f-a7e2-f0f1-e7c6-ccbb35b8779b" class="menu-button-2 w-nav-button">
<div class="menu w-embed"><svg viewbox="0 0 24 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<line y1="1" x2="24" y2="1" stroke="currentColor" stroke-width="2"></line>
<line y1="7" x2="24" y2="7" stroke="currentColor" stroke-width="2"></line>
<line y1="13" x2="24" y2="13" stroke="currentColor" stroke-width="2"></line>
</svg></div>
<div class="close w-embed"><svg viewbox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.41 23L16 17.591L10.59 23L9 21.41L14.409 16L9 10.591L10.591 9L16 14.409L21.409 9L23 10.591L17.591 16L23 21.41L21.41 23Z" fill="currentColor"></path>
<path d="M16 4C18.3734 4 20.6935 4.70379 22.6668 6.02236C24.6402 7.34094 26.1783 9.21509 27.0866 11.4078C27.9948 13.6005 28.2325 16.0133 27.7694 18.3411C27.3064 20.6689 26.1635 22.8071 24.4853 24.4853C22.8071 26.1635 20.6689 27.3064 18.3411 27.7694C16.0133 28.2324 13.6005 27.9948 11.4078 27.0866C9.21509 26.1783 7.34095 24.6402 6.02237 22.6668C4.70379 20.6935 4.00001 18.3734 4.00001 16C4.00371 12.8185 5.26918 9.76844 7.51882 7.51881C9.76845 5.26918 12.8185 4.00371 16 4ZM16 2C13.2311 2 10.5243 2.82109 8.22202 4.35943C5.91973 5.89777 4.12532 8.08427 3.06569 10.6424C2.00607 13.2006 1.72882 16.0155 2.26901 18.7313C2.80921 21.447 4.14258 23.9416 6.10051 25.8995C8.05845 27.8574 10.553 29.1908 13.2687 29.731C15.9845 30.2712 18.7994 29.9939 21.3576 28.9343C23.9157 27.8747 26.1022 26.0803 27.6406 23.778C29.1789 21.4757 30 18.7689 30 16C30 12.287 28.525 8.72601 25.8995 6.1005C23.274 3.475 19.713 2 16 2Z" fill="currentColor"></path>
</svg></div>
</div>
</div>
</div>
<div class="hero-section wf-section">
<div class="maincontainer w-container">
<div class="head_cont">
<h1 data-w-id="c0447b40-5e55-2ab5-d18b-f4dc0a1826ab" style="opacity:0" class="allh1">The Index Coop is the leading decentralized crypto asset manager</h1>
</div>
<div class="line_cont">
<div class="heroline"></div>
</div>
<div class="hero_italic">
<p data-w-id="d993417e-829c-aef5-b497-6a17b0e610b7" style="opacity:0" class="italic_cont">The Index Coop develops index and structured products that provide passive exposure to a growing range of crypto investment themes.</p>
</div>
</div>
</div>
<div class="products-section wf-section">
<div class="maincontainer w-container">
<div class="w-layout-grid product_grid institution">
<div id="w-node-_51da97f8-aeec-8903-5c0e-82fdd864b18d-eed0a2af" class="product institution-page">
<div class="logo_title">
<div class="product_image_container"><img src="images/DPI_token_logo-1.svg" loading="lazy" alt="DeFi Pulse token logo" class="product_image"></div>
<div class="product_title institution">DeFi Pulse Index</div>
</div>
<p class="allparagraph2 products">A capitalization-weighted index that tracks the performance of decentralized financial assets across the market.</p>
<div class="leanmore_container">
<a href="defi-pulse-index-dpi.html" class="learnmore learn_center institution_page w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 21 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 5.27039L9.4275 6.31516L13.6125 10.5205H4.5V12.0206H13.6125L9.4275 16.2004L10.5 17.2707L16.5 11.2705L10.5 5.27039Z" fill="#09AA74"></path>
<path d="M10.5 21.7705C8.4233 21.7705 6.39323 21.1547 4.66652 20.0009C2.9398 18.8472 1.59399 17.2073 0.799269 15.2887C0.00454947 13.3701 -0.203385 11.2589 0.201759 9.22206C0.606904 7.18526 1.60693 5.31434 3.07538 3.84589C4.54383 2.37744 6.41475 1.37741 8.45156 0.972267C10.4884 0.567122 12.5996 0.775057 14.5182 1.56978C16.4368 2.3645 18.0767 3.71031 19.2304 5.43702C20.3842 7.16374 21 9.19381 21 11.2705C20.9969 14.0543 19.8896 16.7232 17.9212 18.6917C15.9527 20.6601 13.2838 21.7674 10.5 21.7705ZM10.5 2.27051C8.71997 2.27051 6.97991 2.79835 5.49987 3.78729C4.01983 4.77622 2.86628 6.18183 2.18509 7.82636C1.5039 9.47089 1.32567 11.2805 1.67294 13.0263C2.0202 14.7722 2.87737 16.3758 4.13604 17.6345C5.39471 18.8931 6.99836 19.7503 8.74419 20.0976C10.49 20.4448 12.2996 20.2666 13.9442 19.5854C15.5887 18.9042 16.9943 17.7507 17.9832 16.2706C18.9722 14.7906 19.5 13.0505 19.5 11.2705C19.4973 8.8844 18.5482 6.59679 16.861 4.90955C15.1737 3.22232 12.8861 2.27323 10.5 2.27051Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div id="w-node-_0a4aed3d-1557-60c6-daee-41a151c96fea-eed0a2af" class="product institution-page">
<div class="logo_title">
<div class="product_image_container"><img src="images/MVI_token_logo-1.svg" loading="lazy" alt="MVI logo" class="product_image"></div>
<div class="product_title institution">Metaverse Index</div>
</div>
<p class="allparagraph2 products">Designed to capture the trend of entertainment, sports and business shifting to take place in virtual environments.</p>
<div class="leanmore_container">
<a href="metaverse-index-mvi.html" class="learnmore learn_center institution_page w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 21 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 5.27039L9.4275 6.31516L13.6125 10.5205H4.5V12.0206H13.6125L9.4275 16.2004L10.5 17.2707L16.5 11.2705L10.5 5.27039Z" fill="#09AA74"></path>
<path d="M10.5 21.7705C8.4233 21.7705 6.39323 21.1547 4.66652 20.0009C2.9398 18.8472 1.59399 17.2073 0.799269 15.2887C0.00454947 13.3701 -0.203385 11.2589 0.201759 9.22206C0.606904 7.18526 1.60693 5.31434 3.07538 3.84589C4.54383 2.37744 6.41475 1.37741 8.45156 0.972267C10.4884 0.567122 12.5996 0.775057 14.5182 1.56978C16.4368 2.3645 18.0767 3.71031 19.2304 5.43702C20.3842 7.16374 21 9.19381 21 11.2705C20.9969 14.0543 19.8896 16.7232 17.9212 18.6917C15.9527 20.6601 13.2838 21.7674 10.5 21.7705ZM10.5 2.27051C8.71997 2.27051 6.97991 2.79835 5.49987 3.78729C4.01983 4.77622 2.86628 6.18183 2.18509 7.82636C1.5039 9.47089 1.32567 11.2805 1.67294 13.0263C2.0202 14.7722 2.87737 16.3758 4.13604 17.6345C5.39471 18.8931 6.99836 19.7503 8.74419 20.0976C10.49 20.4448 12.2996 20.2666 13.9442 19.5854C15.5887 18.9042 16.9943 17.7507 17.9832 16.2706C18.9722 14.7906 19.5 13.0505 19.5 11.2705C19.4973 8.8844 18.5482 6.59679 16.861 4.90955C15.1737 3.22232 12.8861 2.27323 10.5 2.27051Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div id="w-node-_62712984-b336-6fa1-d311-1e2936b11456-eed0a2af" class="product institution-page">
<div class="logo_title">
<div class="product_image_container"><img src="images/Group-155.png" loading="lazy" height="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 78.09375px, 156.203125px" srcset="images/Group-155-p-500.png 500w, images/Group-155.png 692w" alt="Group of FLI token logos" class="product_image"></div>
<div class="product_title">FLI Series</div>
</div>
<p class="allparagraph2 products">Lets you leverage a collateralized debt position in a safe and efficient way, by abstracting its management into a simple index.</p>
<div class="leanmore_container">
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="learnmore learn_center institution_page w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 21 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 5.27039L9.4275 6.31516L13.6125 10.5205H4.5V12.0206H13.6125L9.4275 16.2004L10.5 17.2707L16.5 11.2705L10.5 5.27039Z" fill="#09AA74"></path>
<path d="M10.5 21.7705C8.4233 21.7705 6.39323 21.1547 4.66652 20.0009C2.9398 18.8472 1.59399 17.2073 0.799269 15.2887C0.00454947 13.3701 -0.203385 11.2589 0.201759 9.22206C0.606904 7.18526 1.60693 5.31434 3.07538 3.84589C4.54383 2.37744 6.41475 1.37741 8.45156 0.972267C10.4884 0.567122 12.5996 0.775057 14.5182 1.56978C16.4368 2.3645 18.0767 3.71031 19.2304 5.43702C20.3842 7.16374 21 9.19381 21 11.2705C20.9969 14.0543 19.8896 16.7232 17.9212 18.6917C15.9527 20.6601 13.2838 21.7674 10.5 21.7705ZM10.5 2.27051C8.71997 2.27051 6.97991 2.79835 5.49987 3.78729C4.01983 4.77622 2.86628 6.18183 2.18509 7.82636C1.5039 9.47089 1.32567 11.2805 1.67294 13.0263C2.0202 14.7722 2.87737 16.3758 4.13604 17.6345C5.39471 18.8931 6.99836 19.7503 8.74419 20.0976C10.49 20.4448 12.2996 20.2666 13.9442 19.5854C15.5887 18.9042 16.9943 17.7507 17.9832 16.2706C18.9722 14.7906 19.5 13.0505 19.5 11.2705C19.4973 8.8844 18.5482 6.59679 16.861 4.90955C15.1737 3.22232 12.8861 2.27323 10.5 2.27051Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div id="w-node-add031fa-9e4d-e38c-5181-10dabbd3af1b-eed0a2af" class="product institution-page">
<div class="logo_title">
<div class="product_image_container"><img src="images/DATA_Circle.png" loading="lazy" height="" alt="DATA token logo" class="product_image data"></div>
<div class="product_title">DATA</div>
</div>
<p class="allparagraph2 products">Invest in the infrastructure of Web3 and the new data economy<br></p>
<div class="leanmore_container">
<a href="data-economy-index.html" class="learnmore learn_center institution_page w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 21 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 5.27039L9.4275 6.31516L13.6125 10.5205H4.5V12.0206H13.6125L9.4275 16.2004L10.5 17.2707L16.5 11.2705L10.5 5.27039Z" fill="#09AA74"></path>
<path d="M10.5 21.7705C8.4233 21.7705 6.39323 21.1547 4.66652 20.0009C2.9398 18.8472 1.59399 17.2073 0.799269 15.2887C0.00454947 13.3701 -0.203385 11.2589 0.201759 9.22206C0.606904 7.18526 1.60693 5.31434 3.07538 3.84589C4.54383 2.37744 6.41475 1.37741 8.45156 0.972267C10.4884 0.567122 12.5996 0.775057 14.5182 1.56978C16.4368 2.3645 18.0767 3.71031 19.2304 5.43702C20.3842 7.16374 21 9.19381 21 11.2705C20.9969 14.0543 19.8896 16.7232 17.9212 18.6917C15.9527 20.6601 13.2838 21.7674 10.5 21.7705ZM10.5 2.27051C8.71997 2.27051 6.97991 2.79835 5.49987 3.78729C4.01983 4.77622 2.86628 6.18183 2.18509 7.82636C1.5039 9.47089 1.32567 11.2805 1.67294 13.0263C2.0202 14.7722 2.87737 16.3758 4.13604 17.6345C5.39471 18.8931 6.99836 19.7503 8.74419 20.0976C10.49 20.4448 12.2996 20.2666 13.9442 19.5854C15.5887 18.9042 16.9943 17.7507 17.9832 16.2706C18.9722 14.7906 19.5 13.0505 19.5 11.2705C19.4973 8.8844 18.5482 6.59679 16.861 4.90955C15.1737 3.22232 12.8861 2.27323 10.5 2.27051Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div id="w-node-a127f7d2-7f8f-63be-b14e-8a9a64221f4b-eed0a2af" class="product institution-page">
<div class="logo_title">
<div class="product_image_container"><img src="images/BED_Logo-1.svg" loading="lazy" height="" alt="Bankless BED token logo" class="product_image data"></div>
<div class="product_title">BED</div>
</div>
<p class="allparagraph2 products">Introduce yourself to DeFi with an equal weighted index of BTC, ETH and DPI<br></p>
<div class="leanmore_container">
<a href="bankless-bed-index.html" class="learnmore learn_center institution_page w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 21 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 5.27039L9.4275 6.31516L13.6125 10.5205H4.5V12.0206H13.6125L9.4275 16.2004L10.5 17.2707L16.5 11.2705L10.5 5.27039Z" fill="#09AA74"></path>
<path d="M10.5 21.7705C8.4233 21.7705 6.39323 21.1547 4.66652 20.0009C2.9398 18.8472 1.59399 17.2073 0.799269 15.2887C0.00454947 13.3701 -0.203385 11.2589 0.201759 9.22206C0.606904 7.18526 1.60693 5.31434 3.07538 3.84589C4.54383 2.37744 6.41475 1.37741 8.45156 0.972267C10.4884 0.567122 12.5996 0.775057 14.5182 1.56978C16.4368 2.3645 18.0767 3.71031 19.2304 5.43702C20.3842 7.16374 21 9.19381 21 11.2705C20.9969 14.0543 19.8896 16.7232 17.9212 18.6917C15.9527 20.6601 13.2838 21.7674 10.5 21.7705ZM10.5 2.27051C8.71997 2.27051 6.97991 2.79835 5.49987 3.78729C4.01983 4.77622 2.86628 6.18183 2.18509 7.82636C1.5039 9.47089 1.32567 11.2805 1.67294 13.0263C2.0202 14.7722 2.87737 16.3758 4.13604 17.6345C5.39471 18.8931 6.99836 19.7503 8.74419 20.0976C10.49 20.4448 12.2996 20.2666 13.9442 19.5854C15.5887 18.9042 16.9943 17.7507 17.9832 16.2706C18.9722 14.7906 19.5 13.0505 19.5 11.2705C19.4973 8.8844 18.5482 6.59679 16.861 4.90955C15.1737 3.22232 12.8861 2.27323 10.5 2.27051Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div id="w-node-_3d529cc9-51a3-4c7a-cfa3-52d09b212e68-eed0a2af" class="product institution-page">
<div class="logo_title">
<div class="product_image_container"><img src="images/GMI_Logo-06-white.png" loading="lazy" height="" sizes="(max-width: 479px) 100vw, (max-width: 767px) 10vw, 100px" srcset="images/GMI_Logo-06-white-p-500.png 500w, images/GMI_Logo-06-white-p-800.png 800w, images/GMI_Logo-06-white.png 1001w" alt="GMI logo" class="product_image gmi"></div>
<div class="product_title">Bankless DeFi Innovation Index</div>
</div>
<p class="allparagraph2 products">Capture upside of emergent DeFi application themes on a continuous basis with the Bankless DeFi Innovation Index</p>
<div class="leanmore_container">
<a href="bankless-defi-innovation-index-gmi.html" class="learnmore learn_center institution_page w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 21 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 5.27039L9.4275 6.31516L13.6125 10.5205H4.5V12.0206H13.6125L9.4275 16.2004L10.5 17.2707L16.5 11.2705L10.5 5.27039Z" fill="#09AA74"></path>
<path d="M10.5 21.7705C8.4233 21.7705 6.39323 21.1547 4.66652 20.0009C2.9398 18.8472 1.59399 17.2073 0.799269 15.2887C0.00454947 13.3701 -0.203385 11.2589 0.201759 9.22206C0.606904 7.18526 1.60693 5.31434 3.07538 3.84589C4.54383 2.37744 6.41475 1.37741 8.45156 0.972267C10.4884 0.567122 12.5996 0.775057 14.5182 1.56978C16.4368 2.3645 18.0767 3.71031 19.2304 5.43702C20.3842 7.16374 21 9.19381 21 11.2705C20.9969 14.0543 19.8896 16.7232 17.9212 18.6917C15.9527 20.6601 13.2838 21.7674 10.5 21.7705ZM10.5 2.27051C8.71997 2.27051 6.97991 2.79835 5.49987 3.78729C4.01983 4.77622 2.86628 6.18183 2.18509 7.82636C1.5039 9.47089 1.32567 11.2805 1.67294 13.0263C2.0202 14.7722 2.87737 16.3758 4.13604 17.6345C5.39471 18.8931 6.99836 19.7503 8.74419 20.0976C10.49 20.4448 12.2996 20.2666 13.9442 19.5854C15.5887 18.9042 16.9943 17.7507 17.9832 16.2706C18.9722 14.7906 19.5 13.0505 19.5 11.2705C19.4973 8.8844 18.5482 6.59679 16.861 4.90955C15.1737 3.22232 12.8861 2.27323 10.5 2.27051Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="investors-section gray_bg wf-section">
<div class="maincontainer w-container">
<div class="head_cont institution-page">
<h2 class="allh2 investors_head">Investors</h2>
</div>
<div class="line_cont investors">
<div class="heroline"></div>
</div>
<div class="w-layout-grid companies investors_grid">
<div id="w-node-ed7f4094-afae-a83b-7b53-98a3d1885574-eed0a2af" class="investors_logo"><img src="images/1confimation.svg" loading="lazy" alt="" class="investors_icons"></div>
<div class="investors_logo"><img src="images/1kx_network-1.png" loading="lazy" alt="1kx logo" class="investors_icons"></div>
<div id="w-node-bc9c8dc8-e114-2e48-703d-833c194b2468-eed0a2af" class="investors_logo"><img src="images/1kx_network-1_1.svg" loading="lazy" alt="1kx logo" class="investors_icons"></div>
<div class="investors_logo"><img src="images/Defiance-Capital.svg" loading="lazy" width="314.5" alt="DeFinance Capital logo" class="investors_icons"></div>
<div id="w-node-eb24d545-1fed-6531-b82a-989fe7df1000-eed0a2af" class="investors_logo"><img src="images/witnermute-1_1.svg" loading="lazy" alt="Wintermute logo" class="investors_icons"></div>
</div>
</div>
</div>
<div class="why-index-coop wf-section">
<div class="maincontainer w-container">
<div class="head_cont institution-page">
<h2 class="sub_h2 institution">Index Coop products are institution-friendly and:</h2>
</div>
<div class="w-layout-grid institution_grid">
<div class="product_features">
<div class="features_logo">
<div class="html-embed-14 w-embed"><svg width="100%" height="100%" viewbox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.837891 50.3652V113.112H127.158V50.3652H0.837891ZM3.12465 52.652H20.2946C19.7231 61.8685 12.3412 69.2505 3.12465 69.822V52.652ZM3.12465 110.826V93.6557C12.3412 94.2272 19.7231 101.609 20.2946 110.826H3.12465ZM124.871 110.826H107.701C108.272 101.609 115.654 94.2272 124.871 93.6557V110.826ZM124.871 91.369C114.393 91.9465 105.992 100.348 105.414 110.826H22.5814C22.0038 100.348 13.6025 91.9465 3.12465 91.369V72.1087C13.6025 71.5311 22.0038 63.1298 22.5814 52.652H105.414C105.992 63.1298 114.393 71.5311 124.871 72.1087V91.369ZM124.871 69.822C115.654 69.2505 108.272 61.8685 107.701 52.652H124.871V69.822Z" fill="#327EE8"></path>
<path d="M121.138 42.3142H6.85352V44.601H121.138V42.3142Z" fill="#327EE8"></path>
<path d="M107.882 33.1704H20.1094V35.4572H107.882V33.1704Z" fill="#327EE8"></path>
<path d="M99.6564 24.0266H28.3418V26.3134H99.6564V24.0266Z" fill="#327EE8"></path>
<path d="M93.7105 14.8857H34.2832V17.1725H93.7105V14.8857Z" fill="#327EE8"></path>
<path d="M63.9966 63.2634C53.8102 63.2634 45.5215 71.5521 45.5215 81.7402C45.5215 91.9266 53.8102 100.215 63.9966 100.215C74.1831 100.215 82.4718 91.9266 82.4718 81.7402C82.4718 71.5521 74.1831 63.2634 63.9966 63.2634ZM63.9966 97.9286C55.0701 97.9286 47.8082 90.6667 47.8082 81.7402C47.8082 72.8121 55.0701 65.5502 63.9966 65.5502C72.9232 65.5502 80.185 72.8121 80.185 81.7402C80.185 90.6667 72.9232 97.9286 63.9966 97.9286Z" fill="#327EE8"></path>
<path d="M29.7938 74.1965C25.6345 74.1965 22.25 77.581 22.25 81.7403C22.25 85.8996 25.6345 89.2841 29.7938 89.2841C33.9515 89.2841 37.336 85.8996 37.336 81.7403C37.336 77.581 33.9515 74.1965 29.7938 74.1965ZM29.7938 86.9973C26.8944 86.9973 24.5368 84.6397 24.5368 81.7403C24.5368 78.8409 26.8944 76.4833 29.7938 76.4833C32.6916 76.4833 35.0492 78.8409 35.0492 81.7403C35.0492 84.6397 32.6916 86.9973 29.7938 86.9973Z" fill="#327EE8"></path>
<path d="M98.3719 74.1965C94.2126 74.1965 90.8281 77.581 90.8281 81.7403C90.8281 85.8996 94.2126 89.2841 98.3719 89.2841C102.531 89.2841 105.916 85.8996 105.916 81.7403C105.916 77.581 102.531 74.1965 98.3719 74.1965ZM98.3719 86.9973C95.4725 86.9973 93.1149 84.6397 93.1149 81.7403C93.1149 78.8409 95.4725 76.4833 98.3719 76.4833C101.271 76.4833 103.629 78.8409 103.629 81.7403C103.629 84.6397 101.271 86.9973 98.3719 86.9973Z" fill="#327EE8"></path>
</svg></div>
</div>
<div class="indexcoop-keybenefits">
<div class="grid_heading institution">Liquid</div>
<p class="grid_paragraph">Traded on KuCoin, decentralized exchanges, and available via digital asset OTC service providers.</p>
</div>
</div>
<div class="product_features">
<div class="features_logo">
<div class="html-embed-14 w-embed"><svg width="100%" height="100%" viewbox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M34.8455 114.124C46.1537 114.124 55.359 104.922 55.359 93.6106C55.359 82.2991 46.157 73.0972 34.8455 73.0972C23.534 73.0972 14.332 82.2991 14.332 93.6106C14.332 104.922 23.5373 114.124 34.8455 114.124ZM34.8455 75.4194C44.8798 75.4194 53.0368 83.5797 53.0368 93.6106C53.0368 103.642 44.8798 111.802 34.8455 111.802C24.8112 111.802 16.6542 103.642 16.6542 93.6106C16.6542 83.5797 24.8112 75.4194 34.8455 75.4194Z" fill="#327EE8"></path>
<path d="M75.9684 101.303L68.276 93.6106H86.7016C90.9011 93.6106 94.3135 90.1949 94.3135 85.9988V73.0972H91.9913V85.9988C91.9913 88.9145 89.6207 91.2883 86.7016 91.2883H68.276L75.9684 83.5959L74.3237 81.9509L63.8281 92.4496L74.3237 102.948L75.9684 101.303Z" fill="#327EE8"></path>
<path d="M31.6209 94.7701H38.0717C39.2103 94.7701 40.136 95.6957 40.136 96.8344C40.136 97.9728 39.2103 98.8987 38.0717 98.8987H28.3955V101.221H33.6852V104.898H36.0107V101.221H38.0717C40.4907 101.221 42.4582 99.2534 42.4582 96.8344C42.4582 94.4153 40.4907 92.4479 38.0717 92.4479H31.6209C30.4824 92.4479 29.5566 91.522 29.5566 90.3836C29.5566 89.2449 30.4824 88.3193 31.6209 88.3193H41.2971V85.9971H36.0074V82.3201H33.6852V85.9971H31.6209C29.2018 85.9971 27.2344 87.9645 27.2344 90.3836C27.2344 92.8026 29.2018 94.7701 31.6209 94.7701Z" fill="#327EE8"></path>
<path d="M36.2519 40.8725C36.2519 37.9406 38.6258 35.5538 41.5416 35.5538H58.0944L50.4146 43.2529L52.0596 44.8946L62.5358 34.3927L52.0403 23.894L50.3986 25.5357L58.091 33.2314H41.5416C37.3453 33.2314 33.9297 36.6602 33.9297 40.8725V59.3323H36.2519V40.8725Z" fill="#327EE8"></path>
<path d="M89.9236 35.5535H96.3744C97.513 35.5535 98.4387 36.4791 98.4387 37.6178C98.4387 38.7563 97.513 39.6819 96.3744 39.6819H86.6982V42.0043H91.9879V45.6813H94.3134V42.0043H96.3744C98.7934 42.0043 100.761 40.0368 100.761 37.6178C100.761 35.1988 98.7934 33.2311 96.3744 33.2311H89.9236C88.7849 33.2311 87.8593 32.3055 87.8593 31.167C87.8593 30.0284 88.7849 29.1027 89.9236 29.1027H99.5998V26.7803H94.3101V23.1035H91.9879V26.7803H89.9236C87.5046 26.7803 85.5371 28.748 85.5371 31.167C85.5371 33.5861 87.5046 35.5535 89.9236 35.5535Z" fill="#327EE8"></path>
<path d="M93.1482 54.9051C104.456 54.9051 113.662 45.7029 113.662 34.3916C113.662 23.0801 104.46 13.8779 93.1482 13.8779C81.8367 13.8779 72.6348 23.0801 72.6348 34.3916C72.6348 45.7029 81.8401 54.9051 93.1482 54.9051ZM93.1482 16.2003C103.183 16.2003 111.34 24.3605 111.34 34.3916C111.34 44.4225 103.183 52.5827 93.1482 52.5827C83.114 52.5827 74.957 44.4225 74.957 34.3916C74.957 24.3605 83.114 16.2003 93.1482 16.2003Z" fill="#327EE8"></path>
</svg></div>
</div>
<div class="indexcoop-keybenefits">
<div class="grid_heading institution">Simple</div>
<p class="grid_paragraph">Tokenized strategies that are tradeable as ERC-20 tokens.</p>
</div>
</div>
<div class="product_features">
<div class="features_logo">
<div class="html-embed-14 w-embed"><svg width="100%" height="100%" viewbox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M57.2012 94.0217H24.9473V96.3439H57.2012V94.0217Z" fill="#327EE8"></path>
<path d="M76.5536 42.4153H24.9473V44.7375H76.5536V42.4153Z" fill="#327EE8"></path>
<path d="M57.2012 68.2185H24.9473V70.5407H57.2012V68.2185Z" fill="#327EE8"></path>
<path d="M12.0478 109.245H60.4288V106.923H13.2089V12.4836H68.9439V30.6749C68.9439 31.3166 69.4632 31.8359 70.1049 31.8359H88.2962V53.2526H90.6184V30.6749C90.6184 30.3652 90.496 30.0717 90.2798 29.8524L70.9274 10.5C70.7113 10.2838 70.4146 10.1614 70.1049 10.1614H12.0478C11.406 10.1614 10.8867 10.6807 10.8867 11.3225V108.084C10.8867 108.726 11.406 109.245 12.0478 109.245ZM71.266 14.1254L86.6544 29.5138H71.266V14.1254Z" fill="#327EE8"></path>
<path d="M57.2012 81.1201H24.9473V83.4423H57.2012V81.1201Z" fill="#327EE8"></path>
<path d="M57.2012 55.3169H24.9473V57.6391H57.2012V55.3169Z" fill="#327EE8"></path>
<path d="M93.617 78.4238C81.1058 78.4238 76.4516 90.3415 76.4031 90.461C76.3031 90.7254 76.3031 91.0189 76.4031 91.2835C76.4516 91.4059 81.1058 103.324 93.617 103.324C106.128 103.324 110.783 91.4059 110.831 91.2866C110.931 91.0221 110.931 90.7285 110.831 90.4641C110.783 90.3415 106.128 78.4238 93.617 78.4238ZM93.617 101.002C83.8441 101.002 79.6252 92.8478 78.7511 90.8738C79.6252 88.8999 83.8441 80.746 93.617 80.746C103.39 80.746 107.609 88.8999 108.483 90.8738C107.609 92.8478 103.39 101.002 93.617 101.002Z" fill="#327EE8"></path>
<path d="M93.6158 83.262C89.4163 83.262 86.0039 86.6775 86.0039 90.8739C86.0039 95.07 89.4163 98.4857 93.6158 98.4857C97.8153 98.4857 101.228 95.07 101.228 90.8739C101.228 86.6775 97.8153 83.262 93.6158 83.262ZM93.6158 96.1635C90.6969 96.1635 88.3263 93.7896 88.3263 90.8739C88.3263 87.9581 90.7001 85.5842 93.6158 85.5842C96.5315 85.5842 98.9055 87.9581 98.9055 90.8739C98.9055 93.7896 96.5349 96.1635 93.6158 96.1635Z" fill="#327EE8"></path>
<path d="M70.1211 117.839H117.113V60.9077H70.1211V117.839ZM72.4079 63.1945H114.826V115.552H72.4079V63.1945Z" fill="#327EE8"></path>
</svg></div>
</div>
<div class="indexcoop-keybenefits">
<div class="grid_heading institution">Audited</div>
<p class="grid_paragraph">Underlying smart contracts audited by OpenZeppelin and ABDK Consulting in September 2020.</p>
</div>
</div>
<div class="product_features">
<div class="features_logo">
<div class="html-embed-14 w-embed"><svg width="100%" height="100%" viewbox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M121.647 32.7264C111.998 26.2553 95.3638 24.895 87.5523 24.6105V23.3431H85.4656V18.2757C85.4656 18.0231 85.2611 17.8184 85.0085 17.8184H78.6248C78.3722 17.8184 78.1675 18.0231 78.1675 18.2757V23.3431H76.0808V24.6725C67.7988 25.0731 52.5494 26.639 43.4693 32.7264C43.0204 33.0256 42.8441 33.5989 43.0456 34.0997C43.2205 34.5375 43.6457 34.8178 44.1056 34.8178C44.1701 34.8178 44.2363 34.8115 44.3024 34.7989C55.4417 32.8535 67.2519 32.4884 76.0808 32.4177V33.6241H78.1675V109.726C78.1675 109.979 78.3722 110.183 78.6248 110.183H85.0085C85.2611 110.183 85.4656 109.979 85.4656 109.726V33.6241H87.5523V32.4057C96.5045 32.449 109.049 32.7443 120.814 34.7989C120.88 34.8115 120.947 34.8178 121.011 34.8178C121.471 34.8178 121.896 34.5375 122.071 34.0997C122.273 33.5989 122.096 33.0256 121.647 32.7264ZM76.0808 30.1276C68.9927 30.1843 59.9784 30.4315 50.8855 31.5263C59.211 28.33 69.7077 27.3026 76.0808 26.9733V30.1276ZM80.4543 20.1051H83.1788V23.3431H80.4543V20.1051ZM83.1788 107.896H80.4543V33.6241H83.1788V107.896ZM85.2656 25.6915V26.8341V26.8823V28.584V30.1107V30.6455V31.2536V31.3373H83.1788H80.4543H78.8731H78.3675V31.2556V30.6302V30.1142V28.9681V26.8748V25.7295V25.6299H80.4543H81.3362H83.1788H83.7805H85.2656V25.6915ZM87.5523 30.1189V26.904C93.6653 27.1457 105.222 28.0656 114.233 31.5294C104.485 30.3534 94.8402 30.1538 87.5523 30.1189Z" fill="#327EE8"></path>
<path d="M59.0013 67.1475C59.0013 61.3928 45.3091 58.2871 32.4264 58.2871C19.5437 58.2871 5.85156 61.3928 5.85156 67.1475V75.1606C5.85156 80.9121 19.5437 84.0178 32.4264 84.0178C45.3091 84.0178 59.0013 80.9121 59.0013 75.1606V67.1475ZM32.4264 60.5739C47.4746 60.5739 56.7146 64.4009 56.7146 67.1475C56.7146 69.8941 47.4746 73.7211 32.4264 73.7211C17.3783 73.7211 8.13832 69.8941 8.13832 67.1475C8.13832 64.4009 17.3783 60.5739 32.4264 60.5739ZM32.4264 81.7311C17.3783 81.7311 8.13832 77.9041 8.13832 75.1606V70.9131C12.5616 74.2434 22.7207 76.0079 32.4264 76.0079C42.1322 76.0079 52.2912 74.2434 56.7146 70.9131V75.1606C56.7146 77.9041 47.4746 81.7311 32.4264 81.7311Z" fill="#327EE8"></path>
<path d="M59.0013 80.6822C59.0013 80.0522 58.4895 79.5388 57.8579 79.5388C57.2264 79.5388 56.7146 80.0522 56.7146 80.6822V83.6997C56.7146 86.4463 47.4746 90.2733 32.4264 90.2733C17.3783 90.2733 8.13832 86.4463 8.13832 83.6997V80.6822C8.13832 80.0522 7.62648 79.5388 6.99494 79.5388C6.3634 79.5388 5.85156 80.0522 5.85156 80.6822V83.6997C5.85156 89.4544 19.5437 92.5601 32.4264 92.5601C45.3091 92.5601 59.0013 89.4544 59.0013 83.6997V80.6822Z" fill="#327EE8"></path>
<path d="M6.99494 88.0811C6.36341 88.0811 5.85156 88.5945 5.85156 89.2244V92.538C5.85156 98.2927 19.5437 101.398 32.4264 101.398C45.3091 101.398 59.0013 98.2927 59.0013 92.538V89.2244C59.0013 88.5945 58.4895 88.0811 57.8579 88.0811C57.2264 88.0811 56.7146 88.5945 56.7146 89.2244V92.538C56.7146 95.2847 47.4746 99.1117 32.4264 99.1117C17.3783 99.1117 8.13832 95.2847 8.13832 92.538V89.2244C8.13832 88.5945 7.62648 88.0811 6.99494 88.0811Z" fill="#327EE8"></path>
<path d="M59.0013 101.326V98.0596C59.0013 97.4297 58.4895 96.9163 57.8579 96.9163C57.2264 96.9163 56.7146 97.4297 56.7146 98.0596V101.326C56.7146 104.069 47.4746 107.896 32.4264 107.896C17.3783 107.896 8.13832 104.069 8.13832 101.326V98.0596C8.13832 97.4297 7.62648 96.9163 6.99494 96.9163C6.3634 96.9163 5.85156 97.4297 5.85156 98.0596V101.326C5.85156 107.078 19.5437 110.183 32.4264 110.183C45.3091 110.183 59.0013 107.078 59.0013 101.326Z" fill="#327EE8"></path>
</svg></div>
</div>
<div class="indexcoop-keybenefits">
<div class="grid_heading institution">Mintable</div>
<p class="grid_paragraph">Tokens can be created by or redeemed for underlying digital assets.</p>
</div>
</div>
<div class="product_features">
<div class="features_logo">
<div class="html-embed-14 w-embed"><svg width="100%" height="100%" viewbox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.17385 12.4691L13.5632 53.5299C13.6041 53.8323 13.7616 54.1031 14.001 54.289C14.2435 54.4717 14.5396 54.5441 14.8451 54.5158L26.6096 52.9692C26.2884 54.1661 26.2065 55.4135 26.3671 56.6513C26.6978 59.1743 27.9987 61.4233 30.0303 62.9856C31.7249 64.2865 33.7502 64.9731 35.8417 64.9731C36.2575 64.9731 36.6764 64.9448 37.0922 64.8912C42.3209 64.2014 46.0156 59.3885 45.3321 54.163C45.1683 52.922 44.7651 51.7408 44.1477 50.6667L55.9091 49.1233C56.2115 49.0824 56.4824 48.9249 56.6682 48.6855C56.8509 48.4461 56.9328 48.1406 56.895 47.8413L55.3516 36.1083C56.5233 36.4107 57.7517 36.4895 58.9707 36.332C64.1994 35.6422 67.8941 30.8293 67.2074 25.6037C66.5239 20.3782 61.7457 16.6993 56.4824 17.3639C55.2602 17.5245 54.098 17.9151 53.0396 18.5135L51.5025 6.78053C51.4616 6.47815 51.3041 6.20727 51.0647 6.02143C50.8222 5.83559 50.5135 5.75054 50.2206 5.79464L9.15974 11.1871C8.53293 11.269 8.09196 11.8454 8.17385 12.4691ZM49.3827 8.21054L51.0206 20.6901C51.0773 21.109 51.3576 21.4649 51.7545 21.6129C52.1451 21.761 52.5955 21.6791 52.9136 21.3988C54.0035 20.4318 55.339 19.8207 56.7784 19.6317C60.7629 19.0711 64.4167 21.9216 64.9396 25.8998C65.1916 27.8181 64.6781 29.7268 63.4907 31.2734C62.3032 32.8199 60.5929 33.8121 58.6746 34.0641C57.2415 34.2531 55.7863 34.0074 54.4854 33.3554C54.1011 33.1633 53.6507 33.2011 53.3105 33.4436C52.964 33.6893 52.7845 34.1051 52.838 34.524L54.4791 47.0066L41.9492 48.6508C41.5271 48.7075 41.1712 48.991 41.0231 49.391C40.8782 49.7879 40.9633 50.2352 41.2499 50.5502C42.2453 51.6526 42.8752 53.0039 43.0642 54.4591C43.5871 58.4373 40.7743 62.1005 36.7961 62.6234C34.8716 62.8722 32.9691 62.3588 31.4225 61.1713C29.876 59.9838 28.8869 58.2735 28.635 56.3553C28.4428 54.9 28.7011 53.4322 29.3783 52.1062C29.5705 51.7282 29.539 51.2746 29.2964 50.9281C29.0791 50.6226 28.7295 50.4431 28.3609 50.4431C28.3105 50.4431 28.2633 50.4462 28.2129 50.4525L15.683 52.0999L10.5897 13.3069L49.3827 8.21054Z" fill="#327EE8"></path>
<path d="M116.918 115.815V74.4014V32.9879C116.918 32.3579 116.404 31.8445 115.774 31.8445H74.3608C73.7309 31.8445 73.2175 32.3579 73.2175 32.9879V46.7178C73.2175 47.1399 73.4506 47.5305 73.8254 47.7258C74.1971 47.9274 74.6506 47.899 75.0003 47.6628C76.2098 46.847 77.6114 46.4155 79.0604 46.4155C83.0732 46.4155 86.3395 49.6818 86.3395 53.6947C86.3395 57.7075 83.0732 60.9707 79.0604 60.9707C77.6083 60.9707 76.2066 60.5392 75.0003 59.7265C74.6506 59.484 74.1971 59.4588 73.8254 59.6635C73.4506 59.8588 73.2175 60.2494 73.2175 60.6715V73.2581H60.6372C60.2119 73.2581 59.8214 73.4943 59.6261 73.8691C59.4276 74.2471 59.456 74.7007 59.6954 75.0503C60.5395 76.2756 60.9868 77.6993 60.9868 79.1639C60.9868 83.1768 57.7204 86.44 53.7076 86.44C49.6948 86.44 46.4316 83.1768 46.4316 79.1639C46.4316 77.6993 46.8788 76.2756 47.723 75.0503C47.9624 74.7007 47.9907 74.2471 47.7923 73.8691C47.597 73.4943 47.2064 73.2581 46.7812 73.2581H33.0008C32.3708 73.2581 31.8574 73.7715 31.8574 74.4014V115.815C31.8574 116.445 32.3708 116.958 33.0008 116.958H74.3577H74.4175H115.774C116.404 116.958 116.918 116.445 116.918 115.815ZM75.5042 62.5676C76.6287 63.0212 77.8319 63.2575 79.0604 63.2575C84.3363 63.2575 88.6263 58.9674 88.6263 53.6947C88.6263 48.4187 84.3363 44.1287 79.0604 44.1287C77.8319 44.1287 76.6287 44.3649 75.5042 44.8185V34.1312H114.631V73.2581H103.941C104.394 72.1336 104.63 70.9304 104.63 69.6988C104.63 64.4229 100.34 60.1328 95.0676 60.1328C89.7917 60.1328 85.5017 64.4229 85.5017 69.6988C85.5017 70.9272 85.7379 72.1336 86.1915 73.2581H75.5042V62.5676ZM34.1442 75.5448H44.8661C44.3905 76.6882 44.1448 77.9135 44.1448 79.1639C44.1448 84.4367 48.4348 88.7267 53.7076 88.7267C58.9835 88.7267 63.2735 84.4367 63.2735 79.1639C63.2735 77.9135 63.0279 76.6882 62.5522 75.5448H73.2143V88.1314C73.2143 88.5535 73.4474 88.9441 73.8222 89.1425C74.0136 89.2439 74.2276 89.2807 74.4392 89.2648C74.6561 89.2604 74.8711 89.2036 75.057 89.0764C76.2568 88.2681 77.6508 87.8403 79.0942 87.8356C83.0911 87.8545 86.3395 91.107 86.3395 95.1082C86.3395 99.1095 83.0911 102.365 79.0942 102.384C77.654 102.379 76.26 101.952 75.057 101.14C74.8715 101.013 74.6571 100.955 74.4406 100.95C74.2286 100.934 74.0142 100.971 73.8222 101.077C73.4474 101.272 73.2143 101.663 73.2143 102.085V114.672H34.1442V75.5448ZM114.631 114.672H75.5609V104.002C76.6689 104.441 77.853 104.674 79.0604 104.674C79.0698 104.674 79.0785 104.671 79.0879 104.671C79.0978 104.671 79.1072 104.674 79.1171 104.674C84.393 104.674 88.683 100.384 88.683 95.1082C88.683 89.8355 84.393 85.5455 79.1171 85.5455C79.1072 85.5455 79.0978 85.5482 79.0879 85.5482C79.0785 85.5482 79.0698 85.5455 79.0604 85.5455C77.85 85.5455 76.6687 85.7791 75.5609 86.2175V75.5448H88.0908C88.5129 75.5448 88.9035 75.3117 89.1019 74.9369C89.2972 74.5621 89.2752 74.1117 89.0358 73.762C88.22 72.5525 87.7884 71.1477 87.7884 69.6988C87.7884 65.6859 91.0548 62.4196 95.0676 62.4196C99.0805 62.4196 102.344 65.6859 102.344 69.6988C102.344 70.7855 102.027 71.8178 101.561 72.7911C101.406 73.1146 101.3 73.4581 101.096 73.7589C100.857 74.1085 100.832 74.5621 101.03 74.9369C101.229 75.3117 101.619 75.5448 102.041 75.5448H114.631V114.672Z" fill="#327EE8"></path>
</svg></div>
</div>
<div class="indexcoop-keybenefits">
<div class="grid_heading institution">Composable</div>
<p class="grid_paragraph">Composability within DeFi allows tokens to interact with DeFi lending, staking, and pairing.</p>
</div>
</div>
<div class="product_features">
<div class="features_logo">
<div class="html-embed-14 w-embed"><svg width="100%" height="100%" viewbox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M110.996 43.6804C110.996 43.4772 110.941 43.2803 110.841 43.103L96.3272 17.703C96.0693 17.2514 95.4919 17.0224 95.021 17.1579L27.2843 35.2846L27.3103 35.3749C27.0038 35.4492 26.7394 35.6458 26.578 35.9265L12.0637 61.3265C11.9637 61.5039 11.9121 61.7039 11.9121 61.9038C11.9121 70.5446 18.9435 77.5793 27.5877 77.5793C36.2317 77.5793 43.2631 70.5478 43.2631 61.9038C43.2631 61.7006 43.2115 61.5039 43.1115 61.3265L29.297 37.1522L60.2931 28.8564V39.7841C56.6452 40.3453 53.8423 43.5062 53.8423 47.3089C53.8423 51.1115 56.6452 54.2726 60.2931 54.8338V101.044C55.2422 101.583 51.2169 105.608 50.6783 110.656H29.2004V112.978H93.7083V110.656H72.2302C71.6916 105.608 67.6664 101.583 62.6154 101.044V54.8338C66.2633 54.2726 69.0662 51.1115 69.0662 47.3089C69.0662 43.5062 66.2633 40.3453 62.6154 39.7841V28.2339L92.9341 20.1189L79.8004 43.103C79.7004 43.2803 79.6454 43.4804 79.6454 43.6804C79.6454 52.3244 86.6801 59.3558 95.321 59.3558C103.962 59.3558 110.996 52.3244 110.996 43.6804ZM27.5877 75.2538C20.753 75.2538 15.1021 70.093 14.3249 63.4649H40.8505C40.0731 70.093 34.4222 75.2538 27.5877 75.2538ZM40.3312 61.1458H14.844L27.5877 38.8423L40.3312 61.1458ZM69.8887 110.656H53.0166C53.5875 106.508 57.1549 103.302 61.4543 103.302C65.757 103.302 69.321 106.508 69.8887 110.656ZM66.7439 47.3089C66.7439 50.2247 64.3701 52.5986 61.4543 52.5986C58.5384 52.5986 56.1646 50.2247 56.1646 47.3089C56.1646 44.3932 58.5384 42.0192 61.4543 42.0192C64.3701 42.0192 66.7439 44.3932 66.7439 47.3089ZM95.321 20.6221L108.065 42.9256H82.5773L95.321 20.6221ZM95.321 57.0334C88.4863 57.0334 82.8354 51.8728 82.0613 45.2446H108.58C107.806 51.8728 102.155 57.0334 95.321 57.0334Z" fill="#327EE8"></path>
</svg></div>
</div>
<div class="indexcoop-keybenefits">
<div class="grid_heading institution">Auto-rebalancing</div>
<p class="grid_paragraph">Token holders benefit from methodologist rebalancing without incurring transaction costs.</p>
</div>
</div>
</div>
</div>
</div>
<div class="in-the-media gray_bg wf-section">
<div class="maincontainer w-container">
<div class="head_cont institution-page">
<h1 class="allh2 investors_head">In the Media</h1>
</div>
<div class="line_cont investors">
<div class="heroline"></div>
</div>
<div class="w-layout-grid companies investors_grid">
<div id="w-node-c4164308-04a7-d78c-e6e2-0aa146588fa3-eed0a2af" class="investors_logo">
<div class="investors_icons w-embed"><svg width="100%" height="100%" viewbox="0 0 147 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 29.5049H144.717V33.5004H0V29.5049Z" fill="black"></path>
<path d="M16.0583 15.5807C16.0583 17.6559 15.3391 19.1744 13.9006 20.1363C12.4621 21.0982 10.4651 21.577 7.90957 21.5726H0.0625V0.878418H7.4393C10.1152 0.878418 12.0314 1.26491 13.1879 2.03789C14.3445 2.81087 14.9232 4.03475 14.9241 5.70954C14.9241 6.99523 14.6097 8.03719 13.9809 8.83541C13.3522 9.63363 12.3686 10.1672 11.0302 10.4362C12.7813 10.6756 14.0547 11.224 14.8504 12.0814C15.646 12.9388 16.0486 14.1052 16.0583 15.5807ZM10.6258 6.63659C10.6258 5.85317 10.3338 5.30738 9.74982 4.99924C9.16583 4.69109 8.26041 4.53919 7.03358 4.54354H4.31865V8.98295H6.91371C8.1704 8.98295 9.10348 8.80886 9.71294 8.46067C10.3224 8.11248 10.6267 7.50315 10.6258 6.63268V6.63659ZM11.7126 15.2073C11.7126 14.2802 11.3956 13.6247 10.7615 13.2409C10.1274 12.857 8.94189 12.665 7.20483 12.665H4.31865V17.8396H6.47637C8.13615 17.8396 9.28043 17.7599 9.90921 17.6006C10.538 17.4413 10.9955 17.1719 11.2818 16.7924C11.569 16.4155 11.7126 15.8871 11.7126 15.2073Z" fill="black"></path>
<path d="M17.7949 21.5791L24.7054 0.878418H30.238L37.1696 21.5791H32.8094L31.4209 17.376H23.3776L22.0195 21.5791H17.7949ZM24.5855 13.6822H30.2143L27.4072 5.12719L24.5855 13.6822Z" fill="black"></path>
<path d="M51.5929 21.5791L43.9882 6.78675V21.5791H39.8203V0.878418H45.3529L52.4294 14.8338V0.878418H56.6025V21.5791H51.5929Z" fill="black"></path>
<path d="M72.4168 21.5791L66.6379 12.934L65.3759 14.3847V21.5791H61.1211V0.878418H65.3759V8.95553L72.2113 0.878418H77.1762L69.3897 9.79249L77.7294 21.5791H72.4168Z" fill="black"></path>
<path d="M80.4297 21.5791V0.878418H84.6845V17.7221H93.4669V21.5791H80.4297Z" fill="black"></path>
<path d="M96.0918 21.5791V0.878418H109.66V4.60491H100.348V9.0182H108.194V12.7578H100.348V17.7194H109.659V21.5791H96.0918Z" fill="black"></path>
<path d="M128.445 15.5808C128.445 17.6561 127.758 19.2468 126.385 20.3532C125.011 21.4596 122.985 22.0128 120.307 22.0128C118.457 22.0128 116.85 21.7081 115.486 21.0988C114.122 20.4894 113.013 19.5076 112.158 18.1531L115.433 15.6722C115.817 16.2419 116.279 16.7557 116.806 17.1986C117.267 17.5521 117.788 17.8206 118.345 17.9912C119.011 18.1908 119.703 18.2864 120.398 18.2745C121.554 18.2745 122.457 18.0778 123.106 17.6843C123.755 17.2909 124.08 16.6903 124.08 15.8825C124.094 15.4723 123.975 15.0684 123.74 14.7308C123.47 14.387 123.121 14.1125 122.722 13.9304C122.268 13.7058 121.484 13.4491 120.368 13.1601C119.281 12.8702 118.257 12.5786 117.296 12.2852C116.413 12.0272 115.574 11.6413 114.806 11.1401C114.123 10.6891 113.557 10.0848 113.154 9.37612C112.752 8.66755 112.551 7.77489 112.551 6.69811C112.551 4.73433 113.219 3.20142 114.557 2.0994C115.894 0.997381 117.811 0.445939 120.307 0.445068C123.918 0.445068 126.473 1.67156 127.972 4.12456L124.728 6.63674C124.155 5.7593 123.511 5.13126 122.797 4.7526C122.082 4.37395 121.232 4.18462 120.246 4.18462C119.259 4.18462 118.457 4.36133 117.84 4.71474C117.222 5.06815 116.915 5.62438 116.918 6.38343C116.918 7.05108 117.239 7.56205 117.883 7.91633C118.527 8.27062 119.649 8.62708 121.249 8.98571C122.134 9.21551 123.009 9.46229 123.874 9.72604C124.699 9.97152 125.481 10.3424 126.191 10.8255C126.877 11.3009 127.437 11.9316 127.827 12.6652C128.24 13.4225 128.446 14.3944 128.445 15.5808Z" fill="black"></path>
<path d="M146.991 15.581C146.991 17.6562 146.305 19.247 144.932 20.3534C143.56 21.4598 141.535 22.0129 138.858 22.0129C137.007 22.0129 135.4 21.7083 134.037 21.0989C132.674 20.4896 131.567 19.5082 130.715 18.1546L133.99 15.6737C134.373 16.2438 134.836 16.7576 135.364 17.2001C135.824 17.5536 136.345 17.8221 136.902 17.9927C137.567 18.1922 138.26 18.2878 138.954 18.276C140.111 18.276 141.014 18.0793 141.663 17.6858C142.312 17.2924 142.636 16.6917 142.636 15.8839C142.651 15.4738 142.532 15.0699 142.296 14.7323C142.027 14.3881 141.678 14.1136 141.278 13.9319C140.825 13.7073 140.04 13.4505 138.924 13.1615C137.838 12.8717 136.814 12.5801 135.854 12.2867C134.971 12.0293 134.132 11.6433 133.364 11.1416C132.68 10.691 132.114 10.0866 131.711 9.37759C131.31 8.66903 131.11 7.77462 131.11 6.69436C131.11 4.73058 131.779 3.19768 133.118 2.09566C134.456 0.993641 136.372 0.442627 138.866 0.442627C142.478 0.442627 145.033 1.66912 146.531 4.12211L143.287 6.6343C142.714 5.75686 142.07 5.12882 141.356 4.75016C140.642 4.3715 139.792 4.18218 138.806 4.18218C137.82 4.18218 137.018 4.35889 136.399 4.7123C135.78 5.06571 135.472 5.62194 135.477 6.38099C135.477 7.04864 135.799 7.55962 136.442 7.9139C137.086 8.26818 138.208 8.62464 139.807 8.98328C140.692 9.21308 141.567 9.45986 142.433 9.72361C143.258 9.96909 144.039 10.34 144.749 10.823C145.437 11.2997 145.999 11.9322 146.39 12.668C146.792 13.4236 146.992 14.3946 146.991 15.581Z" fill="black"></path>
</g>
<defs>
<clippath id="clip0">
<rect width="146.991" height="33.0553" fill="white" transform="translate(0 0.445068)"></rect>
</clippath>
</defs>
</svg></div>
</div>
<div class="investors_logo"><img src="images/DeFi_Pulse_logo-2.svg" loading="lazy" alt="DeFi Pulse name logo" class="investors_icons"></div>
<div class="investors_logo"><img src="images/DeFi_Pulse_logo-2.svg" loading="lazy" alt="DeFi Pulse name logo" class="investors_icons"></div>
<div class="investors_logo">
<div class="investors_icons w-embed"><svg width="100%" height="100%" viewbox="0 0 210 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.2637 6.48496L23.0315 0.475342V17.8994L17.2637 23.1497V6.48496Z" fill="black"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.79102 9.53495L11.5715 11.8127L14.5589 9.1875V17.8995L8.79102 23.1499V9.53495Z" fill="black"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.07643 6.48496L0.308594 0.475342V23.2141L6.07643 18.324V6.48496Z" fill="black"></path>
<path d="M34.4258 20.1773H38.0339V9.36769L42.7025 16.4197H42.793L47.5133 9.30335V20.1901H51.1732V3.5125H47.203L42.806 10.5645L38.4089 3.5125H34.4387V20.1773H34.4258ZM66.4722 20.1773H79.2235V16.9087H70.132V13.4084H78.0337V10.1527H70.132V6.76824H79.1071V3.5125H66.4722V20.1773ZM99.7471 20.4218C103.355 20.4218 105.903 18.5687 105.903 15.2486V15.1971C105.903 12.2889 103.989 11.0792 100.588 10.1913C97.6909 9.45777 96.9796 9.09745 96.9796 8.00362V7.95215C96.9796 7.14143 97.7167 6.498 99.1393 6.498C100.549 6.498 102.01 7.11569 103.498 8.14518L105.411 5.37844C103.717 4.02724 101.635 3.25513 99.191 3.25513C95.764 3.25513 93.3327 5.24975 93.3327 8.27386V8.32534C93.3327 11.6326 95.5053 12.5591 98.8807 13.4213C101.674 14.1419 102.256 14.6181 102.256 15.5446V15.5961C102.256 16.5741 101.351 17.166 99.8376 17.166C97.9237 17.166 96.3459 16.3811 94.8328 15.1457L92.6473 17.7451C94.6518 19.5338 97.2124 20.4218 99.7471 20.4218ZM126.103 20.4218C129.711 20.4218 132.259 18.5687 132.259 15.2486V15.1971C132.259 12.2889 130.345 11.0792 126.944 10.1913C124.047 9.45777 123.336 9.09745 123.336 8.00362V7.95215C123.336 7.14143 124.073 6.498 125.495 6.498C126.905 6.498 128.366 7.11569 129.854 8.14518L131.768 5.37844C130.073 4.02724 127.991 3.25513 125.547 3.25513C122.12 3.25513 119.689 5.24975 119.689 8.27386V8.32534C119.689 11.6326 121.861 12.5591 125.237 13.4213C128.03 14.1419 128.612 14.6181 128.612 15.5446V15.5961C128.612 16.5741 127.707 17.166 126.194 17.166C124.28 17.166 122.702 16.3811 121.189 15.1457L119.016 17.7451C121.008 19.5338 123.569 20.4218 126.103 20.4218ZM144.959 20.1773H148.709L150.235 16.4325H157.322L158.848 20.1773H162.702L155.524 3.39668H152.136L144.959 20.1773ZM151.554 13.2025L153.779 7.79773L156.003 13.2025H151.554ZM176.578 20.1773H180.264V14.8497H183.161L186.756 20.1773H191.062L186.976 14.2191C189.11 13.4342 190.571 11.7484 190.571 9.04598V9.00737C190.571 7.43741 190.067 6.12482 189.136 5.19828C188.036 4.10445 186.381 3.5125 184.26 3.5125H176.578V20.1773ZM180.264 11.6068V6.81972H183.924C185.721 6.81972 186.821 7.63044 186.821 9.2004V9.25187C186.821 10.6545 185.786 11.6068 184.001 11.6068H180.264ZM205.327 20.1773H209.013V3.5125H205.327V20.1773Z" fill="black"></path>
</svg></div>
</div>
<div id="w-node-fc43b818-2604-396b-77fb-ca4859192cfd-eed0a2af" class="investors_logo">
<div class="investors_icons w-embed"><svg width="100%" height="100%" viewbox="0 0 139 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.380859 9.22534H8.62782L13.4299 21.3364L18.2944 9.22534H26.3241L14.2331 37.8961H6.15242L9.46215 30.2988L0.380859 9.22534Z" fill="black"></path>
<path d="M34.6877 8.74316C28.4914 8.74316 24.5742 14.2213 24.5742 19.6766C24.5742 25.8155 28.8689 30.6825 34.5701 30.6825C38.8231 30.6825 40.4266 28.1282 40.4266 28.1282V30.118H47.6196V9.22542H40.4266V11.1247C40.4266 11.1247 38.6376 8.74316 34.6877 8.74316ZM36.2177 15.4572C39.0767 15.4572 40.5521 17.6873 40.5521 19.6996C40.5521 21.8664 38.9714 23.9929 36.2177 23.9929C33.9354 23.9929 31.8729 22.1542 31.8729 19.7918C31.8729 17.396 33.5319 15.4572 36.2177 15.4572Z" fill="black"></path>
<path d="M50.0996 30.1179V0H57.623V11.1971C57.623 11.1971 59.41 8.74574 63.1526 8.74574C67.7305 8.74574 70.4127 12.1082 70.4127 16.913V30.1179H62.9444V18.7219C62.9444 17.0959 62.1587 15.525 60.3789 15.525C58.5672 15.525 57.623 17.1197 57.623 18.7219V30.1179H50.0996Z" fill="black"></path>
<path d="M83.2392 8.74561C76.1433 8.74561 71.918 14.0647 71.918 19.7635C71.918 26.2489 77.0339 30.6825 83.2661 30.6825C89.3067 30.6825 94.5924 26.4501 94.5924 19.8723C94.5924 12.675 89.0581 8.74561 83.2392 8.74561ZM83.307 15.5187C85.8135 15.5187 87.5478 17.5767 87.5478 19.7713C87.5478 21.6431 85.9318 23.9519 83.307 23.9519C80.9019 23.9519 79.097 22.05 79.097 19.7508C79.097 17.5359 80.5976 15.5187 83.307 15.5187Z" fill="black"></path>
<path d="M107.124 8.74561C100.028 8.74561 95.8027 14.0647 95.8027 19.7635C95.8027 26.2489 100.919 30.6825 107.151 30.6825C113.191 30.6825 118.477 26.4501 118.477 19.8723C118.477 12.675 112.943 8.74561 107.124 8.74561ZM107.192 15.5187C109.698 15.5187 111.433 17.5767 111.433 19.7713C111.433 21.6431 109.817 23.9519 107.192 23.9519C104.787 23.9519 102.982 22.05 102.982 19.7508C102.982 17.5359 104.482 15.5187 107.192 15.5187Z" fill="black"></path>
<path d="M124.414 30.5612C127.173 30.5612 129.41 28.3563 129.41 25.6364C129.41 22.9166 127.173 20.7117 124.414 20.7117C121.655 20.7117 119.418 22.9166 119.418 25.6364C119.418 28.3563 121.655 30.5612 124.414 30.5612Z" fill="black"></path>
<path d="M131.052 18.9028H122.059L130.041 0H139.001L131.052 18.9028Z" fill="black"></path>
</svg></div>
</div>
</div>
</div>
</div>
<div class="contact-our-team wf-section">
<div class="maincontainer w-container">
<div class="head_cont institution-page">
<h2 class="sub_h2 contact">Contact our Institutions Team</h2>
</div>
<p class="allparagraph contact">Our Institutions Team has decades of crypto and traditional finance experience. We are looking forward to hearing from you.</p>
<div class="button_block">
<a href="mailto:[email protected]?subject=Contact%20Indexcoop%20Institution" class="green_btn w-button"><strong class="greenbtn_text">Contact us <em>now</em></strong></a>
</div>
</div>
</div>
<div class="our-next-events wf-section">
<div class="maincontainer w-container">
<div class="w-layout-grid grid-21"><img src="images/Bild-1-1.png" loading="lazy" alt="Conference hall photo"><img src="images/94FD6AA5-C01F-4DB8-BE31-3BC945C7AD17-1.png" loading="lazy" alt="Conference panel photo"><img src="images/Bild-1.png" loading="lazy" alt="Conference hall crowd"></div>
<div class="head_cont next_event institution-page">
<h2 class="sub_h2">Our events</h2>
</div>
<div class="table_header_cont w-row">
<div class="w-col w-col-2">
<div class="eventtable_header">Date</div>
</div>
<div class="w-col w-col-4">
<div class="eventtable_header">Event</div>
</div>
<div class="column-10 w-col w-col-3">
<div class="eventtable_header">Place</div>
</div>
<div class="w-col w-col-3">
<div class="eventtable_header moreinfo">More Information</div>
<div class="eventtable_header more">more</div>
</div>
</div>
<div class="event_line"></div>
<div class="cont_col w-row">
<div class="column-11 w-col w-col-2">
<div class="eventtable_cont">Jan 26, 2022 </div>
</div>
<div class="w-col w-col-4">
<div class="eventtable_cont">The Financial Advisers Guide to Onchain Indices with Index Coop</div>
</div>
<div class="column-10 w-col w-col-3">
<div class="eventtable_cont">Zoom</div>
</div>
<div class="column-12 w-col w-col-3">
<a rel="nofollow noopener" href="https://us06web.zoom.us/webinar/register/5016420059693/WN_YmS7lV0rQ-WU1LIZEQRD_w?utm_campaign=User%20Webinars&utm_medium=email&_hsmi=200721087&_hsenc=p2ANqtz--Sea1sYWmKPbyxb4MgymyBOy5E0UFkJO9Suj2H12HIPm_QlseA61aQ49nx-f-Ukl_kELOX1iclIfYitUX1I2cNZDgMjw&utm_content=200721087&utm_source=hs_email" target="_blank" class="eventtable_cont link">Link</a>
</div>
</div>
<div class="event_line col"></div>
<div class="cont_col w-row">
<div class="column-11 w-col w-col-2">
<div class="eventtable_cont">Feb 10, 2022</div>
</div>
<div class="w-col w-col-4">
<div class="eventtable_cont">Understanding Decentralized Finance (DeFi)</div>
</div>
<div class="column-10 w-col w-col-3">
<div class="eventtable_cont">Online</div>
</div>
<div class="column-12 w-col w-col-3">
<a rel="nofollow noopener" href="https://www.cfaboston.org/store/events/registration.aspx?event=021022&expand=TRUE" target="_blank" class="eventtable_cont link">Website</a>
</div>
</div>
<div class="event_line col"></div>
<div class="cont_col w-row">
<div class="column-11 w-col w-col-2">
<div class="eventtable_cont">Feb 23, 2022</div>
</div>
<div class="w-col w-col-4">
<div class="eventtable_cont">J.P. Morgan Private Bank</div>
</div>
<div class="column-10 w-col w-col-3">
<div class="eventtable_cont">Online</div>
</div>
<div class="column-12 w-col w-col-3">
<a rel="nofollow noopener" href="mailto:[email protected]?subject=J.P.%20Morgan%20Private%20Bank%20Event" class="eventtable_cont link">Contact Us</a>
</div>
</div>
<div class="event_line col"></div>
</div>
</div>
<div class="get-in-touch institution wf-section">
<div class="maincontainer get-in-touch w-container">
<div class="head_cont">
<h1 id="contactus" class="sub_h2">Get in touch with us</h1>
</div>
<div class="form_container">
<div class="form-block-3 w-form">
<form id="wf-form-Email-Form" name="wf-form-Email-Form" data-name="Email Form" method="post" action="https://app.getresponse.com/add_subscriber.html" class="form-3">