-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1207 lines (1183 loc) · 62.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Nexus Mutual uses the power of blockchain technology and Ethereum to allow people from all over the world to share insurance risk together without the need for an insurance company.">
<meta name="keywords"
content="nexusmutual, nexus mutual, blockchain, insurance, ethereum, decentralised, smart contract">
<meta title="Nexus Mutual | A decentralised alternative to insurance">
<meta property="og:title" content="Nexus Mutual | A decentralised alternative to insurance">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.nexusmutual.io/">
<meta property="og:image" content="https://www.nexusmutual.io/assets/img/nxm-favicon-152x152.png">
<meta property="og:description"
content="Nexus Mutual uses the power of blockchain technology and Ethereum to allow people from all over the world to share insurance risk together without the need for an insurance company.">
<title>Nexus Mutual | A decentralised alternative to insurance</title>
<!-- <link href='https://fonts.googleapis.com/css?family=Lora:400,400italic|Work+Sans:300,400,500,600' rel='stylesheet' type='text/css'> -->
<link rel="stylesheet" href="https://use.typekit.net/xrl7uar.css">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:bold" rel="stylesheet">
<!-- <link rel="stylesheet" type="text/css" href="assets/fonts/ProximaNova/fonts.css" /> -->
<link href="assets/css/toolkit-startup.css" rel="stylesheet">
<link href="assets/css/application-startup.css" rel="stylesheet">
<link href="assets/css/custom.css" rel="stylesheet">
<link rel="icon" href="assets/img/nxm-favicon.gif" type="image/gif" sizes="16x16">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112311489-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-112311489-1');
</script>
</head>
<body>
<!--<a id="onTop" onclick="topFunction()" href="#stage" class="text-center" role="button" title="Go to top"><span class="icon icon-chevron-up"></span></a>-->
<div class="stage-shelf stage-shelf-right hidden" id="sidebar">
<ul class="nav nav-bordered nav-stacked flex-column text-center">
<li class="nav-item">
<a class="nav-link" href="#overview" data-target="#stage" data-toggle="stage" data-distance="-250">Overview</a>
</li>
<li class="nav-item">
<a class="nav-link" href="token-model.html">Token Model</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://nexusmutual.gitbook.io/docs/faq" target="_blank">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://nexusmutual.gitbook.io/docs/use-cases" target="_blank">Use Cases</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://nexusmutual.gitbook.io/docs/docs" target="_blank">Docs</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#Team" data-target="#stage" data-toggle="stage" data-distance="-250">Team</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">Whitepaper</a>
</li>
<li class="nav-item">
<a class="btn btn-nav mt-2" href="https://discord.gg/aQjkzW5" target="_blank">CHAT</a>
</li>
</ul>
</div>
<div class="stage" id="stage">
<div class="background-landing-topbar-4px"></div>
<div class="block-inverse app-header -background-landing" id="home" style="padding: 100px 1rem;">
<div id="nav-top" class="fixed-top app-navbar">
<div class="container">
<nav class="navbar navbar-transparent navbar-expand-lg" style="padding-left: 0; padding-right: 0">
<a class="navbar-brand mr-auto" href="/">
<img class="NXMLogo2" src="assets/img/NXMLogoWhite.png">
</a>
<button class="navbar-toggler" type="button" data-target="#stage" data-toggle="stage" data-distance="-250">
<span class="navbar-toggler-icon"></span>
</button>
<div class="d-none d-lg-block text-uppercase">
<ul class="nav nav-bordered">
<li class="nav-item px-1 ">
<a class="nav-link" href="#Overview">Overview</a>
</li>
<li class="nav-item px-1 ">
<a class="nav-link" href="token-model.html">Token Model</a>
</li>
<li class="nav-item px-1 ">
<a class="nav-link" href="https://nexusmutual.gitbook.io/docs/faq" target="_blank">FAQ</a>
</li>
<li class="nav-item px-1 ">
<a class="nav-link" href="https://nexusmutual.gitbook.io/docs/use-cases" target="_blank">Use Cases</a>
</li>
<li class="nav-item px-1 ">
<a class="nav-link" href="https://nexusmutual.gitbook.io/docs/docs" target="_blank">Docs</a>
</li>
<li class="nav-item px-1 ">
<a class="nav-link" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">Whitepaper</a>
</li>
<li class="nav-item px-1">
<a class="btn btn-nav" href="https://discord.gg/aQjkzW5" target="_blank">CHAT</a>
</li>
</ul>
</div>
</nav>
<div class="font-ibm" style="color: #ffffff90;font-weight: 600;">A people-powered alternative to insurance
</div>
</div>
</div>
<div class="hero">
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2 col-sm-10 offset-sm-1">
<h1 class="Smart-Contract-Cover mb-5 text-center">Get covered against smart contract failure</h1>
<div class="row text-center">
<div class="col-sm-6 mb-4">
<a class="btn btn-border-dark btn-lg" href="https://app.nexusmutual.io/#/SmartContractCover"
target="_blank">
GET A QUOTE
</a>
<p class="font-proxima mt-3" style="font-size: 20px; font-weight: 600;">to get protected</p>
</div>
<div class="col-sm-6">
<a class="btn btn-border-dark btn-lg" href="https://app.nexusmutual.io/#/Buy_Redeem" target="_blank">
BUY NXM
</a>
<p class="font-proxima mt-3" style="font-size: 20px; font-weight: 600;">own part of the mutual</p>
</div>
</div>
</div>
</div>
</div>
<div class="explore-btn">
<a href="javascript:;" onclick="scrollDown()">
explore
<img src="./assets/img/arrow-down.svg" alt="">
</a>
</div>
</div>
</div>
<div class="top-span-bar-4px d-none xs-d-block"></div>
<div class="section block-p-relative xs-d-none" id="Overview">
<div class="container">
<div class="top-span" style="overflow: hidden;">
<div class="top-span-bar-4px"></div>
<div class="row app-align-center pt-5">
<div class="col-md-6 col-sm-5 d-none d-md-block sm-d-block"
style="overflow: hidden;bottom: -20px;direction: rtl;">
<img class="app-iphone" src="assets/img/1-share-risk.svg" style="width: 150%;">
</div>
<div class="col-md-6 col-sm-7 px-5">
<h2 style="opacity: 0.6;">SHARED RISK</h2>
<h1 class="mb-4">A blockchain based solution</h1>
<p class="p mb-4">Nexus Mutual uses the power of Ethereum so people can share risk together without the
need for an insurance company.</p>
</div>
</div>
</div>
</div>
</div>
<div class="block d-none xs-d-block xs-text-center" id="overview">
<div class="container">
<h2 class="d-none xs-d-block" style="opacity: 0.6;">SHARED RISK</h2>
<div class="row app-align-center pt-5">
<div class="col-sm-6 d-none d-md-block" style="overflow: hidden;bottom: -20px;direction: rtl;">
<img class="app-iphone" src="assets/img/1-share-risk.svg" style="width: 150%;">
</div>
<div class="col-sm-6 d-none xs-d-block pb-5">
<img class="app-iphone" src="assets/img/1-share-risk.svg" style="width: 50vw;">
</div>
<div class="col-sm-6 px-5 px-xs-1">
<h2 class="xs-d-none" style="opacity: 0.6;">SHARED RISK</h2>
<h1 class="mb-4">A blockchain based solution</h1>
<p class="p mb-4">Nexus Mutual uses the power of Ethereum so people can share risk together without the need
for an insurance company.</p>
<!-- <ul class="nav nav-stacked flex-column black">
<li class="nav-item">
<a class="nav-link" href="#">Overview</a>
</li>
<li class="nav-item">
<a class="nav-link" href="">Technology</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="">Whitepaper</a>
</li>
<li class="nav-item">
<a class="btn btn-nav" href="">SIGN UP FOR UPDATES</a>
</li>
</ul> -->
</div>
</div>
</div>
</div>
<div class="top-span-bar-4px d-none xs-d-block"></div>
<div class="block block-secondary xs-text-center">
<div class="container">
<div class="row app-align-center sm-align-center">
<div class="col-sm-6 d-none xs-d-block pb-5">
<img class="app-iphone" src="assets/img/2-smart-contract-cover.svg" style="width: 50vw;">
</div>
<div class="col-md-6 col-sm-7 px-5 sm-px-0 px-xs-1">
<h1 class="mb-4">Smart Contract Cover</h1>
<p class="p">Secure risk and potential bugs in smart contract code. Be covered for events like The DAO hack
or Parity multi-sig wallet issues.</p>
<p class="p mb-4">Purchase Smart Contract Cover</p>
<!-- <p class="p mb-4">Nexus Mutual will provide a fixed claims pay-out if a smart contract is hacked.
</p> -->
<a class="btn btn-border" href="https://app.nexusmutual.io/#/SmartContractCover" target="_blank">GET A
QUOTE</a>
</div>
<div class="col-md-6 col-sm-5 d-none d-md-block sm-d-block">
<img style="width: 100%" class="app-iphone" src="assets/img/2-smart-contract-cover.svg">
</div>
</div>
</div>
</div>
<div class="block block-secondary xs-text-center">
<div class="container">
<div class="row app-align-center sm-align-center">
<div class="col-md-6 col-sm-5 d-none d-md-block sm-d-block">
<img style="width: 100%" class="app-iphone" src="assets/img/3-replace-insurance.svg">
</div>
<div class="col-sm-6 d-none xs-d-block pb-5">
<img class="app-iphone" src="assets/img/3-replace-insurance.svg" style="width: 50vw;">
</div>
<div class="col-md-6 col-sm-7 px-5 sm-px-0 px-xs-1">
<h1 class="mb-4">Mutuals to replace insurance</h1>
<p class="p">We are building an alternative risk sharing platform.</p>
<p class="p mb-4">In the future we plan to offer crypto wallet cover, as well as more standard products,
like earthquake cover</p>
<a class="btn btn-border-secondary" href="assets/docs/nmx_white_paperv2_3.pdf"
target="_blank">WHITEPAPER</a>
</div>
</div>
</div>
</div>
<div class="block block-secondary video-section xs-text-center sm-text-center">
<div class="container">
<div class="row">
<div class="col-xl-7 col-lg-12 col-md-12">
<div class="row app-align-center">
<div class="col-xl-12 col-lg-6 col-md-6">
<div class="top-span-bar-4px"></div>
<div class="embed-responsive embed-responsive-16by9">
<!--<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0" allowfullscreen></iframe>-->
<iframe width="560" height="315" src="https://www.youtube.com/embed/5_9jjvSyats?rel=0" frameborder="0"
allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class="col-xl-12 col-lg-6 col-md-6 md-text-center">
<div class="row mt-4 md-mt-0 app-align-center">
<div class="col-xl-2 col-lg-3 col-md-12">
<img class="team-hugh">
</div>
<div class="col-xl-10 col-lg-9 col-md-12">
<h2 class="mb-3 pt-xs-1 sm-pt-1 md-pt-1" style="opacity: 0.6;">HUGH KARP | FOUNDER & BOARD
MEMBER</h2>
<h1>Introducing Nexus Mutual at EthCC</h1>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-5 col-lg-12 xs-pt-50 sm-pt-50 cmt-3 md-d-none">
<a href="https://github.com/somish/NexusMutual" target="_blank">
<div class="row app-align-center">
<div class="col-xl-12 col-lg-6 order-lg-last order-xl-first">
<div class="top-span-bar-4px"></div>
<!-- <img style="width: 100%" src="assets/img/code.jpg"> -->
<pre class="code">
struct cover
{
bytes8 productName;
address memberAddress;
bytes4 currencyCode;
uint sumAssured;
uint16 coverPeriod;
uint validUntil;
address scAddress;
}
struct Product_Details
{
bytes8 productName;
string productHash;
uint16 STLP;
uint16 STL;
uint16 PM;
uint16 minDays;
}
</pre>
</div>
<div class="col-xl-12 col-lg-6">
<div class="row mt-4 app-align-center">
<div class="col-md-3">
<img class="team-github-logo">
</div>
<div class="col-md-9">
<h2 class="mb-3 pt-xs-1 sm-pt-1" style="opacity: 0.0;">Github</h2>
<h1>See our code on Github</h1>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="col-md-12 d-none md-d-block md-pt-50">
<a href="https://github.com/somish/NexusMutual" target="_blank">
<div class="row app-align-center">
<div class="col-md-6 md-text-center">
<div class="row app-align-center">
<div class="col-lg-3 col-md-12">
<img class="team-github-logo">
</div>
<div class="col-lg-9 col-md-12">
<h2 class="mb-3 md-pt-1" style="opacity: 0.0;">Github</h2>
<h1>See our code on Github</h1>
</div>
</div>
</div>
<div class="col-md-6">
<div class="top-span-bar-4px"></div>
<pre class="code">
struct cover
{
bytes8 productName;
address memberAddress;
bytes4 currencyCode;
uint sumAssured;
uint16 coverPeriod;
uint validUntil;
address scAddress;
}
struct Product_Details
{
bytes8 productName;
string productHash;
uint16 STLP;
uint16 STL;
uint16 PM;
uint16 minDays;
}
</pre>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="top-span-bar-4px"></div>
<div class="section block block-inverse block-secondary bg-dark" id="technology">
<div class="container">
<div class="row app-align-center">
<div class="col-md-7">
<h2 style="opacity: 0.6;">RUN BY MEMBERS</h2>
<h1 class="mb-4">Community Driven</h1>
<p class="p-dark mb-4">No insurance company. Nexus Mutual is run entirely by its members. Only members can
decide which claims are valid. All member decisions are recorded and enforced by smart contracts on the
Ethereum public blockchain.</p>
<a class="btn btn-border-dark d-none xs-d-inline-block sm-d-inline-block"
href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">WHITEPAPER</a>
</div>
<div class="col-md-5 text-center xs-d-none sm-d-none">
<a class="btn btn-border-dark" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">WHITEPAPER</a>
</div>
</div>
</div>
<div class="container mt-5 pt-5 xs-d-none sm-d-none" id="tabs">
<div class="row">
<div class="col-xs-12 ">
<nav>
<div class="nav nav-tabs nav-fill text-tab" id="nav-tab" role="tablist">
<a class="nav-item nav-link active" id="discretionary-cover-tab" data-toggle="tab"
href="#discretionary-cover" role="tab" aria-controls="discretionary-cover" aria-selected="true">
<li>
<div class="circle"><span class="slider"></span><span class="slider-full"></span>
<!-- <div class="border-full"></div> -->
</div>
<div>DISCRETIONARY COVER</div>
</li>
</a>
<a class="nav-item nav-link" id="legal-backing-tab" data-toggle="tab" href="#legal-backing" role="tab"
aria-controls="legal-backing" aria-selected="false">
<li>
<div class="circle"><span class="slider"></span></div>
<div>LEGAL BACKING</div>
</li>
</a>
<a class="nav-item nav-link" id="membership-tab" data-toggle="tab" href="#membership" role="tab"
aria-controls="membership" aria-selected="false">
<li>
<div class="circle"><span class="slider"></span></div>
<div>MEMBERSHIP</div>
</li>
</a>
</div>
</nav>
<div class="tab-content mt-5 py-5 px-3 px-sm-0" id="nav-tabContent">
<div class="tab-pane fade show active" id="discretionary-cover" role="tabpanel"
aria-labelledby="discretionary-cover-tab">
<div class="row app-align-center">
<div class="col-md-5">
<p class="p-dark mb-4">Smart Contract Cover is not a contract of insurance. Fellow members will
decide on claims. Claims payments are enforced by token driven economic incentives rather than
placing trust in an insurance company.</p>
<a class="btn btn-border-dark" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">LEARN
MORE</a>
</div>
<div class="col-md-7 px-5">
<img class="technology-image" src="assets/img/discretionary-cover.svg">
</div>
</div>
</div>
<div class="tab-pane fade" id="legal-backing" role="tabpanel" aria-labelledby="nlegal-backing-tab">
<div class="row app-align-center">
<div class="col-md-5">
<p class="p-dark mb-4">When joining the mutual you become a legal member of a UK company. Your
membership rights will be backed by legal agreements. All members will have legal rights to the
pool of funds.</p>
<a class="btn btn-border-dark" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">LEARN
MORE</a>
</div>
<div class="col-md-7 px-5">
<img class="technology-image" src="assets/img/legal-backing.svg">
</div>
</div>
</div>
<div class="tab-pane fade" id="membership" role="tabpanel" aria-labelledby="membership-tab">
<div class="row app-align-center">
<div class="col-md-5">
<p class="p-dark mb-4">Membership rights are represented by tokens. Tokens can be used to purchase
cover as well as participate in claims assessment, underwriting and governance. All funds raised
from token purchases belong to members.</p>
<a class="btn btn-border-dark" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">LEARN
MORE</a>
</div>
<div class="col-md-7 px-5">
<img class="technology-image" src="assets/img/membership.svg">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container mt-5 pt-5 d-none xs-d-block sm-d-block">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row app-align-center">
<div class="col-sm-12 col-12">
<h2 style="opacity: 0.6;">DISCRETIONARY COVER</h2>
<p class="p-dark mb-4 mt-4">Smart Contract Cover is not a contract of insurance. Fellow members will
decide on claims. Claims payments are enforced by token driven economic incentives rather than
placing trust in an insurance company.</p>
<a class="btn btn-border-dark" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">LEARN
MORE</a>
</div>
<div class="col-sm-8 offset-sm-2 col-12 text-center mt-4">
<img class="xs-technology-image" src="assets/img/discretionary-cover.svg">
</div>
</div>
</div>
<div class="carousel-item">
<div class="row app-align-center">
<div class="col-12">
<h2 style="opacity: 0.6;">LEGAL BACKING</h2>
<p class="p-dark mb-4 mt-4">When joining the mutual you become a legal member of a UK company. Your
membership rights will be backed by legal agreements. All members will have legal rights to the pool
of funds.</p>
<a class="btn btn-border-dark" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">LEARN
MORE</a>
</div>
<div class="col-12 text-center mt-4">
<img class="xs-technology-image" src="assets/img/legal-backing.svg">
</div>
</div>
</div>
<div class="carousel-item">
<div class="row app-align-center">
<div class="col-12">
<h2 style="opacity: 0.6;">MEMBERSHIP</h2>
<p class="p-dark mb-4 mt-4">Membership rights are represented by tokens. Tokens can be used to
purchase cover as well as participate in claims assessment, underwriting and governance. All funds
raised from token purchases belong to members.</p>
<a class="btn btn-border-dark" href="assets/docs/nmx_white_paperv2_3.pdf" target="_blank">LEARN
MORE</a>
</div>
<div class="col-12 text-center mt-4">
<img class="xs-technology-image" src="assets/img/membership.svg">
</div>
</div>
</div>
</div>
<ol class="carousel-indicators mt-5" style="position: unset;">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
</div>
</div>
</div>
<div class="top-span-bar-4px"></div>
<div class="block block-secondary d-none xs-d-block sm-d-block text-center" id="Team">
<div class="container">
<h2 style="opacity: 0.6;">JOIN OUR COMMUNITY</h2>
<h1 class="mb-5">Team</h1>
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner mb-3">
<div class="carousel-item active">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-hugh">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Hugh Karp</h2>
<h2>FOUNDER & BOARD MEMBER</h2>
<p class="p py-3">Insurance professional and actuary with 15 years of experience in a broad range of
insurance and reinsurance roles including CFO of UK Life operations for a global reinsurer.
Blockchain enthusiast since 2011.</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/HughKarp" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/hughkarp/"
target="_blank"></a></li>
</ul>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-rox">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Roxana Danila</h2>
<h2>CTO</h2>
<p class="p py-3">Product-minded engineer with over 5 years of experience in leading and building
software products at scale. Previously backed by Entrepreneur First & Tech Lead at Facebook. Into
crypto before it was cool.</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/roxdanila" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/roxdanila/"
target="_blank"></a></li>
</ul>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-nitika">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Nitika Arora</h2>
<h2>LEAD DEVELOPER & BOARD MEMBER</h2>
<p class="p py-3">Full stack developer and lead technology architect at Somish Solutions. Focused on
technology design, enterprise scalability and security. Team lead for Ethereum based projects.</p>
<ul class="social-icons">
<li><a class="team-icon team-github" href="https://github.com/nitika-goel" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/nitika-goel-79991836/"
target="_blank"></a></li>
</ul>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-ish">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Ish Goel</h2>
<h2>BOARD MEMBER & BLOCKCHAIN EXPERT</h2>
<p class="p py-3">CEO and key blockchain architect at Somish Solutions. Established blockchain centre
of excellence in 2016. Overseen development of several blockchain MVP’s across several industries
and government.</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/ishgoel" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/ishgoel/"
target="_blank"></a></li>
</ul>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-graeme">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Graeme Thurgood</h2>
<h2>BOARD MEMBER & MUTUAL EXPERT</h2>
<p class="p py-3">Insurance professional of 17 years with extensive experience setting up and running
mutuals in the UK. Previously worked for RSA, Allianz and Aviva and currently representing Regis
Mutual Management.</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-nick">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Nick Munoz-McDonald</h2>
<h2>BOARD MEMBER & SECURITY EXPERT</h2>
<p class="p py-3">Previously Head of Audit for Solidified, current Melon Council member and all round
smart contract security expert.</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-kayleigh">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Kayleigh Petrie</h2>
<h2>Communications and Engagement</h2>
<p class="p py-3">Returning from a 2650 mile stroll from Mexico to Canada, Kayleigh works on all
things communications and engagement. She believes in using simple and effective communication to
break down barriers between experts and laypeople. Previously she has done this with the UK Civil
Service and in the NHS.</p>
<ul class="social-icons">
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/kayleigh-petrie-06916b30/"
target="_blank"></a></li>
</ul>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-steve">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Steve Barker</h2>
<h2>ADVISOR</h2>
<p class="p py-3">Founder and CEO of SwapForex. Over 22 years’ experience in financial services and
start-ups. Managed the launch of numerous UK and international Investment funds. Co-founded numerous
start-ups in media, internet TV and financial services.</p>
<ul class="social-icons">
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/barkersteven/"
target="_blank"></a></li>
</ul>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row sm-align-center">
<div class="col-sm-4">
<img class="team-img team-evan">
</div>
<div class="col-sm-8 sm-text-left">
<h2 class="team-name mt-3">Evan van Ness</h2>
<h2>ADVISOR</h2>
<p class="p py-3">Founder of <a href="http://www.weekinethereum.com/"
target="_blank">WeekInEthereum.com</a><br>
It's time to decentralise the Internet.
</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/evan_van_ness" target="_blank"></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<a class="btn btn-border px-1 py-1 mx-3" href="#carouselExampleControls" role="button" data-slide="prev"
style="font-size: 25px; line-height: 0">
<span class="icon icon-triangle-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="btn btn-border px-1 py-1 mx-3" href="#carouselExampleControls" role="button" data-slide="next"
style="font-size: 25px; line-height: 0">
<span class="icon icon-triangle-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<div class="section block block-secondary xs-d-none sm-d-none" id="team">
<div class="container">
<h2 style="opacity: 0.6;">JOIN OUR COMMUNITY</h2>
<h1 class="mb-4">Team</h1>
<div class="row app-align-center mt-4 pt-4">
<div class="col-md-6">
<nav>
<div class="row nav nav-tabs nav-fill text-tab" role="tablist" id="nav-tab">
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link active py-3" id="hugh-tab" data-toggle="tab"
href="#team-text-hugh" role="tab" aria-controls="team-text-hugh" aria-selected="true">
<div class="team-img team-hugh"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="rox-tab" data-toggle="tab"
href="#team-text-rox" role="tab" aria-controls="team-text-rox" aria-selected="false">
<div class="team-img team-rox"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="nitika-tab" data-toggle="tab"
href="#team-text-nitika" role="tab" aria-controls="team-text-nitika" aria-selected="false">
<div class="team-img team-nitika"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="ish-tab" data-toggle="tab"
href="#team-text-ish" role="tab" aria-controls="team-text-ish" aria-selected="false">
<div class="team-img team-ish"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="graeme-tab" data-toggle="tab"
href="#team-text-graeme" role="tab" aria-controls="team-text-graeme" aria-selected="false">
<div class="team-img team-graeme"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="nick-tab" data-toggle="tab"
href="#team-text-nick" role="tab" aria-controls="team-text-nick" aria-selected="false">
<div class="team-img team-nick"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="kayleigh-tab" data-toggle="tab"
href="#team-text-kayleigh" role="tab" aria-controls="team-text-kayleigh" aria-selected="false">
<div class="team-img team-kayleigh"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="steve-tab" data-toggle="tab"
href="#team-text-steve" role="tab" aria-controls="team-text-steve" aria-selected="false">
<div class="team-img team-steve"></div>
</a>
<a class="col-xl-4 col-lg-4 col-md-6 nav-item nav-link py-3" id="evan-tab" data-toggle="tab"
href="#team-text-evan" role="tab" aria-controls="team-text-evan" aria-selected="false">
<div class="team-img team-evan"></div>
</a>
</div>
</nav>
</div>
<div class="col-sm-6 tab-content mt-5 py-5 px-5" id="nav-tabContent">
<div class="tab-pane fade show active" id="team-text-hugh" role="tabpanel" aria-labelledby="hugh-tab">
<h2 class="team-name">Hugh Karp</h2>
<h2>FOUNDER & BOARD MEMBER</h2>
<p class="p py-3">Insurance professional and actuary with 15 years of experience in a broad range of
insurance and reinsurance roles including CFO of UK Life operations for a global reinsurer. Blockchain
enthusiast since 2011.</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/HughKarp" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/hughkarp/" target="_blank"></a>
</li>
</ul>
</div>
<div class="tab-pane fade" id="team-text-rox" role="tabpanel" aria-labelledby="rox-tab">
<h2 class="team-name">Roxana Danila</h2>
<h2>CTO</h2>
<p class="p py-3">Product-minded engineer with over 5 years of experience in leading and building software
products at scale. Previously backed by Entrepreneur First & Tech Lead at Facebook. Into crypto before
it was cool.</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/roxdanila" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/roxdanila/"
target="_blank"></a></li>
</ul>
</div>
<div class="tab-pane fade" id="team-text-nitika" role="tabpanel" aria-labelledby="nitika-tab">
<h2 class="team-name">Nitika Arora</h2>
<h2>LEAD DEVELOPER & BOARD MEMBER</h2>
<p class="p py-3">Full stack developer and lead technology architect at Somish Solutions. Focused on
technology design, enterprise scalability and security. Team lead for Ethereum based projects.</p>
<ul class="social-icons">
<li><a class="team-icon team-github" href="https://github.com/nitika-goel" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/nitika-goel-79991836/"
target="_blank"></a></li>
</ul>
</div>
<div class="tab-pane fade" id="team-text-ish" role="tabpanel" aria-labelledby="ish-tab">
<h2 class="team-name">Ish Goel</h2>
<h2>BOARD MEMBER & BLOCKCHAIN EXPERT</h2>
<p class="p py-3">CEO and key blockchain architect at Somish Solutions. Established blockchain centre of
excellence in 2016. Overseen development of several blockchain MVP’s across several industries and
government.</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/ishgoel" target="_blank"></a></li>
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/ishgoel/" target="_blank"></a>
</li>
</ul>
</div>
<div class="tab-pane fade" id="team-text-graeme" role="tabpanel" aria-labelledby="graeme-tab">
<h2 class="team-name">Graeme Thurgood</h2>
<h2>BOARD MEMBER & MUTUAL EXPERT</h2>
<p class="p py-3">Insurance professional of 17 years with extensive experience setting up and running
mutuals in the UK. Previously worked for RSA, Allianz and Aviva and currently representing Regis Mutual
Management.</p>
</div>
<div class="tab-pane fade" id="team-text-nick" role="tabpanel" aria-labelledby="nick-tab">
<h2 class="team-name">Nick Munoz-McDonald</h2>
<h2>BOARD MEMBER & SECURITY EXPERT</h2>
<p class="p py-3">Previously Head of Audit for Solidified, current Melon Council member and all round
smart contract security expert.</p>
</div>
<div class="tab-pane fade" id="team-text-kayleigh" role="tabpanel" aria-labelledby="kayleigh-tab">
<h2 class="team-name">Kayleigh Petrie</h2>
<h2>Communications and Engagement</h2>
<p class="p py-3">Returning from a 2650 mile stroll from Mexico to Canada, Kayleigh works on all things
communications and engagement. She believes in using simple and effective communication to break down
barriers between experts and laypeople. Previously she has done this with the UK Civil Service and in
the NHS.</p>
<ul class="social-icons">
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/kayleigh-petrie-06916b30/"
target="_blank"></a></li>
</ul>
</div>
<div class="tab-pane fade" id="team-text-steve" role="tabpanel" aria-labelledby="steve-tab">
<h2 class="team-name">Steve Barker</h2>
<h2>ADVISOR</h2>
<p class="p py-3">Founder and CEO of SwapForex. Over 22 years’ experience in financial services and
start-ups. Managed the launch of numerous UK and international Investment funds. Co-founded numerous
start-ups in media, internet TV and financial services.</p>
<ul class="social-icons">
<li><a class="team-icon team-linkedin" href="https://www.linkedin.com/in/barkersteven/"
target="_blank"></a></li>
</ul>
</div>
<div class="tab-pane fade" id="team-text-evan" role="tabpanel" aria-labelledby="evan-tab">
<h2 class="team-name">Evan van Ness</h2>
<h2>ADVISOR</h2>
<p class="p py-3">Founder of <a href="http://www.weekinethereum.com/"
target="_blank">WeekInEthereum.com</a><br>
It's time to decentralise the Internet.
</p>
<ul class="social-icons">
<li><a class="team-icon team-twitter" href="https://twitter.com/evan_van_ness" target="_blank"></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="section block pt-0">
<div class="container">
<h1 class="mb-5">Participants</h1>
<div class="row">
<div class="col-sm-3 col-6">
<a href="https://www.1confirmation.com/" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-1confirmation.png')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://blockchain.capital/" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-blockchaincapital.png')">
</div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://versionone.vc/" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-versionone.jpeg')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://www.semantic.vc/" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-semantic.png')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://kenetic.capital" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-kenetic.png')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://www.kryptonite1.co" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-kr1.png')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="http://www.milliwatt.io" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-milliwatt.png')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="http://1kx.network/" target="_blank">
<div class="top-span investor">
<div class="img-investor" style="background-image: url('assets/img/investor-1kx.png')"></div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="section block pt-0">
<div class="container">
<h1 class="mb-5">Partners</h1>
<div class="row">
<div class="col-sm-3 col-6">
<a href="https://solidified.io" target="_blank">
<div class="top-span partner">
<div class="img-partner" style="background-image: url('assets/img/partner-solidified.png')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://incentivai.co" target="_blank">
<div class="top-span partner">
<div class="img-partner" style="background-image: url('assets/img/partner-incentivai.png')"></div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://www.londoncryptoservices.com" target="_blank">
<div class="top-span partner">
<div class="img-partner" style="background-image: url('assets/img/partner-LondonCryptoServices.png')">
</div>
</div>
</a>
</div>
<div class="col-sm-3 col-6">
<a href="https://govblocks.io" target="_blank">
<div class="top-span partner">
<div class="img-partner" style="background-image: url('assets/img/partner-govblocks.png')"></div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="block block-inverse block-secondary bg-dark">
<div class="container">
<div class="row app-align-center">
<div class="col-md-6">
<h1 class="mb-4">Stay updated</h1>
<p class="p-dark mb-4">Stay tuned for the latest development updates. Sign up to our newsletter.</p>
<!-- <p class="p-dark mb-4">Membership of the mutual will be represented by “NXM” tokens. By signing up, you’ll be the first to know when we launch.</p> -->
</div>
<div class="col-md-6 px-5 sm-px-1 md-px-1 xs-d-none">
<!--<p class="signedup mb-3 d-none">Thank you! You're signed up.</p>
<form class="form-inline d-flex xs-d-block">
<input class="form-control form-control-border mb-3" id="request-email" placeholder="[email protected]">
<a class="btn btn-fill mb-3 mx-2 md-mx-0" onclick="requestPreview()" >GET UPDATES</a>
</form>-->
<div id="sib_embed_signup" class="BeFirstForm">
<div class="forms-builder-wrapper" style="position:relative;margin-left: auto;margin-right: auto;">
<input type="hidden" id="sib_embed_signup_lang" value="en">
<input type="hidden" id="sib_embed_invalid_email_message"
value="That email address is not valid. Please try again.">
<input type="hidden" name="primary_type" id="primary_type" value="email">
<div id="sib_loading_gif_area" style="position: absolute;z-index: 9999;display: none;">
<img src="assets/img/loader_sblue.gif"
style="display: block;margin-left: auto;margin-right: auto;position: relative;top: 40%;">
</div>
<form class="description" id="theform" name="theform"
action="https://my.sendinblue.com/users/subscribeembed/js_id/38015/id/1" onsubmit="return false;">
<input type="hidden" name="js_id" id="js_id" value="38015">
<input type="hidden" name="listid" id="listid" value="4">
<input type="hidden" name="from_url" id="from_url" value="yes">
<input type="hidden" name="hdn_email_txt" id="hdn_email_txt" value="">
<div class="sib-container rounded">
<input type="hidden" name="req_hid" id="req_hid" value="" style="font-size: 13px;">
<div class="view-messages" style=" margin:5px 0;"> </div> <!-- an email as primary -->
<div class="primary-group email-group forms-builder-group ui-sortable">
<div class="row mandatory-email form-inline d-flex" style="margin: auto 0">
<input type="text" name="email" id="email" value=""
class="form-control form-control-border mb-3" placeholder="[email protected]">
<button class="btn btn-fill mb-3 mx-2 md-mx-0" type="submit" data-editfield="subscribe"
onclick="gtag('event', 'subscribe', {'event_category': 'newsletter','event_label': 'email'});">Subscribe</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!--<iframe width="540" height="193" src="https://my.sendinblue.com/users/subscribe/js_id/37v37/id/1" frameborder="0" scrolling="auto" allowfullscreen style="display: block;margin-left: auto;margin-right: auto;max-width: 100%;"></iframe>-->
<ul class="social-icons">
<li><a class="dark-icon icon-github-dark" href="https://github.com/somish/NexusMutual"
target="_blank"></a></li>
<li><a class="dark-icon icon-medium-dark" href="https://medium.com/nexus-mutual" target="_blank"></a></li>
<li><a class="dark-icon icon-twitter-dark" href="https://twitter.com/NexusMutual" target="_blank"></a>
</li>