-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
823 lines (746 loc) · 53.1 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>P A R E T O .</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/general.css">
<link rel="stylesheet" href="css/custom.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108222959-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-108222959-1');
</script>
<!-- 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), df = 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-TQ825N7');</script>
<!-- End Google Tag Manager -->
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '1882412108678225');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=1882412108678225&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TQ825N7"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--=================================================================================================-->
<!-- HEADER -->
<header class="header">
<!-- <a href="https://tokensale.pareto.network" class="whitepaper" target="_blank">Token Sale</a> -->
<a href="download/Pareto-Brochure.pdf" class="whitepaper" target="_blank">Brochure</a>
<a href="download/Pareto-Technical-White-Paper.pdf" class="whitepaper" target="_blank">Whitepaper</a>
<a href="https://t.me/paretonetworkdiscussion" class="header-link telegram-link"><i class="fa fa-paper-plane" aria-hidden="true"></i> <span>Telegram</span></a>
<!--<a href="#" class="header-link slack-link"><i class="fa fa-slack" aria-hidden="true"></i> Slack</span></a>-->
</header><!-- end header -->
<!--=================================================================================================-->
<!-- OFFER SECTION -->
<section class="offer">
<div class="content">
<div class="overlay"></div>
<div>
<video preload="metadata" loop muted autoplay playsinline>
<source src="download/Pareto-Introduction.webm" type="video/webm">
<source src="download/Pareto-Introduction.mp4" type="video/mp4">
<source src="download/Pareto-Introduction.ogv" type="video/ogg">
<img src="images/overlay.png" title="">
</video>
</div>
<div class="wrapper">
<div class="row middle-xs">
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="site-moto">
<img src="images/LogoReverse.svg" style="width: 400px; max-width: 100%;" malt="">
<h1 class="font-body">Current, reputable & actionable intel for digital currency traders and investors.
<br/>
<br/>
<a style="font-size: 40px;" href="https://blog.pareto.network/pareto-network-presale-completed-63073825971d"><button class="button button--transparent" style="font-size: 18px; width: auto; background: #000; background-color: orange;"><b>Token Sale Closed!</b></button></a><br/>
<br/>
</h1>
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6">
<div class="site-moto">
<center>
<div class="video-box">
<iframe style="width: 100%; height: 100%;" src="https://www.youtube.com/embed/j6MFoSQkT7U?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
</center>
</div>
</div>
</div>
<br/>
<br/>
<br/>
<div class="footer-apps__row">
<form action="https://network.us17.list-manage.com/subscribe/post?u=4cb27761708b4fe0c548f1151&id=41974997b2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate sign-up-form" target="_blank" novalidate>
<p class="sign-up-form__title font-header">Sign up for Early Access & News</p>
<div class="form-group">
<input type="email" value="" name="EMAIL" required="" placeholder="Email address" class="required email" id="mce-EMAIL">
<input type="hidden" name="b_4cb27761708b4fe0c548f1151_41974997b2"" tabindex="-1" value="">
<button class="submit-button" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe">Go</button>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
</div>
</form>
</div>
</div>
</div>
</section><!-- end offer section -->
<section class="section marketplace-section no-pt no-pb zfix">
<svg id="offer-wave" x="0px" y="0px" viewBox="0 0 1400 37" style="enable-background:new 0 0 1400 37;" xml:space="preserve">
<path class="offer-wave" d="M0,0h1400c0,0-332.5,37-570.4,37c-202.6,0-390-7.4-390-7.4S255.8,30.1,194.5,29C98.3,27.3,0,11.7,0,11.7V0z"/>
</svg>
<div class="content container demo-1">
<div class="wide-title">
<h2 class="font-header">A true peer-to-peer content marketplace.</h2>
<p class="subtitle font-body">The Pareto Network is the first real-time actionable intelligence platform for investors. </p>
</div>
<div id="particles-js"></div>
<div class="wrapper">
<div class="reviews-block font-body">
<div class="css-script-clear"></div>
<div class="review" style="left: 60px; top: 0;">
<div class="review__avatar"><img src="images/review.png" alt=""></div>
<div class="review__content">
<p>Critical bug found in new hardware wallet, effects 10% of market. Here are the details to execute or short.</p>
<p align="right" style="color: orange;">est. reward <b style="font-size: 20px; color: #008000">$15,000</b></p>
</div>
</div> <!-- end review -->
<div class="review" style="left: 40%; top: 6%;">
<div class="review__avatar"><img src="images/p5.jpg" alt=""></div>
<div class="review__content">
<p>NEO transaction demand from new AI infrastructure will affect GAS prices 35% according this analysis</p>
<p align="right" style="color: orange;">est. reward <b style="font-size: 20px; color: #008000">$8,300</b></p>
</div>
</div> <!-- end review -->
<div class="review" style="left: 50%; top: 35%;">
<div class="review__avatar"><img src="images/p2.jpg" alt=""></div>
<div class="review__content">
<p>How to double spend on the IOTA tangle, before everyone else figures it out</p>
<p align="right" style="color: orange;">est. reward <b style="font-size: 20px; color: #008000">$200,000</b></p>
</div>
</div> <!-- end review -->
<div class="review" style="left: 30%; top: 65%;">
<div class="review__avatar"><img src="images/p3.jpg" alt=""></div>
<div class="review__content">
<p>Vulnerability in Monero affects all cryptonote forks. Here are the coins that haven’t updated</p>
<p align="right" style="color: orange;">est. reward <b style="font-size: 20px; color: #008000">$35,000</b></p>
</div>
</div> <!-- end review -->
<div class="review" style="left: 75%; top: 55%;">
<div class="review__avatar"><img src="images/p4.jpg" alt=""></div>
<div class="review__content">
<p>Chinese government planning to announce eased restrictions on cryptocurrencies, opening capital flows by 250%</p>
<p align="right" style="color: orange;">est. reward <b style="font-size: 20px; color: #008000">$120,000</b></p>
</div>
</div> <!-- end review -->
</div> <!-- end reviews-block -->
</div>
</div>
<svg id="green-top-wave" x="0px" y="0px" viewBox="0 0 1493.9 79.9" style="enable-background:new 0 0 1493.9 79.9;">
<path class="green-top-wave" d="M1493.9,56.7C1245,57,986.7,27.5,731.1,9.4C475.4-8.8,229.1-4.2,0,56.7h0c0,7.7,0,15.5,0,23.2h1493.9
C1493.9,72.1,1493.9,64.4,1493.9,56.7z"/>
</svg> <!-- end top wave -->
</section> <!-- end marketplace section -->
<section class="description-section">
<div class="content">
<div class="wide-title">
<h2 class="font-header">How does Pareto work?</h2>
</div>
<div class="wrapper font-body-regular">
<div class="desc-block">
<div class="desc-block__title">
<span class="number">1</span>
<h3>Submit actionable investing intel</h3>
</div>
<div class="desc-block__content">
<p>Content contributors (individuals, groups or organizations) create a broad range of information that may help network participants in making investment decisions in the cryptocurrency markets.
<p>The content can take many forms from analyst reports & trading signals all the way to code vulnerability & security assessments.</p>
<p>Contributors submit intel to the Pareto Network because the possible earnings from the Network can be greater than attempting to trade on their own and carries less risk.</p>
</div>
<span class="data-drips drip-1 active">
<span><span></span><span></span></span>
<span><span></span><span></span></span>
<span><span></span><span></span></span>
</span>
</div> <!-- end desc-block -->
<div class="desc-block">
<div class="desc-block__title">
<span class="number">2</span>
<h3>Pareto Network distributes the intel to investors.</h3>
</div>
<div class="desc-block__content">
<p>The information is curated & structured by the network, and then distributed to token owners in a prioritized sequence.</p>
<p>An algorithm is used to determine the order in which Pareto token holders are presented with the information. The result of this algorithm is called the Information Waterfall.</p>
<p>By ranking higher in the Waterfall, a token holder can act on valuable information before people that follow, giving her a significant advantage.</p>
</div>
<span class="data-drips drip-2 active">
<span><span></span><span></span></span>
<span><span></span><span></span></span>
<span><span></span><span></span></span>
</span>
</div> <!-- end desc-block -->
<div class="desc-block">
<div class="desc-block__title">
<span class="number">3</span>
<h3>Content creators are rewarded based on the quality of their intel</h3>
</div>
<div class="desc-block__content">
<p>Upon receiving the information, traders reward the information based on its quality. As a result, contributors earn Pareto Tokens (PARETO) which they can choose to sell on secondary markets in order to generate revenue.</p>
<p><b>Content contributors</b> are therefore incentivized to provide quality information to the network, as they can profit more than if they acted on it alone.</p>
<p><b>Traders</b> make decisions from early and accurate information and they reward the contributor of the intel, as this allows the trader to receive new intel earlier.</p>
<p>The platforms aims to ensure that everyone gets paid.</p>
</div>
<span class="data-drips drip-3 active">
<span><span></span><span></span></span>
<span><span></span><span></span></span>
<span><span></span><span></span></span>
</span>
</div> <!-- end desc-block -->
</div>
</div>
<svg id="green-bottom-wave" x="0px" y="0px" viewBox="0 0 1493.9 74.5" style="enable-background:new 0 0 1493.9 74.5;">
<path class="green-down-wave" d="M0,0c0,3,0,6,0,9c249,0.6,500.1,34.6,750.3,55.1c250.2,20.6,472.3,13.3,743.7-44.2c0-3.2,0-16.7,0-19.9H0z"/>
</svg><!-- end bottom wave -->
</section> <!-- end description-section -->
<section class="section no-pb zfix">
<div class="wrapper font-header">
<div class="section-title">
<h3 class="pre-title">Pareto Network</h3>
<h2 class="title">Road map</h2>
</div>
<div class="timeline">
<div class="step">
<h3 class="step__title">Concept & Research</h3>
<time class="step__date">June 2016</time>
</div>
<div class="step">
<h3 class="step__title">White Paper</h3>
<time class="step__date">June 2017</time>
</div>
<div class="step">
<h3 class="step__title">Entity Organization</h3>
<time class="step__date">July 2017</time>
</div>
<div class="step">
<h3 class="step__title">Seed Funding
</h3>
<time class="step__date">August 2017</time>
</div>
<div class="step">
<h3 class="step__title">Private Sale
</h3>
<time class="step__date">Oct 2017</time>
</div>
<div class="step">
<h3 class="step__title">Alpha / Prototype / MVP</h3>
<time class="step__date">Oct 2017</time>
</div>
<div class="step">
<h3 class="step__title">Public Sale</h3>
<time class="step__date">Q4 2017</time>
</div>
<div class="step">
<h3 class="step__title">Closed Beta</h3>
<time class="step__date">Q4 2017</time>
</div>
<div class="step">
<h3 class="step__title">Public Launch
<div class="active-pointer">We are here</div>
</h3>
<time class="step__date">Q1 2018</time>
</div>
<div class="step">
<h3 class="step__title">Expanding Feature set</h3>
<time class="step__date">Q2 2018</time>
</div>
</div>
</div>
</section>
<section class="section zfix">
<div class="wrapper">
<div class="section-title">
<h3 class="pre-title font-header">Pareto Network</h3>
<h2 class="title font-header">Team</h2>
</div>
<div class="team-members font-body-regular">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-1.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">Eric Lamison-White </span>
<span class="position">Co-Founder & CEO.</span>
</div>
<div class="team-member__description">
<p>UMBC, Bowie State BS | Cryptocurrency developer since 2013, Manager of Blockchain Development Company, Former FDIC investigator, 8+ years of software development and engineering management</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/eric-lamison-white-749873112/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-2.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">Ted Lanpher</span>
<span class="position">Co-Founder & CSOO.</span>
</div>
<div class="team-member__description">
<p>Yale BA, UVA MBA | IBM Satellite Business Systems | Experienced startup CEO and entrepreneur in software apps, fintech, cybersecurity, enterprise blockchain consulting</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/tedlanpher/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-3.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">Chris Eberle</span>
<span class="position">Chief of Content.</span>
</div>
<div class="team-member__description">
<p>Syracuse Newhouse School BS, Harvard Business School Exec Ed | Facebook | Federated Media | Meebo (Google) | AOL | 20 years in digital content development and marketing. Writer, Speaker, Creator</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/creberle/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-4.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">Dr. Anna Becker</span>
<span class="position">Advisor | Lead Data Scientist.</span>
</div>
<div class="team-member__description">
<p>Technion - Israel Institute of Technology PhD, A.I., MS, Comp Sci | Designer of end-to-end multi-asset algorithmic trading platforms. 20 yrs. leadership in algo development for hedge funds</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/drannabecker/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-5.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">Colin Mo</span>
<span class="position">Communications Strategy Lead.</span>
</div>
<div class="team-member__description">
<p>Northwestern M.S. Journalism | Digital media innovation focused reporter and technical writer</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/colin-mo-355b96ba/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-6.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">John Heffernan</span>
<span class="position">Market Analyst.</span>
</div>
<div class="team-member__description">
<p>Former CME Group Member | 25 yrs. financial services and wealth management. Open pit and electronic trader in commodities, forex & derivatives on Chicago exchanges handling $ Billions in contracts. Expert in exchange operations and state of crypto trading technologies.</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/john-heffernan-b84b143/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-7.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">Ian Balina</span>
<span class="position">Advisor.</span>
</div>
<div class="team-member__description">
<p>George Washington MS, BS | Prominent voice and investor in cryptocurrencies, prior work with IBM, Deloitte</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/ianbalina/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/team-8.jpg" alt="">
</figure>
<div class="team-member__name">
<span class="name">Henok (Hen) Tekle</span>
<span class="position">Advisor.</span>
</div>
<div class="team-member__description">
<p>Angel investor and advisor for token projects through Hen Global. Prior Compliance and IT Enterprise work with Goldman Sachs, Deutsche Bank, Deloitte, Mayo Clinic</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/henglobal/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/chirs.png" alt="">
</figure>
<div class="team-member__name">
<span class="name">Christopher Aguilar</span>
<span class="position">General Counsel.</span>
</div>
<div class="team-member__description">
<p>Univ. of California Hasting JD, St. Mary's BA | 25 yrs as director, general counsel and compliance officer in broker-dealer, asset management, and financial services firms</p>
</div>
<div class="team-member__socials">
<a href="https://www.linkedin.com/in/christopheraguilar/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div> <!-- end team-member -->
</div>
<!--<div class="col-xs-12 col-sm-6 col-md-3">
<div class="team-member">
<figure class="team-member__image">
<img src="images/large-logo-icon.png" alt="">
</figure>
<div class="team-member__name">
<span class="name">Coin<span style="color: #51aaf1; display: inline-block;">Fabric</span>
<span class="position">ICO Advisor.</span>
</div>
<div class="team-member__description">
<p>Coinfabric - We launch ICO's from A-Z</p>
</div>
<div class="team-member__socials">
</div>
</div>
</div>-->
</div>
</div>
<!-- <div class="companies-partners">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="company">
<figure class="company__image">
<img src="images/coinfabric.jpg" alt="">
</figure>
<h3 class="company__name">Coin<span style="color: #51aaf1;">Fabric</span></h3>
<p class="company__role">ICO Advisor</p>
</div>
</div>
</div>
</div>
-->
</div>
</section>
<section class="faq-section zfix">
<svg id="top-wave" x="0px" y="0px" viewBox="0 0 1493.9 79.9" style="enable-background:new 0 0 1493.9 79.9;">
<path class="top-wave" d="M1493.9,56.7C1245,57,986.7,27.5,731.1,9.4C475.4-8.8,229.1-4.2,0,56.7h0c0,7.7,0,15.5,0,23.2h1493.9
C1493.9,72.1,1493.9,64.4,1493.9,56.7z"/>
</svg> <!-- end top wave -->
<div class="content">
<div class="wrapper">
<div class="faq-wrapper">
<h2 class="faq-title font-header">FREQUENTLY ASKED QUESTIONS</h2>
<div class="faq font-body-regular">
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">What is the Pareto Network?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>The Pareto Network is the first peer to peer financial content marketplace. It connects providers of financial information in the cryptocurrency space with investors, providing foresight into market inefficiencies and opportunities. Content creators can earn money by sharing financial information that benefits people in the network. When investors compensate content creators, their ranking goes up which gives them faster access to more actionable information in the future.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">What is the problem that Pareto Network is solving?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>Digital currencies are extremely volatile. The lack of specialized financial information makes it extremely hard for investors to pinpoint the tokens that will outperform the market, especially given that there are more coins being released every day.</p><br>
<p>The Pareto Network aims to bring forward information about market inefficiencies and promote more accurate price discovery. It therefore advances the level of understanding of cryptocurrency investment analysis and steers the markets towards correcting the prices of these assets..</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">What is the Pareto token?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>The Pareto token, PARETO, is an Ethereum ERC20 compatible token that operates on the Ethereum blockchain. Its holders can use it to pay content creators on the network, and receive specialized information about investment opportunities before everyone else.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">How can content creators benefit from sharing financial information on the Pareto Network?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>Content creators who have knowledge but don’t have enough capital to invest in opportunities can still profit from their expertise by sharing information on the Pareto Network. The more profitable their information is for investors, the more votes and Pareto tokens they receive. The tokens can then be sold on secondary markets if they choose to do so.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">How can investors gain access to exclusive financial information on the Pareto Network?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>A ranking algorithm (the waterfall) is used to create a hierarchy of all token holders. The ones with the highest rankings get access to information before everyone else.</p><br>
<p>In order to rank higher in the waterfall, token holders have to spend Pareto tokens by voting on the content that benefits them. The number of Pareto tokens they hold and the amount of time they have held them for will also factor in the ranking algorithm.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">How much will it cost to sell or acquire information on the Pareto Network?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>Owners of the Pareto token will receive the feed of information coming across the Network as well as prior posted information. Token owners can spend (“vote”) some of their tokens to improve the time frame in which they receive newly released information. Votes have a cost in Pareto tokens that is set by contributors. Holders are incentivized to spend their tokens as otherwise their ranking in the network will decline over time.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">Who are the people behind Pareto Network?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>We are a global team of experts – cryptocurrency developers, serial entrepreneurs, investors, financial specialists. You can read more about our co-founders and team from here.
</p><br>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">Where can I read the Pareto Network white paper in full?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>You can read the latest version of our white paper from the link on this site.</p>
</div>
</div>
</div><br><br><br>
</div>
<div class="faq-wrapper">
<h2 class="faq-title font-header">TECHNICAL QUESTIONS</h2>
<div class="faq">
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">Which payment methods will be accepted during the sale?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>Pareto tokens will be available for purchase with ETH sent from any wallet for which you hold the private keys. Do not use an exchange wallet (Coinbase, Kraken, etc.) to purchase Pareto Tokens, otherwise your tokens may get lost.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">Which wallets can I use?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>You can use any ERC20 compliant wallet which you control the private keys for. A few good examples are My Ether Wallet, Parity, Mist, or Metamask.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">How can I purchase ETH?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>You can use fiat currency or cryptocurrencies to purchase Ethereum at some of these exchanges: Coinbase, Poloniex, Bittrex.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">How will I know if my purchase was successful?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>You can see if your purchase was successful by checking your wallet at Etherscan.io. Also, after the token sale the Pareto Network ends, we will share more information on how to add Pareto’s PARETO token to your wallet.
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">Can Pareto be traded at the exchanges?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>Pareto tokens are transferable by mere nature of the technology. We will announce any listings as we become aware of them.</p>
</div>
</div>
<div class="faq-item">
<h3 class="faq-item-header js-faq-handler">Where will I be able to store my Pareto Tokens?
<i class="fa fa-angle-down fa-fw" aria-hidden="true"></i>
</h3>
<div class="faq-item-content">
<p>You can store your Pareto tokens in any ERC20 compliant wallet. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<svg id="bottom-wave" x="0px" y="0px" viewBox="0 0 1493.9 74.5" style="enable-background:new 0 0 1493.9 74.5;">
<path class="down-wave" d="M0,0c0,3,0,6,0,9c249,0.6,500.1,34.6,750.3,55.1c250.2,20.6,472.3,13.3,743.7-44.2c0-3.2,0-16.7,0-19.9H0z"/>
</svg><!-- end bottom wave -->
</section> <!-- end faq-section -->
<!-- //////////////////////////////////////////////////////////////////////// -->
<footer class="footer zfix">
<div class="wrapper">
<div class="footer-top">
<div class="footer-partners">
<h4 class="font-body">Pareto In The Media</h4>
<div class="footer-partners__row">
<a href="https://www.forbes.com/sites/tinamulqueen/2017/08/08/heres-why-payment-considerations-are-more-important-than-ever-in-retail-marketing/#2c7666b4bb7f" target="_blank"><img src="images/forbes.jpg" alt=""></a>
<a href="https://www.inc.com/jeff-barrett/how-starbucks-apple-and-more-make-content-work-for.html" target="_blank">
<img src="images/inc.jpg" alt=""></a>
<a href="https://themerkle.com/4-key-misconceptions-about-cryptocurrency/" target="_blank">
<img src="images/me.jpg" alt=""></a>
<a href="https://www.huffingtonpost.com/entry/4-misconceptions-of-cryptocurrency_us_59a89f1fe4b0bef3378cd75c" target="_blank">
<img src="images/huffpost.jpg" alt=""></a>
<a href="https://cointelegraph.com/press-releases/pareto-network-the-peer-to-peer-financial-content-marketplace-announces-their-token-sale" target="_blank">
<img src="images/cointelegraph.png" alt=""></a>
<a href="http://www.newsbtc.com/2017/10/18/pareto-p2p-financial-content-marketplace/" target="_blank">
<img src="images/newsbtc.png" alt=""></a>
<a href="https://ccinews.net/pareto-network-poised-disrupt-16-billion-dollar-financial-research-industry/" target="_blank">
<img src="images/cci.png" alt="" width="300"></a>
</div>
</div>
<div class="footer-apps">
<h4 class="font-body">Join the Pareto Network</h4>
<div class="footer-apps__row">
<a href="https://t.me/paretonetworkdiscussion" class="app-icon telegram" target="_blank"><i class="fa fa-paper-plane" aria-hidden="true"></i></a>
<a href="https://fb.me/paretonetworkofficial" class="app-icon facebook" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/company/11252108/" class="app-icon linkedin" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
<a href="https://blog.pareto.network/" class="app-icon medium" target="_blank"><i class="fa fa-medium" aria-hidden="true"></i></a>
<a href="https://twitter.com/ParetoNetwork" class="app-icon twitter" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://www.youtube.com/channel/UCWbAwsAEmNksqhhDlgBaSQA" class="app-icon youtube" target="_blank"><i class="fa fa-youtube" aria-hidden="true"></i></a>
<a href="https://github.com/ParetoNetwork" class="app-icon git" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<!--
<a href="#" class="app-icon wechat"><i class="fa fa-weixin" aria-hidden="true"></i></a>
<a href="#" class="app-icon talk"><i class="fa fa-comment" aria-hidden="true"></i></a>
-->
</div>
<br/>
<br/>
<div class="footer-apps__row">
<form action="https://network.us17.list-manage.com/subscribe/post?u=4cb27761708b4fe0c548f1151&id=41974997b2" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate sign-up-form" style="padding-left: 0px;" target="_blank" novalidate>
<p class="sign-up-form__title font-header" style="color: #679ab4;">Sign up for Early Access & News</p>
<div class="form-group">
<input style="background-color: " type="email" value="" name="EMAIL" required="" placeholder="Email address" class="required email" id="mce-EMAIL">
<input type="hidden" name="b_4cb27761708b4fe0c548f1151_41974997b2" tabindex="-1" value="">
<button class="submit-button" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe">Go</button>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
</div>
</form>
</div>
</div>
</div> <!-- end footer-top -->
<div class="footer-bottom">
<p class="copyright font-body">Copyright Pareto Network Ltd 2017</p>
</div> <!-- end footer-bootom -->
</div> <!-- end wrapper -->
</footer> <!-- end footer -->
<div id="modal-popup" class="fncb-hide zoom-anim-dialog popup"></div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type='text/javascript' src='https://s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script>
<script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
var bottom_wave = Snap("#bottom-wave");
var b_w = Snap.select('.down-wave');
animateBottomWave();
function animateBottomWave(){
b_w.animate({
d: 'M0,0c0,3,0,27.5,0,30.5c115.2,39,244.5,54.6,630.5,12.6c262-28.5,461-42.4,863.4-41.8c0-3.2,0,1.9,0-1.4H0z'
}, 12e3, mina.easeinout, resetBottomWave);
}
function resetBottomWave(){
b_w.animate({
d: 'M0,0c0,3,0,6,0,9c249,0.6,500.1,34.6,750.3,55.1c250.2,20.6,472.3,13.3,743.7-44.2c0-3.2,0-16.7,0-19.9H0z'
}, 8e3, mina.easeinout, animateBottomWave);
}
var top_wave = Snap('#top-wave');
var t_w = Snap.select('.top-wave');
animateTopWave();
function animateTopWave(){
t_w.animate({
d: 'M1493.9,39.9c-135.4-22-229-51.2-497.4-32C717.5,28,291.7,76.1,0,73.6l0,0c0,7.7,0,0,0,6.2h1493.9C1493.9,72.1,1493.9,47.7,1493.9,39.9z'
}, 9e3, mina.easeinout, resetTopWave);
}
function resetTopWave(){
t_w.animate({
d: 'M1493.9,56.7C1245,57,986.7,27.5,731.1,9.4C475.4-8.8,229.1-4.2,0,56.7h0c0,7.7,0,15.5,0,23.2h1493.9C1493.9,72.1,1493.9,64.4,1493.9,56.7z'
}, 4e3, mina.easeinout, animateTopWave);
}
var g_bottom_wave = Snap("#green-bottom-wave");
var g_b_w = Snap.select('.green-down-wave');
g_animateBottomWave();
function g_animateBottomWave(){
g_b_w.animate({
d: 'M0,0c0,3,0,27.5,0,30.5c115.2,39,244.5,54.6,630.5,12.6c262-28.5,461-42.4,863.4-41.8c0-3.2,0,1.9,0-1.4H0z'
}, 12e3, mina.easeinout, g_resetBottomWave);
}
function g_resetBottomWave(){
g_b_w.animate({
d: 'M0,0c0,3,0,6,0,9c249,0.6,500.1,34.6,750.3,55.1c250.2,20.6,472.3,13.3,743.7-44.2c0-3.2,0-16.7,0-19.9H0z'
}, 8e3, mina.easeinout, g_animateBottomWave);
}
var g_top_wave = Snap('#green-top-wave');
var g_t_w = Snap.select('.green-top-wave');
g_animateTopWave();
function g_animateTopWave(){
g_t_w.animate({
d: 'M1493.9,39.9c-135.4-22-229-51.2-497.4-32C717.5,28,291.7,76.1,0,73.6l0,0c0,7.7,0,0,0,6.2h1493.9C1493.9,72.1,1493.9,47.7,1493.9,39.9z'
}, 9e3, mina.easeinout, g_resetTopWave);
}
function g_resetTopWave(){
g_t_w.animate({
d: 'M1493.9,56.7C1245,57,986.7,27.5,731.1,9.4C475.4-8.8,229.1-4.2,0,56.7h0c0,7.7,0,15.5,0,23.2h1493.9C1493.9,72.1,1493.9,64.4,1493.9,56.7z'
}, 4e3, mina.easeinout, g_animateTopWave);
}
</script>
</body>
</html>