-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeu.json
More file actions
1966 lines (1966 loc) · 123 KB
/
Copy pathdeu.json
File metadata and controls
1966 lines (1966 loc) · 123 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"lang": "de",
"links": {
"termsAndConditions": "Kondition",
"privacyPolicy": "AGBs",
"subscribe": "Anmelden",
"commitForPresale": "JOIN PRESALE",
"commitForPresaleHeader": "JOIN PRESALE WITH 30% BONUS",
"commitWith30bonus": "JOIN TOKEN SALE WITH 30% BONUS",
"commitWith10bonus": "Join pre-ico with 10% bonus",
"commitWith7bonus": "Join pre-ico with 7% bonus",
"commitWith5bonus": "Join pre-ico with 5% bonus",
"commitWith3bonus": "Join pre-ico with 3% bonus",
"commit": "Join ico",
"tokenSale": "Token Verkauf",
"whitepaper": "Whitepaper",
"documents": "Dokumente",
"stateOfMarket": "Marktstatus",
"howItWorks": "Wie es funktioniert?",
"tokenDistribution": "TOKEN VERTRIEB",
"roadmap": "Roadmap",
"media": "Medien",
"ourTeam": "Team",
"about": "Über das Projekt",
"myProfile": "Mein Profil",
"myAccount": "Mein Account",
"mainPage": "Startseite",
"community": "Community",
"logout": "Ausloggen",
"signin": "Anmelden",
"signinty": "sign in to your account",
"cryptoKittie": "Kitty giveaway",
"signUpAndSubscribe": "Join pre-sale with 20% bonus",
"tryBeta": "BETA-Plattform",
"tryPlatformBeta": "Probieren Sie die Plattform Beta aus",
"joinTokenSale": "Dem Token-Verkauf beitreten",
"buyTokens": "TOKENS KAUFEN",
"shorter": "Shorter",
"whitePaper": "White paper",
"smartContract": "Smart contract",
"becomeInfluencer": "Become influencer",
"becomeAdvertiser": "Become advertiser"
},
"presaleLive": {
"headingLarge": "Presale is now live!",
"heading": "Join now and get bonus up to 30%",
"joinNow": "Join now"
},
"countdown": {
"title": "Token presale <span>ends in</span>",
"preICO": "PRE-ICO IS LIVE!",
"preIcoStartsIn": "ICO Pre-sale starts in",
"icoStartsIn": "ICO starts <b>february 9</b>",
"icoStarted": "Token Verkauf Live!",
"icoEnd": "Token Sale is Closed<br> Thank You for Support",
"tokenSaleIsOpen": "Public token sale<br> is open now!",
"days": "Tagen",
"hours": "Stunden",
"minutes": "Minuten",
"seconds": "Sekunden",
"bonus%%%EndsIn": "Bonus %%% endet in"
},
"documents": {
"heading": "Dokumente",
"documents": [
{
"id": "SMM_Shorter",
"title": "Shorter",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_White-Paper",
"title": "Whitepaper",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_Marketing-Research",
"title": "Marktforschung",
"languages": [
"eng"
]
},
{
"id": "SMM_SEC-Howey-Test",
"title": "Sec howey test",
"languages": [
"eng"
]
}
]
},
"footer": {
"company": "Company",
"aboutUs": "About us",
"careers": "Careers",
"contactUs": "Kontaktieren sie uns",
"solutions": "Solutions",
"resources": "Resources",
"tipsForInfluencers": "Tips for influencers",
"tipsForAdvertisers": "Tips for advertisers",
"faqAndSupport": "FAQ & Support",
"blog": "Blog",
"webinars": "Webinars",
"aboutBlockchain": "About blockchain",
"copyright": "Copyright © 2017 by SocialMedia.Market. All rights reserved."
},
"popup": {
"messages": {
"invalidEmail": "Please, make sure your email is valid",
"alreadySubscribed": "You've subscribed already. Please, check your email for confirmation.",
"fillInTheField": "Please, fill in the field",
"success": "You've successfully subscribed!",
"choosePaymentMethod": "Please, choose payment method"
},
"subscribe": {
"title": "NEHMEN SIE AM TOKEN VERKAUF TEIL",
"description": "Bitte geben Sie unten Ihre E-Mail-Adresse ein, um Benachrichtigungen über den Beginn des SocialMedia Token Verkaufs zu erhalten",
"email": "Email",
"name": "Vorname",
"receive": "Erhalten Sie Push-Nachrichten über den Verkaufsbeginn",
"toCalendar": "Fügen Sie das Ereignis zu Ihrem Google Kalender hinzu",
"thankYou": {
"title": "Thank you!",
"description": "Thank you for subscription on SocialMedia.Market news and Public Token Sale!",
"telegramChatDescription": "If you have any questions, please reach out to us on our Telegram chat:",
"joinTelegram": "Join telegram chat"
}
},
"presale": {
"title": "NEHMEN SIE AM TOKEN VORVERKAUF TEIL",
"description": "Social Media Token Vorverkauf beginnt am 28.10.17. <br/> Bitte füllen Sie das Antragsformular aus, um teilzunehmen.",
"firstName": "Vorname",
"lastName": "Nachname",
"email": "Email",
"industry": "Branche",
"chooseField": "Wählen Sie Ihren Bereich aus",
"chooseAmount": "Choose amount",
"industryOptions": [
"Privatanleger",
"Vertreter eines Fonds",
"Marke",
"Marketingagentur",
"Influencer"
],
"amountOptions": [
"less than 25 000",
"25 000 - 50 000",
"50 000 - 100 000",
"100 000 - 300 000",
"300 000+"
],
"paymentMethod": "Bevorzugte Zahlungsmethode",
"estimated": "Geschätzter Betragsbereich (in US-Dollar)",
"mandatory": "Mandatory fields",
"confirm": "Hereby I confirm that I'm not a citizen or resident of the United States of America or Singapore or acting on behalf of a resident of the United States of America or Singapore",
"receive": "Erhalten Sie Push-Nachrichten über den Verkaufsbeginn",
"toCalendar": "Fügen Sie das Ereignis zu Ihrem Google Kalender hinzu",
"join": "Join white list",
"thankYou": {
"title": "Thank you!",
"description": "Thank you for joining SocialMedia.Market token presale White List. <br/> We will send you all necessary details on your email.",
"telegramChatDescription": "If you have any questions, please reach out to us on our Telegram chat:",
"joinTelegram": "Join telegram chat"
}
}
},
"firstScreen": {
"heading": "Monetarisieren sie ihre reichweite",
"subheading": "Dezentralisierter Influencer-Werbemarkt",
"joinTokenSale": "Nimm am Tokenverkauf teil",
"projectRatings": "Meinungen zum Projekt",
"subscribe": "Abbonieren für Infos ",
"description": "Der Gemeinschaft beitreten",
"joinPresale": "Nimm am Vorverkauf teil",
"technicalPartner": "Technical partner",
"mediaPartner": "Media partner",
"joinBounty": "Join<br> bounty <span>campaign</span>",
"backers": "Backers",
"tokenSold": "TOKENS VERKAUFT WÄHREND DEM PRE-ICO",
"fundsRaised": "GELDER GESAMMELT",
"ourPartners": "UNSERE PARTNER",
"projectInfo": "PROJEKT INFO",
"referralProgram": "REFERRAL PROGRAMM",
"bountyCampaign": "BOUNTY KAMPAGNE",
"betaProduct": "BETA-Plattform",
"USAResidentsCannotParticipate": "USA-Bürger und Einwohner dürfen nicht teilnehmen",
"softCapReached": "SOFT CAP ERREICHT!",
"hardCapReached": "Hard Сap Reached"
},
"landing":{
"slogan":{
"header":"Choose the way to your triumph",
"body": "Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque."
},
"become":{
"inf":"Become Influencer",
"adv": "Become Advertizer"
},
"reson":{
"one":"Keine Eintrittsbarriere für die Monetarisierung von Inhalten für Influencer jeglicher Art",
"two":"Keine Eintrittsbarriere für die Monetarisierung von Inhalten für Influencer jeglicher Art",
"three":"Unbegrenzter Zugriff auf Influencer auf der ganzen Welt für Werbetreibende"
},
"block1":{
"header": "Unlimited opportunities for your business",
"body": "SocialMedia.Market creates a global marketplace for advertisers and opinion leaders within all major social networks, providing convenient and transparent tools for interaction between participants. Unlimited opportunities to promote brands and earnings in social networks with a simple application!",
"button": "Try demo"
},
"block2":{
"header": "Security of transactions and operations",
"body": "SM.M. excludes holdings and non-payments, providing only secure transactions. The platform operates on the basis of Ethereum and uses a fail-safe escrow payment system, which automatically keeps money transfers until the terms of the smart contract are fulfilled.",
"button": "Mehr lernen"
},
"block3":{
"header": "Easy to manage, simple to interact!",
"body": "The modern CRM-system of the platform contains many tips and templates that help to build effective interaction. The analytical system SM.M itself will offer you the best ways of development. The advertising campaign is created with the help of Smart Contract and greatly simplifies the cooperation.",
"button": "How to start"
},
"block4":{
"header": "Decentralized dispute solution system",
"body": "The unique arbitration system of our platform will help objectively evaluate different points of view and resolve the conflict with the maximum benefit for both sides. We offer a system of independent dispute resolution for participants in the process of the involvement of independent experts.",
"button": "Mehr lernen"
},
"trusted": {
"footer": "UNSERE PARTNER"
},
"about": {
"first": {
"title": "Der erste dezentralisierte Marktplatz verbindet Social-Media-Blogger und Werbetreibende",
"description": "Lösung von Marketingproblemen von großen Influencer SocialMedia.Market ist die neue Möglichkeiten für die Monetarisierung von Inhalten, das Engagement von Communities und die Präsenz von Zielgruppen schaffen. Ein neues Ökosystem, das von der Blockchain-Technologie und dem Social Media Token angetrieben wird, welches die Marketing-Interaktion zwischen Unternehmen und Influencern vereinfacht."
},
"second": {
"title": "Influencer Marketing ist die kostengünstigste Strategie für Marken",
"description": "Untersuchungen haben ergeben, dass 92% der Verbraucher eher einer Marke vertrauen, die von Influencern beworben wird. Darüber hinaus ist es kostengünstiger als bezahlte Werbung und führt zu glaubwürdigeren Markenempfehlungen. Aus diesen Gründen ist Influencer Marketing wohl die effektivste langfristige Marketingstrategie geworden."
},
"actions": {
"readShorter": "Lesen Sie den Shorter",
"checkWhitePaper": "Überprüfen Sie das Whitepaper",
"joinCommunity": "Der Gemeinschaft beitreten"
}
},
"videos": {
"sectionTitle": "Sehen sie hier erstaunliche videos über uns",
"videosList": [
{
"id": "projectReviews",
"title": "Projektberichte",
"videos": [
{
"channelName": "Keith Teare",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=OrYQh_jpqt8&t=3693s",
"thumb": "https://img.youtube.com/vi/OrYQh_jpqt8/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=OrYQh_jpqt8=3693s",
"title": "Keith Teare, co-founder of Techcrunch about SocialMedia.Market",
"desc": "Influencer advertising market has a huge potential, which is halted by the issues it has yet to overcome. Nevertheless, the blockchain technology provides all the means to deal with fraud, transparency, and pricing problems in influencer advertising campaigns. That’s why SocialMedia.Market utilizes the technology to connect advertisers and publishers in a new influencer marketing ecosystem. I have always focused on the point at which change is happening. That’s why we are together in this with the SocialMedia.Market team."
},
{
"channelName": "Tatsunari Ono",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=FUUcqxpOaAA&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/FUUcqxpOaAA/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=FUUcqxpOaAA&feature=youtu.be",
"title": "Tatsunari Ono talks about SocialMedia.Market",
"desc": ""
},
{
"channelName": "Andrew Playford",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=2mJl9nt0Ny4&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/2mJl9nt0Ny4/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=2mJl9nt0Ny4&feature=youtu.be",
"title": "Influencer Marketing Comes to the Blockchain",
"desc": ""
},
{
"channelName": "Coin Bloq",
"date": "26.12.17",
"country": "-",
"video": "https://www.youtube.com/watch?v=l6zicPYDsK0&t=3693s",
"thumb": "https://img.youtube.com/vi/l6zicPYDsK0/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=l6zicPYDsK0&t=3693s",
"title": "Coin Bloq | ICO Review: Social Media.Market, Bee Token, X8, SocialX and other",
"desc": "From decentralized housing rentals on the blockchain to Ethereum-based lending platforms ICOs offer investors a high-octane strategy that has the potential to net them untold riches or mire them in loss and despair."
},
{
"channelName": "Crypto Camacho",
"date": "29.01.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=EWcd_X2esXw",
"thumb": "https://img.youtube.com/vi/EWcd_X2esXw/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=EWcd_X2esXw",
"title": "Crypto Camacho | Influencers and Advertisers On The Blockchain - Match Made in Heaven?",
"desc": "Hi! I'm Dan and I run CryptoCamacho.com - I teach people how to profitably trade Cryptocurrency like Bitcoin, Ethereum, Litecoin, etc. We are in the early days of this train and those who get on will significantly profit. Join me on this crypto journey. I hope you enjoy the videos!"
},
{
"channelName": "RICH TV LIVE",
"date": "17.01.18",
"country": "Canada",
"video": "https://www.youtube.com/watch?v=MzPDHBCdmMg&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/MzPDHBCdmMg/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=MzPDHBCdmMg&feature=youtu.be",
"title": "RICH TV LIVE | SocialMedia.Market ICO Review",
"desc": "Today i look at a social media platform that may improve the blockchain."
},
{
"channelName": "ICO Talk TV - interviews with ICO projects",
"date": "02.02.18",
"country": "United States",
"video": "https://www.youtube.com/watch?v=TiPbK4zO7uI&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/TiPbK4zO7uI/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=TiPbK4zO7uI&feature=youtu.be",
"title": "ICO Talk TV | \"SOCIALMEDIA.MARKET\" interview with Dmitry Shyshov",
"desc": "SocialMedia.Market will create a global marketplace for Advertisers and Influencers among every major social network, providing convenient and transparent tools for the interaction of any party involved. For maintaining commercial relationships between participants, SocialMedia.Market will use Blockchain technology to simplify integration, reduce fraud and costs for all market participants. Token value is going to be upheld not only by transaction means within platform services, but also supported with the ability to participate in the decentralized dispute solution system gaining additional earnings for token holders. Project: SOCIALMEDIA.MARKET"
},
{
"channelName": "Crypto Hype",
"date": "11.11.17",
"country": "United Kingdom",
"video": "https://www.youtube.com/watch?v=nyJHXR4A5qk",
"thumb": "https://img.youtube.com/vi/nyJHXR4A5qk/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=nyJHXR4A5qk",
"title": "Crypto Hype | The First Blockchain Based On Influencer Marketing?",
"desc": "Please watch this video to unlock my system I use for deciding which cryptocurrencies are the best investment today and which are worth selling?"
},
{
"channelName": "CryptoCoinShow",
"date": "03.11.17",
"country": "Canada",
"video": "https://www.youtube.com/watch?v=coM7oX_tBrg",
"thumb": "https://img.youtube.com/vi/coM7oX_tBrg/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=coM7oX_tBrg",
"title": "CryptoCoinShow | SocialMedia.Market Overview",
"desc": "The tech team leading socialmedia.market, including CEO and Founder Dmitry Shyshov, who has over 15 years experience in the tech and game industry, and founded R.Games which has sold over 10 million games in the past 3 years."
},
{
"channelName": "Investor Town Hall Show",
"date": "16.11.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=Dk4vglTGu-o",
"thumb": "https://img.youtube.com/vi/Dk4vglTGu-o/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=Dk4vglTGu-o",
"title": "Investor Town Hall | First Blockchain Online Advertising Platform",
"desc": "SocialMedia.Market's Founder and CEO Dmitry Shyshov was on Investor Town Hall Show today talking about the company's ICO token sale project, the first blockchain-base online advertising platform that takes influencer marketing to the next level."
},
{
"channelName": "Сообщество Онлайн Инвесторов iTuber",
"date": "17.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=tgqOYSzmR_0",
"thumb": "https://img.youtube.com/vi/tgqOYSzmR_0/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=tgqOYSzmR_0",
"title": "iTuber | ИНТЕРВЬЮ с ОСНОВАТЕЛЕМ ДМИТРИЙ ШИШОВ",
"desc": "Все подробности о проекте в интервью с Основателем и СЕО проекта Дмитрием Шишовым."
},
{
"channelName": "Pro3xplain",
"date": "30.01.18",
"country,": "Morocco",
"video": "https://www.youtube.com/watch?v=tOHZr_xdynQ",
"thumb": "https://img.youtube.com/vi/tOHZr_xdynQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=tOHZr_xdynQ",
"title": "Pro3xplain | شرح منصة SocialMedia Market للإستفادة ماديا من مواقع التواصل الإجتماعي و الإستثمار",
"desc": "موقع محترفو الشرح هو عبار عن مدونة جديدة في عالم الانترنات العربي عامة و التونسي خاصة تحتوي على العديد من الدروس التعليمية التقتية و المعلوماتية الى جانب العديد من الاخبار التي تهم الشباب العربي ."
},
{
"channelName": "Krypto Raport",
"date": "13.11.17",
"country": "Poland",
"video": "https://www.youtube.com/watch?v=4qE27tjDlfM",
"thumb": "https://img.youtube.com/vi/4qE27tjDlfM/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=4qE27tjDlfM",
"title": "Krypto Raport| Jak zarobić na reklamach?",
"desc": "SocialMedia.Market jest to decentralizowana platforma do tworzenia, wykonywania i analizowania kampanii reklamowych za pomocą mediów społecznościowych"
},
{
"channelName": "Investupscale Академия криптовалют",
"date": "01.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=pG5Y5KdbmMQ&feature=em-share_video_user",
"thumb": "https://img.youtube.com/vi/pG5Y5KdbmMQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=pG5Y5KdbmMQ&feature=em-share_video_user",
"title": "Investupscale | Socialmedia.market ICO. Обзор проекта",
"desc": "Биткоин и криптовалюты завоевывают мир, не оставайтесь в стороне - начните инвестировать уже сейчас, станьте одними из первых на этом рынке."
},
{
"channelName": "Perfect Bitcoiner Monty",
"date": "02.11.17",
"country": "India",
"video": "https://www.youtube.com/watch?v=JW7ADM0CJKo&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/JW7ADM0CJKo/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=JW7ADM0CJKo&feature=youtu.be",
"title": "Perfect Bitcoiner Monty | Social Media ICO Review",
"desc": "The first blockchain based influencer marketing platform. Join SocialMedia.Market Token Sale."
},
{
"channelName": "CryptoView - ICO Reviews & News",
"date": "10.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=ssBqgQn4EHQ&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/ssBqgQn4EHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=ssBqgQn4EHQ&feature=youtu.be",
"title": "CryptoView | SOCIAL MEDIA MARKET - НОВЫЙ вид РЕКЛАМЫ на БЛОКЧЕЙНЕ!",
"desc": "Присоединяйтесь к продаже токенов на SocialMedia.Market!"
},
{
"channelName": "CRYPTODEALERS",
"date": "18.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=iJnDe3EmmiY&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/iJnDe3EmmiY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=iJnDe3EmmiY&feature=youtu.be",
"title": "CRYPTODEALERS | Обзор платформы для блогеров и рекламодателей на блокчейне.",
"desc": "Рынок Маркетинга Влияния имеет ряд существенных проблем, связанных с непрозрачностью ценообразования, хаотичностью взаимодействия между участниками, посредничеством, а также мошенничеством. https://socialmedia.market - упростит взаимодействие между участниками рынка и уменьшит их затраты, а также значительно "
},
{
"channelName": "MiningMin",
"date": "02.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=l6ZUeDOyNd4",
"thumb": "https://img.youtube.com/vi/l6ZUeDOyNd4/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=l6ZUeDOyNd4",
"title": "MiningMin | SocialMedia.Market обзор сервиса",
"desc": "SocialMedia.Market – первая децентрализованная экосистема для планирования, создания, запуска и анализа рекламных кампаний у лидеров мнений. Платформа создаст безопасные и прозрачные условия на рынке маркетинга влияния."
},
{
"channelName": "Копеечка в кошельке",
"date": "13.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=Vhg1PeVk1y8",
"thumb": "https://img.youtube.com/vi/Vhg1PeVk1y8/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=Vhg1PeVk1y8",
"title": "SocialMedia.Market Новое поколение рекламы. Умная экосистема.",
"desc": "Основанная на технологии блокчейн, платформа SocialMediamarket выведет маркетинговые отношения между брендами и лидерами мнений на новый уровень взаимодействия, обеспечивая прозрачность и безопасность."
},
{
"channelName": "PRO BLOCKCHAIN",
"date": "02.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=dG1lPuFDT6o&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/dG1lPuFDT6o/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=dG1lPuFDT6o&feature=youtu.be",
"title": "PRO BLOCKCHAIN | СОЗДАЕМ НОВОЕ ПОКОЛЕНИЕ ОНЛАЙН РЕКЛАМЫ",
"desc": "Обзор SocialMedia.Market. Основанная на технологии блокчейн, платформа SocialMedia.market выведет маркетинговые отношения между брендами и лидерами мнений на новый уровень взаимодействия, обеспечивая прозрачность и безопасность."
},
{
"channelName": "420BitcoinsTV",
"date": "20.01.18",
"country": "Ukraine",
"video": "https://www.youtube.com/watch?v=rYkKSu5CUBs",
"thumb": "https://img.youtube.com/vi/rYkKSu5CUBs/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=rYkKSu5CUBs",
"title": "420BitcoinsTV | Маркетплейс для блогеров и рекламодателей",
"desc": "SocialMedia.Market – децентрализованная платформа, позволяющая создавать, запускать и анализировать рекламные кампании у блогеров. Работает на базе технологии блокчейна, что обеспечивает прозрачность и безопасность взаимоотношений блогеров и рекламодателей."
},
{
"channelName": "Sit On My Bits",
"date": "05.12.17",
"country": "-",
"video": "https://www.youtube.com/watch?v=ETRUEb6LnhI",
"thumb": "https://img.youtube.com/vi/ETRUEb6LnhI/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=ETRUEb6LnhI",
"title": "Sit On My Bits | What Is Going On With Bitcoin + Social Media Market New ICO",
"desc": "Welcome to Sit On My Bits and this is a review on an ICO called Social Media Market and also all the latest in the markets."
},
{
"channelName": "Михаил Каплунов",
"date": "29.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=CeUIzLzrSOo",
"thumb": "https://img.youtube.com/vi/CeUIzLzrSOo/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=CeUIzLzrSOo",
"title": "Skychain, Dether и SocialMedia.Market / ICO АЛЬМАНАХ №15",
"desc": "Skychain, Dether и Socialmedia.market — в этом выпуске «ICO АЛЬМАНАХ», вы узнаете о том, чем занимаются эти компании, чтобы принять верное решение об инвестировании в ICO."
},
{
"channelName": "IT FIRM BD",
"date": "29.01.18",
"country": "Bangladesh",
"video": "https://www.youtube.com/watch?v=UDijziFcqC8",
"thumb": "https://img.youtube.com/vi/UDijziFcqC8/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=UDijziFcqC8",
"title": "IT FIRM BD | ICO-New Expert Rated Legitimate ICO!",
"desc": "SocialMedia.Market has a good potentiality like any other good rated ico by ICO bench and other ICO rated sites. I hope it is our next good decision about legitimate ICO. More Legitimate ICO: https://scorumcoins.com/en-us/affilia... More help: facebook:https://www.facebook.com/itfirmbd Google plus: https://plus.google.com/1111836980418... twitter:https://twitter.com/itfirmbd Thank you to watch my video and don't miss to subscribe my channel and don't forget to like my facebook page. Thanks to all again."
},
{
"channelName": "Crypto Max",
"date": "08.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=5mxCxftWKgk",
"thumb": "https://img.youtube.com/vi/5mxCxftWKgk/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=5mxCxftWKgk",
"title": "Crypto Max | Social media market-биржа рекламы для блогеров|•|#ЧЕСТНЫЙОБЗОР ПРОЕКТА|•|",
"desc": "Сервис создаст безопасные и прозрачные условия для работы на рынке Маркетинга Влияния. Это откроет возможности для роста и развития миллионам начинающих блогеров, а также малому и среднему бизнесу по всему миру. Их платформа займет весомую долю рынка Маркетинга Влияния и онлайн рекламы в целом, благодаря высокой востребованности, удобству и постоянному развитию блокчейн технологий."
},
{
"channelName": "Крипто День",
"date": "24.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=J17rMFbShjY",
"thumb": "https://img.youtube.com/vi/J17rMFbShjY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=J17rMFbShjY",
"title": "Ревью SocialMedia.Market от \"Крипто День\"",
"desc": ""
},
{
"channelName": "Đầu Tư 4.0",
"date": "29.01.18",
"country": "Vietnam",
"video": "https://www.youtube.com/watch?v=JIT54sbtSIc",
"thumb": "https://img.youtube.com/vi/JIT54sbtSIc/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=JIT54sbtSIc",
"title": "Review dự án Socialmedia market ico (SMT) - Đầu tư 4.0.",
"desc": "Chanel chia sẻ các thông tin về thị trường Cryptocurrency. Các cơ hội đầu tư đồng Coin tiềm năng được các chuyên gia hàng đầu kiểm duyệt."
}
]
},
{
"id": "bloggers",
"title": "Blogger über das Projekt",
"videos": [
{
"channelName": "Brandon Kelly Crypto Trader",
"date": "05.12.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=iVoiR1Ar4hc",
"thumb": "https://img.youtube.com/vi/iVoiR1Ar4hc/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=iVoiR1Ar4hc",
"title": "Brandon Kelly | ICO Spotlight: Social Media Market (SMT)",
"desc": "Brandon Kelly is a cryptocurrency consultant and one of the industry's top crypto traders, who outpaced the market over 1000% in 2017 with his patent-pending method. He specializes in digital technology, design thinking, fintech, and business innovation."
},
{
"channelName": "Donnyboy8",
"date": "25.01.18",
"country": "United States",
"video": "https://www.youtube.com/watch?v=o5t--KMpibM&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/o5t--KMpibM/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=o5t--KMpibM&feature=youtu.be",
"title": "Donnyboy8 | SocialMedia Marketing ICO starting soon will change online advertising",
"desc": "Staying up to date with many new investment opportunities. Very interested in Bitcoin and the crypto currencies - I really think this will change the world and the future of how we use money and invest. Also continually growing my commercial cleaning company and learning any where I can."
},
{
"channelName": "Ronnie Sen",
"date": "31.01.18",
"country": "India",
"video": "https://www.youtube.com/watch?v=gbGI24QolHQ&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/gbGI24QolHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=gbGI24QolHQ&feature=youtu.be",
"title": "Ronnie Sen | SocialMedia.Market ICO Social MONETIZE YOUR INFLUENCE",
"desc": "Affiliate Marketer / Network Marketer / Crypto Currency Enthusiast. Let's Ride the Revolution To Success"
},
{
"channelName": "Bitcoin Criptomonedas",
"date": "01.02.18",
"country": "Spain",
"video": "https://www.youtube.com/watch?v=91Poh_ya83Y",
"thumb": "https://img.youtube.com/vi/91Poh_ya83Y/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=91Poh_ya83Y",
"title": "Bitcoin Criptomonedas | MONETICE SU INFLUENCIA con Socialmedia.market",
"desc": "Blockchain Based Influencer Marketing Platform entra en: https://goo.gl/8GHWqe y obten una bonificación del 3% en los tokens que compres."
},
{
"channelName": "BalkanTech",
"date": "03.11.17",
"country": "Serbia",
"video": "https://www.youtube.com/watch?v=URMPidtYx-g",
"thumb": "https://img.youtube.com/vi/URMPidtYx-g/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=URMPidtYx-g",
"title": "BalkanTech | Nova Platforma Za YouTube Zaradu",
"desc": ""
},
{
"channelName": "ЮТУБЕР",
"date": "15.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=4EvOAckr1pA&feature=youtu.be&t=3m57s",
"thumb": "https://img.youtube.com/vi/4EvOAckr1pA/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=4EvOAckr1pA&feature=youtu.be&t=3m57s",
"title": "ЮТУБЕР | ДЕВОЧКА ИЗ \"ЛАЙК ТВ ШОУ\" ОБОГНАЛА PewDiePie ПО ПОДПИСЧИКАМ",
"desc": "Когда я сел писать сценарий к этому видео, на канале Алины “ЛайкТВ шоу” было уже 400 тысяч подписчиков. Кто-то радуется за внезапный успех ребенка, кто-то недоумевает, считает, что она не заслужила эту аудиторию. Груз ответственности на ее плечи только упал, поэтому время покажет, сможет ли она справиться. А пока, я же предлагаю проанализировать, какие фундаментальные изменения произошли за последние 7 дней у неё. Потому что я уверен, это была самая насыщенная на события неделя в ее жизни."
},
{
"channelName": "Дмитрий Гриценко. Криптовалюты",
"date": "22.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=aajTmO0KtHQ",
"thumb": "https://img.youtube.com/vi/aajTmO0KtHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=aajTmO0KtHQ",
"title": "Дмитрий Гриценко | ICO Social Media Market - площадка для взаимодействия блогеров и рекламодателей",
"desc": "Меня зовут Дмитрий Гриценко, и на этом канале я рассказываю про криптовалюты и другие виды заработка в интернете."
}
]
},
{
"id": "platform",
"title": "Wie funktioniert die Plattform?",
"videos": [
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=k5XUH_KQEUY",
"thumb": "https://img.youtube.com/vi/k5XUH_KQEUY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=k5XUH_KQEUY",
"title": "SocialMedia.Market - Blockchain Based Influencer Marketing Platform",
"desc": "We are building SocialMedia.market – the first decentralized ecosystem to discover, create, perform and analyze advertising campaigns with"
},
{
"channelName": "SocialMedia.Market",
"date": "25.01.18",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=AfUlYnaQMRQ",
"thumb": "https://img.youtube.com/vi/AfUlYnaQMRQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=AfUlYnaQMRQ",
"title": "Q&A with Founder of Socialmedia.Market — Dmitry Shyshov",
"desc": "Our founder Dmitry Shyshov will be holding a Q&A-session with our users. During the stream Dmitry will tell about the main changes in the Social Media token economy, our referral program and will answer all your questions!"
},
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=o0s14UyNcig",
"thumb": "https://img.youtube.com/vi/o0s14UyNcig/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=o0s14UyNcig",
"title": "Aleksandra Morozova about Influencer Marketing. SocialMedia.Market ICO",
"desc": "Learn about the project from Co-founder and CMO - Aleksandra Morozova."
},
{
"channelName": "SocialMedia.Market",
"date": "08.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=JUx6XMRUVwQ",
"thumb": "https://img.youtube.com/vi/JUx6XMRUVwQ/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=JUx6XMRUVwQ",
"title": "Q&A session with SocialMedia.Market CEO - Dmitry Shyshov and BDM - Viktor Perekhod",
"desc": "Project news from founder and CEO - Dmitry Shyshov and business development manager - Viktor Perekhod"
},
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=G4N-BDqYTX0",
"thumb": "https://img.youtube.com/vi/G4N-BDqYTX0/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=G4N-BDqYTX0",
"title": "SocialMedia.Market - Первая децентрализованая площадка, объединяющая блогеров и рекламодателей",
"desc": "Мы создаем первую децентрализованую площадку, которая объединит социальные медиа, блогеров и рекламодателей."
},
{
"channelName": "SocialMedia.Market",
"date": "06.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=EvCSiTTR1Ds",
"thumb": "https://img.youtube.com/vi/EvCSiTTR1Ds/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=EvCSiTTR1Ds",
"title": "Александра Морозова про Маркетинг Влияния. SocialMedia.Market ICO",
"desc": "Узнайте подробности о проекте от ко-фаундера и директора по маркетингу проекта - Александры Морозовой!"
},
{
"channelName": "SocialMedia.Market",
"date": "08.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=b71Fh3Dol0w",
"thumb": "https://img.youtube.com/vi/b71Fh3Dol0w/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=b71Fh3Dol0w",
"title": "Вебинар с основателем проекта SocialMedia.Market - Дмитрием Шишовым",
"desc": "Вебинар с основателем - Дмитрием Шишовым, и менеджером по развитию бизнеса - Виктором Переходом. Узнайте подробности об экономике проекта и итогах presale Pre-ICO."
},
{
"channelName": "SocialMedia.Market",
"date": "28.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=fe72wwhr-2E",
"thumb": "https://img.youtube.com/vi/fe72wwhr-2E/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=fe72wwhr-2E",
"title": "Q&A-сессия с основателем и руководителем отдела разработки SocialMedia.Market",
"desc": "Заработай на влиянии вместе с SocialMedia.Market - https://goo.gl/BZHbvT Facebook: https://www.facebook.com/Socialmedia...."
},
{
"channelName": "SocialMedia.Market",
"date": "25.01.18",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=5qOB1MBYd14",
"thumb": "https://img.youtube.com/vi/5qOB1MBYd14/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=5qOB1MBYd14",
"title": "Q&A сессия с основателем Socialmedia.Market — Дмитрием Шишовым",
"desc": "Q&A сессия с основателем Socialmedia.Market Дмитрием Шишовым. Во время трансляции Дмитрий расскажет об основных изменениях в экономике Social Media токена, нашей реферальной программе и ответит на все ваши вопросы! Будем рады пообщаться!"
}
]
}
],
"share": "Share video",
"cardTitle": "The first blockchain based on influancer marketing?"
},
"partners": {
"sectionTitle": "UNSERE PARTNER",
"partnersList": [
{
"alt": "Civic",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/civic.jpg"
},
{
"alt": "Crypterium",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/crypterium.jpg"
},
{
"alt": "Icobox",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/icobox.jpg"
},
{
"alt": "Imh",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/imh.jpg"
},
{
"alt": "Stox",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/stox.jpg"
}
]
},
"benefits": {
"sectionTitle": "<strong><span class=\"market\">Socialmedia.Market</span></strong> Vorteile",
"benefitsList": [
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1-bg.png",
"title": "BETRUG GESCHÜTZT"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2-bg.png",
"title": "OPERATIVE KOSTEN REDUZIERT"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3-bg.png",
"title": "SICHERE UND SCHNELLE TRANSAKTIONEN"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4-bg.png",
"title": "DEZENTRALISIERTE KONFLIKTLÖSUNGEN"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5-bg.png",
"title": "EINFACHE GLOBALE ZAHLUNGEN"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6-bg.png",
"title": "EINFACHE ENGAGEMENTS"
}
],
"joinTokenSale": "Dem Token-Verkauf beitreten"
},
"experts": {
"sectionTitle": "EXPERTEN ÜBER Socialmedia.market",
"expertsList": [
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/teary.png",
"name": "Keith Teare",
"status": "co-founder of Techcrunch.",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/teary-techcrunch.jpg",
"description": "Influencer advertising market has a huge potential, which is halted by the issues it has yet to overcome. Nevertheless, the blockchain technology provides all the means to deal with fraud, transparency, and pricing problems in influencer advertising campaigns. That’s why SocialMedia.Market utilizes the technology to connect advertisers and publishers in a new influencer marketing ecosystem. I have always focused on the point at which change is happening. That’s why we are together in this with the SocialMedia.Market team."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/david.png",
"name": "David Meerman Scott",
"status": "Bestseller Autor von The New Rules of Marketing and PR",
"company": "",
"description": "Die Blockchain-Technologie verspricht Transparenz für Marken, die mit Social Influencern arbeiten."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/werner.png",
"name": "Werner Geyser",
"status": "Gründer, Influencer Marketing Hub",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/imh.jpg",
"description": "Influencer Marketing bietet Marken eine große Chance, ihre Produkte einem breiteren Publikum zugänglich zu machen."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/Ono.png",
"name": "Tatsunari Ono",
"status": "CEO, VALUE BRAIN CO., LTD. (JAPAN) ",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/airbnb.jpg",
"description": "Despite its exponential growth, influencer advertising market has its own set of challenges, like inefficiency in pricing and complex communications, while agency fees and fraud consume large portions of budget. SocialMedia.Market is bent to solve these issues with the blockchain technology. The social media audience in Japan alone is huge. And SocialMedia.Market will help expand influencer marketing plans and keep the community growing. That’s the reason why I’m supporting the project and will be among its early adopters."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/peter.png",
"name": "Peter Zhalov",
"status": "Ehemaliger VP für Marketing & Werbung bei Wargaming.net",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/wargaming.jpg",
"description": "Heute nutzen Verbraucher Ad-Blocker und umgehen dadurch traditionelle digitale Werbung. Influencer und eSports Marketing werden zu den zwei effektivsten Methoden, um die Zielgruppen Millenials und die Generation Z zu erreichen. Socialmedia.market hat die Lösung, einen transparenten Marktplatz für Influencer Marketing zu schaffen, den wir brauchen."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/alex.png",
"name": "Alex Yastremski",
"status": "General Counsel bei Bitfury Group Ltd",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/bitfury.jpg",
"description": "Das Projekt hat mich mit seinen ehrgeizigen Zielen beeindruckt, die den Wert für die Marktteilnehmer erhöhen und den Umsatz für Vermarkter maximieren konnten. Mit der Expertise des Teams kann dieses Projekt zu einer erfolgreichen und effektiven All-in-One-Lösung für digitale Werbung werden."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/slavik.png",
"name": "Slavik Nenaydokh",
"status": "Leiter, Delphi Software International",
"company": "",
"description": "SocialMedia.Market nutzt sein Know-how geschickt, um Veränderungen im Social Marketing zu bewirken. Ich fühle mich geehrt, mit dem SocialMedia.Market-Team an dieser Vision teilnehmen zu können und freue mich darauf, sie während ihrer gesamten Phase des Unternehmenswachstums begleiten zu können."
}
]
},
"ourTeam": {
"sectionTitle": "Unser team",
"sectionDesc": "31 Mitglieder sind jetzt am Projekt beteiligt und wir stellen weitere Marketing-Spezialisten und Blockchain Entwickler ein und vergrößern unser Entwicklungsteam. Wir erwarten, das Social Media.Market Team um bis zu 70 Personen in den nächsten 4 Monaten zu erweitern.",
"fullTeam": "Gesamtes team",
"hideFullTeam": "Verstecken sie das ganze team",
"viewVideo": "View video",
"teamList": [
{
"id": "keithTeare",
"name": "Keith Teare",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/keith-teare.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "http://linkedin.com/in/kteare/"
}
],
"jobTitle": "Adviser",
"description": "Chefsessel des britischen Venture-Unternehmens Accelerated Digital Ventures. Keith Teare hat kürzlich die erfolgreichen ICOs von ICOBox (4000 BTC) und Crypterium ($ 51mln +) beraten. Zuvor war er einer der Gründer von TechCrunch und der erste Internet Service Provider für Verbraucher in Europa - EasyNet. EasyNet und RealNames haben in den späten 1990er Jahren den Unicorn-Status erreicht.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/teare.jpg"
}
],
"video": "https://www.youtube.com/embed/OrYQh_jpqt8"
},
{
"id": "andrewPlayford",
"name": "Andrew Playford",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/andrew-playford.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/andrewplayford/"
}
],
"jobTitle": "Adviser",
"description": "Leitender Vizepräsident des Betriebs bei der Sonic Foundry, Inc. Vor seiner Tätigkeit bei der Sonic Foundry war Andrew für Think New Ideas tätig, ein weiteres an der NASDAQ notiertes Unternehmen, das digitale Marketing- und Webentwicklungsunternehmen akquirierte und kombinierte. Think New Ideas wurde schließlich für mehr als 250 Millionen US-Dollar erworben.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/sonic.jpg"
}
],
"video": "https://www.youtube.com/embed/dX0n0k7yskg"
},
{
"id": "tatsunariOno",
"name": "Tatsunari Ono",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/tatsunari-ono.jpg",
"socialLinks": [
{
"socialIcon": "fa-facebook",
"link": "https://www.facebook.com/tatsunari.ono.1?ref=br_rs/"
}
],
"jobTitle": "Adviser",
"description": "Geschäftsführer, Value Brain Co., Ltd. (Japan) <br/> CEO, Beducate.ltd (Hongkong). Geschäftsmann, der sich aktiv in Investmentaktivitäten in Immobilien, Aktien, Airbnb-Operationen sowie Kryptowährung engagiert. Er hielt Tokyo Meetups bekannter Kryptowährungsfirmen wie NEO, LISK, Quantum und Ardor.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/ono.jpg"
}
],
"video": "https://www.youtube.com/embed/FUUcqxpOaAA"
},
{
"id": "gabrielZanko",
"name": "Gabriel Zanko",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/gabriel-zanko.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://co.linkedin.com/in/gabrielzanko/"
}
],
"jobTitle": "Adviser",
"description": "Fintech-Unternehmens-Berater. Gründer von MobileyourLife und beteiligt an AI-Fintech Lösungen im B2B-Bereich.. ICO-Beratung in Fundraising Capital und International Business Development.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/zanko.jpg"
}
],
"video": ""
},
{
"id": "dariaGeneralova",
"name": "Daria Generalova",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/daria-generalova.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/daria-generalova-842a3a85/"
}
],
"jobTitle": "Adviser",
"description": "Mitbegründer, ICOBox. Marketing-, PR- und Kommunikationsspezialist mit über 10 Jahren Erfahrung. Nachdem er sich vor fast zwei Jahren der Blockchain-Branche beigetreten ist, arbeitete er als Berater für die Argon Group und half beim Start der ICO-Plattform Cryptonomos.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/daria.jpg"
}
],
"video": ""
},
{
"id": "chafikAbdellaoui",
"name": "Chafik Abdellaoui",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/chafik-abdellaoui.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/chafikabdellaouiacbmc/"
}
],
"jobTitle": "Adviser",
"description": "Entrepreneur, der Gründer von ACBMC, Bizzant und XEDYAS IT HYBRID SOLUTIONS.. Chafik ist ein versierter Business-Development-Profi mit einer umfangreichen Erfahrung in eCommerce, Gaming und elektronische Zahlungen. Sowie Beitrag zu Mobile Go ICO Erfolg. ",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/chafic.jpg"
}
],
"video": ""
},
{
"id": "peterZhalov",
"name": "Peter Zhalov",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/peter-zhalov.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/peter-zhalov-35149225/"
}
],
"jobTitle": "Adviser",
"description": "Ehemaliger VP von Marketing & Werbung bei Wargaming.net, ein eSports und Blockchain-Enthusiast. Erfahrener Chief Executive Officer, Marketingexperte und Business Entwicklungs-Experte mit Erfahrung in der Computerspieleindustrie. Erfahren in eSports, der Blockchain und Werbung.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/jalov.jpg"
}
],
"video": ""
},
{
"id": "dimaZaitsev",
"name": "Dima Zaitsev, PhD",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/dima-zaitsev.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/dima-zaitsev/"
}
],
"jobTitle": "Adviser",
"description": "Leiter der Abteilung Internationale PR & Business Analytics bei ICOBox. 2017 begann sich Dima für die Blockchain und Kryptowährungen zu interessieren und begann mit der Marktforschung in begrenztem Umfang. Er hat seine eigenen Kolumnen in verschiedenen Media Outlets in den USA, einschließlich FXStreet.com, CoinSpeaker.com und anderen.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/dima.jpg"
}
],
"video": ""
},
{
"id": "alexYastremski",
"name": "Alex Yastremski",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/alex-yastremski.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/alex-yastremski-b1889514/"
}
],
"jobTitle": "Adviser",
"description": "Rechtsberater San Francisco, Kalifornien Blockchain-Experte für Regulierung / Compliance. General Counsel bei Bitfury Group Ltd <br/> Fintech-Berater Bingham McCutchen LLP",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/bitfury.jpg"