forked from Ethannnrogers/swapblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1021 lines (940 loc) · 57.7 KB
/
index.html
File metadata and controls
1021 lines (940 loc) · 57.7 KB
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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>swapblocks</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link href="public/images/swapblocks_icon.png" rel="icon" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css?family=Roboto:900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Work+Sans:200" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Signika+Negative:600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Heebo:900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="public/style/style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css" rel="stylesheet" type='text/css'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns"
crossorigin="anonymous">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-md navbar-light fixed-top" id="nav">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample01" aria-expanded="false" aria-controls="navbar">
</button>
<div class="collapse navbar-collapse " id="navbarsExample01">
<ul class="navbar-nav navbar-right ml-auto" id="nav-ul">
<li class="nav-item">
<a class="nav-link menu-item js-scroll-trigger menu-link bold" id="home">home</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item js-scroll-trigger menu-link bold" id="about">about</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item js-scroll-trigger menu-link bold" id="nav-repo">repo</a>
</li>
<!--<li class="nav-item">-->
<!--<a class="nav-link menu-item js-scroll-trigger menu-link bold" id="distribution">distribution</a>-->
<!--</li>-->
<!--<li class="nav-item">-->
<!--<a class="nav-link menu-item js-scroll-trigger menu-link bold" id="roadmap">roadmap</a>-->
<!--</li>-->
<!--<li class="nav-item">-->
<!--<a class="nav-link menu-item js-scroll-trigger menu-link bold" id="team">team</a>-->
<!--</li>-->
<!--<li class="nav-item">-->
<!--<a class="nav-link menu-item js-scroll-trigger menu-link bold" id="faqq">faq</a>-->
<!--</li>-->
</ul>
<!--<a href="https://view.publitas.com/swapblocks/swapblocks_wp/page/1" target="__blank"><button class="btn btn-nav">white paper</button></a>-->
<a href="https://explorer.swapblocks.io"><button class="btn btn-nav">Explorer</button></a>
<a href="https://links.swapblocks.io"><button class="btn btn-nav">Links</button></a>
<a href="mailto:contact@swapblocks.io"><button class="btn btn-nav">contact us</button></a>
</div>
</nav>
<!-- /navbar mobile -->
<nav id="mobile-nav-section">
<i id="mobile-menu-button" class="fas fa-bars"></i>
<i id="mobile-menu-button-2" class="fas fa-times"></i>
<div id="mobile-nav">
<ul class="navbar-nav navbar-right ml-auto text-center" id="nav-ul">
<li class="nav-item">
<a class="nav-link menu-item-2 js-scroll-trigger menu-link bold" id="home-2">home</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item-2 js-scroll-trigger menu-link bold" id="about-2">about</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item-2 js-scroll-trigger menu-link bold" id="nav-repo-2">repo</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item-2 js-scroll-trigger menu-link bold" id="distribution-2">distribution</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item-2 js-scroll-trigger menu-link bold" id="roadmap-2">roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item-2 js-scroll-trigger menu-link bold" id="team-2">team</a>
</li>
<li class="nav-item">
<a class="nav-link menu-item-2 js-scroll-trigger menu-link bold" id="faqq-2">faq</a>
</li>
<li>
<a href="https://explorer.swapblocks.io"><button class="btn btn-nav-2">Explorer</button></a>
</li>
<li>
<a href="https://links.swapblocks.io"><button class="btn btn-nav-2">Links</button></a>
</li>
<li>
<a href="mailto:contact@swapblocks.io"><button class="btn btn-nav-2" id="mobile-menu-bottom">contact us</button></a>
</li>
</ul>
</div>
</nav>
<canvas class="particles"></canvas>
<div class="section" id="section-1">
<div class="container">
<div class="row">
<div class="col-xl-12">
<img src="public/images/swapblocks_logo2.png" alt="swapblocks" id="logo1">
<p class="text-center" id="slogan">
Let's change the markets.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 home-buttons text-center" id="home-button-1">
<a href="https://view.publitas.com/swapblocks/swapblocks_wp/page/1" target="__blank"><button class="btn bttnn">white paper</button></a>
<a href="https://view.publitas.com/swapblocks/sbx_one_pager/page/1" target="__blank"><button class="btn bttnn">ONE PAGER</button></a>
</div>
<!-- <div id="buttons">
</div> -->
<div class="container" id="icons">
<!-- <div class="row">
<div class="col-lg-12 text-center"> -->
<a href="https://www.facebook.com/pg/swapblocks.io/about/?ref=page_internal" target="_blank">
<i class="fab fa-facebook-f" aria-hidden="true"></i>
</a>
<a href="https://discordapp.com/invite/4TFTP8C" target="_blank">
<i class="fab fa-discord"></i>
</a>
<a href="https://twitter.com/swapblocks" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://t.me/swapblocks" target="_blank">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="https://github.com/SwapBlocks" target="_blank">
<i class="fab fa-github"></i>
</a>
<!-- </div>
</div> -->
</div>
</div>
<!--<div class="container" id="iframe">-->
<!--<iframe width="560" height="315" src="https://www.youtube.com/embed/eELfyo3ubWc" frameborder="0" allowfullscreen></iframe>-->
<!--[> <iframe frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen src="https://www.youtube.com/watch?v=eELfyo3ubWc"></iframe> <]-->
<!--</div>-->
</div>
</div>
<div class="section" id="section-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h3 class="title title-mob text-xs-center" id="title-1">today's problems</h3>
</div>
</div>
<div class="row">
<div class="col-xl-6 center-ev">
<!-- ========== Section 1 ========== -->
<i class="fas fa-users icon"></i>
<h5>1. Middlemen</h5>
<p class="text">
Middlemen increase transaction cost and oftentimes have an informational advantage.
<br> Buyers & sellers must trust middlemen in order to participate.
</p>
<br>
<br>
</div>
<div class="col-xl-6 center-ev">
<!-- ========== Section 2 ========== -->
<i class="fas fa-briefcase icon"></i>
<h5>2. Corporate Actions</h5>
<p class="text">
Principal & interest payments, dividends & other corporate actions are slow, manual, expensive processes that are prone to
human error. These actions are managed by third parties, representing another layer of cost and inefficiency.
</p>
<br>
<br>
</div>
</div>
<div class="row">
<div class="col-xl-6 center-ev">
<!-- ========== Section 3 ========== -->
<i class="fas fa-key icon"></i>
<h5>3. Centralized Ownership Lineage & Custody</h5>
<p class="text">
Custody of assets is held by 3rd parties which creates security vulnerabilities. Settlements are slow, inefficient & costly
</p>
<br>
<br>
</div>
<div class="col-xl-6 center-ev">
<!-- ========== Section 4 ========== -->
<i class="fas fa-clock icon"></i>
<h5>4. Illiquidity</h5>
<p class="text">
Non-exchange traded assets are typically illiquid (eg. Real Estate investments, private equity, hedge funds, bonds). Markets
are not tradable 24/7 leading to inefficiency (eg. Asian markets can trade on news while US markets
are closed & vice versa).
</p>
<br>
<br>
</div>
</div>
</div>
</div>
<div class="section" id="section-3">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h3 class="title-2 text-center" id="title-2">tomorrow's solutions</h3>
</div>
</div>
<div class="row">
<div class="col-xl-6 center-ev">
<!-- ========== Section 1 ========== -->
<i class="fas fa-users icon text-3"></i>
<h5 class="text-3">1. Middlemen</h5>
<p class="text-3 text-3">
The swapblocks protocol reduces the role of middlemen to advisory/underwriting roles and liquidity providers. Completed & existing orders in any market are viewable by buyers & sellers,
removing informational asymmetry. No trusted intermediary required.
</p>
<br>
<br>
</div>
<div class="col-xl-6 center-ev">
<!-- ========== Section 2 ========== -->
<i class="fas fa-briefcase icon text-3"></i>
<h5 class="text-3">2. Corporate Actions</h5>
<p class="text-3 text-3">
Stock splits, proxy voting, P&I payments & dividends can be fully or partially automated. Central securities depositories
can be disintermediated.
</p>
<br>
<br>
</div>
</div>
<div class="row">
<div class="col-xl-6 center-ev">
<!-- ========== Section 3 ========== -->
<i class="fas fa-key icon text-3"></i>
<h5 class="text-3">3. Centralized Ownership Lineage & Custody</h5>
<p class="text-3 text-3">
Participants can retain custody of their assets. Decentralized trading removes the need for central securities
depositories to hold your assets. Settlement is instant and fully automated.
</p>
<br>
<br>
</div>
<div class="col-xl-6 center-ev">
<!-- ========== Section 4 ========== -->
<i class="fas fa-clock icon text-3"></i>
<h5 class="text-3">4. Illiquidity</h5>
<p class="text-3 text-3">
Traditionally illiquid assets can be easily traded in compliance with regulatory requirements and markets become tradable
24/7.
</p>
<br>
<br>
</div>
</div>
</div>
</div>
<!-- ========== REPO ========= -->
<div class="section-2" id="repo">
<div class="container">
<div class="row">
<div class="col">
<h3 class="title text-center" id="title-2-2">swapblocks repo</h3>
<!-- ========== PRE SALE DATES ========== -->
<p class="text-2 text-center">The premier digital repurchase platform.</p>
<p class="text-center quote"><q class=" text-center">Swapblocks Repo is designed to guide companies on a stable venture into blockchain repurchase agreements</q></p>
<h4>About</h4>
<p>
Swapblocks Repo is a digital platform for corporations to engage in distributed ledger repurchase agreements (repos). The application uniquely leverages bilateral
repurchase agreements coded into the blockchain to build an untapped lending network. Swapblocks Repo avoids higher brokers and banking fees and significantly shortens
processing. Over time, Swapblocks Repo establishes a community of users that can quickly respond to opportunities which require capital to move forward. At the conclusion
of the loan's term, interest and principal are seamlessly delivered to the respective parties to the transaction. It is designed to:
</p>
<p>
<strong>Generate liquidity:</strong> Traditionally, repurchase agreements have been used by the $2.67 T money market sector, hedge funds, and large commercial
banks. Swapblocks Repo seeks to fill the gap for underserved, micro-capitalization ($50-300M) corporations that already have collateralized debt (repurchase agreements)
on their books.
</p>
<p>
<strong>Reduce credit risk and fees:</strong> Centralized repurchase agreements are more costly and less transparent than those performed over a permissioned ledger.
Swapblocks Repo delivers the same stability of traditional repos at a lower cost, and with shortened processing times.
</p>
<p>
<strong>Modernize the Repurchase market:</strong> The repurchase agreement is a long-established financial instrument; now, it is enhanced by the endless possibilities
created by open ledger applications.
</p>
<p>
<strong>Utilization of Smart Contracts:</strong> One of the most promising applications of blockchain technology is the smart contract. It improves efficiency in commercial
transactions by automatically executing the components of its code. This reduces middleman expenses.
</p>
</div>
</div>
</div>
</div>
<!-- ========== COIN DISTRIBUTION ========= -->
<!--<div class="section" id="coin-dis">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-lg-12">-->
<!--<h3 class="title-2 text-center" id="title-3">coin distribution</h3>-->
<!--[> ========== PRE SALE DATES ========== <]-->
<!--<p class="text-3 text-center">Pre-sale and public sale dates to be determined.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row" id="dist">-->
<!--<div class="col-xl-3"></div>-->
<!--<div class="col-xl-6">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-md-3">-->
<!--<p class="lb-txt text-center">Ticker</p>-->
<!--<p class="text-3 text-center">SBX</p>-->
<!--</div>-->
<!--<div class="col-md-6">-->
<!--<p class="lb-txt text-center">Supply</p>-->
<!--<p class="text-3 text-center">100M + Block Rewards</p>-->
<!--</div>-->
<!--<div class="col-md-3">-->
<!--<p class="lb-txt text-center">Initial Price</p>-->
<!--<p class="text-3 text-center">$0.10</p>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-xl-3 "></div>-->
<!--</div>-->
<!--</div>-->
<!-- <div class="container" id="top-row-perc">
<div class="row">
<div class="col-lg-8">
<div class="row btm-spc">
<div class="col-sm-4">
<div class="container percents">
<h5 class="percentage">60%</h5>
<p class="text sm-txt">Pre and Public Sale</p>
<p class="blue-txt sm-txt">60,000,000 tokens</p>
</div>
</div>
<div class="col-sm-4">
<div class="container percents md-mrg">
<h5 class="percentage">20%</h5>
<p class="text sm-txt">Development Fund</p>
<p class="blue-txt sm-txt">20,000,000 tokens</p>
</div>
</div>
<div class="col-sm-4">
<div class="container percents">
<h5 class="percentage">7%</h5>
<p class="text sm-txt">Bounties</p>
<p class="blue-txt sm-txt">7,000,000 tokens</p>
</div>
</div>
</div>
<div class="row btm-spc">
<div class="col-sm-4">
<div class="container percents">
<h5 class="percentage">8%</h5>
<p class="text sm-txt">Management</p>
<p class="blue-txt sm-txt">8,000,000 tokens</p>
</div>
</div>
<div class="col-sm-4">
<div class="container percents md-mrg">
<h5 class="percentage">2%</h5>
<p class="text sm-txt">Advisors</p>
<p class="blue-txt sm-txt">2,000,000 tokens</p>
</div>
</div>
<div class="col-sm-4">
<div class="container percents">
<h5 class="percentage">3%</h5>
<p class="text sm-txt">Airdrop</p>
<p class="blue-txt sm-txt">3,000,000</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="container">
<div id="piechart"></div>
</div>
</div>
</div>
</div> -->
<!--<div class="container" id="top-row-perc">-->
<!--<div class="row" id="counter">-->
<!--<div class="col-lg-4 percent-cont">-->
<!--<div class="container percents">-->
<!--<h5 class="percentage ">60%</h5>-->
<!--<p class="text-3 sm-txt">Pre and Public Sale</p>-->
<!--<p class="blue-txt sm-txt">60,000,000 tokens</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4 percent-cont">-->
<!--<div class="container percents md-mrg">-->
<!--<h5 class="percentage">20%</h5>-->
<!--<p class="text-3 sm-txt">Development Fund</p>-->
<!--<p class="blue-txt sm-txt">20,000,000 tokens</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4 percent-cont">-->
<!--<div class="container percents">-->
<!--<h5 class="percentage">7%</h5>-->
<!--<p class="text-3 sm-txt">Bounties</p>-->
<!--<p class="blue-txt sm-txt">7,000,000 tokens</p>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row">-->
<!--<div class="col-lg-4 percent-cont">-->
<!--<div class="container percents">-->
<!--<h5 class="percentage">8%</h5>-->
<!--<p class="text-3 sm-txt">Management</p>-->
<!--<p class="blue-txt sm-txt">8,000,000 tokens</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4 percent-cont">-->
<!--<div class="container percents md-mrg">-->
<!--<h5 class="percentage">2%</h5>-->
<!--<p class="text sm-txt">Advisors</p>-->
<!--<p class="blue-txt sm-txt">2,000,000 tokens</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4 percent-cont">-->
<!--<div class="container percents">-->
<!--<h5 class="percentage">3%</h5>-->
<!--<p class="text sm-txt">Airdrop</p>-->
<!--<p class="blue-txt sm-txt">3,000,000</p>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!-- DONUT CHART -->
<!-- <div class="row">
<div class="col-md-1"></div>
<div class="col-md-10">
<div class="container">
<div id="piechart"></div>
</div>
</div>
<div class="col-md-1"></div>
</div> -->
<!--</div>-->
</div>
<!--<div class="section-2" id="section-4">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-lg-12">-->
<!--<h3 class="title text-center" id="title-4">swapblocks outlook</h3>-->
<!--<p class="text text-center" id="p-2">This is our Roadmap</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row">-->
<!--<div class="col-md-5">-->
<!--[> SPRING 2018 <]-->
<!--<div class="row pad">-->
<!--<div class="col-sm-12" id="fir-sec">-->
<!--<p class=" text-right light-font map-txt">White Paper</p>-->
<!--<p class="text text-right dark-font map-txt">Our White Paper is released.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> WINTER 2018 <]-->
<!--<div class="row">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">ARK Core V2 based testnet</p>-->
<!--<p class="text text-right dark-font map-txt">Launching a testnet based on-->
<!--<br> ARK Core V2</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> SPRING 2019 <]-->
<!--<div class="row" id="asset-wallet">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">Asset Wallet</p>-->
<!--<p class="text text-right dark-font map-txt">Custom wallet with asset interface.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> FALL 2019 <]-->
<!--<div class="row" id="fiat-con">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">Fiat Consortium</p>-->
<!--<p class="text text-right dark-font map-txt">Create Fiat consortium managing registered Fiat--->
<!--<br> backed assets on swapblocks.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> 2020 & Beyond <]-->
<!--<div class="row" id="asset-man">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">Asset Managers & Governments</p>-->
<!--<p class="text text-right dark-font map-txt">Contracting with asset managers and-->
<!--<br> governments</p>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-md-1 dotline">-->
<!--<div class="container">-->
<!--<span class="dot" id="dot-1"></span>-->
<!--<span class="gps_ring dot"></span>-->
<!--<span class="dot" id="dot-3"></span>-->
<!--<span class="dot" id="dot-4"></span>-->
<!--<span class="dot" id="dot-5"></span>-->
<!--<span class="dot" id="dot-6"></span>-->
<!--<span class="dot" id="dot-7"></span>-->
<!--<span class="dot" id="dot-8"></span>-->
<!--<span class="dot" id="dot-9"></span>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-md-1 dotline-2"></div>-->
<!--<div class="col-md-5">-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> SPRING 2018 <]-->
<!--<div class="row">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">DPoS Blockchain</p>-->
<!--<p class="text text-left dark-font map-txt">Swapblocks DPoS blockchain (ARK Clone).</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> SPRING 2019 <]-->
<!--<div class="row">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">Asset Management Protocol</p>-->
<!--<p class="text text-left dark-font map-txt">Beta release of swapblocks asset management-->
<!--<br> protocol.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> SUMMER 2019 <]-->
<!--<div class="row pad" id="partnership-dev">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">Partnership Development</p>-->
<!--<p class="text text-left dark-font map-txt">Strategic partnerships.</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row filler">-->
<!--</div>-->
<!--[> WINTER 2019 <]-->
<!--<div class="row" id="new-asset">-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">New Asset Classes</p>-->
<!--<p class="text text-left dark-font map-txt">Strategic expansion into new asset classes.</p>-->
<!--</div>-->
<!--</div>-->
<div class="row filler">
</div>
</div>
</div>
</div>
</div>
<!-- Mobile Roadmap -->
<!--<div class="section" id="section-55">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-lg-12">-->
<!--<h3 class="title text-center">swapblocks outlook</h3>-->
<!--<p class="text-3 dark-font text-center">This is our Roadmap</p>-->
<!--</div>-->
<!--<div class="col-sm-12">-->
<!--<p class=" text-right light-font map-txt">White Paper</p>-->
<!--<p class="text text-right dark-font map-txt">Our White Paper is released.</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">DPoS Blockchain</p>-->
<!--<p class="text text-left dark-font map-txt">Swapblocks DPoS blockchain (ARK Clone).</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">ARK Core V2 based testnet</p>-->
<!--<p class="text text-right dark-font map-txt">Launching a testnet based on-->
<!--<br> ARK Core V2</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">Asset Management Protocol</p>-->
<!--<p class="text text-left dark-font map-txt">Beta release of swapblocks asset management-->
<!--<br> protocol.</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">Asset Wallet</p>-->
<!--<p class="text text-right dark-font map-txt">Custom wallet with asset interface.</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">Partnership Development</p>-->
<!--<p class="text text-left dark-font map-txt">Strategic partnerships.</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">Fiat Consortium</p>-->
<!--<p class="text text-right dark-font map-txt">Create Fiat consortium managing registered Fiat--->
<!--<br> backed assets on swapblocks.</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-left light-font map-txt">New Asset Classes</p>-->
<!--<p class="text text-left dark-font map-txt">Strategic expansion into new asset classes.</p>-->
<!--</div>-->
<!--<div class="col-sm-12 road-obj">-->
<!--<p class=" text-right light-font map-txt">Asset Managers & Governments</p>-->
<!--<p class="text text-right dark-font map-txt">Contracting with asset managers and-->
<!--<br> governments</p>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="section" id="section-5">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-lg-12">-->
<!--<h3 class="title-2 text-center">meet the team</h3>-->
<!--<p class="text" id="foundingtext">-->
<!--Together, the founding team has vast knowledge and experience in brokerage, lending and software development. Based in the-->
<!--banking hub of Charlotte, North Carolina, the team is strategically positioned to impact the financial-->
<!--markets.-->
<!--</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row">-->
<!--<div class="col-lg-3 col-md-6 col-sm-12 text-center">-->
<!--<div class="founder-pro text-center">-->
<!--<img class="profile-pic" src="public/images/pro_swap_lance.jpg">-->
<!--<h6 class="text-center pro-name"><strong>Lance Rogers</strong></h6>-->
<!--<p class="text-3 text-center"><strong>CTO</strong></p>-->
<!--<a href="https://www.linkedin.com/in/lancekrogers/" target="__blank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-3 col-md-6 col-sm-12 text-center">-->
<!--<div class="founder-pro text-center">-->
<!--<img class="profile-pic" src="public/images/carlos.jpeg">-->
<!--<h6 class="pro-name"><strong>Carlos Medina</strong></h6>-->
<!--<p class="text-3"><strong>CEO</strong></p>-->
<!--<a href="https://www.linkedin.com/in/carlosdmedina951/" target="__lank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-3 col-md-6 col-sm-12 text-center">-->
<!--<div class="founder-pro text-center" >-->
<!--<img class="profile-pic" src="public/images/andy.png">-->
<!--<h6 class="pro-name"><strong>Andy Vincent</strong></h6>-->
<!--<p class="text-3"><strong>COO</strong></p>-->
<!--<a href="#" target="__lank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-3 col-md-6 col-sm-12 text-center">-->
<!--<div class="founder-pro text-center">-->
<!--<img class="profile-pic" src="public/images/shelbysetzer.jpeg">-->
<!--<h6 class="pro-name"><strong>Shelby Setzer</strong></h6>-->
<!--<p class="text-3"><strong>CIO</strong></p>-->
<!--<a href="https://www.linkedin.com/in/shelbysetzer/" target="__lank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row">-->
<!--<div class="col-lg-12">-->
<!--<h3 class="title-2 text-center" id="meetadvisors">meet the advisors</h3>-->
<!--<div class="container text-center" id="advisors">-->
<!--<div class="row">-->
<!--<div class="col-lg-4">-->
<!--<div class="advisor">-->
<!--<img class="profile-pic" src="public/images/pro_swap_henry.jpg">-->
<!--<h6 class="light-font text-center pro-name"><strong>Henry Jiang</strong></h6>-->
<!--<p class="text-3 text-center advisor-t"><strong>Director of Treasury Fraud & Analytics, Bank of America</strong></p>-->
<!--<a href="https://www.linkedin.com/in/henry-jiang-5b40b51/" target="__blank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4">-->
<!--<div class="advisor">-->
<!--<img class="profile-pic" src="public/images/pro_swap_jamie.png">-->
<!--<h6 class="light-font text-center pro-name"><strong>Jamie Cupper</strong></h6>-->
<!--<p class="text-3 text-center advisor-t"><strong>Experienced DPOS advisor</strong></p>-->
<!--<a href="https://www.linkedin.com/in/jamie-cupper-mcips-b1290112/" target="__blank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4">-->
<!--<div class="advisor">-->
<!--<img class="profile-pic" src="public/images/pro_swap_georgi.jpg">-->
<!--<h6 class="light-font text-center pro-name"><strong>Georgi Stoyanov</strong></h6>-->
<!--<p class="text-3 text-center advisor-t"><strong>Network Architect, Louisiana State University</strong></p>-->
<!--<a href="https://www.linkedin.com/in/georgi-stoyanov-13a59424/k" target="__blank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="row">-->
<!--<div class="col-lg-4">-->
<!--<div class="advisor">-->
<!--<img class="profile-pic" src="public/images/troy_pelshak.jpg">-->
<!--<h6 class="light-font text-center pro-name"><strong>Troy Pelshak</strong></h6>-->
<!--<p class="text-3 text-center advisor-t"><strong>International Project Manager</strong></p>-->
<!--<a href="https://www.linkedin.com/in/tpelshak/" target="__blank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4">-->
<!--<div class="advisor">-->
<!--<img class="profile-pic" src="public/images/pro_swap_brandon.jpg">-->
<!--<h6 class="light-font text-center pro-name"><strong>Brandon Mcpherson </strong></h6>-->
<!--<p class="text-3 text-center advisor-t"><strong>Treasury Finance Consultant, Wells Fargo</strong></p>-->
<!--<a href="https://www.linkedin.com/in/brandonmcpherson/" target="__blank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-lg-4">-->
<!--<div class="advisor">-->
<!--<img class="profile-pic" src="public/images/atiff.jpeg">-->
<!--<h6 class="light-font text-center pro-name"><strong>Atif Farid Mohammad </strong></h6>-->
<!--<p class="text-3 text-center advisor-t"><strong>Sr. Data Scientist, UNC Charlotte</strong></p>-->
<!--<a href="https://www.linkedin.com/in/brandonmcpherson/" target="__blank"><i class="fab fa-linkedin-in"></i></a>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--[> Partnerships <]-->
<!--<div class="row">-->
<!--<div class="col-lg-12">-->
<!--<h3 class="title-2 text-center">Partners</h3>-->
<!--<div class="container-small">-->
<!--<div class="row"> -->
<!--<ul align="center" class="logolist">-->
<!--<li>-->
<!--<a href="https://www.bkcoincapital.com/" target="_blank">-->
<!--<img class="logo" src="public/images/bklogo.jpg">-->
<!--</a>-->
<!--</ul>-->
<!--</div>-->
<!--</div>-->
<!--</div> -->
<!--</div> -->
<!--</div>-->
<!--</div>-->
<!-- FAQ -->
<!--<div class="section" id="section-6">-->
<!--<div class="container">-->
<!--<div class="row">-->
<!--<div class="col-xl-12">-->
<!--<h3 class="title text-center" id="faq">faq</h3>-->
<!--<p class="text text-center" id="faqp">Get answers to our most commonly asked questions about swapblocks</p>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="container" id="faq">-->
<!--<div class="row">-->
<!--<div class="col-xl-6">-->
<!--<div class="faq_container">-->
<!--<div class="faq">-->
<!--<div class="faq_question text">What type of platform is swapblocks?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--SWAPBlocks is a decentralized asset management -->
<!--and exchange platform built on a Delegated Proof of Stake (DPoS) -->
<!--blockchain.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">How is swapblocks different from security token competitors?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Most of swapblocks’ competitors are DAPPs on the Ethereum network.-->
<!--As a full blockchain protocol, we provide SBX holders decentralized power over the -->
<!--network and a sound tokenomics model. The swapblocks consortium model is also a much -->
<!--more efficient way to manage compliance and transaction governance compared to simple -->
<!--smart contract governance. Additionally, the swapblocks protocol will incorporate native -->
<!--decentralized exchange (DEX) functionality. This isn’t meant to exclude other exchanges, -->
<!--but it will remove reliance upon them.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">What types of assets can be issued on swapblocks?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Swapblocks can be used to list any asset that requires a chain of custody.-->
<!--Our main value add is the ability to send private forms along with each transaction.-->
<!--The ability to send arbitrary data through swapblocks allows users to build one data-->
<!--conversion process with swapblocks instead of building a separate process for each-->
<!--client system the issuer interacts with. Some examples include equities, bonds, derivatives, -->
<!--real estate, fund shares, stable coins and crypto-proxy tokens.Simple utility -->
<!--tokens may be better served by other platforms. Other use cases can be found in -->
<!--the white paper.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">Can anyone operate a node?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Anyone can operate a routing node and/or seek election as a delegate.-->
<!--Joining a consortium will likely require differing processes for various markets, -->
<!--depending on the regulatory requirements for the asset type in a given jurisdiction -->
<!--and the type of data required in the consortium data packet for transaction validation.-->
<!--Municipal nodes are issuers of a tokenized asset on the protocol and may be a consortium -->
<!--member for a given market as well.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">How does delegate voting work?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Holders of SBX vote for delegates they believe will benefit the network. Each SBX will -->
<!--allow for a specified number of votes (to be determined), which the holder can allocate -->
<!--to one or more candidates. Anyone can seek election as a delegate. Delegate candidates -->
<!--are encouraged to publicize their platform. SWAPBlocks will strive to foster a competitive -->
<!--delegate environment where competition results in the most qualified delegates. Should -->
<!--delegates not perform their duties appropriately or fail to deliver on their campaign -->
<!--promises they can be replaced via the same voting mechanism.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">When will the bounty program launch?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--We announce bounties on an as needed basis. If you would like to participate please-->
<!--join our discord channel and check the #bounties channel periodically. -->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">What are ways delegate candidates can incentivize voters?<br><br></div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Delegates can promise a wide range of incentives to voters, but a couple examples include-->
<!--1) Reinvesting block rewards and/or transaction fees back into the network via a -->
<!--development fund or bounty program, and 2) Returning a percentage of block rewards to -->
<!--users who voted for the delegate.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="col-xl-6">-->
<!--<div class="faq_container">-->
<!--<div class="faq">-->
<!--<div class="faq_question text">Why is there no hard cap on SBX supply?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Block rewards incentivize delegates to secure the network. This is an integral part of the -->
<!--blockchain protocol. As such, the uncapped supply simply allows for delegates to continue -->
<!--receiving block rewards into the future. After the initial distribution of coins in the genesis -->
<!--block, there will be no new coins minted except those released via block rewards.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">Who can create applications or run businesses on swapblocks?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Anyone can create applications or establish businesses on the protocol. Some examples include -->
<!--trading platforms that link to the SWAP DEX, stable coin issuers, and KYC/AML/Accreditation -->
<!--providers that manage white listing for consortiums/municipals.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">Can I operate multiple node types at the same time.</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--<p>Yes, you can operate multiple node types simultaneously.</p> -->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">Who can participate in the public sale?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Details of the public sale are still being determined. The regulatory environment around -->
<!--token sales is unclear. We will release more details around the public sale and investor -->
<!--eligibility as we move closer to launch.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">Who can participate in the pre-sale?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">At this time, we plan to run the pre-sale under US Reg. D rule 506(b) -->
<!--exemption. This exemption mandates that investors must be accredited. Coins will be sent -->
<!--directly sent to your SBX wallet after verifying your investment eligibility and receiving payment.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">When is the airdrop happening?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--The airdrop will take place sometime after the pre-sale has concluded and the bounty program has -->
<!--launched, but before the public sale. Specific dates will be announced once determined. The purpose -->
<!--of the airdrop is to improve network effects and reward supporters of the network.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--<div class="faq">-->
<!--<div class="faq_question text">Are SBX coins allocated to swapblocks, Inc. & management subject to a lockup period?</div>-->
<!--<div class="faq_answer_container">-->
<!--<div class="faq_answer text">-->
<!--Yes, SBX coins allocated to swapblocks, Inc. or management will be subject to a 36 month waterfall escrow beginning -->
<!--at the start of the main net launch.-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<div class="section" id="section-7">
<div class="container text-center">
<div class="row">
<div class="col-lg-12">
<h3 class="title-2 text-center">be first</h3>
<!-- Start form -->
<form action="https://swapblocks.us7.list-manage.com/subscribe/post?u=64c3c103c255951102100134d&id=7916a5028f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<p class="text-3" id="newsletter-title">Stay tuned to the latest updates in development and sign up for our newsletter.</p>
<div class="form-group">
<input type="email" value="" name="EMAIL" class="form-control" id="inputEmail1" placeholder="email address" required>
</div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_64c3c103c255951102100134d_7916a5028f" tabindex="-1" value=""></div>
<div class="container text-center">
<button class="btn btttn" type="submit" value="Subscribe" name="subscribe">SIGN UP</button>
</div>
</form>
<!-- End form -->
</div>
</div>
</div>