forked from Dentacoin/dentacoin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1254 lines (1244 loc) · 94.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="wide wow-animation">
<head>
<title>Dentacoin</title>
<meta name="description" content="Dentacoin is an innovative company which provides solutions for the global dentistry industry through the Ethereum blockchain by using a value-based approach that brings all the market participants into co-working communities."/>
<meta name="format-detection" content="telephone=no"/>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="google-site-verification" content="UShUdcF1dfYDF-ffIcHEvySF2AH9zVqDaAgtR1sEzVk" />
<meta property="og:image" content="https://dentacoin.com/web/img/DCN.png"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta charset="utf-8"/>
<link rel="icon" href="web/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,600,700">
<link rel="" type="" href="lexio/leixo-demo-webfont.woff">
<link rel="stylesheet" href="web/css/min.style.css">
<link rel="stylesheet" href="web/css/min.video.css">
<!--[if lt IE 10]>
<div style="background: #212121; padding: 10px 0; box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3); clear: both; text-align:center; position: relative; z-index:1;"><a href="http://windows.microsoft.com/en-US/internet-explorer/"><img src="images/ie8-panel/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today."></a></div>
<script src="js/html5shiv.min.js"></script>
<![endif]-->
<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-97167262-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="particles-js"></div>
<div class="page">
<div class="page-loader page-loader-variant-1">
<div><a href="index.html" class="brand brand-md brand-inverse"><img src="web/img/dentacoinicon.png" alt="" width="135" height="34"/></a>
<div class="page-loader-body">
<div id="spinningSquaresG">
<div id="spinningSquaresG_1" class="spinningSquaresG"></div>
<div id="spinningSquaresG_2" class="spinningSquaresG"></div>
<div id="spinningSquaresG_3" class="spinningSquaresG"></div>
<div id="spinningSquaresG_4" class="spinningSquaresG"></div>
<div id="spinningSquaresG_5" class="spinningSquaresG"></div>
<div id="spinningSquaresG_6" class="spinningSquaresG"></div>
<div id="spinningSquaresG_7" class="spinningSquaresG"></div>
<div id="spinningSquaresG_8" class="spinningSquaresG"></div>
</div>
</div>
</div>
</div>
<header class="page-head">
<div class="rd-navbar-wrap">
<nav data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-static" data-lg-device-layout="rd-navbar-static" data-stick-up-clone="false" data-md-stick-up-offset="53px" data-lg-stick-up-offset="53px" data-md-stick-up="true" data-lg-stick-up="true" class="rd-navbar rd-navbar-corporate-dark">
<div class="rd-navbar-inner">
<div class="rd-navbar-group rd-navbar-search-wrap">
<div class="rd-navbar-panel">
<button data-custom-toggle=".rd-navbar-nav-wrap" data-custom-toggle-disable-on-blur="true" class="rd-navbar-toggle"><span></span></button><a href="https://www.dentacoin.com/" class="rd-navbar-brand brand"><div class="logo" style="width: 50px; height: 50px;"></div></a>
</div>
<div class="rd-navbar-nav-wrap">
<div class="rd-navbar-nav-inner">
<ul class="rd-navbar-nav">
<li><a href="#">Home</a>
</li>
<li><a href="web/white-paper/Whitepaper-en1.pdf" target="_blank">Whitepaper</a>
</li>
<li><a href="#who">Team</a>
</li>
<li><a href="wallet">Wallet</a>
</li>
<li><a href="https://www.blog.dentacoin.com" target="_blank">Blog</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
<div class="divider-fullwidth bg-porcelain"></div>
</header>
<section id="why" class="text-center">
<div class="shell">
<div class="range range-xs-center">
<div class="cell-xs-12">
<h3 class="text-lowercase">
<img src="web/img/DCN.png" alt="Dentacoin"><br> <span class="text-capitalize">The</span>Blockchain Solution for the Global Dental Industry.
</h3>
<br>
<br>
<div class="responsive-video text-center">
<video class="responsive-video" id="video" controls loop width=640 height=360 poster="web/media/Capture.png">
<source src="web/media/Dentacoin - Introduction.mp4" type='video/mp4'>
<p>Video is not visible, most likely your browser does not support HTML5 video</p>
</video>
</div>
<br>
<br>
</div>
<div class="lead about-text cell-sm-6 cell-md-5 cell-lg-4 offset-top-0 offset-sm-top-0 offset-xl-top-0" id="mc_embed_signup">
<form action="//dentacoin.us15.list-manage.com/subscribe/post?u=2db886e44db15e869246f6964&id=6906b05278" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate form-modern form-inverse offset-top-10" target="_blank" novalidate>
<div id="mc_embed_signup_scroll" class="form-group">
<div class=""><input type="email" name="EMAIL" tabindex="-1" id="input-email" placeholder="Email" style="border-color: rgba(0,0,0,0.5);" class="form-control text-white-05" required></div>
<div class="clear"><input type="submit" value="Sign up for insider info" name="subscribe" id="sign" class="btn btn-primary btn-block offset-top-35"></div>
</div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_2db886e44db15e869246f6964_6906b05278" tabindex="-1" value=""></div>
</form>
</div>
</div>
</div>
<div style="height: 20px;"></div>
</section>
<!--Icon box-->
<section id="what" class="text-center section-100">
<h3 class="text-center">What</h3>
<div class="range range-sm-center">
<div class="cell-sm-12">
<div class="col-sm-4">
<div class="panel panel-custom panel-light cell-sm-10 cell-md-8 cell-lg-6">
<div id="accordionOneHeading2" role="tab" class="panel-heading">
<div class="panel-title"><a role="button" href="web/white-paper/Whitepaper-en1.pdf" class="collapsed" target="_blank"><center>Whitepaper</center>
<div class="panel-arrow"></div></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="panel panel-custom panel-light cell-sm-10 cell-md-8 cell-lg-6">
<div id="accordionOneHeading2" role="tab" class="panel-heading">
<div class="panel-title"><a role="button" href="concept-summary/index.html" class="collapsed">Concept summary
<div class="panel-arrow"></div></a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="panel panel-custom panel-light cell-sm-10 cell-md-8 cell-lg-6">
<div id="accordionOneHeading2" role="tab" class="panel-heading">
<div class="panel-title"><a href="" role="button" class="collapsed">FAQ<div class="panel-arrow"></div></a>
</div>
</div>
</div>
</div>
</div>
<div class="shell">
<p class="cell-sm-8 cell-md-8 cell-lg-6 offset-top-30">Dentacoin is the first Blockchain concept designed for the Global Dental Industry. The Dentacoin ERC20 token is configured to
be used globally by all individuals. Dentacoin aims at improving dental care worldwide and making it affordable through crowd
power. Numerous Blockchain-based tools will be developed and implemented.
</p>
</div>
</div>
<div class="range range-condensed range-xs-center range-sm-left">
<div class="cell-xs-10 cell-sm-4 height-fill">
<article class="icon-box icon-box-top-line">
<div class="box-top">
<span class="icon icon-primary icon-lg icon-1"></span>
<div class="box-header">
<h5><a href="https://reviews.dentacoin.com/" target="_blank">Trusted Review Platform</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>Be the driving force for change.</strong><br>The first Blockchain-based platform for trusted dental treatment reviews to allow patients to raise their voice and have an impact on the global dental industry.</p>
</div><a href="https://reviews.dentacoin.com/" target="_blank" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box icon-box-top-line">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-2"></span></div>
<div class="box-header">
<h5><a href="#">Dental Asurance</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>Ensure your dental health.</strong><br>A revolutionary blockchain-based dental insurance concept where responsibility for one’s health is shared and interests are aligned between dentists and patients.</p>
</div><a href="#" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box icon-box-top-line">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-3"></span></div>
<div class="box-header">
<h5><a href="#">Healthcare Database</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>Treat your body as a whole.</strong><br>A decentralised database of patients overall medical records where data will be highly protected, updatable and accessible exclusively by patients or by dentists, upon a given permission.</p>
</div><a href="#" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-4"></span></div>
<div class="box-header">
<h5><a href="#">Aftercare Mobile app</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>Form sustainable oral health habits.</strong><br>An interactive aftercare app to assist patients in steps to be followed post-treatment, aiming at developing long-lasting oral hygiene habits in both children and adults.</p>
</div><a href="#" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-5"></span></div>
<div class="box-header">
<h5><a href="https://dentavox.dentacoin.com/" target="_blank">DentaVox</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>Answer. Learn. Earn.</strong><br>A WebApp for collective customer wisdom, which serves as an up-to-date market research data through questionnaires and rewards. Dentist can have access to this valuable information and apply this "wisdom" to improve.</p>
</div><a href="https://dentavox.dentacoin.com/" target="_blank" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
<div class="cell-xs-10 cell-sm-4 height-fill offset-top-40 offset-sm-top-0">
<article class="icon-box">
<div class="box-top">
<div class="box-icon"><span class="icon icon-primary icon-lg icon-6"></span></div>
<div class="box-header">
<h5><a href="#">Trading Platform</a></h5>
</div>
</div>
<div class="box-body">
<p class="text-gray-base"><strong>Trade with DCN worldwide.</strong><br>A decentralised Trading Platform to provide dental care products, dental materials and equipment, connecting directly manufacturers, dentists and patients. No long supply chains, no more high international transaction costs.</p>
</div><a href="#" class="btn btn-icon-only btn-icon-single btn-icon-default"><span class="icon icon-sm material-icons-arrow_forward"></span></a>
</article>
</div>
</div>
</section>
<section class="section-with-counters text-center">
<div class="shell bg-cape-cod context-dark section-100 section-md-90">
<h3 class="text-center">Stats</h3>
<div class="range offset-top-60 list-md-dashed">
<div class="cell-sm-4 offset-top-40 offset-sm-top-0">
<div id="circulatingDCN" class="h1 small counter-bold counter">325190215376</div>
<div class="offset-top-0 text-bold text-dark text-uppercase">Circulating Supply</div>
</div>
<div class="cell-sm-4 offset-top-40 offset-sm-top-0">
<div id="lockedDCN" class="h1 small counter-bold counter">7681302998974</div>
<div class="offset-top-0 text-bold text-dark text-uppercase">Locked Amount</div>
</div>
<div class="cell-sm-4 offset-top-40 offset-sm-top-0">
<div id="totalDCN" class="h1 small counter-bold counter">8000000000000</div>
<div class="offset-top-0 text-bold text-dark text-uppercase">Total Supply</div>
</div>
</div>
<div class="offset-top-50 inset-xs-left-60 inset-xs-right-60">
<div class="text-dark text-center">*K = thousand (10^3, Kilo) / *M = million (10^6, Mega) / *G = billion (10^9, Giga) / *T = trillion (10^12, Tera)</div>
</div>
</div>
</section>
<section id="when" class="section-100">
<h3 class="text-center">When</h3>
<picture>
<source media="(min-width: 992px)" srcset="web/img/roadmap.png">
<source media="(max-width: 991px)" srcset="web/img/roadmap-vert.png">
<img class="offset-top-22 offset-md-top-60" src="web/img/roadmap.png" alt="dentacoin roadmap">
</picture>
</section>
<section id="how" class="section-100">
<div class="shell">
<div class="range range-sm-center">
<div class="cell-sm-12">
<h3 class="text-center">How</h3>
<div class="block-centered cell-sm-10 cell-md-8 cell-lg-6 offset-top-60">
<p class="col-xs-8 col-xs-push-2 text-big-19">At the moment there are two ways to get Dentacoins. Earn and Buy.</p>
<ol type="1" class="col-xs-8 col-xs-push-2">
<li>
<p class="text-big">Earn:</p>
<p>By registering on our first tool, the <a href="https://reviews.dentacoin.com/" terget="_blank">Trusted Review Platform</a></p>
<p>As a patient at a partner clinic, by participating in Patient Loyalty Programs</p>
<p>Our ICO Bounty Program, announced <a href="https://bitcointalk.org/index.php?topic=2033283" target="_blank">here</a></p>
</li>
<li>
<p class="text-big">Buy:</p>
<p> Dentacoin is listed on <a href="https://coinmarketcap.com/assets/dentacoin">Coinmarketcap</a> and is free traded on the following international exchange platforms: <a href="https://www.cryptopia.co.nz/Exchange/?market=DCN_BTC" target="_blank">Cryptopia</a>, <a href="https://etherdelta.github.io/#DCN-ETH" target="_blank">EtherDelta</a>, <a href="https://mercatox.com/exchange/DCN/BTC" target="_blank">Mercatox</a> and <a href="https://www.coinexchange.io/" target="_blank">Coinexchange</a></p>
<p>You can also buy Dentacoins on our ICO, starting on 1st of October 2017.</p>
</li>
</ol>
</div>
</div>
</div>
</div>
</section>
<section class="section-100">
<div slass="shell">
<div class="range range-sm-center">
<h3 class="text-center">Where</h3>
</div>
<h4 class="text-center">Wallets:</h4>
<div class="range range-sm-center text-center" style="margin-top: 0;">
<div class="col-sm-12 offset-top-22">
<div class="col-sm-2 offset-top-15"></div>
<div class="col-sm-2 offset-top-15"><a href="https://www.myetherwallet.com/" target="_blank"><div class="exchange1"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://token.im/" target="_blank"><div class="exchange4"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://metamask.io/" target="_blank"><div class="exchange2"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://coinomi.com/" target="_blank"><div class="exchange3"></div></a></div>
</div>
</div>
<h4 class="text-center">Exchange platforms:</h4>
<div class="range range-sm-center text-center" style="margin-top: 0;">
<div class="col-sm-12 offset-top-22">
<div class="col-sm-3 offset-top-15"></div>
<div class="col-sm-2 offset-top-15"><a href="https://www.cryptopia.co.nz/Home" target="_blank"><div class="exchange5"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://mercatox.com/" target="_blank"><div class="exchange7"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://www.coinexchange.io/" target="_blank"><div class="exchange6"></div></a></div>
</div>
<div class="col-sm-12 offset-top-22">
<div class="col-sm-4 offset-top-15"></div>
<div class="col-sm-2 offset-top-15"><a href="https://etherdelta.com" target="_blank"><div class="exchange8"></div></a></div>
<div class="col-sm-2 offset-top-15"><a href="https://hitbtc.com/" target="_blank"><div class="exchange9"></div></a></div>
</div>
</div>
</div>
</section>
<section id="who" class="section-100">
<h3 class="text-center">Who</h3>
<div class="shell">
<h4 class="text-center">
Partners
</h4>
<div class="row text-center">
<div class="col-md-3 offset-top-15 col-md-offset-1"><a href="https://www.dentaprime.com/dental-clinic" target="_blank"><img src="web/img/dentists/dp-logo.png" alt="" style="height:50px;"></a></div>
<div class="col-md-4 offset-top-15"><a href="http://www.dentechdentalcare.com/" target="_blank"><img src="web/img/dentists/dentch-logo.png" alt="" style="height:50px;"></a></div>
<div class="col-md-3 offset-top-15"><a href="https://www.dentaprime.co.uk/" target="_blank"><img src="web/img/dentists/f3t-logo.png" alt="" style="vertical-align: text-top;height: 40px;"></a></div>
<br>
<h4 class="col-md-12 offset-top-50">Are you interested in implementing Dentacoin at your dental practice? <br> Learn more about it <a href="dentists" target="_blank" class="text-blue">here</a></h4>
</div>
<h4 class="text-center offset-top-50">
Industry network
</h4>
<h5 class="small text-center text-dark" style="margin: 0 0 10px;">
System providers of the Dentacoin partner clinics.
</h5>
<div class="row offset-top-15" id="network">
<div class="col-sm-1 text-center">
</div>
<div class="col-sm-2 text-center">
<div class="network2"></div>
</div>
<div class="col-sm-2 text-center cell-xs-middle">
<div class="network3"></div>
</div>
<div class="col-sm-2 text-center cell-xs-middle">
<div class="network4"></div>
</div>
<div class="col-sm-2 text-center cell-xs-middle">
<div class="network5"></div>
</div>
<div class="col-sm-2 text-center cell-xs-middle">
<div class="network6"></div>
</div>
<div class="col-sm-2 text-center">
</div>
</div>
<div class="offset-top-22 offset-md-top-40">
<div data-items="1" data-sm-items="3" data-stage-padding="15" data-loop="true" data-autoplay="false" data-margin="15" data-mouse-drag="true" data-nav="true" data-dots="false" class="owl-carousel owl-carousel-center owl-nav-modern owl-style-minimal owl-style-minimal-inverse text-center">
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/profdimitrakiev.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Prof. Dr. Dimitar Dimitrakiev</h4>
<div class="text-dusty-gray profile-width">Founder of Dentacoin Foundation <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Founder. Highly respected University lecturer. More than 27 years experience in financial markets. Devoted to science and engineering.
Member of the IEEE Computational Intelligence society, EADM and Union of Automation and Informatics.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:founder@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/phillip.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Philipp Grenzebach</h4>
<div class="text-dusty-gray profile-width">Co-Founder / Business Developer / M&A <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Economic Brain behind Dentacoin. Studies in Law, Economics and Business Management. Adopted the triple bottom line to Dentacoin while
integrating technical sustainability. Fighter for free, decentralised markets.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:philipp.grenzebach@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/philipp-g-986861146/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/jeri.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Jeremias Grenzebach</h4>
<div class="text-dusty-gray profile-width">Co-Founder / Core Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Code Wizard. Early entrant into the Blockchain scene. Immersed within the peer-to-peer technology for 8 years. Contributor to Ethereum,
Waves, ZCash, uPort, Status, imToken, Byteball. Strong believer in decentralization and transparency.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:jeremias.grenzebach@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://github.com/neptox" target="_blank"><span class="icon icon-xs icon-primary fa fa-github"></span></a>
<a href="https://twitter.com/neptox" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/sergey.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Sergey Ushakov</h4>
<div class="text-dusty-gray profile-width">Front-end & Solidity Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Digital Transformation Specialist. True Blockchain enthusiast. Degree in Robotics & Mechatronics; currently specializing in
Software Engineering. Experienced in Front-end, Solidity Programming, Digital Transformations and Business Process Automation.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:sergey.ushakov@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/sergey-ushakov-589573119/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/alex.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Alexander Atanasov</h4>
<div class="text-dusty-gray profile-width">Web Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Review Platform developer. Experienced in creating web & mobile experiences and providing IT solutions for business processes optimization &
automation. Diving into the deeps of AI, Machine Learning and crypto technologies.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:alexander.atanasov@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/aatanassov/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/atanas.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Atanas Chervarov</h4>
<div class="text-dusty-gray profile-width">Mobile App Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The developer of our Aftercare Mobile App. Over 6 years experience in developing games and apps for mobile platforms. A solid background in cocos2d/cocos2dx game development as well
as working on games with Unity3D. Following the latest innovations in the IT industry.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:atanas.chervarov@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://github.com/atanaschervarov" target="_blank"><span class="icon icon-xs icon-primary fa fa-github"></span></a>
<a href="https://www.linkedin.com/in/atanaschervarov/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/daniel.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Daniel Kolarov</h4>
<div class="text-dusty-gray profile-width">Graphic Designer / Web Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Idea Visualizer. Education in Marketing. Professional experience in Graphic Design, Front-End Development, Web Development, SEO,
Social Media Advertising. Responsible for the visual translation of the Dentacoin mission. Passionate about Photography. Breathing through creativity.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:daniel.kolarov@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/daniel-kolarov-445283139" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/harry.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Ayredin Stoyanov</h4>
<div class="text-dusty-gray profile-width">Graphic Designer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Visual Power. Education in Multimedia Design and Software Systems and Technologies. Experienced in using visuals to communicate
ideas that inspire, inform and captivate. Passionate about video creation and photography.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:ayredin.stoyanov@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/ayredin-stoyanov-9a6573127" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drgercheva.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Desislava Gercheva</h4>
<div class="text-dusty-gray profile-width">Project Manager: Dental Insurance <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Fairness Compass. Experienced as a dentist and as a dental educator. Professional mission: to make first-class dentistry
affordable to the crowd. Fights against the unequal access to dental care by constantly seeking new technologies, innovative treatment
methods and fair payment options. Highly interested in peer-2-peer Insurance models. Manages risks, budget, deadlines, resources, third
parties communication in regards to the project Dental Insurance.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drfilipova.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Violina Filipova</h4>
<div class="text-dusty-gray profile-width">Project Manager: Market Research Platform <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Health Science mind. Active researcher and lecturer on the topic: Dental Problems and their Impact on the Overall Health.
Realizes the importance of up-to-date, detailed market research data. Working on creating Blockchain-based methods to collect it,
analyze it, make it accessible and usable as a tool for improving the overall treatment, communication and workflow quality in the
industry. Manages risks, budget, deadlines, resources, third parties communication in regards to the project Market Research Platform.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drnovakovski.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Deyan Novakovski</h4>
<div class="text-dusty-gray profile-width">Project Manager: Healthcare Database <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Patient Data Engine. Experienced dentist, passionate about implantology. Sees exceptional diagnostics capabilities as a
mandatory prerequisite for a precise and risk-free treatment. Currently researching how to utilize Blockchain advantages in developing
a storage for accurate, up-to-date and thorough patient information. Manages risks, budget, deadlines, resources, third parties
communication in regards to the project Healthcare Database.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drdaskalov.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Dimo Daskalov</h4>
<div class="text-dusty-gray profile-width">Dental Industry Development Catalyst <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Strongest Link between DCN and the Dental Industry. Leading dentist, currently managing a team of 19 dentists. Educator in
Prosthetic Dentistry. Constantly improving dental services by implementing future technologies, delivering “WOW” patient experience
and simultaneously reducing the costs. Eager to be a part of the paradigm shift.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group"><a href="https://www.linkedin.com/in/dimo-daskalov-94741376" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a></div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/drpeev.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Ivan Peev</h4>
<div class="text-dusty-gray profile-width">Dentistry 4.0 Specialist <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Guide to the Digital Implantology world. Dental Implant Specialist with a significant experience in providing high-tech dental
care by surgical guides and computer-navigated implantation systems. Phantom instructor, certified by the International Training Center
for Dental Implantology (IFZI). With a Sixth sense for cutting-edge technical solutions.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/ceco.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Tsvetomir Ivanov</h4>
<div class="text-dusty-gray profile-width">Industry 4.0 Engineer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Future Thinker. Digital Dentistry, CAD/CAM and 3D-printing expert. Highly focused on finding ways to achieve significant
efficiency, cost reduction and revenue gains through digitalization and automation. Permanently researching, evaluating and implementing
high-tech dental innovations.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/donika.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Donika Kraeva</h4>
<div class="text-dusty-gray profile-width">Strategic Communications Manager <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Communications Ambassador. Translates big and complex ideas to the target group's language. Experienced in Online Medical
Marketing. Developed Feedback Systems and Patient Loyalty Programs for international dental clinics. Seeking ways to utilize Blockchain
advantages in building a patient-driven Dental Industry.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:donika.kraeva@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://twitter.com/donikakraeva" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/mariam.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Mariam Nishanian</h4>
<div class="text-dusty-gray profile-width">Online Reputation & Public Relations <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Public Voice. International background in PR, social media management, communications consulting and UX design.
Skilled entrepreneur with experience in start-up development. In constant pursuit of new challenges.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group">
<a href="mailto:mariam.nishanian@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://twitter.com/luckymariamm" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/klaus.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Dr. Klaus-Christian Werner</h4>
<div class="text-dusty-gray profile-width">Industry Partner Acquisition Manager <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Strategic Partnership Driver. Engineer with a long track record of managing multinational companies. Solid background in
Management Consultancy, Trading, Innovation Implementation, New-age Leadership. Highly interested in modern technology and utilizing
its advantages into the organizational workflow.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<a href="mailto:klaus.werner@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/klaus-christian-werner-2826a583/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/tihomir.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Tihomir Petrov</h4>
<div class="text-dusty-gray profile-width">Business Developer <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Bridge between Blockchain and Dentistry. Education in International Business and Management. Background in Computer Technology
and Industrial Management. Responsible for integrating Blockchain solutions into the industry partners’ workflow. Passionate about
Cryptoeconomics, Innovations and AI.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<a href="mailto:tihomir.petrov@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/tihomir-petrov-8574b6121/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
<a href="https://twitter.com/tisho_" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
<a href="https://www.reddit.com/user/simplyaphilomath/" target="_blank"><span class="icon icon-xs icon-primary fa fa-reddit"></span></a>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/rafat.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Rafat Hamud</h4>
<div class="text-dusty-gray profile-width">Customer Support & Product Development <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>Our Solid Customer Support Pillar. Education in Software Systems and Game Development. Passionate about projects with a global impact.
Experience at a Norwegian startup company for mobile apps. Supporting the tech and creative aspects of the Dentacoin tools development.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<a href="mailto:rafat.hamud@dentacoin.com" target="_blank"><span class="icon icon-xs icon-primary fa fa-envelope"></span></a>
<a href="https://www.linkedin.com/in/rafat-hamud-0b790a139/?ppe=1" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div style="width: 135px;height: 129px;" class="thumbnail-variant-5-img-wrap"><img src="" width="129" height="129" alt="" class="img-circle"></div>
<h4>Betina Bogdanova</h4>
<div class="text-dusty-gray profile-width">Senior Legal Advisor <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Voice of law. Supports the legal project management pillar of Dentacoin. Experienced in advising fintech and dental companies.
Solid legal background including the Australian National University, Rijks Univesitet and Harvard Law. Previous collaborations with the
WHO and Harvard School of Public Health.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/alih.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Ali Hashem</h4>
<div class="text-dusty-gray profile-width">Sales Specialist & Customer Support <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Connector. Years of experience as a customer relations representative and sales manager in service industries. Always finding
ways to align company targets with customer needs. Exploring the potential of Blockchain in building stronger bonds with customers.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
<div class="link-group"><a href="https://www.linkedin.com/in/ali-hashem-541600b4/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a></div>
</div>
</div>
<div class="owl-item text-center">
<div class="thumbnail-variant-5">
<div class="thumbnail-variant-5-img-wrap"><img src="web/img/team/gradechliev.png" width="129" height="129" alt="" class="img-circle"></div>
<h4>Hristo Gradechliev</h4>
<div class="text-dusty-gray profile-width">CFO <br>
<div class="divider-fullwidth bg-porcelain"></div>
<small>The Finance Master. Responsible for managing the finance and accounting divisions. MBA in Law. Experienced in payment ecosystems,
building analytic tools, processes and teams to manage the revenue, costs and risks inherent in the payment space. With a strong flair
for successful investments.</small>
<div class="divider-fullwidth bg-porcelain"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-cape-cod context-dark" style="background-color: transparent;">
<div class="shell">
<div class="range range-xs-center range-md-middle">
<div class="cell-md-middle cell-lg-middle cell-xs-10 cell-md-8 text-left">
<div>
<h3 class="text-center text-blue">Advisors</h3>
<div class="offset-top-40 carousel-testimonials-home">
<div class="">
<div id="child-carousel" data-for=".carousel-parent" data-arrows="false" data-loop="false" data-dots="false" data-swipe="true" data-items="1" data-xs-items="1" data-sm-items="6" data-md-items="6" data-lg-items="6" data-slide-to-scroll="1" data-center-mode="false" data-center-padding="0" class="slick-slider slick-slider slick-carousel-round-image slick-images">
<div class="item">
<div class="imp-wrap"><img src="web/img/team/reed.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/niki.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/julia.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/vess.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/kosierowski.png" alt="" width="99" height="99"/>
</div>
</div>
<div class="item">
<div class="imp-wrap"><img src="web/img/team/drtuma.png" alt="" width="99" height="99"/>
</div>
</div>
</div>
</div>
<div data-arrows="false" data-loop="false" data-dots="true" data-swipe="true" data-child="#child-carousel" data-for="#child-carousel" data-items="1" data-xs-items="1" data-sm-items="1" data-md-items="1" data-lg-items="1" data-slide-to-scroll="1" data-center-mode="false" class="slick-slider carousel-parent slick-dots-variant-1">
<div class="item inset-left-10 inset-right-10 inset-">
<div class="">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-8">
<div class="quote-name">
<h4 style="color: black;">Reed Sutton</h4>
</div>
<div class="text-dusty-gray">Advisor</div>
<a href="https://www.linkedin.com/in/reed33/" target="_blank"><span class="icon icon-xs icon-primary fa fa-linkedin-square"></span></a>
<a href="https://twitter.com/Reedus33" target="_blank"><span class="icon icon-xs icon-primary fa fa-twitter-square"></span></a>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<div class="text-dusty-gray" style="font-size: 12px;">The Canadian Connection. Reed is a researcher and clinical assistant at the University of
Alberta Faculty of Medicine and Dentistry (Edmonton, Canada). Fascinated by healthcare and information technology, he is pursuing an MSc in
Health Informatics. Reed has become increasingly involved and invested in blockchain technology and cryptocurrency. Recent experience includes
analyzing, reviewing, and recommending Initial Coin Offerings (ICO) for CryptoRated.com. He is also validating a new ICO scoring system for
ability to predict investment success.
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionSixHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionSix" href="#accordionSixCollapse2" aria-controls="accordionSixCollapse2" class="collapsed">Honors & Awards
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionSixCollapse2" role="tabpanel" aria-labelledby="accordionSixHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">Hooper-Munroe Academic Award (2015)</li>
<li style="list-style-type: square;">Louise McKinney Award (2012, 2013, 2014)</li>
<li style="list-style-type: square;">Dr Arturo Sanchez-Azofeifa & Dr Christine Orosz Scholarship in Science (2014)</li>
<li style="list-style-type: square;">Governor General’s Bronze Academic Medal (2011)</li>
<li style="list-style-type: square;">Valedictorian (2011)</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionSevenHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionSeven" href="#accordionSevenCollapse2" aria-controls="accordionSevenCollapse2" class="collapsed">Certifications
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionSevenCollapse2" role="tabpanel" aria-labelledby="accordionSevenHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">EpicCare Ambulatory EHR Proficiency</li>
<li style="list-style-type: square;">eCLINICIAN EHR Training (Scheduling, Admin Support, Clinician Basics)</li>
<li style="list-style-type: square;">Health Canada Div. 5 - Drugs For Clinical Trials Involving Human Subjects</li>
<li style="list-style-type: square;">NACTRC Coordinator Training (Weisler Research Inc.)</li>
<li style="list-style-type: square;">CITI Clinical Research Coordinator (CRC)</li>
<li style="list-style-type: square;">BLS-HCP CPR Level C, Heart and Stroke Foundation</li>
<li style="list-style-type: square;">AstraZeneca ICH Good Clinical Practice (GCP)</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionTwelveHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionTwelve" href="#accordionTwelveCollapse2" aria-controls="accordionTwelveCollapse2" class="collapsed">Proficiencies
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionTwelveCollapse2" role="tabpanel" aria-labelledby="accordionTwelveHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">REDCap: Survey Design & Management, Data Entry</li>
<li style="list-style-type: square;">IBM SPSS Statistics Software</li>
<li style="list-style-type: square;">Tableau Software: Business Intelligence and Analytics</li>
<li style="list-style-type: square;">Website Content Management (WordPress, Mezzanine, Squarespace)</li>
<li style="list-style-type: square;">HTML5 & CSS3</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionEightHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionEight" href="#accordionEightCollapse2" aria-controls="accordionEightCollapse2" class="collapsed">Publications
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionEightCollapse2" role="tabpanel" aria-labelledby="accordionEightHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">K. Wierstra, R. Sutton, J. Bal, L.A. Dieleman, B. Halloran, K. Kroeker, R.N. Fedorak, K.Berga, V. Huang. Innovative educational online portal improves IBD-specific reproductive knowledge in patients with IBD.
<br>• role: co-first author. Manuscript in submission.
</li>
<li style="list-style-type: square;">R.Sutton, K Wierstra, J. Bal, L.A. Dieleman, B. Halloran, K. Kroeker, R.N. Fedorak, K.Berga, V. Huang. Innovative online portal resolves patients’ IBD-specific reproductive concerns while revealing medication beliefs and patterns of adherence.
<br>• role: co-first author. Manuscript in submission.
</li>
<li style="list-style-type: square;">Sutton R, Prosser C, Dhami N, Sadowski D, van Zanten S, Kroeker K, Wong K, Halloran B, Fedorak RN, Huang V. Agreement of IBDoc® and QuantOn Cal® Rapid Lateral Flow-based Fecal Calprotectin Tests with Accepted Lab-based Assays for Monitoring Inflammatory Bowel Disease. Canadian Journal of Gastroenterology 2018 (in press)</li>
<li style="list-style-type: square;">Sutton R, Wishart E, Dhami N, Sadowski D, Siffledeen J, Sauve M, Hundal R, Van Zanten S, Huang V. IBD Dashboard: Innovative eHealth Program Providing Equal Access to Quality Care for ALL IBD Patients. Canadian Journal of Gastroenterology 2018 (in press)</li>
<li style="list-style-type: square;">Dunsmore G, Koleva P, Sutton R, Ambrosio L, Huang V, Elahi S. Immunomodulatory role of CD71+ erythroid cells in human. Cell Symposia: Human Immunity 2017 (abstract P35)</li>
<li style="list-style-type: square;">Agrawal A, Hotte N, Lumb R, Sutton R, Ambrosio L, Madsen K, Huang, V. Maternal IBD and IBD therapies may influence breast milk pro-inflammatory cytokines and the infant’s fecal calprotectin. Gastroenterology 2017; 152(5): S759</li>
<li style="list-style-type: square;">Sutton R, Weirstra K, Ambrosio L, Dieleman L, Halloran B, Kroeker K, Fedorak RN, Wong K, Berga K, Huang V. An Innovative Online Educational Portal Resolves Concerns of Inflammatory Bowel Disease Patients regarding Pregnancy and Medication. Journal of Crohn's and Colitis 2017; 11(S1): P552</li>
<li style="list-style-type: square;">Andrishak, S, Manocha A, Ambrosio L, Sutton R, Kroeker K, Dieleman L, Halloran B, Wong K, Fedorak RN, Huang V. Impact of Inflammatory Bowel Disease on the Breastfeeding Patterns of Pregnant Women. Canadian Journal of Gastroenterology 2017 (abstract A283)</li>
</ul>
</div>
</div>
</div>
</blockquote>
</div>
</div>
<div class="item inset-left-10 inset-right-10 inset-">
<div class="">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-8">
<div class="quote-name">
<h4 style="color: black;">Assoc. Prof. Nikolay Raychev, PhD</h4>
</div>
<div class="text-dusty-gray">Advisor</div>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<!-- <div class="cell-md-10"> -->
<div class="text-dusty-gray" style="font-size: 12px;">The Science Mind. PhD in “Computer systems, complexes and networks”.
Dean of Varna University of Management. Founder and director of VUM School of Computer Science. An internationally recognized
authority in software process improvement and software engineering technologies. Worked as a software engineer, a manager, a
software architect, a CIO, a CTO, a professor, an author, and a software engineering consultant for two decades. Experienced
in the development of systems for advanced engineering and cloud-based applications. Held positions with responsibility for
scientific and systems programming. Member in: Rotary, Mensa, IEEE, ACM. He is the fifth most influential scientist in the world,
with the largest contribution in his field, as per the ranking of Google Scholar.
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionNineHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionNine" href="#accordionNineCollapse2" aria-controls="accordionNineCollapse2" class="collapsed">Honors & Awards
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionNineCollapse2" role="tabpanel" aria-labelledby="accordionNineHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">Best paper award, “Quantum phase estimation”, The Sixth GIPO International Conference, GIPO, June 2012</li>
<li style="list-style-type: square;">A special award in the category of research tools for the QuOS project, European Academic Software Award, July 2007</li>
<li style="list-style-type: square;">First Place Team Award, IEEE Computer Society Second Annual International Design Competition, April 2006</li>
<li style="list-style-type: square;">MSU Distinguished Faculty Award, “Evolution of Behavioral Models for Quantum Systems”, ICAC ’13. International Conference on Autonomic Computing, June 2013</li>
<li style="list-style-type: square;">Quantum model-driven engineering</li>
<li style="list-style-type: square;">IBM award for software quality improvement, IBM, May 2006</li>
<li style="list-style-type: square;">Aug. 2004 Silver Medal in International Competition in Informatics, Zagreb, Croatia</li>
<li style="list-style-type: square;">Aug. 2003 Gold Medal in International Competition in Informatics, Merida, Mexico</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionTenHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionTen" href="#accordionTenCollapse2" aria-controls="accordionTenCollapse2" class="collapsed">Certifications
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionTenCollapse2" role="tabpanel" aria-labelledby="accordionTenHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">Distinguished Certified IT Architect and Enterprise Architect</li>
<li style="list-style-type: square;">The Open Group’s IT Architect Certification (IATC), License 76013</li>
<li style="list-style-type: square;">Software Engineering Management</li>
<li style="list-style-type: square;">Massachusetts Institute of Technology (MIT), License 095940, Starting May 2013</li>
<li style="list-style-type: square;">ITIL v3</li>
<li style="list-style-type: square;">ITIL v3 Foundation, License EXIN, License x12dus6091</li>
<li style="list-style-type: square;">Advanced Management Program (AMP)</li>
<li style="list-style-type: square;">MIT Sloan School of Management</li>
<li style="list-style-type: square;">Certified ScrumMaster</li>
<li style="list-style-type: square;">Scrum Alliance, License 6745588754</li>
<li style="list-style-type: square;">PRINCE2</li>
<li style="list-style-type: square;">APMG, Starting October 2011</li>
<li style="list-style-type: square;">PMI-Agile Certified Practioner (PMI-ACP)</li>
<li style="list-style-type: square;">PMI TR, License 1557656, January 2014 – January 2020</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-custom panel-light cell-sm-12 cell-md-8 cell-lg-6" style="padding-left: 0px;">
<div id="accordionElevenHeading2" role="tab" class="panel-heading">
<div class="panel-title" style="border-bottom-width: 0px;"><a style="font-size: 16px; font-weight: 700; padding: 0 55px 0 0;" role="button" data-toggle="collapse" data-parent="#accordionEleven" href="#accordionElevenCollapse2" aria-controls="accordionElevenCollapse2" class="collapsed">Publications
<div class="panel-arrow"></div></a>
</div>
</div>
<div id="accordionElevenCollapse2" role="tabpanel" aria-labelledby="accordionElevenHeading2" class="panel-collapse collapse" style="border-bottom-width: 0px;">
<div class="panel-body" style="padding-top: 0px; padding-bottom: 0px;">
<ul>
<li style="list-style-type: square;">Reply to “The classical-quantum boundary for correlations: Discord and related measures”, от Николай Райчев, Abstract and Applied Analysis 94 (4), 1455</li>
<li style="list-style-type: square;">Multiprogramming model for heterogeneous multi-core systems, M Linderman, J Collins, H Wang, N Raychev, T Meng, Proceedings of the 15th International Conference on Architectural Support</li>
<li style="list-style-type: square;">Reply to “Flexible flow shop scheduling: optimum, heuristics and artificial intelligence solutions”, от Николай Райчев, Expert Systems 25 (12), 98-105</li>
<li style="list-style-type: square;">Logical sets of quantum operators, N Raychev, International Journal of Scientific and Engineering Research 6 (4), 391 – 394</li>
<li style="list-style-type: square;">Functional composition of quantum functions, N Raychev, International Journal of Scientific and Engineering Research 6 (4), 413-415</li>
<li style="list-style-type: square;">Controlled formalized operators with multiple control bits, N Raychev, International Journal of Scientific and Engineering Research 6 (5), 1470-1473</li>
<li style="list-style-type: square;">Controlled formalized operators, N Raychev, International Journal of Scientific and Engineering Research 6 (5), 1467-1469</li>
<li style="list-style-type: square;">Connecting sets of formalized operators, N Raychev, International Journal of Scientific and Engineering Research 6 (5), 1474-1476</li>
<li style="list-style-type: square;">Unitary combinations of formalized classes in qubit space, N Raychev, International Journal of Scientific and Engineering Research 6 (4), 395-398</li>
<li style="list-style-type: square;">Quantum algorithm for spectral diffraction of probability distributions, N Raychev, International Journal of Scientific and Engineering Research 6 (7), 1346-1349</li>
<li style="list-style-type: square;">Measure of entanglement by Singular Value decomposition, N Raychev, International Journal of Scientific and Engineering Research 6 (7), 1350-1355</li>
</ul>
</div>
</div>
</div>
<!-- </div> -->
</blockquote>
</div>
</div>
<div class="item inset-left-10 inset-right-10 inset-">
<div class="">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-6">
<div class="quote-name">
<h4 style="color: black;">Julia Radeva</h4>
</div>
<div class="text-dusty-gray">Business Development Advisor</div>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<div class="text-dusty-gray" style="font-size: 12px;">Business Pioneer. 11-year experience in Business Development Management.
The driving force behind several successful dental clinic concepts, including F3T Dental Clinic - London. Overseeing the
applications of dental innovations and constantly exploring the opportunities for growth in Dental Industry.
</div>
</blockquote>
</div>
</div>
<div class="item inset-left-10 inset-right-10 inset-">
<div class="">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-6">
<div class="quote-name">
<h4 style="color: black;">Veselin Matov</h4>
</div>
<div class="text-dusty-gray">CRM Advisor</div>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<!-- <div class="cell-md-10"> -->
<div class="text-dusty-gray" style="font-size: 12px;">Our CRM Pro. Dental Practice Manager at F3T Dental Clinic, London.
Experienced in CRM, Dental Software Implementation, Purchasing Management. Background education in Computer Systems and Technology.
Focused on identifying technological trends and implementing them as competitive advantages. Constantly exploring
state-of-the-art innovations for the benefit of patients.</div>
<!-- </div> -->
</blockquote>
</div>
</div>
<div class="item inset-left-10 inset-right-10 inset-">
<div class="inset-lg-right-85">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-8">
<div class="quote-name">
<h4 style="color: black;">F. Mark Kosierowski</h4>
</div>
<div class="text-dusty-gray">Finance and Insurance Adviser/ Content Writer</div>
</div>
</div>
<div class="divider-fullwidth bg-porcelain" style="margin-top: 0;"></div>
<!-- <div class="cell-md-10"> -->
<div class="text-dusty-gray" style="font-size: 12px;">Our Insurance Guide. US-based writer with a degree in Economics
and over 30 years of experience in the insurance and financial industry. Former Certified Financial Planner who has
advised clients on captive insurance companies, risk transfer and risk distribution strategies.</div>
<!-- </div> -->
</blockquote>
</div>
</div>
<div class="item inset-left-10 inset-right-10 inset-">
<div class="inset-lg-right-85">
<blockquote class="">
<div class="range range-xs-bottom">
<div class="cell-xs-6">
<div class="quote-name">