-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathindex.html.yo
1097 lines (980 loc) · 59.8 KB
/
index.html.yo
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>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="yo">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="description" content="Smart payment lati se ni irorun">
<meta name="author" content="Byteball">
<link rel="icon" href="img/[email protected]">
<title>Byteball — smati sisan di irorun</title>
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="img/[email protected]">
<!-- Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Plugins -->
<link href="css/animations.css" rel="stylesheet">
<link href="https://cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css" rel="stylesheet" type="text/css">
<!-- Worthy core CSS file -->
<link href="css/style.css?v11" rel="stylesheet">
<style>
.btnn {
background-color: #E67E22 !important;
color: #FFFFFF !important;
font-family: 'Arial', sans-serif !important;
font-size: 16px !important;
text-align: center !important;
}
.bbt {
font-size: 13px;
border: none;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
letter-spacing: .03em;
color: #fff;
background-color: #E67E22;
box-sizing: border-box;
height: 32px;
line-height: 32px;
padding: 0 18px;
display: inline-block;
margin: 0;
transition: all 0.23s ease-in-out 0s;
}
</style>
</head>
<body class="no-trans">
<!--div id="particles-js"></div-->
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop"><i class="icon-up-open-big"></i></div>
<!-- header start -->
<!-- ================ -->
<header class="header fixed clearfix navbar navbar-fixed-top">
<div class="container">
<div class="row main-navigation animated">
<div class="col-xs-2">
<div class="logo smooth-scroll text-center">
<a href="#banner"><img id="logo" src="img/icon-white-outline-1024.png" alt="Byteball logo" style="max-width: 55px;"></a>
</div>
<div class="site-name">
<a href="#banner">Byteball</a>
</div>
</div>
<!-- navbar start -->
<!-- ================ -->
<nav class="navbar navbar-default col-xs-10" role="navigation">
<div class="container-fluid">
<!-- Toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Lilo togulu</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse scrollspy smooth-scroll" id="navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="#why">Kilode</a></li>
<li><a href="#core">Awon eyaa</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#dist">Pinpin</a></li>
<li><a href="#tech">Tekinologi</a></li>
<li><a href="https://wiki.byteball.org" target="_blank" title="Wiki">Wiki</a></li>
<li><a href="https://twitter.com/ByteballOrg" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.facebook.com/byteball.org" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://bitcointalk.org/index.php?topic=1608859.0" target="_blank" title="Bitcoin Talk thread"><i class="fa fa-bitcoin"></i></a></li>
<li><a href="https://medium.com/byteball" target="_blank" title="Medium blog"><i class="fa fa-medium"></i></a></li>
<li><a href="https://slack.byteball.org" target="_blank" title="Slack"><i class="fa fa-slack"></i></a></li>
<li><a href="https://www.reddit.com/r/ByteBall/" target="_blank" title="Reddit"><i class="fa fa-reddit-alien"></i></a></li>
<li><a href="https://t.me/byteball" target="_blank" title="Telegram"><i class="fa fa-telegram"></i></a></li>
<!--<li class="social-dropdown">
<button class="btn-primary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
<li><a href="https://bitcointalk.org/index.php?topic=1608859.0" target="_blank" title="BitcoinTalk thread"><i class="fa fa-bitcoin"></i></a></li>
<li><a href="https://medium.com/byteball" target="_blank" title="Medium blog"><i class="fa fa-medium"></i></a></li>
<li><a href="https://byteball.slack.com" target="_blank" title="Slack"><i class="fa fa-slack"></i></a></li>
<li><a href="https://www.reddit.com/r/ByteBall/" target="_blank" title="Reddit"><i class="fa fa-reddit-alien"></i></a></li>
<li><a href="https://t.me/byteball" target="_blank" title="Telegram"><i class="fa fa-telegram"></i></a></li>
</ul>
</li>-->
<li class="dropdown lang">
<button class="btn-primary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<img class="flag" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAAjUlEQVQoU2M004h/cY1XR5yRjYXh/68/DNjompOFDDjAMUYe0+7/u2YnMsS1XmFYVK2DlT41zwKr/inzljIw8lr3/xeXMsSpmYWLjWHLsTCsBqy9/4RhOLkA5Nc/334xYKPxhkHTxLn/c5KicUUTXnFwLHSyMPwPVpQhywBwLFDDBUcZGBisyHICA8NxAHf1hEyWpj+2AAAAAElFTkSuQmCC"/>
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<!-- English -->
<li><a href="/index.html"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAAjUlEQVQoU2M004h/cY1XR5yRjYXh/68/DNjompOFDDjAMUYe0+7/u2YnMsS1XmFYVK2DlT41zwKr/inzljIw8lr3/xeXMsSpmYWLjWHLsTCsBqy9/4RhOLkA5Nc/334xYKPxhkHTxLn/c5KicUUTXnFwLHSyMPwPVpQhywBwLFDDBUcZGBisyHICA8NxAHf1hEyWpj+2AAAAAElFTkSuQmCC"/>EN</a></li>
<!-- Chinese -->
<li><a href="/index.html.zh"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAABCUlEQVQ4T62SPU7DQBCFvx2b2MiItQsENNwmAoSQ6KHhBlwEcQloASHRQEPNBaip+CsCUTBxnN1FXsVWiig/iCdNs9r95s28VfeBvPSs3eAPSkTe1JXC7aUZQ+co1xzyAUsoLPizUClfk3T72cEDdnRK1xjisxb5zZDowSFKsXweURwVxCLTAe1MMzgJ0MctTNfROx0QXlqMdf5hJDLRReOgvarpbFk2rxOKZ8PXwQ+ZhJTOEU1x0QC2dUq5r8ifDEGqiJUgj9YD5nKwq1PMaMpqcbYqYOUinm8HVQq1+tZ62/lhn2CUwMwUxgGVg1nx1c2aHYwDFvlP/wO4C+T129r1RTrXdxOR919kd4kyT7xXQgAAAABJRU5ErkJggg=="/>ZH</a></li>
<!-- Danish -->
<li><a href="/index.html.da"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAkklEQVQ4T2Ocz8Bw5D8DgzUDEngycS6YJ5OfjCyMjX2McR4Dw/9gcR0USY5HZ8H8H3LGeA1Y+/IKw3AwoGni3P9l6TGEAgurfNfMJQyMIANKUqPIMqBn9jLsgch05yTYwH8q5uTFwr8bx8AamTSsyDPg19UjYI1s2jbkGfD90iGwRk49O6IMOMrAwIDiVhKS8nEA/C1UGlAm6fkAAAAASUVORK5CYII="/>DA</a></li>
<!-- Dutch -->
<li><a href="/index.html.nl"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAV0lEQVQ4T2PsY2CdzsDAkMFAHpjF2MfA+t9PiJcs7ZvefWYYBAY0TZz7vzg9jiwv9M5cxMA4DAwQsWz7r6RpSVYY3Lt+nIFxMBjQOpOBgTGNLD/8Z5gNAIXgOI0BqcDYAAAAAElFTkSuQmCC"/>NL</a></li>
<!-- Estonian-->
<li><a href="/index.html.et"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAYElEQVQ4T2PUz5j86OJfVlkGMoAe8+/HjAypM/5LOQSRoZ2B4dmBdQyDwQAGhv8mhoZkeeHM+fMMjAxD34CmiXP/F6fHkRUGvTMXMTAOvAHTl6zf/frtOxdy/CAmLLQXAOQZPLwK8Il6AAAAAElFTkSuQmCC"/>ET</a></li>
<!-- German -->
<li><a href="/index.html.de"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAVklEQVQ4T2NkYGCYzsDAkMFAHpjFyMDA8F9dXZ0s7Tdv3mQYBAbsYmT4rykjQ5YXrj95wsA4DAw41cDw3zRAgqwwOL3hBQPjoDBgJgMDQxpZfmBkmA0Ap4wzS+Kj08UAAAAASUVORK5CYII="/>DE</a></li>
<!-- Japanese -->
<li><a href="/index.html.ja"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAyElEQVQ4T2NsmjT3CMN/BmsGMgAjA8MxxqaJc/8Xp8eRoZ2BoXfmIgbaGPD/10+G13WVDJ9WLgO7jC88ikG0qZ2BkY0dxaU4XfCmpZ7h/dSJKIoFs/MZRGoaiTPgnp4aw9/Xr1AUM4uKMihduk2cAfcNNBj+vHyBophFTJxB8eJN4gx419vJ8LanHUWxcEklg1BxOXEG/P/zh+FtZwvD51XLwRp4wyIZhMtrGBhZWIgzgNhEQZ10MHPJ+v8v374j1lIUdWLCQgwAG1htQzGt2mgAAAAASUVORK5CYII="/>JA</a></li>
<!-- Spanish -->
<li><a href="/index.html.es"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAA9ElEQVQ4T2PsY2Y48p+BwZqBPHCMsZeZ4X+RjiZZ2vuuXGeg3IBTDQz/TUMswS64fvMPw8//ggzP3oky8HD+ZuDi+M0gIfiRQUbiO1YXnl5znIER2QCG/wwMB3ZbMqjNWsPAuvcQw4Nr+xhMpJYxMP7/SpwBF26JMYgZtDHw33nI8DEvg+Hb6uUM3x4tYtCTv0ScAYcuyDAomFUxnN63muHfg/sMkrYhDF+frmJwt3pEnAE/frIwvPjtznDm+DkGUREWBmV1DQYJjsMMLEw/iDMApurPHyYGFpZ/BKMWHIgDnw56mRmOMjAwWBF0LxYFjAwMxwHj5XGr1M6PtQAAAABJRU5ErkJggg=="/>ES</a></li>
<!-- French -->
<li><a href="/index.html.fr"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAATklEQVQ4T2N01Z8/nZHhfwYDErBJ+o/MhbOVK3PRxWcxuunP+68gHIIi0b+NE6sBH1SVUMQPvH3LMGrAaBhQLR3MZGBgSCMnKTMyMMwGACAMWONtJSw3AAAAAElFTkSuQmCC"/>FR</a></li>
<!-- Indonesian -->
<li><a href="/index.html.id"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAUElEQVQ4T2NcwM666/PP364MZAA+dtY9jJMZGP57qUqToZ2BYdvtpwyjBjxlYGyaOPd/cXocWYHYO3PRqAGgMJi+ZP3u12/fuZATimLCQnsBItU/YSoyxUcAAAAASUVORK5CYII="/>ID</a></li>
<!-- Italian -->
<li><a href="/index.html.it"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAUUlEQVQ4T2NkqPKazsDAkMGABJrEg5G5cLZmfhaK+H8GhlmMDFVe//XNdFEkjnm0YDXgv7c/ivj2vXsZRg0YDQNqpQPPmQwMjGnkJGUGBobZAEtLVo37EG2TAAAAAElFTkSuQmCC"/>IT</a></li>
<!-- Korean -->
<li><a href="/index.html.ko"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAABgElEQVQ4T2NsmjT3CMN/BmsGMgAjA8MxxqaJc/8Xp8fBtf///5+BkZERq3Hocr0zFzGgGLBm9SqGLZs3MSxYtASrAf6+3gwFhUUMjk7OYHkUA3Zs38aQnprCsGnrNgYDcQkGtpoqBqYjR8AK//r5MfxqbWc4ePQIQ1REOMP6TZsZzMzMUQ0IDvRnKCwqZrCxtWPg8PdlYDpzGsUVv6trGX5nZTNs2rSRYfPGDQyz585HNQDuv///GT7oGDNIfXjG8I2FnSErfCLDDT5ZhuJPxxm8u3JQDEXxAnIARXScZPB9epxhtYAhw+4fQmBN0rzMDLfqtHAbAAogkBccHJ0YqrY8Z5h48A2KYi9NPobVSfIM69auYdi0cQM4oFFcsG/vHob42BhwAGnpGzPkrnnKsP7iRwYOViYGD01ehi5/SYaLx/czJCXEM6zdsJHBxMQU1QCQdSCTQXjOvAVYoxEU0PkFhQx29g6Y0UhMQsSakGYuWf//5dt3xOjHUCMmLMQAAArvukNTiC2gAAAAAElFTkSuQmCC"/>KO</a></li>
<!-- Polish -->
<li><a href="/index.html.pl"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAUElEQVQ4T2OcvnTdrtdv3rsykAFEhYX2MDZNnPu/OD2ODO0MDL0zFzGMGrCIgXEyA8N/L1VpsgJx2+2nowaAwmAhO+vuTz9/u5ATinzsrHsBqd8/YFeteyoAAAAASUVORK5CYII="/>PL</a></li>
<!-- Russian -->
<li><a href="/index.html.ru"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAXklEQVQ4T2OcvnTdrtdv3rsykAFEhYX2MDZNnPu/OD2ODO0MDL0zFzEMAgMYNev/23mnkuWFQ1tnMzAOAwOWCzD8t5aRICsMjj55wcA4CAwQZJjJ8J8hjSw/MDLMBgDbJjvTGKiw3wAAAABJRU5ErkJggg=="/>RU</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- navbar end -->
<div class="col-md-12 col-xs-12 col-sm-12">
<!-- header-right start -->
<!-- ================ -->
<div class="header-right clearfix">
<!-- main-navigation start -->
<!-- ================ -->
<div class="main-navigation animated">
</div>
<!-- main-navigation end -->
</div>
<!-- header-right end -->
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- textcoin block start -->
<!-- ================ -->
<div class="section clearfix" id="textcoin" style="display: none;">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-5 col-md-push-5 text-center text-md-left">
<h2>O ti gba owo!</h2>
<p class="android" style="display: none;">
Te botini to wa labe yi tabi ko fi Byteball app si ori ero e lati gba owo.
</p>
<p class="desktop">
<a href="#download">Dawunlodi kosi fi Byteball apamowo</a> lakoko, ko wa te botini toun be la be yi lati shi app lori ero e lati gba owo.
</p>
<p id="warning" class="alert alert-danger m10" style="display: none">
O she ni laanu, Apamowo Byteball o ti si lori iOS platifomu. Gbinyanju lati lo ero e lati gba owo e.
</p>
<p><button id="openInApp" class="btn btn-lg btn-success m10">O ti gba owo</button></p>
<p>
Ti botini o ba shishe, <a href="#download">fi apamowo Byteball</a>, lo kiri lati <i>gba</i> → <i>gba owo nipa lilo textcoin</i> ko wa fi awon nkan yi si:<br>
<b id="mnemonic"></b><br>
</p>
</div>
<div class="col-md-2"></div>
<div class="col-xs-12 col-md-3 col-md-offset-2 col-md-pull-7 text-center">
<img src="img/inphone/wallet.png?v2" style="display: inline; max-height: 547px" />
</div>
</div>
</div>
</div>
<!-- textcoin block end -->
<!-- banner start -->
<!-- ================ -->
<div id="banner" class="banner">
<div class="banner-caption">
<div class="container">
<div class="row smooth-scroll">
<div class="row text-center logo-main">
<svg height="128" width="128">
<circle cx="64" cy="64" r="56" stroke="#2c3e50" stroke-width="8" fill="white" />
</svg>
<div style="margin-top: -15px;">Byteball</div>
</div>
<div class="space"></div>
<div class="row text-center">
<h2>Smart payment lati se ni irorun</h2>
<p><a class="btn btn-lg btn-success" href="#download" role="button">Gba Byteball wallet</a></p>
<p><a href="Byteball.pdf"><i class="fa fa-file-text-o"></i> Ka awon iwefunfun</a></p>
</div>
<div class="space"></div>
<!--p class="lead what-is">Byteball is an alternative legal system based on smart contracts.</p>
<p class="lead what-is">When a contract is created on Byteball, it just works exactly as agreed upon. Trust in the counterparty and reliance on the slow and expensive conventional legal system are not required any more as the contracts are enforced by the immutable rules of the decentralized platform. See below the types of contracts available today.</p-->
<p class="lead what-is">Byteball a maa fi ifi okan tan sibi ti ko si.</p>
<p class="lead what-is">Nigbati ibasepo/ida owopo bati duro, aridaju npe yio ri baa ti se sr adehun nbe Kinidi? Nitori ti o ti wa ni ojulowo ni opolopo opa lori awon fifunka netiwoki, ti gbogbo won si tele awon aileyipada ofin. Awon asopo apejo, ti won ba ti e je alejo patapata, ni lati uwa pelu otito nitoripe ofin nikan loni ase. Iru awon adehun ni a n peni adehun daradara. Woo isale fun awon apere ti ise adehun daradar ti o wa ni oniyi.</p>
</div>
</div>
<!-- /.countdown-wrapper -->
</div>
</div>
<!-- banner end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="why" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Ki ni eredi lilo Byteball?</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Aa-lewu ona iwa smart payments</h2>
<p class="lead text-left">Byteball fi aye gba e lati se ohunkohun ti awon ibile owo ko lese: ona iwa owo sisan.</p>
<p>Iwo yio o fi iwa ona kale nigbati awon olugbowo bagba owo, ti iwa ona ko ba se n se. iwo yio o gba owo re pada.</p>
<div class="space"></div>
</div>
<div class="col-md-6">
<!-- <div class="frame-it"></div> -->
<img src="img/inphone/payment-with-bind-full.png" alt="" class="img-feature">
<!-- <img src="img/inphone/bind.png" alt="" class="max-w320"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">P2P imudaju</h2>
<p class="lead text-left">Hejii lodi si awon odi isele.</p>
<p>Ra imudaju lati owo egbe lati ri owo gba ni iru odi isele ba sele. Ta imudaju re fun ere.</p>
<p>Imudaju je <a href="https://medium.com/byteball/making-p2p-great-again-episode-iv-p2p-insurance-cbbd1e59d527"
target="_blank">ododo irorun adehun daradara</a> ti o le si ilekun nipa awon ohun igbepamo — ti ohun isele ti a beere ba sele, abi nipa awon agbo ohunpamo — bibeko.</p>
<p>Lati ni idaju pe ko si idaduro ofurufu, wa alabasepo re ninu ona <a href="https://byteball.slack.com/messages/C54CDJATB/"
target="_blank">#p2p_insoransi</a> lori <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a>,
se adehun, ti oko ofurufu e ba pe ko to de,<a href="byteball:AuP4ngdv0S/[email protected]/bb#0000">se oro enu pelu idaduro oko ofurufu </a> lati ni je ki o firanse data nipa idaduro, kosi shi adehun na.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<img src="img/inphone/flight-delays-oracle-full.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/flight-delays-oracle-top-no-border.png" alt="" class="img-wallet-left"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Asotele awon oja</h2>
<p class="lead text-left">Gba owo nipa sisotele kedere ohun isele ojowaju.</p>
<p>Da P2P adehun daradara kan ti a le dasile ni gbati ikan gbogi isele ba sele. Lo fun sise<a href="https://medium.com/byteball/making-p2p-great-again-episode-iii-prediction-markets-f40d49c0abab"
target="_blank"> ohun ikile lori rinrin owo rira</a>, ere ikile, ati imudaju.</p>
<p>Find your counterpart in <a href="https://byteball.slack.com/messages/C4UMVU4QZ/" target="_blank">#prediction_markets</a> channel on our <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack.</a></p>
<div class="space"></div>
</div>
<div class="col-md-6">
<img src="img/inphone/offer-contract.png" alt="" class="img-feature">
<!-- <img src="img/inphone/offer-contract-unlock-condition.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">P2P ikile</h2>
<p class="lead text-left">Se ohun ikile dojuko awon elomiran lori awon ere isele.</p>
<p>Find your counterpart in <a href="https://byteball.slack.com/messages/C4UMVU4QZ/" target="_blank">#prediction_markets</a> channel on our <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a> and create a contract
that can be unlocked by you or your peer depending on the results of a future game.</p>
<p>Leyin ti ati mo esi na,<a href="byteball:[email protected]/bb#0000">soro pelu awon oni idije oro enu</a> sun siwaju data nipa aboesi, le yin na tu adehun na ka.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<!-- <div style="position:relative; display: inline-block;">
<div class="frame-it1"></div> -->
<img src="img/inphone/sports-oracle-chat-full.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/payment-in-chat.png" alt="" class="img-wallet-left max-w320"> -->
<!-- </div> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Textcoins</h2>
<p class="lead text-left">Send cryptocurrency to email or via chat.</p>
<p>The sender just writes an email address where he would normally write a Byteball address. The recipient just clicks a link received in email or chat. If the recipient is not in Byteball yet, he will be prompted to install the wallet. On Android, the install is started automatically. <a href="https://medium.com/byteball/sending-cryptocurrency-to-email-5c9bce22b8a9" target="_blank">Learn more</a>.</p>
<div class="space"></div>
</div>
<div class="col-md-6">
<!-- <div class="frame-it"></div> -->
<img src="img/inphone/send-crypto-to-email.png" alt="" class="img-feature">
<!-- <img src="img/inphone/sports-oracle-chat-top-no-border.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">Idoju ara eni fun ijoba</h2>
<p class="lead text-left">Store your ID in your wallet, choose what to disclose and to whom.</p>
<p>Have your real identity verified and securely stored in your wallet. <a href="https://www.jumio.com/" target="_blank">Jumio</a> helps in ID verification. When you want to disclose your identity to a service provider, e.g. to participate in an ICO, you just pull it out of your wallet in a few clicks. <a href="https://medium.com/byteball/bringing-identity-to-crypto-b35964feee8e" target="_blank">Learn more</a>.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<img src="img/inphone/attestation-choose-profile-pixelated.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/merchant-chatbot-top.png" alt="" class="img-wallet-left"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">P2P owo sisan ninu sisoro</h2>
<p class="lead text-left">Soro pelu san owo ninu app kaanna nipa lilu awon ategun ni kan.</p>
<div class="space"></div>
</div>
<div class="col-md-6">
<!-- <div class="frame-it"></div> -->
<img src="img/inphone/payment-in-chat-full.png" alt="" class="img-feature">
<!-- <img src="img/inphone/sports-oracle-chat-top-no-border.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">Chatbots</h2>
<p class="lead text-left">Soro si ero bot bi o sefe soro si eniyan.</p>
<p>Ra oja nipa sisoro pelu ero ountaja bot, san owo nipa lilu le e meji. Exchanges pelu awon ise omiran ni ororun lati lo ni sisoro ni oju-ewe.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<img src="img/inphone/merchant-chatbot-1.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/merchant-chatbot-top.png" alt="" class="img-wallet-left"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Itaja Botu</h2>
<p class="lead text-left">Ni irorun se awari pele ifikun titun chatbots nipa dida- Bot Store.</p>
<p>Oniseda ni logan awon ona si awon onilo nipa tite gbangba chatbot lori Bot Store. Wo awon <a href="https://github.com/byteball/byteballcore/wiki/Writing-chatbots-for-Byteball"
target="_blank"> iwe akaye oniseda nipa dida awon chatbots.</a></p>
<div class="space"></div>
</div>
<div class="col-md-6">
<img src="img/inphone/bot-store.png" alt="" class="img-feature">
<!-- <img src="img/inphone/bot-store-top-no-border.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Owo ti a ko le se awari: Blackbytes</h2>
<p class="lead text-left">Gbowo-bi ikoko.</p>
<p>Ti o ba fe se asepari ikoko, san ninu Blackbytes, gbigbowo kan-bi aileseiwadi owo ti ojanina re ko se n fi oju ri lori igbagede gbogbo iwedata, ni won ran si egbe-si-egbe dipo.</p>
<p>Lo dida-ninu TOR yipada gigun lati apamowo lati mu asiri re ani asiwaju.</p>
</div>
<div class="col-md-6" style="position: relative">
<!--img src="img/black-byteball-logo-big.png" alt="" style="max-width: 142px; margin-top: 60px; margin-left: 110px;"-->
<svg height="128" width="128" style="position: relative">
<circle cx="64" cy="64" r="56" stroke="#2c3e50" stroke-width="8" fill="transparent" />
</svg>
<i class="fa fa-eye-slash" style="font-size: 80px; position: absolute; top: 19px; left: 39px; color: #2c3e50"></i>
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Awon onilu ran ara won lowo</h2>
<p class="lead text-left">Se oluso kookan miran idunadura.</p>
<p>Nibe ni ko si aringbungbun nkankan ti oja ati ilana gbogbo awon owo. Dipo, idunadura da nipa olumulo ni o wa cryptographically sopo si okookan miiran, ati ni kete ti o fi titun re idunadura, miiran awon olumulo bere fif won lori oke ti re, ati awon nuba awon idundura miiran ti o sopo mo ti idunadura ti re dagba bi snowball ( idi ti a fi pe ni Byteball ni yen).</p>
</div>
<div class="col-md-6">
<img src="img/DAG-transparent.png" alt="" style="margin-top: 60px;">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="core" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Core features</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- ================ -->
<div class="section clearfix">
<div class="container ">
<div class="row">
<div class="col-sm-4 col-sm-offset-2 text-right core-res-left">
<h3 class="media-heading">Atomic exchange</h3>
<p>Nigba ti egbe meji ba fowo si ohun kan ni apopo lati se mejei ese exchange, awon idunadura boya ti isele lesekese abi ti ko sele rara. Ko je didan rara lati gbekele ohunkohun pinpin exchanges.</p>
<div class="space-res"></div>
</div>
<div class="col-sm-4">
<h3 class="media-heading">Ofin ini</h3>
<p>Ofin ajo le oro ohun ini ti wa ni ibamu pelu KYC/AML ibeere. Gbogbo gbigbe ti iru dukia ni lati wa ni ajofowosi nipase awon olufun, ati awon ti o ba ti wa nibe ni ohunkohun ti tako awon ilana, awon olufun yoo fowosi.</p>
</div>
</div>
<div class="space"></div>
<div class="row">
<div class="col-sm-4 col-sm-offset-2 text-right core-res-left">
<h3 class="media-heading">Multi signature</h3>
<p>Fun abo, iwo le beere fun owo re ni lati jenina nikan nigba ti opolopo ibuwolu ba wa, bi apeere. lati ero computa agbeletan pelu ero phooni. Fun pinpin eto owo, onte ibuowolu lati odo opo eniyan to yato ni o le beere.</p>
<div class="space-res"></div>
</div>
<div class="col-sm-4">
<h3 class="media-heading">On-chain oracles</h3>
<p>Nigbati awon olugbagbo ba sise pelu awon alabasepo, o le pa awon owo lori ohun adiresi ti o je nina boya nipa ti awon alabasepo, ti o da lori awon isele aami si awon database nipa gbigbekele data olupese — oro enu.</p>
</div>
</div>
<div class="space"></div>
<div class="row">
<div class="col-sm-4 col-sm-offset-2 text-right core-res-left">
<h3 class="media-heading">Ifipamo alaise</h3>
<p>Logan ti a fi pamo si nu Byteball ibi ipamo data, awon data na a le tun yipada abi yokuro.</p>
<div class="space-res"></div>
</div>
<div class="col-sm-4">
<h3 class="media-heading">Pinpin ini patapata</h3>
<p>Lehin ti awon awari muti wa ni pade, a titun idunadura di opin. O le ko wa tunwa efa nipa alagbara onikolu. Ko si riroise nip awon otun nomba ti imudaju. ko si idamewa aadota ati okan ninu ogorun onikolu.</p>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 id="download" class="text-center">Gba Byteball wallet re</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<div class="section clearfix ">
<div class="container">
<div class="row apps">
<div class="col-md-8 col-md-offset-2 text-center">
<div>
<img style="max-width: 33%;" src="img/inphone/wallet.png?v2" />
</div>
<div class="space"></div>
<div class="app">
<div><a target="_blank" href="https://itunes.apple.com/us/app/byteball/id1147137332?ls=1&mt=8"><img src="img/icon-applestore.svg"/></a></div>
<div><a target="_blank" href="https://itunes.apple.com/us/app/byteball/id1147137332?ls=1&mt=8">iOS</a></div>
</div>
<div class="app">
<div><a target="_blank" href="https://play.google.com/store/apps/details?id=org.byteball.wallet"><img src="img/android_robot.svg"/></a></div>
<div><a target="_blank" href="https://play.google.com/store/apps/details?id=org.byteball.wallet">Android</a></div>
</div>
<div class="app">
<div><a href="/downloads/Byteball-win64.exe"><img src="img/icon-microsoft.svg"/></a></div>
<div><a href="/downloads/Byteball-win64.exe">Windows</a></div>
</div>
<div class="app">
<div><a href="/downloads/Byteball-osx64.dmg"><img src="img/icon-mac-os-x.svg"/></a></div>
<div><a href="/downloads/Byteball-osx64.dmg">Mac</a></div>
</div>
<div class="app">
<div><a href="/downloads/Byteball-linux64.zip"><img src="img/linux.png"/></a></div>
<div><a href="/downloads/Byteball-linux64.zip">Linux</a></div>
</div>
<div class="app">
<div><a target="_blank" href="https://github.com/byteball/byteball"><img src="img/fi-social-github.svg"/></a></div>
<div><a target="_blank" href="https://github.com/byteball/byteball">GitHub</a></div>
</div>
<div class="space"></div>
<ul class="list-unstyled text-left">
<li><i class="fa fa-caret-right pr-10 text-colored"></i> <a href="byteball:[email protected]/bb#0000">Ra abi ta bytes</a> nipa sisoro pelu ero karakata boti</li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> <a href="https://medium.com/byteball/making-p2p-great-again-episode-ii-bitcoin-exchange-d98adfbde2a5" target="_blank">P2P fifiparo bytes ati bitcoin</a> je ki merkie re ni ifidimule nipa bi ba soro oro <a href="byteball:A7C96Bhg4Gpb2Upw/Ky/[email protected]/bb#0000">enu BTC</a><br></li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Wo akosile gbangba idunadura lori <a href="https://explorer.byteball.org" target="_blank">DAG explorer</a></li>
<!-- <li><i class="fa fa-caret-right pr-10 text-colored"></i> Dignissimos molestiae necessitatibus</li> -->
</ul>
<!-- <h4 style="font-weight: 500;">After installing, <a href="byteball:[email protected]/bb#0000">chat with the Transition Bot</a> to participate in the next distribution round</br> -->
<!-- <a href="byteball:[email protected]/bb#0000">Buy or sell bytes</a> by chatting
with a trading bot</br> -->
<!-- <a href="https://medium.com/byteball/making-p2p-great-again-episode-ii-bitcoin-exchange-d98adfbde2a5" target="_blank">P2P exchange bytes vs bitcoins</a>,
get your merkle proof by chatting with <a href="byteball:A7C96Bhg4Gpb2Upw/Ky/[email protected]/bb#0000">BTC Oracle</a></br>
View public transactions on the <a href="https://explorer.byteball.org" target="_blank">DAG explorer</a></h4> -->
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="dist" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Ite ibeere pinpin</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<p class="lead text-left">Free distribution for mass adoption.</p>
<p>Mass adoption requires wide distribution, that's why 99% of all bytes and blackbytes are to be distributed for free. Currently, we use several ways to distribute them:</p>
<ul>
<li><a href="https://medium.com/byteball/byteball-cashback-program-9c717b8d3173" target="_blank">Cashback</a> for purchases at the merchant stores we partner with. Ni opolopo igba, awon ti a nse cashback ti idamewa ti o ra ni iye. <a href="https://medium.com/byteball/byteball-cashback-program-9c717b8d3173" target="_blank">Fowosi foomu ohun elo</a> tabi <script>iwe.kiko('<a href="mailto:byteball'); document.write('@'); document.write('byteball.org">');</script> ko kan si wa <script>iwe.ko('<2>');</script> ti o ba sise a ataja tabi owo isise, osi fe kopa ninu awon eto idawo pada.</li>
<li><a href="https://medium.com/byteball/distribution-to-verified-users-and-referrals-ed00b9b2a30e" target="_blank">Verification rewards and referral rewards</a> to those who verify their real name.</li>
<li><a href="https://medium.com/byteball/distribution-to-verified-emails-and-sending-cryptocurrency-to-email-episode-ii-cb955fe19d7e" target="_blank">Verification rewards and referral rewards</a> to those who verify their email address.</li>
<li><a href="https://medium.com/byteball/attestation-of-accredited-investors-d4a8dabf683b" target="_blank">Verification rewards and referral rewards</a> to accredited investors who verify their accredited status.</li>
<li>Rewards to those who pass a <a href="https://medium.com/byteball/money-for-knowledge-distribution-via-telegram-quiz-bot-2dd400e22997">quiz in Telegram</a>.</li>
<li>Subsidies that offset part of the fees paid when <a href="https://medium.com/byteball/buying-bytes-with-visa-or-mastercard-d8ee2d1a2b07">buying Bytes with Visa or Mastercard</a>.</li>
<li>Rewards for donating one's computing resources to the <a href="https://medium.com/byteball/computing-for-good-again-3795336bdaed">World Community Grid</a>.</li>
<li>Rewards to those who participate in <a href="https://bitcointalk.org/index.php?topic=3162547.0">our signature campaign on Bitcointalk</a>.</li>
<li>Rewards to those who participate in <a href="https://bitcointalk.org/index.php?topic=3218859.0">our twitter campaign on Bitcointalk</a>.</li>
<li>Giveaways distributed e.g. through youtube channels of our supporters. See e.g. <a href="https://www.youtube.com/watch?v=hycluITNDBM" target="_blank">https://www.youtube.com/watch?v=hycluITNDBM</a>.</li>
<li><a href="https://medium.com/byteball-help/using-mailchimp-to-mass-send-payments-as-textcoins-5c1db06342e3" target="_blank">Mass sending of textcoins</a> to subscribers of our partners. See the <a href="https://docs.google.com/spreadsheets/d/1heT6TUSpTJgRW-FUM0LbcoVjXZRCb3PbXQQLmzvNRvM/edit#gid=323859176" target="_blank">results of the previous campaigns</a>.</li>
</ul>
<p>In the past, we also distributed Bytes to BTC holders and existing holders of Bytes. Users used to link their BTC and Byteball addresses and were receiving new Bytes in proportion to their existing balances in BTC and Bytes. This distribution was split into several rounds. Akoko pinpin ykika mu ibi on ni ojo karun lelogun osu kejila odun 2016 nigbati awon netiwoki se igbekale, lori 70,000 BTC ti a ti soo mo ki o si ti lapapo ipese ti awon bytes ati blackbytes ti a ti pin tele. In the subsequent rounds, the total distributed supply reached 64.5%:</p>
<ul>
<li>Ni yipo keji osu Feburari ojo kankanla, odun 2017: 121,763 BTC asopo, idamewa 1.8 ni apin;</li>
<li>Ni yipo keta osu keta Mar ojo kejila, odun 2017: 129,139 BTC asopo, idamewa 2.0 ni apin;</li>
<li>Ni yipo kerin osu kerin Apr ojo kankanla, odun 2017: 145,441 BTC asopo;</li>
<li>Ni yipo karun osu karun May ojo kewa, odun 2017: 207,672 BTC asopo, idamewa 2.9 ni apin;</li>
<li>Ni yipo kefa ni osu kefa Jun ojo kesan, odun 2017: 453,621 BTC asopo, idamewa 6.6 ni apin;</li>
<li>Ni yipo keje osun keje Jul ojo kesan, odun 2017: 949,004 BTC, idamewa 11.0 ni apin.</li>
<li>Ni yipo kejo ni osu kejo Aug ojo keje, odun 2017: 1,395,899 BTC asopo, idamewa 16.0 ni apin.</li>
<li>Ni yipo kesan ni osu kesan Sep ojo kefa, odun 2017: 1,306,573 BTC asopo, idamewa 5.7 ni apin.</li>
<li>Ni yipo kewa ni osun kewa Nov ojo kerin, odun 2017: 1,093,155 BTC asopo, idamewa 6.1 ni apin.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="tech" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Pipe titun ona ero</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<p class="lead text-left">Aikojopo piparo, jara imudaju, ko si awa koto, ko si ohun amoridun, ko si sisan owo kekere.</p>
<p>Byteball data ti o ti fipamo ati ki o pase lilo <a href="https://en.wikipedia.org/wiki/Directed_acyclic_graph" target="_blank">itosana acyclic graph</a> (DAG) yala blockchain. E leyi gba gbogbo awon olumulo lati oluso kookan miirn data nipa ijiwe seyin data kuro dida nipa awon olumulo iiran, ki o si tun yo asepiparo ifilele lo wopo fun akosile blockchains, gege bi awon akosile blocksize oro.</p>
<p>Blockless aradida je irorun nitori nitori nibe ni o wa ti ko si blocks, nibe ni o wa nikan idunadura. Awon olumulo okan fi awon idunadura to opin ti awon DAG ara won, nwon si mase ni lati duro nigbati awakusa ba seda titun block ati nibe ni ko si riro ise boya awakusa yio fikun idunadura re ninu block.</p>
<p>Awon ipohunpo alugoridimu lo lati daboobo lati e lo ni da lori igbekele kan lapapo ibere laarin awon DAG. Eyi ti n waye nippa yiyan ewon kan, ti a n pe ni ogidi ewon, eyi ti o sunsoke si ona sipo ti onisowo wopo mo olokiki awon olumulo — eleri. Wo awon<a href="Byteball.pdf"> iwe funfun</a> fun awon ekunre.</p>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<h2 class="text-left">Testnet</h2>
<p><a href="testnet.html">Testnet wallet</a> o tun wa ti iwo ba je onidasile abi ofe ni oye awon iriri eya ti Byteball lai na epini.</p>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<h2 class="text-left">Awujo ati Riranlowo</h2>
<p>Join Byteball on <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a>! Awon ero ona ti opo pelu jijero ti o lemi nipa ojo iwaju idagbasoke, isowo, awon oja lati daruko kekere shaa. If you have any issues with the Byteball wallet, our competent support staff will take care of
it at the #helpdesk channel in our slack <a href="https://slack.byteball.org" target="_blank" title="Slack">slack.byteball.org</a>.</p>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<h2 class="text-left">Paaro</h2>
<p>Iwo le ra abi ta bytes lai fi wallet si le nipa <a href="byteball:[email protected]/bb#0000">sisoro iweregbe pele isowo boti</a>.
You can also trade on the exchanges listed below.</p>
<p>To buy or sell blackbytes, see or post orders in <a href="https://byteball.slack.com/messages/C3KFYK5H7/" target="_blank">#trading_blackbyte</a> channel on our <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a>, then exchange peer-to-peer
using <a href="https://medium.com/byteball/making-p2p-great-again-fe9e20546a4a" target="_blank">bound (conditional) payments.</a></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<a class='exchange-icon' href="https://bittrex.com/Market/Index?MarketName=BTC-GBYTE" target="_blank"><img src="img/exchanges/bittrex-logo-white-no-tagline.png" alt="Bittrex"></a>
<a class='exchange-icon' style='margin-bottom: 6px; background-color: #342533' href="https://cryptox.pl" target="_blank"><img src="https://cryptox.pl/images/logo.png" alt="Cryptox"></a>
<a class='exchange-icon' href="https://www.cryptopia.co.nz/Exchange/?market=GBYTE_BTC" target="_blank"><img src="img/exchanges/Cryptopia-Light2x.png" alt="Cryptopia"></a>
<a class='exchange-icon' href="https://changelly.com/exchange/btc/gbyte" target="_blank"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALwAAAA1CAMAAADMKHGJAAADAFBMVEUQ0Hj///8Q0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HisG82fAAAA/3RSTlMAAAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xN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" alt="Changelly"></a>
<a class='exchange-icon' style='margin-bottom: -11px;' href="https://bisq.network" target="_blank" title="Bisq (formerly Bitsquare)"><img src="img/exchanges/bisq_logo_820_460.png" alt="Bisq"></a>
<a class='exchange-icon' style='margin-bottom: 12px;' href="https://www.kaiserex.com" target="_blank"><img src="img/exchanges/kaiserex-logo.png" alt="Kaiserex"></a>
<!--a class='exchange-icon' href="https://cryptochangex.com" target="_blank"><img src="img/exchanges/cryptochangex.png" alt="Cryptochangex"></a-->
<a class='exchange-icon' style='margin-bottom: 11px;' href="https://kkex.com" target="_blank"><img src="img/exchanges/KKEX_logo.png" alt="KKEX"></a>
<a class='exchange-icon' style='margin-bottom: 11px; background-color: #35a6c0' href="https://indacoin.com/en_GB/change/buy-Bytes-with-cardusd" target="_blank" title="Indacoin: buy Bytes with Visa or Mastercard"><img src="img/exchanges/indacoin.svg" alt="Indacoin: buy Bytes with Visa or Mastercard"></a>
</div>
</div>
</div>
<script>
function ml_webform_success_8574594() {
var $ = ml_jQuery || jQuery;
$('.ml-subscribe-form-8574594 .ml-block-success').show();
$('.ml-subscribe-form-8574594 .ml-block-form').hide();
};
</script>
<div class="gap">
<div id="mc_embed_signup">
<form class="ml-block-form" action="https://landing.mailerlite.com/webforms/submit/q4s2a8" data-id="854744" data-code="q4s2a8" method="POST" target="_blank">
<div id="mc_embed_signup_scroll">
<label for="mce-EMAIL">Subscribe for the latest Byteball updates: </label>
<input type="email" name="fields[email]" class="email" placeholder="Email address" value="" required>
<!-- 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_8375ddcbb541577ef0292094a_10f3306c05" tabindex="-1" value=""></div>
<input type="hidden" name="ml-submit" value="1" />
<button type="submit" class="primary bbt">
Subscribe
</button>
<button disabled="disabled" style="display: none;" type="button" class="loading ">
<img src="https://static.mailerlite.com/images/[email protected]" width="20" height="20" style="width: 20px; height: 20px;">
</button>
</div>
</form>
</div>
</div>
</div>
<!-- sectionimg/exchanges/bitsqare.png end -->
<!-- footer start -->
<!-- Site footer -->
<footer class="footer text-center">
<!--p>© 2016 Byteball</p-->
<a href="terms.html">Terms</a>
<a href="privacy.html">Privacy</a>
<a href="https://docs.google.com/document/d/1LXYchOifJ8eRJ8ZKRNr1K-jkiFYWLiHS1yaUpRMf8JA/edit?usp=sharing" target="_blank">Media Kit</a>
<script>
document.write('<a href="mailto:byteball'); document.write('@'); document.write('byteball.org">byteball'); document.write('@'); document.write('byteball.org</a>');
</script>
<a href="https://twitter.com/ByteballOrg" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/byteball.org" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a>
<a href="https://bitcointalk.org/index.php?topic=1608859.0" target="_blank" title="Bitcoin Talk thread"><i class="fa fa-bitcoin"></i></a>
<a href="https://medium.com/byteball" target="_blank" title="Medium"><i class="fa fa-medium"></i></a>
<a href="https://slack.byteball.org" target="_blank" title="Slack"><i class="fa fa-slack"></i></a>
<a href="https://www.reddit.com/r/ByteBall/" target="_blank" title="Reddit"><i class="fa fa-reddit-alien"></i></a>
<a href="https://t.me/byteball" target="_blank" title="Telegram"><i class="fa fa-telegram"></i></a>
<a href="https://mp.weixin.qq.com/s/JB0_MlK6w--D6pO5zPHAQQ" target="_blank" title="WeChat"><i class="fa fa-weixin"></i></a>
</footer>
<div id="jumioModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Scan finished</h4>
</div>
<div class="modal-body">
<p>Now Jumio will process your photos, it usually takes a few minutes but sometimes may take hours.</p>
<p>The attestation bot will let you know as soon the result is known.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Pade</button>
</div>
</div>
</div>
</div>
<!-- JavaScript files placed at the end of the document so the pages load faster
================================================== -->
<!-- Jquery and Bootstap core js files -->
<script type="text/javascript" src="plugins/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- Modernizr javascript -->
<script type="text/javascript" src="plugins/modernizr.js"></script>
<!-- Initialization of Plugins -->
<script type="text/javascript" src="js/template.js?v5"></script>
<script src="js/kinetic.js"></script>
<script src="js/jquery.final-countdown.min.js"></script>
<script>
if (location.hash === '#jumio-done' || location.search.match('jumio-done'))
$("#jumioModal").modal();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83607123-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var NativeAppLauncher = (function() {
var textcoin = window.location.hash.replace("#textcoin?", "");
var IOS_VERSION_RE = /OS\s+(\d)_/;
var timers = [];
var userAgent = window.navigator.userAgent;
var isAndroid = function() {
return /Android/.test(userAgent);
};
var isIOS = function() {
return /(?:i(?:Phone|P(?:o|a)d))/.test(userAgent);
};