videomarketing.html 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.css" type="text/css" />
  4. <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis-network.min.js"> </script>
  5. <center>
  6. <h1>None</h1>
  7. </center>
  8. <!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
  9. <script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
  10. <style type="text/css">
  11. #mynetwork {
  12. width: 100%;
  13. height: 750px;
  14. background-color: #333333;
  15. border: 1px solid lightgray;
  16. position: relative;
  17. float: left;
  18. }
  19. #loadingBar {
  20. position:absolute;
  21. top:0px;
  22. left:0px;
  23. width: 100%;
  24. height: 750px;
  25. background-color:rgba(200,200,200,0.8);
  26. -webkit-transition: all 0.5s ease;
  27. -moz-transition: all 0.5s ease;
  28. -ms-transition: all 0.5s ease;
  29. -o-transition: all 0.5s ease;
  30. transition: all 0.5s ease;
  31. opacity:1;
  32. }
  33. #bar {
  34. position:absolute;
  35. top:0px;
  36. left:0px;
  37. width:20px;
  38. height:20px;
  39. margin:auto auto auto auto;
  40. border-radius:11px;
  41. border:2px solid rgba(30,30,30,0.05);
  42. background: rgb(0, 173, 246); /* Old browsers */
  43. box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
  44. }
  45. #border {
  46. position:absolute;
  47. top:10px;
  48. left:10px;
  49. width:500px;
  50. height:23px;
  51. margin:auto auto auto auto;
  52. box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
  53. border-radius:10px;
  54. }
  55. #text {
  56. position:absolute;
  57. top:8px;
  58. left:530px;
  59. width:30px;
  60. height:50px;
  61. margin:auto auto auto auto;
  62. font-size:22px;
  63. color: #000000;
  64. }
  65. div.outerBorder {
  66. position:relative;
  67. top:400px;
  68. width:600px;
  69. height:44px;
  70. margin:auto auto auto auto;
  71. border:8px solid rgba(0,0,0,0.1);
  72. background: rgb(252,252,252); /* Old browsers */
  73. background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
  74. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
  75. background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
  76. background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
  77. background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
  78. background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
  79. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
  80. border-radius:72px;
  81. box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  82. }
  83. </style>
  84. </head>
  85. <body>
  86. <div id = "mynetwork"></div>
  87. <div id="loadingBar">
  88. <div class="outerBorder">
  89. <div id="text">0%</div>
  90. <div id="border">
  91. <div id="bar"></div>
  92. </div>
  93. </div>
  94. </div>
  95. <script type="text/javascript">
  96. // initialize global variables.
  97. var edges;
  98. var nodes;
  99. var network;
  100. var container;
  101. var options, data;
  102. // This method is responsible for drawing the graph, returns the drawn network
  103. function drawGraph() {
  104. var container = document.getElementById('mynetwork');
  105. // parsing and collecting nodes and edges from the python
  106. nodes = new vis.DataSet([{"font": {"color": "white"}, "id": "services", "label": "services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube promotion services", "label": "youtube promotion services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing services", "label": "video marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing services", "label": "youtube marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube seo services", "label": "youtube seo services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video seo services", "label": "video seo services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube video marketing services", "label": "youtube video marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube advertising services", "label": "youtube advertising services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing video production services", "label": "marketing video production services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube channel promotion services", "label": "youtube channel promotion services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "online video marketing services", "label": "online video marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real estate video marketing services", "label": "real estate video marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube promotion services", "label": "best youtube promotion services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video promotion services", "label": "video promotion services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube video seo services", "label": "youtube video seo services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube channel marketing services", "label": "youtube channel marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube marketing services", "label": "best youtube marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video advertising services", "label": "video advertising services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube video promotion services", "label": "youtube video promotion services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content services", "label": "video content services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content marketing services", "label": "video content marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "affordable video marketing services", "label": "affordable video marketing services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing services video", "label": "digital marketing services video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing video production services", "label": "digital marketing video production services", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promotion services youtube", "label": "promotion services youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "seo", "label": "seo", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "production", "label": "production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "online", "label": "online", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real", "label": "real", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "estate", "label": "estate", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "blaster", "label": "blaster", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing blaster", "label": "video marketing blaster", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vmb video marketing blaster", "label": "vmb video marketing blaster", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vmb blaster", "label": "vmb blaster", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing blaster", "label": "marketing blaster", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "blaster marketing", "label": "blaster marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing blaster affiliate", "label": "video marketing blaster affiliate", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vmb", "label": "vmb", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "my", "label": "my", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote my youtube channel", "label": "promote my youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote my video on youtube", "label": "promote my video on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote my music video", "label": "promote my music video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote my channel on youtube", "label": "promote my channel on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote my youtube music video", "label": "promote my youtube music video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote my music video on youtube", "label": "promote my music video on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "on", "label": "on", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "music", "label": "music", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "websites", "label": "websites", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "websites to promote youtube channel", "label": "websites to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing websites", "label": "video marketing websites", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "websites to promote your youtube channel", "label": "websites to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best websites to promote your youtube channel", "label": "best websites to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "music video promotion", "label": "music video promotion", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube music video promotion service", "label": "youtube music video promotion service", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote music video on youtube", "label": "promote music video on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "music for marketing videos", "label": "music for marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote your music on youtube", "label": "promote your music on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube music marketing", "label": "youtube music marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube music video promotion", "label": "best youtube music video promotion", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "music video promotion company", "label": "music video promotion company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best way to promote music video", "label": "best way to promote music video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote your music video on youtube", "label": "promote your music video on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "music promotion youtube channel", "label": "music promotion youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "music promotion video", "label": "music promotion video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote your youtube music video", "label": "promote your youtube music video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "company", "label": "company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "way", "label": "way", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "online video marketing", "label": "online video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "online video advertising", "label": "online video advertising", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "online marketing youtube", "label": "online marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "online video advertising companies", "label": "online video advertising companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "companies", "label": "companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "influencer", "label": "influencer", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer marketing", "label": "youtube influencer marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "influencer video", "label": "influencer video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer agency", "label": "youtube influencer agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer platform", "label": "youtube influencer platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer marketing platform", "label": "youtube influencer marketing platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer rates", "label": "youtube influencer rates", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer marketing agency", "label": "youtube influencer marketing agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer search", "label": "youtube influencer search", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "influencer marketing video", "label": "influencer marketing video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube influencer advertising", "label": "youtube influencer advertising", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "unboxing influencer marketing", "label": "unboxing influencer marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "platform", "label": "platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "search", "label": "search", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social", "label": "social", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social video marketing", "label": "social video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social media video marketing", "label": "social media video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social media video content", "label": "social media video content", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "creating video content for social media", "label": "creating video content for social media", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing videos for social media", "label": "marketing videos for social media", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social video agency", "label": "social video agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social media video advertising", "label": "social media video advertising", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social media and video marketing", "label": "social media and video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social media video marketing strategy", "label": "social media video marketing strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social video advertising", "label": "social video advertising", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "social marketing youtube", "label": "social marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "media", "label": "media", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "creating", "label": "creating", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "and", "label": "and", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best way to promote youtube channel", "label": "best way to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best way to promote your youtube channel", "label": "best way to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best way to promote a youtube channel", "label": "best way to promote a youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "the best way to promote your youtube channel", "label": "the best way to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best way to promote your youtube video", "label": "best way to promote your youtube video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "a", "label": "a", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing video production", "label": "marketing video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "advertising video production", "label": "advertising video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content production", "label": "video content production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animated marketing video production", "label": "animated marketing video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing video production company", "label": "marketing video production company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b video production", "label": "b2b video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video production in digital marketing", "label": "video production in digital marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "advertising video production company", "label": "advertising video production company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content production company", "label": "video content production company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video production and marketing", "label": "video production and marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "brand marketing video production", "label": "brand marketing video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing production company", "label": "marketing production company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing video production", "label": "digital marketing video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing strategies for video production companies", "label": "marketing strategies for video production companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video production strategy", "label": "video production strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "viral video production", "label": "viral video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ad agency video production", "label": "ad agency video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing and video production", "label": "digital marketing and video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video production marketing strategy", "label": "video production marketing strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "creative agency video production", "label": "creative agency video production", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animated", "label": "animated", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b", "label": "b2b", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "in", "label": "in", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "brand", "label": "brand", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "viral", "label": "viral", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ad", "label": "ad", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "creative", "label": "creative", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "email", "label": "email", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video email marketing", "label": "video email marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "using video in email marketing", "label": "using video in email marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "email marketing youtube", "label": "email marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "bombbomb email", "label": "bombbomb email", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "personalized video email marketing", "label": "personalized video email marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "klaviyo video in email", "label": "klaviyo video in email", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video in email best practices", "label": "video in email best practices", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video email campaign", "label": "video email campaign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best video email marketing", "label": "best video email marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard email", "label": "vidyard email", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "email marketing video content", "label": "email marketing video content", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video email platform", "label": "video email platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "using", "label": "using", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "personalized", "label": "personalized", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "klaviyo", "label": "klaviyo", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "practices", "label": "practices", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "campaign", "label": "campaign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard", "label": "vidyard", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing companies", "label": "video marketing companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video advertising companies", "label": "video advertising companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing companies", "label": "youtube marketing companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube marketing companies", "label": "best youtube marketing companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best video marketing companies", "label": "best video marketing companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "companies that use youtube for marketing", "label": "companies that use youtube for marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "viral video marketing companies", "label": "viral video marketing companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "top video marketing companies", "label": "top video marketing companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing companies near me", "label": "video marketing companies near me", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "companies that use video marketing", "label": "companies that use video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube advertising companies", "label": "youtube advertising companies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "use", "label": "use", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "top", "label": "top", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "near", "label": "near", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "me", "label": "me", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "neil", "label": "neil", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "neil patel youtube", "label": "neil patel youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube neil patel", "label": "youtube neil patel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "neil patel youtube marketing", "label": "neil patel youtube marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "neil patel video marketing", "label": "neil patel video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "patel", "label": "patel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "seo video marketing", "label": "seo video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video seo expert", "label": "video seo expert", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube seo agency", "label": "youtube seo agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video seo agency", "label": "video seo agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "seo marketing youtube", "label": "seo marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "seo marketing video", "label": "seo marketing video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vmb seo", "label": "vmb seo", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube seo consultant", "label": "youtube seo consultant", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube video seo marketing", "label": "youtube video seo marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "expert", "label": "expert", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "consultant", "label": "consultant", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real estate video marketing", "label": "real estate video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real estate promo videos", "label": "real estate promo videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing for real estate agents", "label": "video marketing for real estate agents", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real estate marketing youtube", "label": "real estate marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real estate promotional videos", "label": "real estate promotional videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "commercial real estate video marketing", "label": "commercial real estate video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video real estate marketing", "label": "video real estate marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real estate video content", "label": "real estate video content", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "real estate agent promo video", "label": "real estate agent promo video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promo", "label": "promo", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promotional", "label": "promotional", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "business", "label": "business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing videos for business", "label": "marketing videos for business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing for small business", "label": "video marketing for small business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube for business marketing", "label": "youtube for business marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animated marketing videos for business", "label": "animated marketing videos for business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video advertising for small business", "label": "video advertising for small business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content for business", "label": "video content for business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "local business video marketing", "label": "local business video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing for small business", "label": "youtube marketing for small business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "business advertising video", "label": "business advertising video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube for marketing your business", "label": "youtube for marketing your business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "using youtube to promote your business", "label": "using youtube to promote your business", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "small", "label": "small", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "local", "label": "local", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard video", "label": "vidyard video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard hubspot", "label": "vidyard hubspot", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard go video", "label": "vidyard go video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard personalized video", "label": "vidyard personalized video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard integrations", "label": "vidyard integrations", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard youtube", "label": "vidyard youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard valuation", "label": "vidyard valuation", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot and vidyard", "label": "hubspot and vidyard", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard best practices", "label": "vidyard best practices", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard analytics", "label": "vidyard analytics", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard features", "label": "vidyard features", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard for sales", "label": "vidyard for sales", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard plans", "label": "vidyard plans", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard go", "label": "vidyard go", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard partners", "label": "vidyard partners", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot video vidyard", "label": "hubspot video vidyard", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing vidyard", "label": "video marketing vidyard", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard marketo", "label": "vidyard marketo", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vidyard sales", "label": "vidyard sales", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot", "label": "hubspot", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "analytics", "label": "analytics", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "sales", "label": "sales", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketo", "label": "marketo", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b video", "label": "b2b video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b video marketing", "label": "b2b video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube b2b", "label": "youtube b2b", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b explainer videos", "label": "b2b explainer videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b video marketing strategy", "label": "b2b video marketing strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube b2b marketing", "label": "youtube b2b marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best b2b videos", "label": "best b2b videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube for b2b", "label": "youtube for b2b", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b video content", "label": "b2b video content", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b youtube channels", "label": "b2b youtube channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b video best practices", "label": "b2b video best practices", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "b2b video ads", "label": "b2b video ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube for b2b marketing", "label": "youtube for b2b marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "explainer", "label": "explainer", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "channels", "label": "channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ads", "label": "ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "2020", "label": "2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing 2020", "label": "video marketing 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing strategy 2020", "label": "youtube marketing strategy 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing 2020", "label": "youtube marketing 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing strategy 2020", "label": "video marketing strategy 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best marketing videos 2020", "label": "best marketing videos 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube advertising benchmarks 2020", "label": "youtube advertising benchmarks 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing in 2020", "label": "video marketing in 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content 2020", "label": "video content 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube channel strategy 2020", "label": "youtube channel strategy 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best video landing pages 2020", "label": "best video landing pages 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content marketing 2020", "label": "video content marketing 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video advertising 2020", "label": "video advertising 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing best practices 2020", "label": "video marketing best practices 2020", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot training videos", "label": "hubspot training videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot video marketing", "label": "hubspot video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing hubspot", "label": "video marketing hubspot", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot youtube marketing", "label": "hubspot youtube marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot academy youtube", "label": "hubspot academy youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot marketing video", "label": "hubspot marketing video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "hubspot academy videos", "label": "hubspot academy videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "training", "label": "training", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "mailchimp training videos", "label": "mailchimp training videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing training", "label": "video marketing training", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing training videos", "label": "marketing training videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "eloqua training videos", "label": "eloqua training videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "network marketing videos training", "label": "network marketing videos training", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing training", "label": "youtube marketing training", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing training videos", "label": "digital marketing training videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "sharpspring training videos", "label": "sharpspring training videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "total media agency videos", "label": "total media agency videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animated marketing videos", "label": "animated marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing animated video", "label": "digital marketing animated video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animated video content", "label": "animated video content", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "viral video marketing", "label": "viral video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "viral video campaigns", "label": "viral video campaigns", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "viral video advertising", "label": "viral video advertising", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube viral marketing", "label": "youtube viral marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best viral marketing videos", "label": "best viral marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "campaigns", "label": "campaigns", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "use adwords to promote youtube channel", "label": "use adwords to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "adwords", "label": "adwords", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google adwords youtube promotion", "label": "google adwords youtube promotion", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google adwords to promote youtube channel", "label": "google adwords to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google", "label": "google", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook", "label": "facebook", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook video marketing", "label": "facebook video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote youtube channel on facebook", "label": "promote youtube channel on facebook", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook marketing youtube", "label": "facebook marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook ad for youtube video", "label": "facebook ad for youtube video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook ad video ratio", "label": "facebook ad video ratio", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook video ad agency", "label": "facebook video ad agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "advertising youtube channel on facebook", "label": "advertising youtube channel on facebook", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook ad video duration", "label": "facebook ad video duration", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote your youtube channel on facebook", "label": "promote your youtube channel on facebook", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote youtube channel in facebook", "label": "promote youtube channel in facebook", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook video ads strategy", "label": "facebook video ads strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "facebook ad for youtube channel", "label": "facebook ad for youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "local video marketing", "label": "local video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing for small local businesses", "label": "video marketing for small local businesses", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ways", "label": "ways", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ways to promote your youtube channel", "label": "ways to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ways to promote youtube channel", "label": "ways to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ways to promote a youtube channel", "label": "ways to promote a youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "paid ways to promote youtube channel", "label": "paid ways to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "good ways to promote your youtube channel", "label": "good ways to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ways to promote your youtube video", "label": "ways to promote your youtube video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "paid", "label": "paid", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube video marketing company", "label": "youtube video marketing company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube promotion company", "label": "youtube promotion company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vestige company video", "label": "vestige company video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video promotion company", "label": "video promotion company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube advertising company", "label": "youtube advertising company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube promotion company", "label": "best youtube promotion company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vestige company ka video", "label": "vestige company ka video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube video promotion company", "label": "youtube video promotion company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube channel marketing company", "label": "youtube channel marketing company", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "2021", "label": "2021", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing 2021", "label": "video marketing 2021", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing 2021", "label": "youtube marketing 2021", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing in 2021", "label": "video marketing in 2021", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content 2021", "label": "video content 2021", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing strategy 2021", "label": "video marketing strategy 2021", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video advertising 2021", "label": "video advertising 2021", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ted", "label": "ted", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ted talks marketing", "label": "ted talks marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best ted talks for marketing", "label": "best ted talks for marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ted talk digital marketing", "label": "ted talk digital marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing ted talk", "label": "digital marketing ted talk", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ted talk sales and marketing", "label": "ted talk sales and marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "talk", "label": "talk", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "links", "label": "links", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube affiliate links", "label": "youtube affiliate links", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube amazon affiliate links", "label": "youtube amazon affiliate links", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon affiliate links in youtube videos", "label": "amazon affiliate links in youtube videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon", "label": "amazon", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ads agency", "label": "youtube ads agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote youtube channel google ads", "label": "promote youtube channel google ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google ads promote youtube channel", "label": "google ads promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google ads to promote youtube channel", "label": "google ads to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube direct response ads", "label": "youtube direct response ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing video ads", "label": "digital marketing video ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote youtube channel with google ads", "label": "promote youtube channel with google ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "affiliate marketing youtube ads", "label": "affiliate marketing youtube ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ads affiliate marketing", "label": "youtube ads affiliate marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube retargeting ads", "label": "youtube retargeting ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing ads", "label": "video marketing ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ads pay per click", "label": "youtube ads pay per click", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing ads", "label": "youtube marketing ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ads for affiliate marketing", "label": "youtube ads for affiliate marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video ads marketing", "label": "video ads marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video ads in digital marketing", "label": "video ads in digital marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote your channel with google ads", "label": "promote your channel with google ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ppc ads", "label": "youtube ppc ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "affiliate marketing with youtube ads", "label": "affiliate marketing with youtube ads", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "with", "label": "with", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pay", "label": "pay", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "per", "label": "per", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "click", "label": "click", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ppc", "label": "ppc", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "smm", "label": "smm", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube smm", "label": "youtube smm", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube smm service", "label": "youtube smm service", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "smm for youtube", "label": "smm for youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing platform", "label": "video marketing platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best platform to promote youtube channel", "label": "best platform to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing platform", "label": "youtube marketing platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best video marketing platform", "label": "best video marketing platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google marketing platform dv360", "label": "google marketing platform dv360", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube as a marketing platform", "label": "youtube as a marketing platform", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google marketing platform youtube", "label": "google marketing platform youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ppc videos", "label": "ppc videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ppc", "label": "youtube ppc", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "ppc youtube", "label": "ppc youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ppc advertising", "label": "youtube ppc advertising", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video ad agency", "label": "video ad agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube ad marketing", "label": "youtube ad marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing google", "label": "video marketing google", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "google video marketing", "label": "google video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best marketing youtube channels", "label": "best marketing youtube channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best digital marketing youtube channels", "label": "best digital marketing youtube channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best affiliate marketing youtube channels", "label": "best affiliate marketing youtube channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best marketing channels on youtube", "label": "best marketing channels on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "top marketing youtube channels", "label": "top marketing youtube channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "top digital marketing youtube channels", "label": "top digital marketing youtube channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing channels", "label": "video marketing channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best digital marketing channels on youtube", "label": "best digital marketing channels on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube marketing channels", "label": "best youtube marketing channels", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "paid promotion of youtube channel", "label": "paid promotion of youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "paid search videos", "label": "paid search videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "paid promotion for youtube channel", "label": "paid promotion for youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote youtube channel paid", "label": "promote youtube channel paid", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube paid marketing", "label": "youtube paid marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "paid promote youtube channel", "label": "paid promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "of", "label": "of", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing strategy of amazon prime video", "label": "marketing strategy of amazon prime video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "roi of video marketing", "label": "roi of video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing of youtube channel", "label": "marketing of youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "prime", "label": "prime", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing expert", "label": "video marketing expert", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing expert", "label": "youtube marketing expert", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "using video for marketing", "label": "using video for marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "using youtube for marketing", "label": "using youtube for marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing agency in bronx", "label": "video marketing agency in bronx", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing in digital marketing", "label": "video marketing in digital marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "affiliate marketing in youtube", "label": "affiliate marketing in youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing in hindi", "label": "video marketing in hindi", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing in youtube", "label": "digital marketing in youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "top trending youtube videos in usa", "label": "top trending youtube videos in usa", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing in hindi", "label": "youtube marketing in hindi", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video content in marketing", "label": "video content in marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "trending", "label": "trending", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "usa", "label": "usa", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing campaign", "label": "video marketing campaign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing campaign", "label": "youtube marketing campaign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon prime advertising campaign", "label": "amazon prime advertising campaign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video campaign strategy", "label": "video campaign strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video advertising campaign", "label": "video advertising campaign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing campaign strategy", "label": "video marketing campaign strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "adobe campaign youtube", "label": "adobe campaign youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube brand awareness campaign", "label": "youtube brand awareness campaign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "awareness", "label": "awareness", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promo marketing videos", "label": "promo marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing promo video", "label": "digital marketing promo video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing on youtube", "label": "digital marketing on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote youtube video on youtube", "label": "promote youtube video on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promote youtube channel on youtube", "label": "promote youtube channel on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon affiliate marketing on youtube", "label": "amazon affiliate marketing on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "videos on marketing", "label": "videos on marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "advertising opportunities on youtube", "label": "advertising opportunities on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "advertising your channel on youtube", "label": "advertising your channel on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "content marketing on youtube", "label": "content marketing on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "advertising your video on youtube", "label": "advertising your video on youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video on demand marketing", "label": "video on demand marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animoto branding on video", "label": "animoto branding on video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animoto", "label": "animoto", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video search marketing", "label": "video search marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon prime video marketing strategy", "label": "amazon prime video marketing strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon prime video marketing", "label": "amazon prime video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon affiliate marketing youtube", "label": "amazon affiliate marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon prime video marketing campaigns", "label": "amazon prime video marketing campaigns", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon affiliate video", "label": "amazon affiliate video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube amazon affiliate marketing", "label": "youtube amazon affiliate marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon video marketing", "label": "amazon video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "amazon affiliate youtube videos", "label": "amazon affiliate youtube videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "prime video marketing", "label": "prime video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "prime video marketing strategy", "label": "prime video marketing strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "creating a marketing video", "label": "creating a marketing video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "creating a video marketing strategy", "label": "creating a video marketing strategy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "personalized video marketing", "label": "personalized video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "klaviyo youtube", "label": "klaviyo youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "klaviyo video", "label": "klaviyo video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube klaviyo", "label": "youtube klaviyo", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketo youtube", "label": "marketo youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketo video", "label": "marketo video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketo demo video", "label": "marketo demo video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pay to promote youtube channel", "label": "pay to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube pay per click", "label": "youtube pay per click", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube pay per click advertising", "label": "youtube pay per click advertising", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pay to promote your youtube video", "label": "pay to promote your youtube video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "proposal", "label": "proposal", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing proposal", "label": "youtube marketing proposal", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing proposal", "label": "video marketing proposal", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube channel promotion proposal", "label": "youtube channel promotion proposal", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "dental", "label": "dental", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "dental video marketing", "label": "dental video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing dental", "label": "video marketing dental", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best dental marketing videos", "label": "best dental marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "dental office marketing videos", "label": "dental office marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animoto marketing", "label": "animoto marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing animoto", "label": "video marketing animoto", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animoto video marketing", "label": "animoto video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "animoto marketing video", "label": "animoto marketing video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing consultant", "label": "video marketing consultant", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing consultant", "label": "youtube marketing consultant", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best video marketing campaigns", "label": "best video marketing campaigns", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best video marketing campaigns 2019", "label": "best video marketing campaigns 2019", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube advertising campaigns", "label": "best youtube advertising campaigns", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best youtube marketing campaigns", "label": "best youtube marketing campaigns", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "2019", "label": "2019", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vmb video marketing", "label": "vmb video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pardot", "label": "pardot", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "wistia pardot", "label": "wistia pardot", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pardot video", "label": "pardot video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pardot demo video", "label": "pardot demo video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pardot wistia", "label": "pardot wistia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing near me", "label": "video marketing near me", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing agency near me", "label": "video marketing agency near me", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing agency near me", "label": "youtube marketing agency near me", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "marketing explainer video", "label": "marketing explainer video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing explainer video", "label": "digital marketing explainer video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "brand awareness video", "label": "brand awareness video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube brand awareness", "label": "youtube brand awareness", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "brand marketing videos", "label": "brand marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "brand advertising video", "label": "brand advertising video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "mautic", "label": "mautic", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "mautic youtube", "label": "mautic youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube mautic", "label": "youtube mautic", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "mautic video", "label": "mautic video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promotional video content", "label": "promotional video content", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "digital marketing agency promotional video", "label": "digital marketing agency promotional video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "promotional marketing videos", "label": "promotional marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "places", "label": "places", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "places to promote youtube channel", "label": "places to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "places to promote your youtube channel", "label": "places to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best places to promote your youtube channel", "label": "best places to promote your youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best places to promote youtube channel", "label": "best places to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing analytics", "label": "video marketing analytics", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing analytics", "label": "youtube marketing analytics", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "top marketing videos", "label": "top marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "fiverr", "label": "fiverr", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube promotion fiverr", "label": "youtube promotion fiverr", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing fiverr", "label": "video marketing fiverr", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "fiverr promote youtube video", "label": "fiverr promote youtube video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "fiverr video marketing", "label": "fiverr video marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "inbound", "label": "inbound", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "inbound marketing youtube", "label": "inbound marketing youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "inbound marketing video", "label": "inbound marketing video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "inbound video", "label": "inbound video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube inbound marketing", "label": "youtube inbound marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video creative agency", "label": "video creative agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "creative marketing videos", "label": "creative marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "sites", "label": "sites", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "sites to promote youtube channel", "label": "sites to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing sites", "label": "video marketing sites", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best sites to promote youtube channel", "label": "best sites to promote youtube channel", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube and marketing", "label": "youtube and marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "sales and marketing videos", "label": "sales and marketing videos", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video and marketing", "label": "video and marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube and affiliate marketing", "label": "youtube and affiliate marketing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing best practices", "label": "video marketing best practices", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing best practices", "label": "youtube marketing best practices", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube marketing strategy 2019", "label": "youtube marketing strategy 2019", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "best marketing videos 2019", "label": "best marketing videos 2019", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "beginners", "label": "beginners", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube affiliate marketing for beginners", "label": "youtube affiliate marketing for beginners", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "affiliate marketing for beginners youtube", "label": "affiliate marketing for beginners youtube", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing for beginners", "label": "video marketing for beginners", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "sales promotion video", "label": "sales promotion video", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "pricing", "label": "pricing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "video marketing pricing", "label": "video marketing pricing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "vyral marketing pricing", "label": "vyral marketing pricing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube pricing strategies", "label": "youtube pricing strategies", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "trending youtube usa today", "label": "trending youtube usa today", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "youtube trending videos usa", "label": "youtube trending videos usa", "shape": "dot", "size": 10}]);
  107. edges = new vis.DataSet([{"from": "services", "to": "youtube promotion services", "weight": 1}, {"from": "services", "to": "video marketing services", "weight": 1}, {"from": "services", "to": "youtube marketing services", "weight": 1}, {"from": "services", "to": "youtube seo services", "weight": 1}, {"from": "services", "to": "video seo services", "weight": 1}, {"from": "services", "to": "youtube video marketing services", "weight": 1}, {"from": "services", "to": "youtube advertising services", "weight": 1}, {"from": "services", "to": "marketing video production services", "weight": 1}, {"from": "services", "to": "youtube channel promotion services", "weight": 1}, {"from": "services", "to": "online video marketing services", "weight": 1}, {"from": "services", "to": "real estate video marketing services", "weight": 1}, {"from": "services", "to": "best youtube promotion services", "weight": 1}, {"from": "services", "to": "video promotion services", "weight": 1}, {"from": "services", "to": "youtube video seo services", "weight": 1}, {"from": "services", "to": "youtube channel marketing services", "weight": 1}, {"from": "services", "to": "best youtube marketing services", "weight": 1}, {"from": "services", "to": "video advertising services", "weight": 1}, {"from": "services", "to": "youtube video promotion services", "weight": 1}, {"from": "services", "to": "video content services", "weight": 1}, {"from": "services", "to": "video content marketing services", "weight": 1}, {"from": "services", "to": "affordable video marketing services", "weight": 1}, {"from": "services", "to": "digital marketing services video", "weight": 1}, {"from": "services", "to": "digital marketing video production services", "weight": 1}, {"from": "services", "to": "promotion services youtube", "weight": 1}, {"from": "youtube seo services", "to": "seo", "weight": 1}, {"from": "marketing video production services", "to": "production", "weight": 1}, {"from": "online video marketing services", "to": "online", "weight": 1}, {"from": "real estate video marketing services", "to": "real", "weight": 1}, {"from": "real estate video marketing services", "to": "estate", "weight": 1}, {"from": "blaster", "to": "video marketing blaster", "weight": 1}, {"from": "blaster", "to": "vmb video marketing blaster", "weight": 1}, {"from": "blaster", "to": "vmb blaster", "weight": 1}, {"from": "blaster", "to": "marketing blaster", "weight": 1}, {"from": "blaster", "to": "blaster marketing", "weight": 1}, {"from": "blaster", "to": "video marketing blaster affiliate", "weight": 1}, {"from": "vmb video marketing blaster", "to": "vmb", "weight": 1}, {"from": "my", "to": "promote my youtube channel", "weight": 1}, {"from": "my", "to": "promote my video on youtube", "weight": 1}, {"from": "my", "to": "promote my music video", "weight": 1}, {"from": "my", "to": "promote my channel on youtube", "weight": 1}, {"from": "my", "to": "promote my youtube music video", "weight": 1}, {"from": "my", "to": "promote my music video on youtube", "weight": 1}, {"from": "promote my video on youtube", "to": "on", "weight": 1}, {"from": "promote my music video", "to": "music", "weight": 1}, {"from": "websites", "to": "websites to promote youtube channel", "weight": 1}, {"from": "websites", "to": "video marketing websites", "weight": 1}, {"from": "websites", "to": "websites to promote your youtube channel", "weight": 1}, {"from": "websites", "to": "best websites to promote your youtube channel", "weight": 1}, {"from": "music", "to": "music video promotion", "weight": 1}, {"from": "music", "to": "youtube music video promotion service", "weight": 1}, {"from": "music", "to": "promote music video on youtube", "weight": 1}, {"from": "music", "to": "music for marketing videos", "weight": 1}, {"from": "music", "to": "promote your music on youtube", "weight": 1}, {"from": "music", "to": "youtube music marketing", "weight": 1}, {"from": "music", "to": "best youtube music video promotion", "weight": 1}, {"from": "music", "to": "music video promotion company", "weight": 1}, {"from": "music", "to": "best way to promote music video", "weight": 1}, {"from": "music", "to": "promote your music video on youtube", "weight": 1}, {"from": "music", "to": "music promotion youtube channel", "weight": 1}, {"from": "music", "to": "music promotion video", "weight": 1}, {"from": "music", "to": "promote your youtube music video", "weight": 1}, {"from": "music video promotion company", "to": "company", "weight": 1}, {"from": "best way to promote music video", "to": "way", "weight": 1}, {"from": "online", "to": "online video marketing", "weight": 1}, {"from": "online", "to": "online video advertising", "weight": 1}, {"from": "online", "to": "online marketing youtube", "weight": 1}, {"from": "online", "to": "online video advertising companies", "weight": 1}, {"from": "online video advertising companies", "to": "companies", "weight": 1}, {"from": "influencer", "to": "youtube influencer marketing", "weight": 1}, {"from": "influencer", "to": "influencer video", "weight": 1}, {"from": "influencer", "to": "youtube influencer agency", "weight": 1}, {"from": "influencer", "to": "youtube influencer platform", "weight": 1}, {"from": "influencer", "to": "youtube influencer marketing platform", "weight": 1}, {"from": "influencer", "to": "youtube influencer rates", "weight": 1}, {"from": "influencer", "to": "youtube influencer marketing agency", "weight": 1}, {"from": "influencer", "to": "youtube influencer search", "weight": 1}, {"from": "influencer", "to": "influencer marketing video", "weight": 1}, {"from": "influencer", "to": "youtube influencer advertising", "weight": 1}, {"from": "influencer", "to": "unboxing influencer marketing", "weight": 1}, {"from": "youtube influencer platform", "to": "platform", "weight": 1}, {"from": "youtube influencer search", "to": "search", "weight": 1}, {"from": "social", "to": "social video marketing", "weight": 1}, {"from": "social", "to": "social media video marketing", "weight": 1}, {"from": "social", "to": "social media video content", "weight": 1}, {"from": "social", "to": "creating video content for social media", "weight": 1}, {"from": "social", "to": "marketing videos for social media", "weight": 1}, {"from": "social", "to": "social video agency", "weight": 1}, {"from": "social", "to": "social media video advertising", "weight": 1}, {"from": "social", "to": "social media and video marketing", "weight": 1}, {"from": "social", "to": "social media video marketing strategy", "weight": 1}, {"from": "social", "to": "social video advertising", "weight": 1}, {"from": "social", "to": "social marketing youtube", "weight": 1}, {"from": "social media video marketing", "to": "media", "weight": 1}, {"from": "creating video content for social media", "to": "creating", "weight": 1}, {"from": "social media and video marketing", "to": "and", "weight": 1}, {"from": "way", "to": "best way to promote youtube channel", "weight": 1}, {"from": "way", "to": "best way to promote your youtube channel", "weight": 1}, {"from": "way", "to": "best way to promote a youtube channel", "weight": 1}, {"from": "way", "to": "the best way to promote your youtube channel", "weight": 1}, {"from": "way", "to": "best way to promote your youtube video", "weight": 1}, {"from": "best way to promote a youtube channel", "to": "a", "weight": 1}, {"from": "production", "to": "marketing video production", "weight": 1}, {"from": "production", "to": "advertising video production", "weight": 1}, {"from": "production", "to": "video content production", "weight": 1}, {"from": "production", "to": "animated marketing video production", "weight": 1}, {"from": "production", "to": "marketing video production company", "weight": 1}, {"from": "production", "to": "b2b video production", "weight": 1}, {"from": "production", "to": "video production in digital marketing", "weight": 1}, {"from": "production", "to": "advertising video production company", "weight": 1}, {"from": "production", "to": "video content production company", "weight": 1}, {"from": "production", "to": "video production and marketing", "weight": 1}, {"from": "production", "to": "brand marketing video production", "weight": 1}, {"from": "production", "to": "marketing production company", "weight": 1}, {"from": "production", "to": "digital marketing video production", "weight": 1}, {"from": "production", "to": "marketing strategies for video production companies", "weight": 1}, {"from": "production", "to": "video production strategy", "weight": 1}, {"from": "production", "to": "viral video production", "weight": 1}, {"from": "production", "to": "ad agency video production", "weight": 1}, {"from": "production", "to": "digital marketing and video production", "weight": 1}, {"from": "production", "to": "video production marketing strategy", "weight": 1}, {"from": "production", "to": "creative agency video production", "weight": 1}, {"from": "animated marketing video production", "to": "animated", "weight": 1}, {"from": "marketing video production company", "to": "company", "weight": 1}, {"from": "b2b video production", "to": "b2b", "weight": 1}, {"from": "video production in digital marketing", "to": "in", "weight": 1}, {"from": "video production and marketing", "to": "and", "weight": 1}, {"from": "brand marketing video production", "to": "brand", "weight": 1}, {"from": "viral video production", "to": "viral", "weight": 1}, {"from": "ad agency video production", "to": "ad", "weight": 1}, {"from": "creative agency video production", "to": "creative", "weight": 1}, {"from": "email", "to": "video email marketing", "weight": 1}, {"from": "email", "to": "using video in email marketing", "weight": 1}, {"from": "email", "to": "email marketing youtube", "weight": 1}, {"from": "email", "to": "bombbomb email", "weight": 1}, {"from": "email", "to": "personalized video email marketing", "weight": 1}, {"from": "email", "to": "klaviyo video in email", "weight": 1}, {"from": "email", "to": "video in email best practices", "weight": 1}, {"from": "email", "to": "video email campaign", "weight": 1}, {"from": "email", "to": "best video email marketing", "weight": 1}, {"from": "email", "to": "vidyard email", "weight": 1}, {"from": "email", "to": "email marketing video content", "weight": 1}, {"from": "email", "to": "video email platform", "weight": 1}, {"from": "using video in email marketing", "to": "using", "weight": 1}, {"from": "using video in email marketing", "to": "in", "weight": 1}, {"from": "personalized video email marketing", "to": "personalized", "weight": 1}, {"from": "klaviyo video in email", "to": "klaviyo", "weight": 1}, {"from": "video in email best practices", "to": "practices", "weight": 1}, {"from": "video email campaign", "to": "campaign", "weight": 1}, {"from": "vidyard email", "to": "vidyard", "weight": 1}, {"from": "video email platform", "to": "platform", "weight": 1}, {"from": "companies", "to": "video marketing companies", "weight": 1}, {"from": "companies", "to": "video advertising companies", "weight": 1}, {"from": "companies", "to": "youtube marketing companies", "weight": 1}, {"from": "companies", "to": "best youtube marketing companies", "weight": 1}, {"from": "companies", "to": "best video marketing companies", "weight": 1}, {"from": "companies", "to": "companies that use youtube for marketing", "weight": 1}, {"from": "companies", "to": "viral video marketing companies", "weight": 1}, {"from": "companies", "to": "top video marketing companies", "weight": 1}, {"from": "companies", "to": "video marketing companies near me", "weight": 1}, {"from": "companies", "to": "companies that use video marketing", "weight": 1}, {"from": "companies", "to": "youtube advertising companies", "weight": 1}, {"from": "companies that use youtube for marketing", "to": "use", "weight": 1}, {"from": "top video marketing companies", "to": "top", "weight": 1}, {"from": "video marketing companies near me", "to": "near", "weight": 1}, {"from": "video marketing companies near me", "to": "me", "weight": 1}, {"from": "neil", "to": "neil patel youtube", "weight": 1}, {"from": "neil", "to": "youtube neil patel", "weight": 1}, {"from": "neil", "to": "neil patel youtube marketing", "weight": 1}, {"from": "neil", "to": "neil patel video marketing", "weight": 1}, {"from": "neil patel youtube", "to": "patel", "weight": 1}, {"from": "seo", "to": "seo video marketing", "weight": 1}, {"from": "seo", "to": "video seo expert", "weight": 1}, {"from": "seo", "to": "youtube seo agency", "weight": 1}, {"from": "seo", "to": "video seo agency", "weight": 1}, {"from": "seo", "to": "seo marketing youtube", "weight": 1}, {"from": "seo", "to": "seo marketing video", "weight": 1}, {"from": "seo", "to": "vmb seo", "weight": 1}, {"from": "seo", "to": "youtube seo consultant", "weight": 1}, {"from": "seo", "to": "youtube video seo marketing", "weight": 1}, {"from": "video seo expert", "to": "expert", "weight": 1}, {"from": "vmb seo", "to": "vmb", "weight": 1}, {"from": "youtube seo consultant", "to": "consultant", "weight": 1}, {"from": "real", "to": "real estate video marketing", "weight": 1}, {"from": "real", "to": "real estate promo videos", "weight": 1}, {"from": "real", "to": "video marketing for real estate agents", "weight": 1}, {"from": "real", "to": "real estate marketing youtube", "weight": 1}, {"from": "real", "to": "real estate promotional videos", "weight": 1}, {"from": "real", "to": "commercial real estate video marketing", "weight": 1}, {"from": "real", "to": "video real estate marketing", "weight": 1}, {"from": "real", "to": "real estate video content", "weight": 1}, {"from": "real", "to": "real estate agent promo video", "weight": 1}, {"from": "real estate promo videos", "to": "promo", "weight": 1}, {"from": "real estate promotional videos", "to": "promotional", "weight": 1}, {"from": "business", "to": "marketing videos for business", "weight": 1}, {"from": "business", "to": "video marketing for small business", "weight": 1}, {"from": "business", "to": "youtube for business marketing", "weight": 1}, {"from": "business", "to": "animated marketing videos for business", "weight": 1}, {"from": "business", "to": "video advertising for small business", "weight": 1}, {"from": "business", "to": "video content for business", "weight": 1}, {"from": "business", "to": "local business video marketing", "weight": 1}, {"from": "business", "to": "youtube marketing for small business", "weight": 1}, {"from": "business", "to": "business advertising video", "weight": 1}, {"from": "business", "to": "youtube for marketing your business", "weight": 1}, {"from": "business", "to": "using youtube to promote your business", "weight": 1}, {"from": "video marketing for small business", "to": "small", "weight": 1}, {"from": "animated marketing videos for business", "to": "animated", "weight": 1}, {"from": "local business video marketing", "to": "local", "weight": 1}, {"from": "vidyard", "to": "vidyard video", "weight": 1}, {"from": "vidyard", "to": "vidyard hubspot", "weight": 1}, {"from": "vidyard", "to": "vidyard go video", "weight": 1}, {"from": "vidyard", "to": "vidyard personalized video", "weight": 1}, {"from": "vidyard", "to": "vidyard integrations", "weight": 1}, {"from": "vidyard", "to": "vidyard youtube", "weight": 1}, {"from": "vidyard", "to": "vidyard valuation", "weight": 1}, {"from": "vidyard", "to": "hubspot and vidyard", "weight": 1}, {"from": "vidyard", "to": "vidyard best practices", "weight": 1}, {"from": "vidyard", "to": "vidyard analytics", "weight": 1}, {"from": "vidyard", "to": "vidyard features", "weight": 1}, {"from": "vidyard", "to": "vidyard for sales", "weight": 1}, {"from": "vidyard", "to": "vidyard plans", "weight": 1}, {"from": "vidyard", "to": "vidyard go", "weight": 1}, {"from": "vidyard", "to": "vidyard partners", "weight": 1}, {"from": "vidyard", "to": "hubspot video vidyard", "weight": 1}, {"from": "vidyard", "to": "video marketing vidyard", "weight": 1}, {"from": "vidyard", "to": "vidyard marketo", "weight": 1}, {"from": "vidyard", "to": "vidyard sales", "weight": 1}, {"from": "vidyard hubspot", "to": "hubspot", "weight": 1}, {"from": "vidyard analytics", "to": "analytics", "weight": 1}, {"from": "vidyard for sales", "to": "sales", "weight": 1}, {"from": "vidyard marketo", "to": "marketo", "weight": 1}, {"from": "b2b", "to": "b2b video", "weight": 1}, {"from": "b2b", "to": "b2b video marketing", "weight": 1}, {"from": "b2b", "to": "youtube b2b", "weight": 1}, {"from": "b2b", "to": "b2b explainer videos", "weight": 1}, {"from": "b2b", "to": "b2b video marketing strategy", "weight": 1}, {"from": "b2b", "to": "youtube b2b marketing", "weight": 1}, {"from": "b2b", "to": "best b2b videos", "weight": 1}, {"from": "b2b", "to": "youtube for b2b", "weight": 1}, {"from": "b2b", "to": "b2b video content", "weight": 1}, {"from": "b2b", "to": "b2b youtube channels", "weight": 1}, {"from": "b2b", "to": "b2b video best practices", "weight": 1}, {"from": "b2b", "to": "b2b video ads", "weight": 1}, {"from": "b2b", "to": "youtube for b2b marketing", "weight": 1}, {"from": "b2b explainer videos", "to": "explainer", "weight": 1}, {"from": "b2b youtube channels", "to": "channels", "weight": 1}, {"from": "b2b video ads", "to": "ads", "weight": 1}, {"from": "2020", "to": "video marketing 2020", "weight": 1}, {"from": "2020", "to": "youtube marketing strategy 2020", "weight": 1}, {"from": "2020", "to": "youtube marketing 2020", "weight": 1}, {"from": "2020", "to": "video marketing strategy 2020", "weight": 1}, {"from": "2020", "to": "best marketing videos 2020", "weight": 1}, {"from": "2020", "to": "youtube advertising benchmarks 2020", "weight": 1}, {"from": "2020", "to": "video marketing in 2020", "weight": 1}, {"from": "2020", "to": "video content 2020", "weight": 1}, {"from": "2020", "to": "youtube channel strategy 2020", "weight": 1}, {"from": "2020", "to": "best video landing pages 2020", "weight": 1}, {"from": "2020", "to": "video content marketing 2020", "weight": 1}, {"from": "2020", "to": "video advertising 2020", "weight": 1}, {"from": "2020", "to": "video marketing best practices 2020", "weight": 1}, {"from": "video marketing in 2020", "to": "in", "weight": 1}, {"from": "hubspot", "to": "hubspot training videos", "weight": 1}, {"from": "hubspot", "to": "hubspot video marketing", "weight": 1}, {"from": "hubspot", "to": "video marketing hubspot", "weight": 1}, {"from": "hubspot", "to": "hubspot youtube marketing", "weight": 1}, {"from": "hubspot", "to": "hubspot academy youtube", "weight": 1}, {"from": "hubspot", "to": "hubspot marketing video", "weight": 1}, {"from": "hubspot", "to": "hubspot academy videos", "weight": 1}, {"from": "hubspot training videos", "to": "training", "weight": 1}, {"from": "training", "to": "mailchimp training videos", "weight": 1}, {"from": "training", "to": "video marketing training", "weight": 1}, {"from": "training", "to": "marketing training videos", "weight": 1}, {"from": "training", "to": "eloqua training videos", "weight": 1}, {"from": "training", "to": "network marketing videos training", "weight": 1}, {"from": "training", "to": "youtube marketing training", "weight": 1}, {"from": "training", "to": "digital marketing training videos", "weight": 1}, {"from": "training", "to": "sharpspring training videos", "weight": 1}, {"from": "media", "to": "total media agency videos", "weight": 1}, {"from": "animated", "to": "animated marketing videos", "weight": 1}, {"from": "animated", "to": "digital marketing animated video", "weight": 1}, {"from": "animated", "to": "animated video content", "weight": 1}, {"from": "viral", "to": "viral video marketing", "weight": 1}, {"from": "viral", "to": "viral video campaigns", "weight": 1}, {"from": "viral", "to": "viral video advertising", "weight": 1}, {"from": "viral", "to": "youtube viral marketing", "weight": 1}, {"from": "viral", "to": "best viral marketing videos", "weight": 1}, {"from": "viral video campaigns", "to": "campaigns", "weight": 1}, {"from": "use", "to": "use adwords to promote youtube channel", "weight": 1}, {"from": "use adwords to promote youtube channel", "to": "adwords", "weight": 1}, {"from": "adwords", "to": "google adwords youtube promotion", "weight": 1}, {"from": "adwords", "to": "google adwords to promote youtube channel", "weight": 1}, {"from": "google adwords youtube promotion", "to": "google", "weight": 1}, {"from": "facebook", "to": "facebook video marketing", "weight": 1}, {"from": "facebook", "to": "promote youtube channel on facebook", "weight": 1}, {"from": "facebook", "to": "facebook marketing youtube", "weight": 1}, {"from": "facebook", "to": "facebook ad for youtube video", "weight": 1}, {"from": "facebook", "to": "facebook ad video ratio", "weight": 1}, {"from": "facebook", "to": "facebook video ad agency", "weight": 1}, {"from": "facebook", "to": "advertising youtube channel on facebook", "weight": 1}, {"from": "facebook", "to": "facebook ad video duration", "weight": 1}, {"from": "facebook", "to": "promote your youtube channel on facebook", "weight": 1}, {"from": "facebook", "to": "promote youtube channel in facebook", "weight": 1}, {"from": "facebook", "to": "facebook video ads strategy", "weight": 1}, {"from": "facebook", "to": "facebook ad for youtube channel", "weight": 1}, {"from": "promote youtube channel on facebook", "to": "on", "weight": 1}, {"from": "local", "to": "local video marketing", "weight": 1}, {"from": "local", "to": "video marketing for small local businesses", "weight": 1}, {"from": "ways", "to": "ways to promote your youtube channel", "weight": 1}, {"from": "ways", "to": "ways to promote youtube channel", "weight": 1}, {"from": "ways", "to": "ways to promote a youtube channel", "weight": 1}, {"from": "ways", "to": "paid ways to promote youtube channel", "weight": 1}, {"from": "ways", "to": "good ways to promote your youtube channel", "weight": 1}, {"from": "ways", "to": "ways to promote your youtube video", "weight": 1}, {"from": "ways to promote a youtube channel", "to": "a", "weight": 1}, {"from": "paid ways to promote youtube channel", "to": "paid", "weight": 1}, {"from": "company", "to": "youtube video marketing company", "weight": 1}, {"from": "company", "to": "youtube promotion company", "weight": 1}, {"from": "company", "to": "vestige company video", "weight": 1}, {"from": "company", "to": "video promotion company", "weight": 1}, {"from": "company", "to": "youtube advertising company", "weight": 1}, {"from": "company", "to": "best youtube promotion company", "weight": 1}, {"from": "company", "to": "vestige company ka video", "weight": 1}, {"from": "company", "to": "youtube video promotion company", "weight": 1}, {"from": "company", "to": "youtube channel marketing company", "weight": 1}, {"from": "2021", "to": "video marketing 2021", "weight": 1}, {"from": "2021", "to": "youtube marketing 2021", "weight": 1}, {"from": "2021", "to": "video marketing in 2021", "weight": 1}, {"from": "2021", "to": "video content 2021", "weight": 1}, {"from": "2021", "to": "video marketing strategy 2021", "weight": 1}, {"from": "2021", "to": "video advertising 2021", "weight": 1}, {"from": "video marketing in 2021", "to": "in", "weight": 1}, {"from": "ted", "to": "ted talks marketing", "weight": 1}, {"from": "ted", "to": "best ted talks for marketing", "weight": 1}, {"from": "ted", "to": "ted talk digital marketing", "weight": 1}, {"from": "ted", "to": "digital marketing ted talk", "weight": 1}, {"from": "ted", "to": "ted talk sales and marketing", "weight": 1}, {"from": "ted talk digital marketing", "to": "talk", "weight": 1}, {"from": "ted talk sales and marketing", "to": "and", "weight": 1}, {"from": "links", "to": "youtube affiliate links", "weight": 1}, {"from": "links", "to": "youtube amazon affiliate links", "weight": 1}, {"from": "links", "to": "amazon affiliate links in youtube videos", "weight": 1}, {"from": "youtube amazon affiliate links", "to": "amazon", "weight": 1}, {"from": "amazon affiliate links in youtube videos", "to": "in", "weight": 1}, {"from": "ads", "to": "youtube ads agency", "weight": 1}, {"from": "ads", "to": "promote youtube channel google ads", "weight": 1}, {"from": "ads", "to": "google ads promote youtube channel", "weight": 1}, {"from": "ads", "to": "google ads to promote youtube channel", "weight": 1}, {"from": "ads", "to": "youtube direct response ads", "weight": 1}, {"from": "ads", "to": "digital marketing video ads", "weight": 1}, {"from": "ads", "to": "promote youtube channel with google ads", "weight": 1}, {"from": "ads", "to": "affiliate marketing youtube ads", "weight": 1}, {"from": "ads", "to": "youtube ads affiliate marketing", "weight": 1}, {"from": "ads", "to": "youtube retargeting ads", "weight": 1}, {"from": "ads", "to": "video marketing ads", "weight": 1}, {"from": "ads", "to": "youtube ads pay per click", "weight": 1}, {"from": "ads", "to": "youtube marketing ads", "weight": 1}, {"from": "ads", "to": "youtube ads for affiliate marketing", "weight": 1}, {"from": "ads", "to": "video ads marketing", "weight": 1}, {"from": "ads", "to": "video ads in digital marketing", "weight": 1}, {"from": "ads", "to": "promote your channel with google ads", "weight": 1}, {"from": "ads", "to": "youtube ppc ads", "weight": 1}, {"from": "ads", "to": "affiliate marketing with youtube ads", "weight": 1}, {"from": "promote youtube channel with google ads", "to": "with", "weight": 1}, {"from": "youtube ads pay per click", "to": "pay", "weight": 1}, {"from": "youtube ads pay per click", "to": "per", "weight": 1}, {"from": "youtube ads pay per click", "to": "click", "weight": 1}, {"from": "youtube ppc ads", "to": "ppc", "weight": 1}, {"from": "smm", "to": "youtube smm", "weight": 1}, {"from": "smm", "to": "youtube smm service", "weight": 1}, {"from": "smm", "to": "smm for youtube", "weight": 1}, {"from": "platform", "to": "video marketing platform", "weight": 1}, {"from": "platform", "to": "best platform to promote youtube channel", "weight": 1}, {"from": "platform", "to": "youtube marketing platform", "weight": 1}, {"from": "platform", "to": "best video marketing platform", "weight": 1}, {"from": "platform", "to": "google marketing platform dv360", "weight": 1}, {"from": "platform", "to": "youtube as a marketing platform", "weight": 1}, {"from": "platform", "to": "google marketing platform youtube", "weight": 1}, {"from": "ppc", "to": "ppc videos", "weight": 1}, {"from": "ppc", "to": "youtube ppc", "weight": 1}, {"from": "ppc", "to": "ppc youtube", "weight": 1}, {"from": "ppc", "to": "youtube ppc advertising", "weight": 1}, {"from": "ad", "to": "video ad agency", "weight": 1}, {"from": "ad", "to": "youtube ad marketing", "weight": 1}, {"from": "google", "to": "video marketing google", "weight": 1}, {"from": "google", "to": "google video marketing", "weight": 1}, {"from": "channels", "to": "best marketing youtube channels", "weight": 1}, {"from": "channels", "to": "best digital marketing youtube channels", "weight": 1}, {"from": "channels", "to": "best affiliate marketing youtube channels", "weight": 1}, {"from": "channels", "to": "best marketing channels on youtube", "weight": 1}, {"from": "channels", "to": "top marketing youtube channels", "weight": 1}, {"from": "channels", "to": "top digital marketing youtube channels", "weight": 1}, {"from": "channels", "to": "video marketing channels", "weight": 1}, {"from": "channels", "to": "best digital marketing channels on youtube", "weight": 1}, {"from": "channels", "to": "best youtube marketing channels", "weight": 1}, {"from": "paid", "to": "paid promotion of youtube channel", "weight": 1}, {"from": "paid", "to": "paid search videos", "weight": 1}, {"from": "paid", "to": "paid promotion for youtube channel", "weight": 1}, {"from": "paid", "to": "promote youtube channel paid", "weight": 1}, {"from": "paid", "to": "youtube paid marketing", "weight": 1}, {"from": "paid", "to": "paid promote youtube channel", "weight": 1}, {"from": "paid promotion of youtube channel", "to": "of", "weight": 1}, {"from": "of", "to": "marketing strategy of amazon prime video", "weight": 1}, {"from": "of", "to": "roi of video marketing", "weight": 1}, {"from": "of", "to": "marketing of youtube channel", "weight": 1}, {"from": "marketing strategy of amazon prime video", "to": "prime", "weight": 1}, {"from": "expert", "to": "video marketing expert", "weight": 1}, {"from": "expert", "to": "youtube marketing expert", "weight": 1}, {"from": "using", "to": "using video for marketing", "weight": 1}, {"from": "using", "to": "using youtube for marketing", "weight": 1}, {"from": "in", "to": "video marketing agency in bronx", "weight": 1}, {"from": "in", "to": "video marketing in digital marketing", "weight": 1}, {"from": "in", "to": "affiliate marketing in youtube", "weight": 1}, {"from": "in", "to": "video marketing in hindi", "weight": 1}, {"from": "in", "to": "digital marketing in youtube", "weight": 1}, {"from": "in", "to": "top trending youtube videos in usa", "weight": 1}, {"from": "in", "to": "youtube marketing in hindi", "weight": 1}, {"from": "in", "to": "video content in marketing", "weight": 1}, {"from": "top trending youtube videos in usa", "to": "trending", "weight": 1}, {"from": "top trending youtube videos in usa", "to": "usa", "weight": 1}, {"from": "campaign", "to": "video marketing campaign", "weight": 1}, {"from": "campaign", "to": "youtube marketing campaign", "weight": 1}, {"from": "campaign", "to": "amazon prime advertising campaign", "weight": 1}, {"from": "campaign", "to": "video campaign strategy", "weight": 1}, {"from": "campaign", "to": "video advertising campaign", "weight": 1}, {"from": "campaign", "to": "video marketing campaign strategy", "weight": 1}, {"from": "campaign", "to": "adobe campaign youtube", "weight": 1}, {"from": "campaign", "to": "youtube brand awareness campaign", "weight": 1}, {"from": "youtube brand awareness campaign", "to": "awareness", "weight": 1}, {"from": "promo", "to": "promo marketing videos", "weight": 1}, {"from": "promo", "to": "digital marketing promo video", "weight": 1}, {"from": "on", "to": "digital marketing on youtube", "weight": 1}, {"from": "on", "to": "promote youtube video on youtube", "weight": 1}, {"from": "on", "to": "promote youtube channel on youtube", "weight": 1}, {"from": "on", "to": "amazon affiliate marketing on youtube", "weight": 1}, {"from": "on", "to": "videos on marketing", "weight": 1}, {"from": "on", "to": "advertising opportunities on youtube", "weight": 1}, {"from": "on", "to": "advertising your channel on youtube", "weight": 1}, {"from": "on", "to": "content marketing on youtube", "weight": 1}, {"from": "on", "to": "advertising your video on youtube", "weight": 1}, {"from": "on", "to": "video on demand marketing", "weight": 1}, {"from": "on", "to": "animoto branding on video", "weight": 1}, {"from": "animoto branding on video", "to": "animoto", "weight": 1}, {"from": "search", "to": "video search marketing", "weight": 1}, {"from": "amazon", "to": "amazon prime video marketing strategy", "weight": 1}, {"from": "amazon", "to": "amazon prime video marketing", "weight": 1}, {"from": "amazon", "to": "amazon affiliate marketing youtube", "weight": 1}, {"from": "amazon", "to": "amazon prime video marketing campaigns", "weight": 1}, {"from": "amazon", "to": "amazon affiliate video", "weight": 1}, {"from": "amazon", "to": "youtube amazon affiliate marketing", "weight": 1}, {"from": "amazon", "to": "amazon video marketing", "weight": 1}, {"from": "amazon", "to": "amazon affiliate youtube videos", "weight": 1}, {"from": "prime", "to": "prime video marketing", "weight": 1}, {"from": "prime", "to": "prime video marketing strategy", "weight": 1}, {"from": "creating", "to": "creating a marketing video", "weight": 1}, {"from": "creating", "to": "creating a video marketing strategy", "weight": 1}, {"from": "personalized", "to": "personalized video marketing", "weight": 1}, {"from": "klaviyo", "to": "klaviyo youtube", "weight": 1}, {"from": "klaviyo", "to": "klaviyo video", "weight": 1}, {"from": "klaviyo", "to": "youtube klaviyo", "weight": 1}, {"from": "marketo", "to": "marketo youtube", "weight": 1}, {"from": "marketo", "to": "marketo video", "weight": 1}, {"from": "marketo", "to": "marketo demo video", "weight": 1}, {"from": "pay", "to": "pay to promote youtube channel", "weight": 1}, {"from": "pay", "to": "youtube pay per click", "weight": 1}, {"from": "pay", "to": "youtube pay per click advertising", "weight": 1}, {"from": "pay", "to": "pay to promote your youtube video", "weight": 1}, {"from": "proposal", "to": "youtube marketing proposal", "weight": 1}, {"from": "proposal", "to": "video marketing proposal", "weight": 1}, {"from": "proposal", "to": "youtube channel promotion proposal", "weight": 1}, {"from": "dental", "to": "dental video marketing", "weight": 1}, {"from": "dental", "to": "video marketing dental", "weight": 1}, {"from": "dental", "to": "best dental marketing videos", "weight": 1}, {"from": "dental", "to": "dental office marketing videos", "weight": 1}, {"from": "animoto", "to": "animoto marketing", "weight": 1}, {"from": "animoto", "to": "video marketing animoto", "weight": 1}, {"from": "animoto", "to": "animoto video marketing", "weight": 1}, {"from": "animoto", "to": "animoto marketing video", "weight": 1}, {"from": "consultant", "to": "video marketing consultant", "weight": 1}, {"from": "consultant", "to": "youtube marketing consultant", "weight": 1}, {"from": "campaigns", "to": "best video marketing campaigns", "weight": 1}, {"from": "campaigns", "to": "best video marketing campaigns 2019", "weight": 1}, {"from": "campaigns", "to": "best youtube advertising campaigns", "weight": 1}, {"from": "campaigns", "to": "best youtube marketing campaigns", "weight": 1}, {"from": "best video marketing campaigns 2019", "to": "2019", "weight": 1}, {"from": "vmb", "to": "vmb video marketing", "weight": 1}, {"from": "pardot", "to": "wistia pardot", "weight": 1}, {"from": "pardot", "to": "pardot video", "weight": 1}, {"from": "pardot", "to": "pardot demo video", "weight": 1}, {"from": "pardot", "to": "pardot wistia", "weight": 1}, {"from": "near", "to": "video marketing near me", "weight": 1}, {"from": "near", "to": "video marketing agency near me", "weight": 1}, {"from": "near", "to": "youtube marketing agency near me", "weight": 1}, {"from": "explainer", "to": "marketing explainer video", "weight": 1}, {"from": "explainer", "to": "digital marketing explainer video", "weight": 1}, {"from": "brand", "to": "brand awareness video", "weight": 1}, {"from": "brand", "to": "youtube brand awareness", "weight": 1}, {"from": "brand", "to": "brand marketing videos", "weight": 1}, {"from": "brand", "to": "brand advertising video", "weight": 1}, {"from": "mautic", "to": "mautic youtube", "weight": 1}, {"from": "mautic", "to": "youtube mautic", "weight": 1}, {"from": "mautic", "to": "mautic video", "weight": 1}, {"from": "promotional", "to": "promotional video content", "weight": 1}, {"from": "promotional", "to": "digital marketing agency promotional video", "weight": 1}, {"from": "promotional", "to": "promotional marketing videos", "weight": 1}, {"from": "places", "to": "places to promote youtube channel", "weight": 1}, {"from": "places", "to": "places to promote your youtube channel", "weight": 1}, {"from": "places", "to": "best places to promote your youtube channel", "weight": 1}, {"from": "places", "to": "best places to promote youtube channel", "weight": 1}, {"from": "analytics", "to": "video marketing analytics", "weight": 1}, {"from": "analytics", "to": "youtube marketing analytics", "weight": 1}, {"from": "top", "to": "top marketing videos", "weight": 1}, {"from": "fiverr", "to": "youtube promotion fiverr", "weight": 1}, {"from": "fiverr", "to": "video marketing fiverr", "weight": 1}, {"from": "fiverr", "to": "fiverr promote youtube video", "weight": 1}, {"from": "fiverr", "to": "fiverr video marketing", "weight": 1}, {"from": "inbound", "to": "inbound marketing youtube", "weight": 1}, {"from": "inbound", "to": "inbound marketing video", "weight": 1}, {"from": "inbound", "to": "inbound video", "weight": 1}, {"from": "inbound", "to": "youtube inbound marketing", "weight": 1}, {"from": "creative", "to": "video creative agency", "weight": 1}, {"from": "creative", "to": "creative marketing videos", "weight": 1}, {"from": "sites", "to": "sites to promote youtube channel", "weight": 1}, {"from": "sites", "to": "video marketing sites", "weight": 1}, {"from": "sites", "to": "best sites to promote youtube channel", "weight": 1}, {"from": "and", "to": "youtube and marketing", "weight": 1}, {"from": "and", "to": "sales and marketing videos", "weight": 1}, {"from": "and", "to": "video and marketing", "weight": 1}, {"from": "and", "to": "youtube and affiliate marketing", "weight": 1}, {"from": "practices", "to": "video marketing best practices", "weight": 1}, {"from": "practices", "to": "youtube marketing best practices", "weight": 1}, {"from": "2019", "to": "youtube marketing strategy 2019", "weight": 1}, {"from": "2019", "to": "best marketing videos 2019", "weight": 1}, {"from": "beginners", "to": "youtube affiliate marketing for beginners", "weight": 1}, {"from": "beginners", "to": "affiliate marketing for beginners youtube", "weight": 1}, {"from": "beginners", "to": "video marketing for beginners", "weight": 1}, {"from": "sales", "to": "sales promotion video", "weight": 1}, {"from": "pricing", "to": "video marketing pricing", "weight": 1}, {"from": "pricing", "to": "vyral marketing pricing", "weight": 1}, {"from": "pricing", "to": "youtube pricing strategies", "weight": 1}, {"from": "trending", "to": "trending youtube usa today", "weight": 1}, {"from": "trending", "to": "youtube trending videos usa", "weight": 1}]);
  108. // adding nodes and edges to the graph
  109. data = {nodes: nodes, edges: edges};
  110. var options = {
  111. "configure": {
  112. "enabled": false
  113. },
  114. "edges": {
  115. "color": {
  116. "inherit": true
  117. },
  118. "smooth": {
  119. "enabled": false,
  120. "type": "continuous"
  121. }
  122. },
  123. "interaction": {
  124. "dragNodes": true,
  125. "hideEdgesOnDrag": false,
  126. "hideNodesOnDrag": false
  127. },
  128. "physics": {
  129. "enabled": true,
  130. "stabilization": {
  131. "enabled": true,
  132. "fit": true,
  133. "iterations": 1000,
  134. "onlyDynamicEdges": false,
  135. "updateInterval": 50
  136. }
  137. }
  138. };
  139. network = new vis.Network(container, data, options);
  140. network.on("stabilizationProgress", function(params) {
  141. document.getElementById('loadingBar').removeAttribute("style");
  142. var maxWidth = 496;
  143. var minWidth = 20;
  144. var widthFactor = params.iterations/params.total;
  145. var width = Math.max(minWidth,maxWidth * widthFactor);
  146. document.getElementById('bar').style.width = width + 'px';
  147. document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
  148. });
  149. network.once("stabilizationIterationsDone", function() {
  150. document.getElementById('text').innerHTML = '100%';
  151. document.getElementById('bar').style.width = '496px';
  152. document.getElementById('loadingBar').style.opacity = 0;
  153. // really clean the dom element
  154. setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
  155. });
  156. return network;
  157. }
  158. drawGraph();
  159. </script>
  160. </body>
  161. </html>