-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkor.json
More file actions
1966 lines (1966 loc) · 123 KB
/
Copy pathkor.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": "ko",
"links": {
"termsAndConditions": "이용 약관",
"privacyPolicy": "개인정보 보호 정책",
"subscribe": "구독",
"commitForPresale": "사전 판매 신청하기",
"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": "토큰 판매",
"whitepaper": "백서",
"documents": "문서",
"stateOfMarket": "시장 현황",
"howItWorks": "사업 소개",
"tokenDistribution": "토큰 배당",
"roadmap": "로드맵",
"media": "미디어",
"ourTeam": "팀",
"about": "우리에 대하여",
"myProfile": "내 프로필",
"myAccount": "내 계정",
"mainPage": "메인 페이지",
"community": "커뮤니티",
"logout": "로그아웃",
"signin": "로그인",
"signinty": "sign in to your account",
"cryptoKittie": "Free cryptokitty",
"signUpAndSubscribe": "토큰 구매",
"tryBeta": "베타 플랫폼",
"tryPlatformBeta": "플랫폼 베타 테스트",
"joinTokenSale": "토큰 세일 참여",
"buyTokens": "토큰 구매",
"shorter": "Shorter",
"whitePaper": "White paper",
"smartContract": "Smart contract",
"becomeInfluencer": "Become influencer",
"becomeAdvertiser": "Become advertiser"
},
"presaleLive": {
"headingLarge": "프리세일이 지금 진행 중입니다!",
"heading": "토큰 구매",
"joinNow": "토큰 구매",
"bonus%%%EndsIn": "보너스 %%% 종료"
},
"countdown": {
"title": "토큰 프리 세일 끝남",
"preICO": "PRE-ICO IS LIVE!",
"preIcoStartsIn": "ICO Pre-sale starts in",
"icoStartsIn": "2월 9일 ICO 시작",
"icoStarted": "토큰 판매가 열려 있습니다!",
"icoEnd": "Token Sale is Closed<br> Thank You for Support",
"tokenSaleIsOpen": "Public token sale<br> is open now!",
"days": "날짜",
"hours": "시간",
"minutes": "분",
"seconds": "초"
},
"documents": {
"heading": "문서",
"documents": [
{
"id": "SMM_Shorter",
"title": "요약서",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_White-Paper",
"title": "백서",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_Marketing-Research",
"title": "마케팅 연구",
"languages": [
"eng"
]
},
{
"id": "SMM_SEC-Howey-Test",
"title": "SEC 규제 테스트",
"languages": [
"eng"
]
}
]
},
"footer": {
"company": "Company",
"aboutUs": "About us",
"careers": "Careers",
"contactUs": "연락처",
"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": "유효한 이메일 주소를 입력해주시기 바랍니다.",
"alreadySubscribed": "이미 등록 중입니다. 이메일을 확인해 주세요",
"fillInTheField": "빈칸을 작성해주시기 바랍니다.",
"success": "성공적으로 등록되었습니다.",
"choosePaymentMethod": "지불 방법을 선택해 주세요"
},
"subscribe": {
"title": "토큰 판매 참여 신청",
"description": "토큰 판매의 시작 시간을 알리는 알림 메시지를 받으시려면 아래에 이메일 주소를 입력해주세요",
"email": "이메일",
"name": "이름",
"receive": "판매 이벤트 시작일 푸시알림 받기",
"toCalendar": "당신의 구글 캘린더에 이벤트 추가하기",
"thankYou": {
"title": "감사합니다!",
"description": "SocialMedia.Market 뉴스와 퍼블릭 토큰 세일을 구독해 주셔서 감사합니다!",
"telegramChatDescription": "문의가 있다면, 텔래그램 채널에 남겨주시기 바랍니다:",
"joinTelegram": "Join telegram chat"
}
},
"presale": {
"title": "토큰 사전 판매 참여 신청",
"description": "Join Token Presale with special bonuses: <br/> • contribution less than 100 ETH +20% SMT <br/> • contribution more than 100 ETH +30% SMT",
"firstName": "이름",
"lastName": "성",
"email": "이메일",
"industry": "종사하는 산업",
"chooseField": "당신의 분야를 고르세요",
"chooseAmount": "Choose amount",
"industryOptions": [
"개인투자자",
"펀드 대표",
"브랜드",
"마케팅 에이전시",
"인플루언서"
],
"amountOptions": [
"less than 25 000",
"25 000 - 50 000",
"50 000 - 100 000",
"100 000 - 300 000",
"300 000+"
],
"paymentMethod": "결제 방식",
"estimated": "추정치(미화)",
"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": "판매 이벤트 시작일 푸시알림 받기",
"toCalendar": "당신의 구글 캘린더에 이벤트 추가하기",
"join": "Join white list",
"thankYou": {
"title": "감사합니다!",
"description": "Thank you for joining SocialMedia.Market token presale White List. <br/> We will send you all necessary details on your email.",
"telegramChatDescription": "문의가 있다면, 텔래그램 채널에 남겨주시기 바랍니다:",
"joinTelegram": "Join telegram chat"
}
}
},
"firstScreen": {
"heading": "당신의 영향력에서 수익을 올리세요",
"subheading": "탈중앙화 영향력 광고 시장",
"joinTokenSale": "토큰 세일에 참여",
"projectRatings": "프로젝트 점수",
"subscribe": "뉴스를 구독하세요",
"description": "우리의 커뮤니티",
"joinPresale": "프리세일에 참여",
"technicalPartner": "Technical partner",
"mediaPartner": "Media partner",
"joinBounty": "Join<br> bounty <span>campaign</span>",
"backers": "Backers",
"tokenSold": "Tokens sold during pre-ico",
"fundsRaised": "Funds raised",
"ourPartners": "우리의 파트너",
"projectInfo": "프로젝트 정보",
"referralProgram": "추천 프로그램",
"bountyCampaign": "바운티 캠페인",
"betaProduct": "베타 플랫폼",
"USAResidentsCannotParticipate": "미국 시민권 자 및 거주자는 참가할 수 없습니다.",
"softCapReached": "소프트캡 달성!",
"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":"콘텐츠 수익화, 모든 종류의 영향력 마케팅에 대한 낮은 장벽",
"two":"콘텐츠 수익화, 모든 종류의 영향력 마케팅에 대한 낮은 장벽",
"three":"전세계 광고주에 무제한 액세스 할 수 있습니다"
},
"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": "더 알아보세요"
},
"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": "더 알아보세요"
},
"trusted": {
"footer": "우리의 파트너"
},
"about": {
"first": {
"title": "소셜 미디어 블로거와 광고주를 연결하는 최초의 탈중앙화 시장",
"description": "영향을 미치는 주요 마케팅 문제 해결 SocialMedia.Market은 콘텐츠의 수익 창출, 커뮤니티 참여 및 구독자에 대한 노출을 위한 새로운 기회를 창조합니다. 블록 체인 기술과 소셜 미디어 토큰에 의해 추진되는 새로운 에코 시스템은 비즈니스와 영향력 간의 마케팅의 상호 작용을 단순화 합니다."
},
"second": {
"title": "영향력 마케팅은 브랜드를 위한 가장 효율적이고 전략적인 방법입니다",
"description": "조사에 따르면 소비자의 92%가 영향력 마케팅을 사용하여 광고를 게재하는 것을 신뢰하고 그 수가 많아지고 있습니다. 또한 유료 광고보다 비용 효율적이고 믿을 수 있는 브랜드의 추천으로 이어집니다. 이러한 이유로 영향력 마케팅은 아마도 가장 효과적이고 장기적인 마케팅 전략이 되었습니다."
},
"actions": {
"readShorter": "요약서 확인",
"checkWhitePaper": "백서 확인",
"joinCommunity": "커뮤니티 참여"
}
},
"videos": {
"sectionTitle": "우리에 대한 훌륭한 비디오를 확인해 보세요",
"videosList": [
{
"id": "projectReviews",
"title": "프로젝트 어드바이저",
"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": "프로젝트 블로거",
"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": "플랫폼이 어떻게 동작하는가?",
"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": "우리의 파트너",
"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>",
"benefitsList": [
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1-bg.png",
"title": "사기 방지"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2-bg.png",
"title": "운영 비용 감소"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3-bg.png",
"title": "빠르고 안전한 트랜잭션"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4-bg.png",
"title": "탈중앙화 혁신 솔루션"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5-bg.png",
"title": "쉬운 글로벌 결제"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6-bg.png",
"title": "쉬운 참여"
}
],
"joinTokenSale": "토큰 세일 참여"
},
"experts": {
"sectionTitle": "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": "베스트셀러인 The New Rules of Marketing and PR의 저자",
"company": "",
"description": "블록체인 기술은 사회적 영향력들과 협력하는 브랜드에 마지막으로 투명성을 가져올 것을 약속하고 있습니다."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/werner.png",
"name": "Werner Geyser",
"status": "Influencer Marketing Hub의 설립자",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/imh.jpg",
"description": "영향력있는 마케팅은 브랜드가 다양한 사용자에게 메시지를 전하는 큰 기회를 제공합니다. SocialMeida.Market은 블록 체인 기술의 도움으로 이 떠오르는 시장에 규격을 제공하고 관련된 모든 사람에게 투명성과 보안을 보장합니다."
},
{
"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": "Wargaming.net의 전 마케팅 & 광고 부서 부회장",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/wargaming.jpg",
"description": "오늘날의 소비자는 애드블록을 사용하여 기존의 디지털 광고를 무시하고 있습니다. 영향력과 이스포츠 마케팅 업계에는 밀레니얼과 새로운 시대 사용자에게 접근하기 위한 더 효과적인 방법이 있습니다. 우리가 필요로하는 것은 영향력 마케팅을 위한 투명한 시장을 창조하는 것입니다."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/alex.png",
"name": "Alex Yastremski",
"status": "Bitfury Group Ltd의 일반 어드바이저",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/bitfury.jpg",
"description": "이 프로젝트는 시장 참가자의 가치를 높이고, 마케터의 매출을 극대화 할 수 있는 야심 찬 목표로 저를 감동 시켰습니다. 팀의 전문성과 함께 이 프로젝트는 디지털 광고의 성공과 효과적인 올인원 솔루션이 될 수 있습니다."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/slavik.png",
"name": "Slavik Nenaydokh",
"status": "Centuria Natural Foods의 COO",
"company": "",
"description": "SocialMedia.Market은 소셜 마케팅의 변화를 만들기 위한 노하우를 현명하게 활용하고 있습니다. 나는 SocialMedia.Market 팀의 비전에 참여하는 것을 바라고 있습니다. 나는 기업의 성숙 단계를 따라 걸어 나갈 것을 기대하고 있습니다."
}
]
},
"ourTeam": {
"sectionTitle": "우리의 팀",
"sectionDesc": "현재 31명의 회원들이 프로젝트에 참여하고 있으며, 마케팅 전문가, 블록 체인 엔지니어, 개발팀을 늘리고 있습니다. 향후 4 개월 동안 SocialMedia.Market 팀을 70 명 늘릴 예정입니다.",
"fullTeam": "전체 팀원",
"hideFullTeam": "전체 팀원",
"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": "영국 벤처 Accelerated Digital Ventures의 최고 의장. Keith Teare는 최근 ICOBox (4000 BTC)와 Crypterium (5 천만 달러)의 성공적인 ICO에 대해 조언했습니다. 이전에는 TechCrunch의 설립자이자 유럽 최초의 인터넷 서비스 공급자이기도 했습니다 (EasyNet). EasyNet과 RealNames 모두 1990 년대 후반에 Unicorn의 지위를 획득했습니다.",
"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": "Sonic Foundry, Inc의 운영부서 부회장. Sonic Foundry 전에, 디지털 마케팅 및 웹 개발 회사를 인수 합병한 나스닥에 상장되어있는 Think New Ideas의 사업을 운영하고 있었습니다. Think New Ideas는 250 만 달러 이상에 인수되었습니다.",
"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": "Value Brain Co., Ltd. (일본)의 CEO <br/> Beducate.ltd (홍콩)의 CEO. \"Worries Make Money\" Kadokawa Foresta의 저자. 2017년 12월에, Tatsunari Ono는 Jay Abraham, James Skinner, Anthony Mink 같은 유명한 강연자와 같은 무대에서 암호화폐 세미나에 대해 2500 명의 손님에게 연설을 했습니다.",
"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 기업가 - 고문. MobileyourLife의 설립자이자 B2B 공간에서 솔루션을 제공하는 AI-Fintech 공간에 참여했습니다.. Fundraising Capital 및 International Business Development의 ICO 자문.",
"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": "ICOBox 공동 설립자. 10 년 이상의 경력을 가진 마케팅, 홍보 및 커뮤니케이션 전문가. 거의 2 년 전에 블록 체인 업계에 합류 한 그는 Argon Group의 컨설턴트로 일하면서 ICO 플랫폼 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": "기업가, ACBMC, Bizzant, XEDYAS IT HYBRID SOLUTIONS의 창업자. Chafic은 전자 상거래, 게임, 전자 결제에 관한 풍부한 경험을 가진 숙련 된 사업 개발 전문가입니다.Mobile Go ICO의 성공의 기여자.",
"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": "Wargaming.net의 마케팅 & 광고 부서 전 부회장, 이스포츠와 블록체인에 열광. 컴퓨터 게임 업계에서 경력을 쌓은 경력을 쌓은 마케팅 및 비즈니스 개발 전문가 인 Experienced Chief Executive Officer. eSports, Blockchain 및 Advertising에 숙련 된 자.",
"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": "ICOBox의 국제 PR & 사업 분석 부서의 임원. 2017, Dima는 블록 체인 및 암호화폐에 참여, 제한된 범위의 시장 조사를 시작했습니다. FXStreet.com, CoinSpeaker.com 등 일부 미국 언론에 자신의 칼럼을 게재하고 있습니다.",
"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": "캘리포니아 샌프란시스코의 법률 고문 <br/> 블록 체인 규제 / 컴플라이언스 전문가. Bitfury Group Ltd의 법률 고문 <br/> 핀테크 변호사 Bingham McCutchen LLP",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/bitfury.jpg"