-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathindex.html
2655 lines (2639 loc) · 99.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!--Meta tags-->
<meta charset="utf-8">
<meta name="google" content="notranslate" />
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://wallet.duinocoin.com/assets/duco.svg">
<link rel="shortcut icon" href="https://wallet.duinocoin.com/assets/duco.svg">
<title>Duino-Coin | Web wallet</title>
<meta name="apple-mobile-web-app-title" content="Duino-Coin | Web wallet">
<meta name="application-name" content="Duino-Coin | Web wallet">
<meta name="twitter:title" content="Duino-Coin | Web wallet">
<meta property="og:title" content="Duino-Coin | Web wallet">
<meta name="description" content="Official online wallet for Duino-Coin (DUCO)">
<meta name="twitter:description" content="Official online wallet for Duino-Coin (DUCO)">
<meta property="og:description" content="Official online wallet for Duino-Coin (DUCO)">
<meta name="keywords" content="Duino-Coin, duco, Duino Coin, DUCO">
<meta name="author" content="revox from the Duino-Coin Team">
<meta property="og:url" content="https://wallet.duinocoin.com">
<meta name="msapplication-TileColor" content="#FC6803">
<meta name="theme-color" content="#FC6803">
<meta name="twitter:site" content="@DuinoCoin">
<meta name="twitter:image" content="https://wallet.duinocoin.com/img/banner_wallet.png">
<meta property="og:image" content="https://wallet.duinocoin.com/img/banner_wallet.png">
<meta property="og:image:url" content="https://wallet.duinocoin.com/img/banner_wallet.png">
<meta name="twitter:card" content="summary_large_image">
<link rel="manifest" href="wallet.webmanifest">
<!--CSS-->
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/animate.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="2023/css/bulma-prefers-dark.css">
<link rel="stylesheet" type="text/css" href="2023/css/bulma-checkbox.css">
<link rel="stylesheet" type="text/css" href="2023/css/styles.css">
<link rel="stylesheet" type="text/css" href="2023/css/theme-terminal.css" disabled id="theme-terminal">
<link rel="stylesheet" type="text/css" href="2023/css/theme-retro.css" disabled id="theme-retro">
<link rel="stylesheet" type="text/css" href="2023/css/theme-glossy.css" disabled id="theme-glossy">
<!--<link rel="stylesheet" type="text/css" href="2023/css/theme-halloween.css" id="theme-halloween">-->
<!--JS-->
<script src="https://duinocoin.com/assets/js/all.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="https://wallet.duinocoin.com/js/jquery-ui.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="preconnect" href="https://www.google.com">
<link rel="preconnect" href="https://www.gstatic.com" crossorigin>
<script src="https://www.google.com/recaptcha/api.js?render=6LdJ9XsgAAAAAMShiVvOtZ4cAbvvdkw7sHKQDV-6"></script>
<link rel="preload" as="script" href="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607105763246092" crossorigin="anonymous">
<script type="text/javascript" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607105763246092" crossorigin="anonymous"></script>
<script tyle="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected]/dist/bulma-toast.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
</head>
<body>
<div class="section" id="register" style="display:none">
<div class="container">
<div class="columns">
<div class="column"></div>
<div class="column">
<div class="box">
<center>
<h1 class="title">
<span class="icon-text">
<!--<img class="icon" src="assets/duco-christmas-2024-circle.gif">-->
<img class="icon" src="assets/duco.svg">
<!--<img class="icon" src="assets/duco-halloween.png">-->
<span>Duino-Coin</span>
</span>
</h1>
<h1 class="subtitle">
Create a new wallet
</h1>
<div class="content" id="register_content_start">
Hello! <b>Welcome to the Duino-Coin wallet creator</b>.<br>
We'll ask you some questions to make sure you understand
what Duino is all about.
</div>
<!--<div class="content" id="register_content_start">
Registration of new Duino-Coin accounts is (temporarily) disabled.<br>
In the meantime, you can try sticking around these communities for a similar experience:
<ul>
<li><a href="https://m-core.org" target="_blank">Coin Magi XMG</a></li>
<li><a href="https://foldingathome.org" target="_blank">Folding@home</a></li>
<li><a href="https://www.mysterium.network" target="_blank">Mysterium MYST</a></li>
</ul><br>
This message will be updated when a conclusive decision will be made. Sorry for any inconvenience.
</div>
<button class="button is-fullwidth" onclick="location.reload()">
Back to login
</button>-->
<button class="button is-fullwidth is-success" id="register_start" onclick="register_quiz_start()">
Start
</button>
<div class="content" id="register_content_1" style="display:none">
First of all - what are you looking for?
</div>
<div id="register_buttons_1" class="buttons " style="display:none">
<button class="button is-fullwidth long_button" onclick="register_quiz_1(1)">
I'm here to make money and profits
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_1(2)">
I want to tinker around with electronics
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_1(3)">
I want to learn something new and explore
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_1(4)">
I'm looking for a new hobby
</button>
</div>
<div class="content" id="register_content_2" style="display:none">
Do you prefer cryptocurrencies with a decentralized network and the ability to run your own public nodes?
</div>
<div id="register_buttons_2" class="buttons" style="display:none">
<button class="button is-fullwidth long_button" onclick="register_quiz_2(1)">
Yes, I prefer decentralization and user-run nodes
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_2(2)">
Not really, I'm not paranoid and prefer hassle-free networks
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_2(3)">
I don't know/don't care
</button>
</div>
<div class="content" id="register_content_3" style="display:none">
Do you value the ability to mine cryptocurrency on a wide range of low-cost, low-power devices?
</div>
<div id="register_buttons_3" class="buttons" style="display:none">
<button class="button is-fullwidth long_button" onclick="register_quiz_3(1)">
No, I prefer using high-end, specialized mining equipment
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_3(2)">
Yes, I like the flexibility of using various devices
</button>
</div>
<div class="content" id="register_content_4" style="display:none">
Do you want to create a big mining setup - "farm"?
</div>
<div id="register_buttons_4" class="buttons" style="display:none">
<button class="button is-fullwidth long_button" onclick="register_quiz_4(1)">
Yes, I want to be a DUCO lord!
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_4(2)">
No, I just want to mine with what I have
</button>
</div>
<div class="content" id="register_content_5" style="display:none">
How patient are you with the potential volatility of coin prices?
</div>
<div id="register_buttons_5" class="buttons" style="display:none">
<button class="button is-fullwidth long_button" onclick="register_quiz_5(1)">
I'm comfortable with significant price fluctuations and can hold for the long term
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_5(2)">
I prefer less volatile assets and may not handle large price swings well
</button>
<button class="button is-fullwidth long_button" onclick="register_quiz_5(3)">
I have a low tolerance for price volatility and prefer stable cryptocurrencies
</button>
</div>
<div class="content" id="register_content_6" style="display:none">
Please get familiar with our <a href="https://duinocoin.com/terms">terms of service</a>:
<iframe class="mt-3" src="https://duinocoin.com/terms" height="300px" width="100%"></iframe>
</div>
<div id="register_buttons_6" class="buttons" style="display:none">
<button class="button is-fullwidth long_button" onclick="register_quiz_end()">
I've read, understood and will comply with the ToS
</button>
</div>
<div class="content" id="register_fail" style="display:none">
We appreciate your interest in Duino-Coin.
However, based on your preferences and goals, <b>it seems that Duino-Coin
may not be the most suitable cryptocurrency choice for you at this time</b>.
Duino-Coin is primarily designed for individuals who
<b>enjoy tinkering with electronics, learning programming,
and participating in a community focused on
technology exploration rather than profit</b>.<br><br>
Duino-Coin is <b>not primarily intended for those seeking
significant financial gains</b> or passive investments in the
cryptocurrency market. It offers a unique experience that
emphasizes low-power device mining, community involvement, and continuous learning.<br><br>
If you are still interested in this coin, please <b>try taking the quiz again</b>.
<button class="button mt-3 is-fullwidth" id="register_start" onclick="register_quiz_start()">
Try again
</button>
</div>
</center>
<div class="content" id="register_end_1" style="display:none">
<center>
Thanks for taking the quiz. Looks like <b>you will have a great time with Duino-Coin</b>! Let's proceed with the registration.
</center>
<div class="field">
<label for="input" class="label">Username</label>
<div class="field">
<p class="control has-icons-left">
<input class="input" id="register_username" type="text" placeholder="e.g. my_cool_username">
<span class="icon is-small is-left">
<i class="fas fa-user"></i>
</span>
<small class="has-text-danger"></small>
</p>
</div>
<p class="subtitle is-size-6 has-text-info">
<i class="fa fa-info-circle"></i>
The username will also be your wallet address. It can consist of alphanumeric characters, numbers and underscores or dashes.
</p>
</div>
<div class="field">
<label for="input" class="label">Password</label>
<div class="field">
<p class="control has-icons-left">
<input class="input" id="register_password" type="password" placeholder="******">
<span class="icon is-small is-left">
<i class="fas fa-lock"></i>
</span>
<small class="has-text-danger"></small>
</p>
</div>
<p class="subtitle is-size-6 has-text-info">
<i class="fa fa-info-circle"></i>
Choose a strong password and save it in a safe place.
</p>
</div>
<div class="field">
<label for="input" class="label">Confirm Password</label>
<div class="field">
<p class="control has-icons-left">
<input class="input" id="register_password_c" type="password" placeholder="******">
<span class="icon is-small is-left">
<i class="fas fa-lock"></i>
</span>
<small class="has-text-danger"></small>
</p>
</div>
</div>
<button class="button mt-3 is-fullwidth is-success" onclick="register_end_1()">
Next
</button>
</div>
<div class="content" id="register_end_2" style="display:none">
<center>
<b>Almost there!</b> Last page...
</center>
<div class="field">
<label for="input" class="label">Miner key</label>
<div class="field">
<p class="control has-icons-left">
<input class="input" id="register_miner_key" type="text" placeholder="None">
<span class="icon is-small is-left">
<i class="fas fa-lock"></i>
</span>
<small class="has-text-danger"></small>
</p>
</div>
<p class="subtitle is-size-6 has-text-info">
<i class="fa fa-info-circle"></i>
Setup a <b>key that you will put in your miners</b> so that
other people can't mine on your account and mess with
your Kolka efficiency drops.
</p>
</div>
<div class="field">
<label for="input" class="label">E-Mail</label>
<div class="field">
<p class="control has-icons-left">
<input class="input" id="register_email" type="email" placeholder="[email protected]">
<span class="icon is-small is-left">
<i class="fas fa-at"></i>
</span>
<small class="has-text-danger"></small>
</p>
</div>
<p class="subtitle is-size-6 has-text-info">
<i class="fa fa-info-circle"></i>
<b>Please provide a real e-mail</b> as it will be used to
confirm exchanges and receive updates about your account.
<b>We will delete your account if the e-mail is invalid.</b>
We won't send spam.
</p>
</div>
<div class="field has-text-centered">
<div class="h-captcha" data-theme="dark" data-sitekey="1c77cf53-13bc-46a2-b358-84c6766be2bc"></div>
<small id="captchainfo" class="has-text-danger"></small>
</div>
<div class="columns is-mobile">
<div class="column is-1">
<input class="is-checkbox mt-3" type="checkbox" id="check1">
</div>
<div class="column">
<label for="check1">I agree to receive <b>announcement e-mails</b> from Duino-Coin and when <b>something's happening with my account</b>.</label>
</div>
</div>
<div class="columns is-mobile">
<div class="column is-1">
<input class="is-checkbox is-danger" type="checkbox" id="check2">
</div>
<div class="column">
<label for="check2">I understand that <b>some of my personal data will be saved</b>. For example, my saved <b>IP address may get reported to the AbuseIPDB list if I break the rules</b>.</label>
</div>
</div>
<small class="has-text-danger" id="checkInfo"></small>
<button class="button mt-3 is-fullwidth is-success" onclick="register_end_2()" id="register_button">
Register
</button>
</div>
<footer class="has-text-grey">
<center class="mt-5 pt-5 is-size-7">
<p>
This site is protected by reCAPTCHA and the<br>
Google
<a href="https://policies.google.com/privacy">Privacy Policy</a> and
<a href="https://policies.google.com/terms">Terms of Service</a> apply.
</p>
<p>
2019-2025 © The
<a href="https://duinocoin.com/team.html">
Duino-Coin Team
</a>
</p>
</center>
</footer>
</div>
</div>
<div class="column"></div>
</div>
</div>
</div>
<div class="section" id="pass_reset" style="display:none">
<div class="container">
<div class="columns">
<div class="column"></div>
<div class="column">
<div class="box">
<center>
<h1 class="title">
<span class="icon-text">
<!--<img class="icon" src="assets/duco-christmas-2024-circle.gif">-->
<img class="icon" src="assets/duco.svg">
<!--<img class="icon" src="assets/duco-halloween.png">-->
<span>Duino-Coin</span>
</span>
</h1>
<h1 class="subtitle">
Passphrase reset
</h1>
</center>
<br>
<div class="content">
<div class="field">
<label for="input" class="label">Username</label>
<div class="field">
<p class="control has-icons-left">
<input class="input" id="reset_username" type="text" placeholder="e.g. my_cool_username">
<span class="icon is-small is-left">
<i class="fas fa-user"></i>
</span>
<small class="has-text-danger"></small>
</p>
</div>
</div>
<div class="buttons">
<button class="button is-fullwidth is-success" onclick="generatePassword()" id="reset_button">
Send password reset link
</button>
<button class="button is-fullwidth" onclick="window.location.reload()">
Back to login
</button>
</div>
</div>
<footer class="has-text-grey">
<center class="mt-5 pt-5 is-size-7">
<p>
This site is protected by reCAPTCHA and the<br>
Google
<a href="https://policies.google.com/privacy">Privacy Policy</a> and
<a href="https://policies.google.com/terms">Terms of Service</a> apply.
</p>
<p>
2019-2025 © The
<a href="https://duinocoin.com/team.html">
Duino-Coin Team
</a>
</p>
</center>
</footer>
</div>
</div>
<div class="column"></div>
</div>
</div>
</div>
<section class="section is-hidden-touch" id="login-desktop">
<div class="container login-content-desktop">
<div class="box p-0">
<div class="columns is-gapless">
<div class="column">
<div class="login-text-desktop">
<small class="has-text-white icon-text">
<span>
<b>Duino-Coin</b> Web Wallet
</span>
</small>
<p class="title is-size-1 has-text-white">
Sign in
</p>
</div>
<div class="login-backdrop login-backdrop-desktop" id="backdrop-desktop"></div>
<span id="image_author_desktop">...</span>
</div>
<div class="column is-7 p-5">
<div class="container p-5">
<center>
<img src="assets/duco.svg" width="80px" class="mb-5">
<!--<img src="assets/duco-christmas-2024-circle.gif" width="80px" class="mb-5">-->
</center>
<div class="field">
<label class="label">Username</label>
<div class="control">
<input id="login_username_desktop" class="input" type="text" placeholder="myCoolUsername" autocomplete="username">
</div>
</div>
<div class="field">
<label class="label">Password</label>
<div class="control">
<input id="login_password_desktop" class="input" type="password" placeholder="*********" autocomplete="current-password">
</div>
</div>
<div class="field">
<div class="control">
<button class="button is-fullwidth g-recaptcha" data-callback="login" id="loginbutton_desktop" data-sitekey="6LdJ9XsgAAAAAMShiVvOtZ4cAbvvdkw7sHKQDV-6">
Login
</button>
</div>
</div>
<div class="field">
<div class="columns is-mobile">
<div class="column">
<a onclick="pass_reset_open()">
Forgot password?
</a>
</div>
<div class="column has-text-right">
<a onclick="register_open()">
Create wallet
</a>
</div>
</div>
</div>
<footer class="has-text-grey">
<center class="mt-5 pt-5 is-size-7">
<p>
This site is protected by reCAPTCHA and the<br>
Google
<a href="https://policies.google.com/privacy">Privacy Policy</a> and
<a href="https://policies.google.com/terms">Terms of Service</a> apply.
</p>
<p>
2019-2025 © The
<a href="https://duinocoin.com/team.html">
Duino-Coin Team
</a>
</p>
</center>
</footer>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section is-hidden-desktop" id="login-mobile">
<div class="container">
<div class="login-backdrop" id="backdrop-mobile"></div>
<div class="login-text">
<section class="section">
<div class="container">
<small class="has-text-white">
<b>Duino-Coin</b> Web Wallet
</small>
<p class="title is-size-1 has-text-white">
Sign in
</p>
</div>
</section>
</div>
<div class="login-bottom box">
<span id="image_author">...</span>
<!--<img src="assets/duco-christmas-2024-circle.gif" width="100px" class="login-logo">-->
<img src="assets/duco.svg" width="100px" class="login-logo">
<div class="container mt-5">
<div class="field">
<label class="label">Username</label>
<div class="control">
<input id="login_username" class="input" type="text" placeholder="myCoolUsername" autocomplete="username">
</div>
</div>
<div class="field">
<label class="label">Password</label>
<div class="control">
<input id="login_password" class="input" type="password" placeholder="*********" autocomplete="current-password">
</div>
</div>
<div class="field">
<div class="control">
<button class="button is-fullwidth g-recaptcha" id="loginbutton" data-callback="login" data-sitekey="6LdJ9XsgAAAAAMShiVvOtZ4cAbvvdkw7sHKQDV-6">
Login
</button>
</div>
</div>
<div class="field">
<div class="columns is-mobile">
<div class="column">
<a onclick="pass_reset_open()">
Forgot password?
</a>
</div>
<div class="column has-text-right">
<a onclick="register_open()">
Create wallet
</a>
</div>
</div>
</div>
<nav class="navbar is-fixed-bottom has-text-grey">
<center class="is-size-7 mb-3">
<p>
This site is protected by reCAPTCHA and the<br>
Google
<a href="https://policies.google.com/privacy">Privacy Policy</a> and
<a href="https://policies.google.com/terms">Terms of Service</a> apply.
</p>
<p>
2019-2025 © The
<a href="https://duinocoin.com/team.html">
Duino-Coin Team
</a>
</p>
</center>
</nav>
</div>
</div>
</div>
</section>
<section class="section is-hidden-touch" id="wallet-desktop" style="display:none">
<div class="navbar is-hidden-touch is-fixed-left has-shadow" role="navigation" aria-label="main navigation">
<div class="navbar-item navbar-button" style="margin-bottom: 30px">
<center>
<a class="icon is-large" href="https://duinocoin.com" target="_blank">
<img src="assets/duco.svg">
<!--<img src="assets/duco-christmas-2024-circle.gif">-->
</a>
</center>
</div>
<div id="screen-user-desktop-nav" class="navbar-item navbar-button navbar-selected" onclick="screen('screen-user-desktop')">
<center>
<i class="fa fa-lg fa-home"></i>
</center>
</div>
<div id="screen-shop-desktop-nav" class="navbar-item navbar-button" onclick="screen('screen-shop-desktop')">
<center>
<i class="fa fa-lg fa-shopping-bag"></i>
<span class="info-dot"></span>
</center>
</div>
<div id="screen-achievements-desktop-nav" class="navbar-item navbar-button" onclick="screen('screen-achievements-desktop')">
<center>
<i class="fa fa-lg fa-trophy"></i>
</center>
</div>
<div id="screen-iot-desktop-nav" class="navbar-item navbar-button" onclick="screen('screen-iot-desktop')">
<center>
<i class="fa fa-lg fa-cloud"></i>
<i class="beta fa fa-flask"></i>
</center>
</div>
<!--<div id="screen-balance-desktop-nav" class="navbar-item navbar-button" onclick="screen('screen-balance-desktop')">
<center>
<i class="fa fa-lg fa-chart-line"></i>
<i class="beta fa fa-flask"></i>
</center>
</div>-->
<div id="screen-settings-desktop-nav" class="navbar-item navbar-button" style="margin-top: auto; margin-bottom: 80px" onclick="screen('screen-settings-desktop')">
<center>
<i class="fa fa-lg fa-cog"></i>
</center>
</div>
</div>
<div style="display:none;" class="container" id="screen-shop-desktop">
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box p-5">
<p class="title is-size-4">
Devices
<span class="tag is-success">starter.duinocoin.com</span>
</p>
<p class="subtitle">
Official devices and products, proudly crafted in Europe and New Zealand
</p>
<div class="columns">
<div class="column is-half">
<div class="box">
<div class="columns is-multiline">
<div class="column">
<figure class="image">
<img src="https://shop.duinocoin.com/cdn/shop/files/blushybox_promo.png">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Duino BlushyBox Miner
</p>
<p class="subtitle is-size-6">
A cute mining cube for your desk with real hashrate gauge.
Available in many colors, ESP8266 and ESP32 variants and with an optional DS18B20 temperature sensor.
</p>
<div class="columns is-multiline is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
From 12.99€
</p>
</div>
<div class="column">
<a target="_blank" href="https://shop.duinocoin.com/products/duino-blushybox-miner" class="button is-fullwidth">
View in store
</a>
</div>
<!--<div class="column is-full">
<div class="tag is-success is-medium">
<span>
<i class="fa fa-gift"></i>
<b>15% off</b>: use code
<b>MRXBZJ8Z7D1B</b>
at checkout
</span>
</div>
</div>-->
</div>
</div>
</div>
</div>
</div>
<div class="column">
<div class="columns is-multiline">
<div class="column is-full">
<div class="box">
<div class="columns is-multiline">
<div class="column is-3">
<figure class="image">
<img src="https://shop.duinocoin.com/cdn/shop/files/blushydigital.png">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Duino BlushyBox Blueprints
</p>
<p class="subtitle is-size-6">
Everything you need to build one yourself.
</p>
<div class="columns is-multiline is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
1.00€
</p>
</div>
<div class="column">
<a target="_blank" href="https://shop.duinocoin.com/products/duino-blushybox-blueprints" class="button is-fullwidth">
View in store
</a>
</div>
<!--<div class="column is-full">
<div class="tag is-success is-medium">
<span>
<i class="fa fa-gift"></i>
<b>15% off</b>: use code
<b>MRXBZJ8Z7D1B</b>
at checkout
</span>
</div>
</div>-->
</div>
</div>
</div>
</div>
</div>
<div class="column is-full">
<div class="box">
<div class="columns is-multiline">
<div class="column is-3">
<figure class="image">
<img src="https://shop.duinocoin.com/cdn/shop/files/asd.png">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Duino Starter Blueprints
</p>
<p class="subtitle is-size-6">
Everything you need to build one yourself.
</p>
<div class="columns is-multiline is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
1.00€
</p>
</div>
<div class="column">
<a target="_blank" href="https://shop.duinocoin.com/products/duino-starter-blueprints-digital" class="button is-fullwidth">
View in store
</a>
</div>
<!--<div class="column is-full">
<div class="tag is-success is-medium">
<span>
<i class="fa fa-gift"></i>
<b>15% off</b>: use code
<b>MRXBZJ8Z7D1B</b>
at checkout
</span>
</div>
</div>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box p-5">
<p class="title is-size-4">
Items
<span class="tag is-primary">DUCO shop</span>
</p>
<p class="subtitle">
Enhance your experience with virtual items available for Duino-Coins
</p>
<div class="shop_content columns is-multiline">
<div class=""></div>
</div>
</div>
</div>
</div>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box p-5">
<p class="title is-size-4">
Merchandise
<span class="tag is-info">Powered by Teespring</span>
</p>
<p class="subtitle">
Show off your love for Duino-Coin with our exclusive merch
</p>
<div class="columns is-multiline">
<div class="column" style="min-width:280px">
<div class="box">
<div class="columns">
<div class="column is-5">
<figure class="image">
<img src="https://store.duinocoin.com/_next/image?url=https%3A%2F%2Fimages.teespring.com%2Fv3%2Fimage%2FJPuKD78PhfoiDuzsXu3vuUXg33s%2F800%2F800.jpg&w=640&q=75">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Neon logo tee
</p>
<p class="subtitle is-size-6">
Classic T-shirt with an outlined Duino logo
</p>
</div>
</div>
<div class="columns is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
26.91€
</p>
</div>
<div class="column">
<a target="_blank" href="https://store.duinocoin.com/listing/outlined-logo-collection?product=1303&variation=104485" class="button is-fullwidth">
View in store
</a>
</div>
</div>
</div>
</div>
<div class="column" style="min-width:280px">
<div class="box">
<div class="columns">
<div class="column is-5">
<figure class="image">
<img src="https://store.duinocoin.com/_next/image?url=https%3A%2F%2Fimages.teespring.com%2Fv3%2Fimage%2FVvZ48pUXuA2eLeKWy_fZ4SHVIw8%2F800%2F800.jpg&w=640&q=75">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Drippy mug
</p>
<p class="subtitle is-size-6">
11oz/325ml cup with a drippy Duino-Coin logo
</p>
</div>
</div>
<div class="columns is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
13.01€
</p>
</div>
<div class="column">
<a target="_blank" href="https://store.duinocoin.com/listing/drip-collection-december-2021?product=1566&variation=104936" class="button is-fullwidth">
View in store
</a>
</div>
</div>
</div>
</div>
<div class="column" style="min-width:280px">
<div class="box">
<div class="columns">
<div class="column is-5">
<figure class="image">
<img src="https://store.duinocoin.com/_next/image?url=https%3A%2F%2Fimages.teespring.com%2Fv3%2Fimage%2F5_IY-K_irHSJ6HyUJFtEbhT-YKo%2F800%2F800.jpg&w=640&q=75">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Stonks tee
</p>
<p class="subtitle is-size-6">
Stonks or not stonks?
</p>
</div>
</div>
<div class="columns is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
26.00€
</p>
</div>
<div class="column">
<a target="_blank" href="https://store.duinocoin.com/listing/june-2022-duino-stonks?product=389&variation=100019" class="button is-fullwidth">
View in store
</a>
</div>
</div>
</div>
</div>
<div class="column" style="min-width:280px">
<div class="box">
<div class="columns">
<div class="column is-5">
<figure class="image">
<img src="https://store.duinocoin.com/_next/image?url=https%3A%2F%2Fimages.teespring.com%2Fv3%2Fimage%2Fxs-R8vM-zwE8nXi-lPSn4U3lPUU%2F800%2F800.jpg&w=640&q=75">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Pullover hoodie
</p>
<p class="subtitle is-size-6">
Classic, warm hoodie with the Duino logo
</p>
</div>
</div>
<div class="columns is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
40.96€
</p>
</div>
<div class="column">
<a target="_blank" href="https://store.duinocoin.com/listing/drip-collection-december-2021?product=377&variation=100057&size=3029" class="button is-fullwidth">
View in store
</a>
</div>
</div>
</div>
</div>
<div class="column" style="min-width:280px">
<div class="box">
<div class="columns">
<div class="column is-5">
<figure class="image">
<img src="https://store.duinocoin.com/_next/image?url=https%3A%2F%2Fimages.teespring.com%2Fv3%2Fimage%2FuHYRzeI9FwrTv8yRoYsZsU-Gx30%2F800%2F800.jpg&w=640&q=75">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Basic tee
</p>
<p class="subtitle is-size-6">
Classic T-shirt with Duino-Coin logos on the front & back
</p>
</div>
</div>
<div class="columns is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
20.89€
</p>
</div>
<div class="column">
<a target="_blank" href="https://store.duinocoin.com/listing/basic-duino-tee?product=389&variation=100019" class="button is-fullwidth">
View in store
</a>
</div>
</div>
</div>
</div>
<div class="column" style="min-width:280px">
<div class="box">
<div class="columns">
<div class="column is-5">
<figure class="image">
<img src="https://store.duinocoin.com/_next/image?url=https%3A%2F%2Fimages.teespring.com%2Fv3%2Fimage%2Foris30FgjmwpRNIP5uA0UAM42Mo%2F800%2F800.jpg&w=640&q=75">
</figure>
</div>
<div class="column">
<p class="title is-size-6">
Duino enjoyer™ mug
</p>
<p class="subtitle is-size-6">
11oz/325ml cup perfect for every DUCO enjoyer
</p>
</div>
</div>
<div class="columns is-vcentered">
<div class="column">
<p class="subtitle has-text-success has-text-right">
13.01€
</p>
</div>
<div class="column">
<a target="_blank" href="https://store.duinocoin.com/listing/duino-coin-accessories?product=1566&variation=104936" class="button is-fullwidth">
View in store
</a>
</div>
</div>
</div>
</div>
</div>
<a href="https://store.duinocoin.com" target="_blank" class="button is-fullwidth">
View more
</a>
</div>
</div>
</div>
</div>
<div style="display:none;" class="container" id="screen-achievements-desktop">
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box p-5">
<p class="title is-size-4">
Achievements - <span class="achievements_unlocked">0</span>/<span class="achievements_all">0</span> unlocked
</p>
<p class="subtitle">
Over time you will earn achievements from using Duino-Coin. Some of them give rewards (indicated with <i class="fa fa-coins" style="color:orange"></i>), some are quite hard to get. Can you get them all?
</p>
<div class="columns is-multiline achievements_content">Nothing here?</div>
</div>
</div>
</div>
</div>
</div>
<div style="display:none;" class="container" id="screen-balance-desktop">
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box p-5">
<div id="balance-chart-desktop-container">
<canvas id="balance-chart-desktop">
</canvas>
</div>
</div>
</div>
</div>
</div>
<div style="display:none;" class="container" id="screen-iot-desktop">
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box p-5">