onebox 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +476 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +3 -0
  8. data/Gemfile +4 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +92 -0
  11. data/Rakefile +22 -0
  12. data/lib/onebox.rb +33 -0
  13. data/lib/onebox/engine.rb +93 -0
  14. data/lib/onebox/engine/amazon_onebox.rb +25 -0
  15. data/lib/onebox/engine/bliptv_onebox.rb +26 -0
  16. data/lib/onebox/engine/clikthrough_onebox.rb +23 -0
  17. data/lib/onebox/engine/college_humor_onebox.rb +26 -0
  18. data/lib/onebox/engine/dailymotion_onebox.rb +26 -0
  19. data/lib/onebox/engine/dotsub_onebox.rb +25 -0
  20. data/lib/onebox/engine/example_onebox.rb +25 -0
  21. data/lib/onebox/engine/flickr_onebox.rb +25 -0
  22. data/lib/onebox/engine/funny_or_die_onebox.rb +26 -0
  23. data/lib/onebox/engine/html.rb +11 -0
  24. data/lib/onebox/engine/hulu_onebox.rb +26 -0
  25. data/lib/onebox/engine/nfb_onebox.rb +25 -0
  26. data/lib/onebox/engine/open_graph.rb +11 -0
  27. data/lib/onebox/engine/qik_onebox.rb +23 -0
  28. data/lib/onebox/engine/revision3_onebox.rb +26 -0
  29. data/lib/onebox/engine/slideshare_onebox.rb +25 -0
  30. data/lib/onebox/engine/sound_cloud_onebox.rb +25 -0
  31. data/lib/onebox/engine/stack_exchange_onebox.rb +23 -0
  32. data/lib/onebox/engine/ted_onebox.rb +25 -0
  33. data/lib/onebox/engine/viddler_onebox.rb +26 -0
  34. data/lib/onebox/engine/vimeo_onebox.rb +26 -0
  35. data/lib/onebox/engine/wikipedia_onebox.rb +24 -0
  36. data/lib/onebox/engine/yfrog_onebox.rb +25 -0
  37. data/lib/onebox/matcher.rb +13 -0
  38. data/lib/onebox/preview.rb +31 -0
  39. data/lib/onebox/version.rb +3 -0
  40. data/onebox.gemspec +36 -0
  41. data/spec/fixtures/amazon.response +3098 -0
  42. data/spec/fixtures/android.response +138 -0
  43. data/spec/fixtures/apple.response +391 -0
  44. data/spec/fixtures/bliptv.response +724 -0
  45. data/spec/fixtures/clickthrough.response +1472 -0
  46. data/spec/fixtures/clikthrough.response +1472 -0
  47. data/spec/fixtures/collegehumor.response +1272 -0
  48. data/spec/fixtures/dailymotion.response +575 -0
  49. data/spec/fixtures/dotsub.response +1257 -0
  50. data/spec/fixtures/example.response +50 -0
  51. data/spec/fixtures/flickr.response +1292 -0
  52. data/spec/fixtures/funnyordie.response +2010 -0
  53. data/spec/fixtures/gist.response +282 -0
  54. data/spec/fixtures/github_blob.response +706 -0
  55. data/spec/fixtures/github_commit.response +881 -0
  56. data/spec/fixtures/github_pullrequest.response +1619 -0
  57. data/spec/fixtures/hulu.response +339 -0
  58. data/spec/fixtures/image.response +0 -0
  59. data/spec/fixtures/imgur.response +892 -0
  60. data/spec/fixtures/kinomap.response +299 -0
  61. data/spec/fixtures/nfb.response +810 -0
  62. data/spec/fixtures/opengraph.response +27 -0
  63. data/spec/fixtures/qik.response +371 -0
  64. data/spec/fixtures/revision3.response +985 -0
  65. data/spec/fixtures/rottentomatoes_fresh.response +3275 -0
  66. data/spec/fixtures/rottentomatoes_incomplete.response +2313 -0
  67. data/spec/fixtures/rottentomatoes_rotten.response +3549 -0
  68. data/spec/fixtures/slideshare.response +1745 -0
  69. data/spec/fixtures/soundcloud.response +1409 -0
  70. data/spec/fixtures/stackexchange.response +1889 -0
  71. data/spec/fixtures/ted.response +1341 -0
  72. data/spec/fixtures/twitter.response +1712 -0
  73. data/spec/fixtures/viddler.response +442 -0
  74. data/spec/fixtures/video.response +0 -0
  75. data/spec/fixtures/vimeo.response +571 -0
  76. data/spec/fixtures/wikipedia.response +1236 -0
  77. data/spec/fixtures/wikipedia_redirected.response +899 -0
  78. data/spec/fixtures/yfrog.response +464 -0
  79. data/spec/lib/onebox/engine/amazon_spec.rb +34 -0
  80. data/spec/lib/onebox/engine/bliptv_spec.rb +34 -0
  81. data/spec/lib/onebox/engine/clikthrough_spec.rb +26 -0
  82. data/spec/lib/onebox/engine/college_humor_spec.rb +34 -0
  83. data/spec/lib/onebox/engine/dailymotion_spec.rb +36 -0
  84. data/spec/lib/onebox/engine/dotsub_spec.rb +36 -0
  85. data/spec/lib/onebox/engine/example_spec.rb +18 -0
  86. data/spec/lib/onebox/engine/flickr_spec.rb +30 -0
  87. data/spec/lib/onebox/engine/funny_or_die_spec.rb +34 -0
  88. data/spec/lib/onebox/engine/hulu_spec.rb +34 -0
  89. data/spec/lib/onebox/engine/nfb_spec.rb +35 -0
  90. data/spec/lib/onebox/engine/qik_spec.rb +35 -0
  91. data/spec/lib/onebox/engine/revision3_spec.rb +36 -0
  92. data/spec/lib/onebox/engine/slideshare_spec.rb +30 -0
  93. data/spec/lib/onebox/engine/sound_cloud_spec.rb +36 -0
  94. data/spec/lib/onebox/engine/stack_exchange_spec.rb +27 -0
  95. data/spec/lib/onebox/engine/ted_spec.rb +30 -0
  96. data/spec/lib/onebox/engine/viddler_spec.rb +36 -0
  97. data/spec/lib/onebox/engine/vimeo_spec.rb +34 -0
  98. data/spec/lib/onebox/engine/wikipedia_spec.rb +30 -0
  99. data/spec/lib/onebox/engine/yfrog_spec.rb +30 -0
  100. data/spec/lib/onebox/engine_spec.rb +78 -0
  101. data/spec/lib/onebox/matcher_spec.rb +20 -0
  102. data/spec/lib/onebox/preview_spec.rb +21 -0
  103. data/spec/lib/onebox_spec.rb +49 -0
  104. data/spec/spec_helper.rb +26 -0
  105. data/spec/support/html_spec_helper.rb +17 -0
  106. data/templates/amazon.handlebars +9 -0
  107. data/templates/bliptv.handlebars +10 -0
  108. data/templates/clickthrough.handlebars +8 -0
  109. data/templates/clikthrough.handlebars +8 -0
  110. data/templates/collegehumor.handlebars +9 -0
  111. data/templates/dailymotion.handlebars +9 -0
  112. data/templates/dotsub.handlebars +9 -0
  113. data/templates/flickr.handlebars +8 -0
  114. data/templates/funnyordie.handlebars +9 -0
  115. data/templates/hulu.handlebars +9 -0
  116. data/templates/nfb.handlebars +8 -0
  117. data/templates/qik.handlebars +7 -0
  118. data/templates/revision3.handlebars +9 -0
  119. data/templates/slideshare.handlebars +8 -0
  120. data/templates/soundcloud.handlebars +9 -0
  121. data/templates/stackexchange.handlebars +7 -0
  122. data/templates/ted.handlebars +8 -0
  123. data/templates/viddler.handlebars +9 -0
  124. data/templates/vimeo.handlebars +9 -0
  125. data/templates/wikipedia.handlebars +8 -0
  126. data/templates/yfrog.handlebars +8 -0
  127. metadata +447 -0
@@ -0,0 +1,138 @@
1
+
2
+ <!doctype html>
3
+ <html><head><meta http-equiv="X-UA-Compatible" content="IE=edge"><style type="text/css">#gb{font:13px/27px Arial,sans-serif;height:102px}#gbz,#gbg{position:absolute;white-space:nowrap;top:0;height:30px;z-index:1000}#gbz{left:0;padding-left:4px}#gbg{right:0;padding-right:5px}#gbs{background:transparent;position:absolute;top:-999px;visibility:hidden;z-index:998;right:0}.gbto #gbs{background:#fff}#gbx3,#gbx4{background-color:#2d2d2d;background-image:none;_background-image:none;background-position:0 -138px;background-repeat:repeat-x;border-bottom:1px solid #000;font-size:24px;height:29px;_height:30px;opacity:1;filter:alpha(opacity=100);position:absolute;top:0;width:100%;z-index:990}#gbx3{left:0}#gbx4{right:0}#gbb{position:relative}#gbbw{left:0;position:absolute;top:102px;width:100%}.gbtcb{position:absolute;visibility:hidden}#gbz .gbtcb{right:0}#gbg .gbtcb{left:0}.gbxx{display:none !important}.gbxo{opacity:0 !important;filter:alpha(opacity=0) !important}.gbm{position:absolute;z-index:999;top:-999px;visibility:hidden;text-align:left;border:1px solid #bebebe;background:#fff;-moz-box-shadow:-1px 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:0 2px 4px rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2)}.gbrtl .gbm{-moz-box-shadow:1px 1px 1px rgba(0,0,0,.2)}.gbto .gbm,.gbto #gbs{top:51px;visibility:visible}#gbz .gbm{left:0}#gbg .gbm{right:0}.gbxms{background-color:#ccc;display:block;position:absolute;z-index:1;top:-1px;left:-2px;right:-2px;bottom:-2px;opacity:.4;-moz-border-radius:3px;filter:progid:DXImageTransform.Microsoft.Blur(pixelradius=5);*opacity:1;*top:-2px;*left:-5px;*right:5px;*bottom:4px;-ms-filter:"progid:DXImageTransform.Microsoft.Blur(pixelradius=5)";opacity:1\0/;top:-4px\0/;left:-6px\0/;right:5px\0/;bottom:4px\0/}.gbma{position:relative;top:-1px;border-style:solid dashed dashed;border-color:transparent;border-top-color:#c0c0c0;display:-moz-inline-box;display:inline-block;font-size:0;height:0;line-height:0;width:0;border-width:3px 3px 0;padding-top:1px;left:4px}#gbztms1,#gbi4m1,#gbi4s,#gbi4t{zoom:1}.gbtc,.gbmc,.gbmcc{display:block;list-style:none;margin:0;padding:0}.gbmc{background:#fff;padding:10px 0;position:relative;z-index:2;zoom:1}.gbt{position:relative;display:-moz-inline-box;display:inline-block;line-height:27px;padding:0;vertical-align:top}.gbt{*display:inline}.gbto{box-shadow:0 2px 4px rgba(0,0,0,.2);-moz-box-shadow:0 2px 4px rgba(0,0,0,.2);-webkit-box-shadow:0 2px 4px rgba(0,0,0,.2)}.gbzt,.gbgt{cursor:pointer;display:block;text-decoration:none !important}span#gbg6,span#gbg4{cursor:default}.gbts{border-left:1px solid transparent;border-right:1px solid transparent;display:block;*display:inline-block;padding:0 5px;position:relative;z-index:1000}.gbts{*display:inline}.gbzt .gbts{display:inline;zoom:1}.gbto .gbts{background:#fff;border-color:#bebebe;color:#36c;padding-bottom:1px;padding-top:2px}.gbz0l .gbts{color:#fff;font-weight:bold}.gbtsa{padding-right:9px}#gbz .gbzt,#gbz .gbgt,#gbg .gbgt{color:#ccc!important}.gbtb2{display:block;border-top:2px solid transparent}.gbto .gbzt .gbtb2,.gbto .gbgt .gbtb2{border-top-width:0}.gbtb .gbts{background:url(//ssl.gstatic.com/gb/images/h_bedf916a.png);_background:url(//ssl.gstatic.com/gb/images/h8_3dd87cd8.png);background-position:-27px -22px;border:0;font-size:0;padding:29px 0 0;*padding:27px 0 0;width:1px}.gbzt:hover,.gbzt:focus,.gbgt-hvr,.gbgt:focus{background-color:transparent;background-image:none;_background-image:none;background-position:0 -102px;background-repeat:repeat-x;outline:none;text-decoration:none !important}.gbpdjs .gbto .gbm{min-width:99%}.gbz0l .gbtb2{border-top-color:transparent!important}#gbi4s,#gbi4s1{font-weight:bold}#gbg6.gbgt-hvr,#gbg6.gbgt:focus{background-color:transparent;background-image:none}.gbg4a{font-size:0;line-height:0}.gbg4a .gbts{padding:27px 5px 0;*padding:25px 5px 0}.gbto .gbg4a .gbts{padding:29px 5px 1px;*padding:27px 5px 1px}#gbi4i,#gbi4id{left:5px;border:0;height:24px;position:absolute;top:1px;width:24px}.gbto #gbi4i,.gbto #gbi4id{top:3px}.gbi4p{display:block;width:24px}#gbi4id{background-position:-44px -101px}#gbmpid{background-position:0 0}#gbmpi,#gbmpid{border:none;display:inline-block;height:48px;width:48px}#gbmpiw{display:inline-block;line-height:9px;padding-left:20px;margin-top:10px;position:relative}#gbmpi,#gbmpid,#gbmpiw{*display:inline}#gbg5{font-size:0}#gbgs5{padding:5px !important}.gbto #gbgs5{padding:7px 5px 6px !important}#gbi5{background:url(//ssl.gstatic.com/gb/images/h_bedf916a.png);_background:url(//ssl.gstatic.com/gb/images/h8_3dd87cd8.png);background-position:0 0;display:block;font-size:0;height:17px;width:16px}.gbto #gbi5{background-position:-6px -22px}.gbn .gbmt,.gbn .gbmt:visited,.gbnd .gbmt,.gbnd .gbmt:visited{color:#dd8e27 !important}.gbf .gbmt,.gbf .gbmt:visited{color:#900 !important}.gbmt,.gbml1,.gbmlb,.gbmt:visited,.gbml1:visited,.gbmlb:visited{color:#36c !important;text-decoration:none !important}.gbmt,.gbmt:visited{display:block}.gbml1,.gbmlb,.gbml1:visited,.gbmlb:visited{display:inline-block;margin:0 10px}.gbml1,.gbmlb,.gbml1:visited,.gbmlb:visited{*display:inline}.gbml1,.gbml1:visited{padding:0 10px}.gbml1-hvr,.gbml1:focus{outline:none;text-decoration:underline !important}#gbpm .gbml1{display:inline;margin:0;padding:0;white-space:nowrap}.gbmlb,.gbmlb:visited{line-height:27px}.gbmlb-hvr,.gbmlb:focus{outline:none;text-decoration:underline !important}.gbmlbw{color:#ccc;margin:0 10px}.gbmt{padding:0 20px}.gbmt:hover,.gbmt:focus{background:#eee;cursor:pointer;outline:0 solid black;text-decoration:none !important}.gbm0l,.gbm0l:visited{color:#000 !important;font-weight:bold}.gbmh{border-top:1px solid #bebebe;font-size:0;margin:10px 0}#gbd4 .gbmc{background:#f5f5f5;padding-top:0}#gbd4 .gbsbic::-webkit-scrollbar-track:vertical{background-color:#f5f5f5;margin-top:2px}#gbmpdv{background:#fff;border-bottom:1px solid #bebebe;-moz-box-shadow:0 2px 4px rgba(0,0,0,.12);-o-box-shadow:0 2px 4px rgba(0,0,0,.12);-webkit-box-shadow:0 2px 4px rgba(0,0,0,.12);box-shadow:0 2px 4px rgba(0,0,0,.12);position:relative;z-index:1}#gbd4 .gbmh{margin:0}.gbmtc{padding:0;margin:0;line-height:27px}.GBMCC:last-child:after,#GBMPAL:last-child:after{content:'\0A\0A';white-space:pre;position:absolute}#gbmps{*zoom:1}#gbd4 .gbpc,#gbmpas .gbmt{line-height:17px}#gbd4 .gbpgs .gbmtc{line-height:27px}#gbd4 .gbmtc{border-bottom:1px solid #bebebe}#gbd4 .gbpc{display:inline-block;margin:16px 0 10px;padding-right:50px;vertical-align:top}#gbd4 .gbpc{*display:inline}.gbpc .gbps,.gbpc .gbps2{display:block;margin:0 20px}#gbmplp.gbps{margin:0 10px}.gbpc .gbps{color:#000;font-weight:bold}.gbpc .gbpd{margin-bottom:5px}.gbpd .gbmt,.gbpd .gbps{color:#666 !important}.gbpd .gbmt{opacity:.4;filter:alpha(opacity=40)}.gbps2{color:#666;display:block}.gbp0{display:none}.gbp0 .gbps2{font-weight:bold}#gbd4 .gbmcc{margin-top:5px}.gbpmc{background:#fef9db}.gbpmc .gbpmtc{padding:10px 20px}#gbpm{border:0;*border-collapse:collapse;border-spacing:0;margin:0;white-space:normal}#gbpm .gbpmtc{border-top:none;color:#000 !important;font:11px Arial,sans-serif}#gbpms{*white-space:nowrap}.gbpms2{font-weight:bold;white-space:nowrap}#gbmpal{*border-collapse:collapse;border-spacing:0;border:0;margin:0;white-space:nowrap;width:100%}.gbmpala,.gbmpalb{font:13px Arial,sans-serif;line-height:27px;padding:10px 20px 0;white-space:nowrap}.gbmpala{padding-left:0;text-align:left}.gbmpalb{padding-right:0;text-align:right}#gbmpasb .gbps{color:#000}#gbmpal .gbqfbb{margin:0 20px}.gbp0 .gbps{*display:inline}a.gbiba{margin:8px 20px 10px}.gbmpiaw{display:inline-block;padding-right:10px;margin-bottom:6px;margin-top:10px}.gbxv{visibility:hidden}.gbmpiaa{display:block;margin-top:10px}.gbmpia{border:none;display:block;height:48px;width:48px}.gbmpnw{display:inline-block;height:auto;margin:16px 0 18px;vertical-align:top}.gbqfb,.gbqfba,.gbqfbb{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;cursor:default !important;display:inline-block;font-weight:bold;height:29px;line-height:29px;min-width:54px;*min-width:70px;padding:0 8px;text-align:center;text-decoration:none !important;-moz-user-select:none;-webkit-user-select:none}.gbqfb:focus,.gbqfba:focus,.gbqfbb:focus{border:1px solid #4d90fe;-moz-box-shadow:inset 0 0 0 1px rgba(255, 255, 255, 0.5);-webkit-box-shadow:inset 0 0 0 1px rgba(255, 255, 255, 0.5);box-shadow:inset 0 0 0 1px rgba(255, 255, 255, 0.5);outline:none}.gbqfb-hvr:focus,.gbqfba-hvr:focus,.gbqfbb-hvr:focus{-webkit-box-shadow:inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1)}.gbqfb-no-focus:focus{border:1px solid #3079ed;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.gbqfb-hvr,.gbqfba-hvr,.gbqfbb-hvr{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1)}.gbqfb::-moz-focus-inner,.gbqfba::-moz-focus-inner,.gbqfbb::-moz-focus-inner{border:0}.gbqfba,.gbqfbb{border:1px solid #dcdcdc;border-color:rgba(0,0,0,.1);color:#444 !important;font-size:11px}.gbqfb{background-color:#4d90fe;background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:-moz-linear-gradient(top,#4d90fe,#4787ed);background-image:-ms-linear-gradient(top,#4d90fe,#4787ed);background-image:-o-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#4d90fe',EndColorStr='#4787ed');border:1px solid #3079ed;color:#fff!important;margin:0 0}.gbqfb-hvr{border-color:#2f5bb7}.gbqfb-hvr:focus{border-color:#2f5bb7}.gbqfb-hvr,.gbqfb-hvr:focus{background-color:#357ae8;background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:-moz-linear-gradient(top,#4d90fe,#357ae8);background-image:-ms-linear-gradient(top,#4d90fe,#357ae8);background-image:-o-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8)}.gbqfb:active{background-color:inherit;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.3);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.3);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.3)}.gbqfba{background-color:#f5f5f5;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-ms-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:-o-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f5f5f5',EndColorStr='#f1f1f1')}.gbqfba-hvr,.gbqfba-hvr:active{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-ms-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',EndColorStr='#f1f1f1')}.gbqfbb{background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#fbfbfb));background-image:-webkit-linear-gradient(top,#fff,#fbfbfb);background-image:-moz-linear-gradient(top,#fff,#fbfbfb);background-image:-ms-linear-gradient(top,#fff,#fbfbfb);background-image:-o-linear-gradient(top,#fff,#fbfbfb);background-image:linear-gradient(top,#fff,#fbfbfb);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#fbfbfb')}.gbqfbb-hvr,.gbqfbb-hvr:active{background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:-webkit-linear-gradient(top,#fff,#f8f8f8);background-image:-moz-linear-gradient(top,#fff,#f8f8f8);background-image:-ms-linear-gradient(top,#fff,#f8f8f8);background-image:-o-linear-gradient(top,#fff,#f8f8f8);background-image:linear-gradient(top,#fff,#f8f8f8);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#f8f8f8')}.gbqfba-hvr,.gbqfba-hvr:active,.gbqfbb-hvr,.gbqfbb-hvr:active{border-color:#c6c6c6;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1);color:#222 !important}.gbqfba:active,.gbqfbb:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}#gbql,#gbgsi,#gbgsa,.gbqfi,.gbmai,.gbp0i,.gbmppci,.gbqfh #gbql{background-image:url('//ssl.gstatic.com/gb/images/k1_a31af7ac.png');background-size:294px 45px}@media screen and (min-resolution:1.25dppx),screen and (-o-min-device-pixel-ratio:5/4),screen and (-webkit-min-device-pixel-ratio:1.25),screen and (min-device-pixel-ratio:1.25){#gbql,#gbgsi,#gbgsa,.gbqfi,.gbmai,.gbp0i,.gbmppci,.gbqfh #gbql{background-image:url('//ssl.gstatic.com/gb/images/k2_aca6bcc6.png')}}#gbd1,#gbd1 .gbmc{width:440px;height:190px}#gbd3,#gbd3 .gbmc{width:440px;height:8em}#gb{height:102px;-moz-user-select:-moz-none;-o-user-select:none;-webkit-user-select:none;user-select:none}#gbbw{top:102px;min-width:700px;}#gb.gbet #gbbw,#gb.gbeti #gbbw{min-width:836px;}#gb.gbeu #gbbw,#gb.gbeui #gbbw{min-width:780px;}.gbxx{display:none !important}#gbq,#gbu{position:absolute;top:0px;white-space:nowrap}#gbu{height:71px}#gbu,#gbq1,#gbq3{z-index:987}#gbq{left:0;_overflow:hidden;width:100%;z-index:986}#gbq2{top:0px;z-index:986}#gbu{right:0;height:30px;margin-right:28px;padding-bottom:0;padding-top:20px}#gbx1,#gbx2{background:#f1f1f1;background:-webkit-gradient(radial,100 36,0,100 -40,120,from(#fafafa),to(#f1f1f1)),#f1f1f1;border-bottom:1px solid #666;border-color:#e5e5e5;height:71px;position:absolute;top:0px;width:100%;z-index:985;min-width:700px;}#gb.gbet #gbx1,#gb.gbeti #gbx1{min-width:836px;}#gb.gbeu #gbx1,#gb.gbeui #gbx1{min-width:780px;}#gbx1.gbxngh,#gbx2.gbxngh{background:-webkit-gradient(radial,100 36,0,100 -40,120,from(#ffffff),to(#f1f1f1)),#f1f1f1}#gbx1{left:0}#gbx2{right:0}#gbq1{left:0;margin:0;padding:0;margin-left:44px;position:absolute}.gbes#gbq1{margin-left:0}#gbq3{left:220px;padding-bottom:0;padding-top:20px;position:absolute;top:0px}#gbql{background-repeat:no-repeat;background-position:-178px 0;display:block;height:45px;width:116px}.gbqla{display:inline-block;outline:none;position:relative}.gbqla2{outline:none}.gbqlca{cursor:pointer;cursor:hand;height:100%;position:absolute;top:0;width:100%;left:0}#gbqlt{border:0;border-collapse:collapse;border-spacing:0;margin:0}#gbqlw{display:table-cell;height:71px;padding:0;padding-right:16px;position:relative;vertical-align:middle}#gbqld{border:none;display:block}.gbqldr{max-height:71px;max-width:160px}#gog{height:99px}.gbh{border-top:none}.gbpl,.gbpr,#gbpx1,#gbpx2{border-top:none !important;top:102px !important}.gbpl,.gbpr{margin-top:4px}.gbi5t{color:#666;display:block;margin:1px 15px;text-shadow:none}#gbq2{display:block;margin-left:220px;padding-bottom:0;padding-top:20px}#gbqf{display:block;margin:0;max-width:512px;min-width:200px;white-space:nowrap}.gbexxl#gbq2 #gbqf,.gbexxli#gb #gbqf,.gbexl#gbq2 #gbqf,.gbexli#gb #gbqf{max-width:512px}.gbet#gbq2 #gbqf,.gbeti#gb #gbqf{max-width:434px;min-width:434px}.gbeu#gbqf,.gbeui#gb #gbqf{max-width:319px;min-width:319px}.gbqff{border:none;display:inline-block;margin:0;padding:0;vertical-align:top;width:100%}.gbqff{*display:inline}.gbqfqw,#gbqfb,.gbqfwa{vertical-align:top}#gbqfaa,#gbqfab,#gbqfqwb{position:absolute}#gbqfaa{left:0}#gbqfab{right:0}.gbqfqwb,.gbqfqwc{right:0;left:0}.gbqfqwb{padding:0 8px}#gbqfbw{margin:0 15px;display:inline-block;vertical-align:top}#gbqfbw{*display:inline}.gbqfi{background-position:-33px 0;display:inline-block;height:13px;margin:7px 19px;width:14px}.gbqfi{*display:inline}.gbqfqw{background:#fff;border:1px solid #d9d9d9;border-top:1px solid #c0c0c0;-moz-border-radius:1px;-webkit-border-radius:1px;border-radius:1px;height:27px;}#gbqfqw{position:relative}.gbqfqw-hvr{border:1px solid #b9b9b9;border-top:1px solid #a0a0a0;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.gbqfwa{display:inline-block;width:100%}.gbqfwa{*display:inline}.gbqfwb{width:40%}.gbqfwc{width:60%}.gbqfwb .gbqfqw{margin-left:10px}.gbqfqw:active,.gbqfqwf{border:1px solid #4d90fe;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3);outline:none}#gbqfq,#gbqfqb,#gbqfqc{background:transparent;border:none;height:19px;margin-top:4px;padding:0;vertical-align:top;width:100%}#gbqfq:focus,#gbqfqb:focus,#gbqfqc:focus{outline:none}.gbqfif,.gbqfsf{font:16px arial,sans-serif}#gbqfbwa{display:none;text-align:center;height:0}#gbqfbwa .gbqfba{margin:16px 8px}#gbqfsa,#gbqfsb{font:bold 11px/27px Arial,sans-serif !important;vertical-align:top}#gbu .gbm,#gbu #gbs{right:5px}.gbpdjs #gbu .gbm,.gbpdjs #gbu #gbs{right:0}.gbpdjs #gbu #gbd4{right:5px}#gbu .gbgt,#gbu .gbgt:active{color:#666}#gbu .gbt{margin-left:15px}#gbu .gbto{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#gbg4{padding-right:16px}#gbd1 .gbmc,#gbd3 .gbmc{padding:0}#gbns{display:none}.gbmwc{right:0;position:absolute;top:-999px;width:440px;z-index:999}#gbwc.gbmwca{top:0}.gbmsg{display:none}.gbmab,.gbmac,.gbmad,.gbmae{left:5px;border-style:dashed dashed solid;border-color:transparent;border-bottom-color:#bebebe;border-width:0 10px 10px;cursor:default;display:-moz-inline-box;display:inline-block;font-size:0;height:0;line-height:0;position:absolute;top:0;width:0;z-index:1000}.gbmab,.gbmac{visibility:hidden}.gbmac{border-bottom-color:#fff}.gbto .gbmab,.gbto .gbmac{visibility:visible}.gbmai{background-position:-163px -40px;opacity:.8;font-size:0;line-height:0;position:absolute;height:4px;width:7px}.gbgt-hvr .gbmai{opacity:1;filter:alpha(opacity=100)}#gbgs3{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#ececec));background-image:-webkit-linear-gradient(top,#f8f8f8,#ececec);background-image:-moz-linear-gradient(top,#f8f8f8,#ececec);background-image:-ms-linear-gradient(top,#f8f8f8,#ececec);background-image:-o-linear-gradient(top,#f8f8f8,#ececec);background-image:linear-gradient(top,#f8f8f8,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',EndColorStr='#ececec');border:1px solid #c6c6c6;-moz-border-radius:2px;-o-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;padding:0 10px;position:relative}#gbgsi{background-position:-163px 0;height:10px;opacity:.8;position:absolute;top:8px;_top:10px;width:10px;left:10px}#gbgsa{background-position:-163px -15px;height:11px;position:absolute;top:8px;width:10px;left:100%}.gbgt-hvr #gbgsa{background-position:-18px -32px}#gbg3:active #gbgsa{background-position:0 0}.gbgt-hvr #gbgsi{opacity:1;filter:alpha(opacity=100)}#gbgss{display:inline-block;width:18px}.gbsbc #gbgss{width:7px}#gbi3{zoom:1}.gbsbc #gbi3{display:none}.gbgt-hvr #gbgs3,#gbg3:focus #gbgs3,#gbg3:active #gbgs3{background-color:#ffffff;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#ececec));background-image:-webkit-linear-gradient(top,#ffffff,#ececec);background-image:-moz-linear-gradient(top,#ffffff,#ececec);background-image:-ms-linear-gradient(top,#ffffff,#ececec);background-image:-o-linear-gradient(top,#ffffff,#ececec);background-image:linear-gradient(top,#ffffff,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#ececec');border-color:#bbb}#gbg3:active #gbgs3{border-color:#b6b6b6}#gbg3:active #gbgs3{-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.2)}#gbgs3 .gbmab{margin:40px 0 0}#gbgs3 .gbmac{margin:41px 0 0}.gbsr #gbgs3 .gbmac{border-bottom-color:#f5f5f5}.gbsr #gbd3,.gbsr #gbd3 .gbmc{background:#f5f5f5;min-height:268px;width:480px}#gbgs1{display:block;overflow:hidden;position:relative}.gbg1t{top:0}.gbg1ta{-o-transition:top .218s ease-out;-moz-transition:top .218s ease-out;-webkit-transition:top .218s ease-out;transition:top .218s ease-out}.gbg1tb{-o-transition:top .13s ease-in;-moz-transition:top .13s ease-in;-webkit-transition:top .13s ease-in;transition:top .13s ease-in}.gbg1tc{-o-transition:top .13s ease-out;-moz-transition:top .13s ease-out;-webkit-transition:top .13s ease-out;transition:top .13s ease-out}#gbi1a{background-color:#d14836;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));background-image:-webkit-linear-gradient(top,#dd4b39,#d14836);background-image:-moz-linear-gradient(top,#dd4b39,#d14836);background-image:-ms-linear-gradient(top,#dd4b39,#d14836);background-image:-o-linear-gradient(top,#dd4b39,#d14836);background-image:linear-gradient(top,#dd4b39,#d14836);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#d14836');border:1px solid #c13828;-moz-border-radius:2px;-o-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;display:block;height:27px;width:27px}.gbgt-hvr #gbi1a{background-color:#c53727;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));background-image:-webkit-linear-gradient(top,#dd4b39,#c53727);background-image:-moz-linear-gradient(top,#dd4b39,#c53727);background-image:-ms-linear-gradient(top,#dd4b39,#c53727);background-image:-o-linear-gradient(top,#dd4b39,#c53727);background-image:linear-gradient(top,#dd4b39,#c53727);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#c53727');border-color:#b0281a;border-bottom-color:#af301f;-moz-box-shadow:0 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}#gbg1:focus #gbi1a,#gbg1:active #gbi1a{background-color:#b0281a;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));background-image:-webkit-linear-gradient(top,#dd4b39,#b0281a);background-image:-moz-linear-gradient(top,#dd4b39,#b0281a);background-image:-ms-linear-gradient(top,#dd4b39,#b0281a);background-image:-o-linear-gradient(top,#dd4b39,#b0281a);background-image:linear-gradient(top,#dd4b39,#b0281a);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#b0281a');border-color:#992a1b;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.gbid#gbi1a{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#ececec));background-image:-webkit-linear-gradient(top,#f8f8f8,#ececec);background-image:-moz-linear-gradient(top,#f8f8f8,#ececec);background-image:-ms-linear-gradient(top,#f8f8f8,#ececec);background-image:-o-linear-gradient(top,#f8f8f8,#ececec);background-image:linear-gradient(top,#f8f8f8,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',EndColorStr='#ececec');border-color:#c6c6c6}.gbgt-hvr .gbid#gbi1a,#gbg1:focus .gbid#gbi1a,#gbg1:active .gbid#gbi1a{background-color:#ffffff;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#ececec));background-image:-webkit-linear-gradient(top,#ffffff,#ececec);background-image:-moz-linear-gradient(top,#ffffff,#ececec);background-image:-ms-linear-gradient(top,#ffffff,#ececec);background-image:-o-linear-gradient(top,#ffffff,#ececec);background-image:linear-gradient(top,#ffffff,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#ececec');border-color:#bbb}#gbg1:active .gbid#gbi1a{border-color:#b6b6b6;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}#gbi1,#gbi1c{left:0;bottom:1px;color:#fff;display:block;font-size:14px;font-weight:bold;position:absolute;text-align:center;text-shadow:0 1px rgba(0,0,0,.1);-moz-transition-property:bottom;-moz-transition-duration:0;-o-transition-property:bottom;-o-transition-duration:0;-webkit-transition-property:bottom;-webkit-transition-duration:0;-moz-user-select:none;-o-user-select:none;-webkit-user-select:none;user-select:none;width:100%}.gbgt-hvr #gbi1,#gbg1:focus #gbi1{text-shadow:0 1px rgba(0,0,0,.3)}.gbids#gbi1,.gbgt-hvr .gbids#gbi1,#gbg1:focus .gbids#gbi1,#gbg1:active .gbids#gbi1{color:#999;text-shadow:none}#gbg1 .gbmab{margin:41px 0 0}#gbg1 .gbmac{margin:42px 0 0}.gb_gbnh #gbgs1,.gbnh #gbgs1,#gbgs1.gbnh{visibility:hidden}.gb_gbnh .gbmab,.gbnh .gbmab,.gb_gbnh .gbmac,.gbnh .gbmac{left:1px}.gbng #gbs,.gbng #gbwc,.gbng #gbg1 .gbmac{border-bottom-color:#e5e5e5}.gbng #gbs,.gbng #gbwc{background-color:#e5e5e5}.gbng #gbd1,.gbng #gbd1 .gbmc,.gbng #gbwc,.gbng #gbs,.gbng #gbsf{width:400px}.gbng .gbmsg{visibility:hidden}.gb_gbsh .gbmab,.gb_gbsh .gbmac{left:9px;border-width:0 6px 6px}.gb_gbsh .gbng .gbmab,.gb_gbsh .gbng .gbmac{left:6px}.gb_gbsh #gbg1 .gbmab,.gb_gbsh #gbg3 .gbmab{margin:31px 0 0}.gb_gbsh #gbg1 .gbmac,.gb_gbsh #gbg3 .gbmac{margin:32px 0 0}.gb_gbsh .gbtn.gbto #gbd1,.gb_gbsh .gbtn.gbto #gbs{-webkit-transform:translateX(-354px)}.gb_gbsh .gbng .gbtn.gbto #gbd1,.gb_gbsh .gbng .gbtn.gbto #gbs{-webkit-transform:translateX(-314px)}.gb_gbsh .gbtsb #gbd3,.gb_gbsh .gbtsb #gbs{-webkit-transform:translateX(55px)}.gb_gbsh .gbng .gbtsb #gbd3,.gb_gbsh .gbng .gbtsb #gbs{-webkit-transform:translateX(-350px)}.gb_gbsh.gb_gbshc .gbtn.gbto #gbd1,.gb_gbsh.gb_gbshc .gbtn.gbto #gbs{-webkit-transform:translateX(-144px)}.gb_gbsh.gb_gbshc .gbng .gbtn.gbto #gbd1,.gb_gbsh.gb_gbshc .gbng .gbtn.gbto #gbs{-webkit-transform:translateX(-104px)}.gb_gbsh.gb_gbshc .gbtsb #gbd3,.gb_gbsh.gb_gbshc .gbtsb #gbs{-webkit-transform:translateX(270px)}.gb_gbsh.gb_gbshc .gbng .gbtsb #gbd3,.gb_gbsh.gb_gbshc .gbng .gbtsb #gbs{-webkit-transform:translateX(-140px)}.gb_gbsh .gbtn.gbto #gbd1,.gb_gbsh .gbtn.gbto #gbs,.gb_gbsh .gbtsb.gbto #gbd3,.gb_gbsh .gbtsb.gbto #gbs,.gb_gbsh.gb_gbshc .gbtsb.gbto #gbd3,.gb_gbsh.gb_gbshc .gbtsb.gbto #gbs,.gb_gbsh.gb_gbshc .gbtn.gbto #gbd1,.gb_gbsh.gb_gbshc .gbtn.gbto #gbs{top:37px;-o-transform:translateX(0);-moz-transform:translateX(0)}.gb_gbsh #gbdw,.gb_gbsh #gb .gbes#gbu,.gb_gbsh #gb #gbu,.gb_gbsh .gbtn,.gb_gbsh .gbtsb{position:fixed;transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);-webkit-transform:translateZ(0);z-index:987}.gb_gbsh.gb_gbsf #gb #gbu{position:absolute}.gbtn{transition:right.15s cubic-bezier(0,1.12,.39,.98);-moz-transition:right.15s cubic-bezier(0,1.12,.39,.98);-o-transition:right.15s cubic-bezier(0,1.12,.39,.98);-webkit-transition:right.15s cubic-bezier(0,1.12,.39,.98)}.gb_gbsh #gb .gbes#gbu,.gb_gbsh #gb #gbu{top:0}.gb_gbsh.gb_gbsf #gb #gbu{top:102px}.gb_gbsh.gb_gbsf #gb .gbes#gbu{top:70px}.gb_gbsh #gbu{visibility:hidden}.gb_gbsh .gbtn,.gb_gbsh #gbwc{visibility:visible}.gb_gbsh .gbtsb.gbto{right:60px;top:7px;width:29px}@-webkit-keyframes gb__sn{0%,49%{opacity:0}50%{opacity:1;top:-30px}100%{opacity:1;top:7px}}@-moz-keyframes gb__sn{0%,49%{opacity:0}50%{opacity:1;top:-30px}100%{opacity:1;top:7px}}@-o-keyframes gb__sn{0%,49%{opacity:0}50%{opacity:1;top:-30px}100%{opacity:1;top:7px}}@keyframes gb__sn{0%,49%{opacity:0}50%{opacity:1;top:-30px}100%{opacity:1;top:7px}}.gb_gbsh .gbtn{right:60px;animation:gb__sn .15s;-webkit-animation:gb__sn .15s;-moz-animation:gb__sn .15s;-o-animation:gb__sn .15s;top:7px}.gb_gbsh.gb_gbshc .gbtn,.gb_gbsh.gb_gbshc .gbtsb.gbto{right:270px}#gbi4t{display:block;margin:1px 0;overflow:hidden;text-overflow:ellipsis}#gbg6 #gbi4t,#gbg4 #gbgs4d{color:#666;text-shadow:none}#gb_70,#gb_71{margin-right:15px;display:inline-block}#gb_70 .gbit,#gb_71 .gbit,#gbg7 .gbit{margin:0 15px;display:block}#gbgs4,.gbgs{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#ececec));background-image:-webkit-linear-gradient(top,#f8f8f8,#ececec);background-image:-moz-linear-gradient(top,#f8f8f8,#ececec);background-image:-ms-linear-gradient(top,#f8f8f8,#ececec);background-image:-o-linear-gradient(top,#f8f8f8,#ececec);background-image:linear-gradient(top,#f8f8f8,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',EndColorStr='#ececec');border:1px solid #c6c6c6;display:block;-moz-border-radius:2px;-o-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;position:relative}#gbu #gb_70{color:#fff;font-size:11px;font-weight:bold;text-transform:uppercase}#gb_70 .gbgs{background-color:#d14836;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));background-image:-webkit-linear-gradient(top,#dd4b39,#d14836);background-image:-moz-linear-gradient(top,#dd4b39,#d14836);background-image:-ms-linear-gradient(top,#dd4b39,#d14836);background-image:-o-linear-gradient(top,#dd4b39,#d14836);background-image:linear-gradient(top,#dd4b39,#d14836);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#d14836');border:1px solid transparent}#gb_70.gbgt-hvr .gbgs{background-color:#c53727;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));background-image:-webkit-linear-gradient(top,#dd4b39,#c53727);background-image:-moz-linear-gradient(top,#dd4b39,#c53727);background-image:-ms-linear-gradient(top,#dd4b39,#c53727);background-image:-o-linear-gradient(top,#dd4b39,#c53727);background-image:linear-gradient(top,#dd4b39,#c53727);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#c53727');border-color:#b0281a;border-bottom-color:#af301f;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1)}#gb_70:active .gbgs,#gb_70.gbgt-hvr:active .gbgs{background-color:#b0281a;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));background-image:-webkit-linear-gradient(top,#dd4b39,#b0281a);background-image:-moz-linear-gradient(top,#dd4b39,#b0281a);background-image:-ms-linear-gradient(top,#dd4b39,#b0281a);background-image:-o-linear-gradient(top,#dd4b39,#b0281a);background-image:linear-gradient(top,#dd4b39,#b0281a);border-color:#992a1b;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}#gbgs4d{display:inline-block;position:relative;z-index:1000}#gbgs4dn{display:inline-block;overflow:hidden;text-overflow:ellipsis}.gbgt-hvr #gbgs4d{background-color:transparent;background-image:none}.gbg4p{margin-top:0px}#gbg4 #gbgs4{height:27px;position:relative;width:27px}.gbgt-hvr #gbgs4,#gbg4:focus #gbgs4,#gbg4:active #gbgs4,#gbg_70:focus .gbgs,#gbg_71:focus .gbgs,#gbg_70:active .gbgs,#gbg_71:active .gbgs,#gbg7:focus .gbgs,#gbg7:active .gbgs{background-color:#ffffff;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#ececec));background-image:-webkit-linear-gradient(top,#ffffff,#ececec);background-image:-moz-linear-gradient(top,#ffffff,#ececec);background-image:-ms-linear-gradient(top,#ffffff,#ececec);background-image:-o-linear-gradient(top,#ffffff,#ececec);background-image:linear-gradient(top,#ffffff,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#ececec');border-color:#bbb}#gbg4:active #gbgs4,#gb_70:active .gbgs,#gb_71:active .gbgs,#gbg7:active .gbgs{border-color:#b6b6b6;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}#gbi4i,#gbi4id,#gbi4ip{left:0;height:27px;position:absolute;top:0;width:27px}#gbmpi,#gbmpid{margin-right:0;height:96px;width:96px}#gbi4id{background-position:0 -101px}.gbem #gbi4id,.gbemi #gbi4id{background-position:0 -101px}.gbes #gbi4id,.gbesi #gbi4id{background-position:0 -101px}.gbto #gbi4i,.gbto #gbi4ip,.gbto #gbi4id{top:0}#gbgs4 .gbmai{left:33px;top:12px}#gbgs4d .gbmai{left:100%;margin-left:5px;top:12px}#gbgs4 .gbmab,#gbgs4 .gbmac{left:5px}#gbgs4 .gbmab{margin:40px 0 0}#gbgs4 .gbmac{margin:41px 0 0;border-bottom-color:#fff}.gbemi .gbg4p,.gbem.gbg4p{margin-top:0px}.gbesi .gbg4p,.gbes.gbg4p{margin-top:0px}.gbemi #gbg4 #gbgs4,.gbem #gbg4 #gbgs4,.gbemi #gbg4 #gbi4i,.gbem #gbg4 #gbi4i,.gbemi #gbg4 #gbi4id,.gbem #gbg4 #gbi4id,.gbemi #gbg4 #gbi4ip,.gbem #gbg4 #gbi4ip{height:27px;width:27px}.gbesi #gbg4 #gbgs4,.gbes #gbg4 #gbgs4,.gbesi #gbi4i,.gbes #gbi4i,.gbesi #gbi4id,.gbes #gbi4id,.gbesi #gbi4ip,.gbes #gbi4ip{height:27px;width:27px}.gbemi #gbgs4 .gbmai,.gbem #gbgs4 .gbmai{left:33px;top:12px}.gbesi #gbgs4 .gbmai,.gbes #gbgs4 .gbmai{left:33px;top:12px}.gbemi#gb #gbg4 #gbgs4 .gbmab,.gbem#gbg4 #gbgs4 .gbmab{left:5px;margin:40px 0 0}.gbemi#gb #gbg4 #gbgs4 .gbmac,.gbem#gbg4 #gbgs4 .gbmac{left:5px;margin:41px 0 0}.gbesi#gb #gbg4 #gbgs4 .gbmab,.gbes#gbg4 #gbgs4 .gbmab{left:5px;margin:30px 0 0}.gbesi#gb #gbg4 #gbgs4 .gbmac,.gbes#gbg4 #gbgs4 .gbmac{left:5px;margin:31px 0 0}#gbgs4d .gbmab{margin:41px 0 0}#gbgs4d .gbmac{margin:42px 0 0;border-bottom-color:#fff}#gbgs4d .gbmab,#gbgs4d .gbmac{left:50%;margin-left:-5px}#gbmppc{position:relative}#gbmppc .gbmt{padding-left:55px;padding-bottom:10px;padding-top:10px}.gbmppci{left:20px;background-position:-33px -18px;height:25px;position:absolute;top:11px;width:25px}.gbem#gb,.gbemi#gb{height:102px}.gbes#gb,.gbesi#gb{height:70px}.gbem#gbx1,.gbem#gbx2,.gbem#gbqlw,.gbemi#gb #gbx1,.gbemi#gb #gbx2,.gbemi#gb #gbqlw{height:71px}.gbem#gb #gbbw,.gbemi#gb #gbbw{top:102px}.gbem#gbu,.gbem#gbq2,.gbem#gbq3,.gbemi#gb #gbu,.gbemi#gb #gbq2,.gbemi#gb #gbq3{padding-top:20px}.gbem#gbq2,.gbemi#gb #gbq2{margin-left:204px;padding-bottom:0}.gbexl#gbq2,.gbexli#gb #gbq2,.gbexxl#gbq2,.gbexxli#gb #gbq2{margin-left:220px}.gbem#gbq3,.gbemi#gb #gbq3{left:204px}.gbes#gbx1,.gbes#gbx2,.gbes#gbqlw,.gbesi#gb #gbx1,.gbesi#gb #gbx2,.gbesi#gb #gbqlw{height:57px}.gbes#gb #gbbw,.gbesi#gb #gbbw{top:70px}.gbes#gbu,.gbes#gbq2,.gbes#gbq3,.gbesi#gb #gbu,.gbesi#gb #gbq2,.gbesi#gb #gbq3{padding-top:8px}.gbet#gbq2,.gbeti#gb #gbq2,.gbes#gbq2,.gbesi#gb #gbq2{margin-left:176px;padding-bottom:0}.gbeu#gbq2,.gbeui#gb #gbq2{margin-left:136px;padding-bottom:0}.gbemi#gb .gbto #gbd1,.gbemi#gb .gbto #gbd3,.gbemi#gb .gbto #gbd4,.gbemi#gb .gbto #gbs,.gbto .gbem#gbd1,.gbto .gbem#gbd3,.gbto .gbem#gbd4,.gbto .gbem#gbs{top:51px}.gbesi#gb .gbto #gbd1,.gbesi#gb .gbto #gbd3,.gbesi#gb .gbto #gbd4,.gbesi#gb .gbto #gbs,.gbto .gbes#gbd1,.gbto .gbes#gbd3,.gbto .gbes#gbd4,.gbto .gbes#gbs{top:42px}.gbes#gbq3,.gbesi#gb #gbq3{left:176px}.gbem#gbq1,.gbemi#gb #gbq1{margin-left:28px}.gbem#gbql,.gbemi#gb #gbql,.gbes#gbql,.gbesi#gb #gbql,.gbet#gbql,.gbeti#gb #gbql,.gbeu#gbql,.gbeui#gb #gbql{background-position:-63px 0;height:37px;width:95px}.gbet#gbq1,.gbeti#gb #gbq1,.gbes#gbq1,.gbesi#gb #gbq1{margin-left:16px}.gbeu#gbq1,.gbeui#gb #gbq1{margin-left:12px}.gbemi#gb .gbqldr,.gbem#gbqlw .gbqldr{max-height:71px;max-width:160px}.gbem#gbu,.gbemi#gb #gbu{margin-right:12px}.gbet#gbu,.gbeti#gb #gbu,.gbeu#gbu,.gbeui#gb #gbu,.gbes#gbu,.gbesi#gb #gbu{margin-right:0px}.gbeu#gbu .gbt,.gbeui#gb #gbu .gbt,.gbet#gbu .gbt,.gbeti#gb #gbu .gbt,.gbes#gbu .gbt,.gbesi#gb #gbu .gbt{margin-left:6px}.gbeti#gb .gbqldr,.gbet#gbqlw .gbqldr,.gbesi#gb .gbqldr,.gbes#gbqlw .gbqldr{max-height:44px;max-width:144px}.gbeui#gb .gbqldr,.gbeu#gbqlw .gbqldr{max-height:44px;max-width:124px}.gbemi#gb #gbpr,.gbem#gbpr{left:28px}.gbemi#gb .gbqpa,.gbem#gbpr .gbqpa,.gbesi#gb .gbqpa,.gbes#gbpr .gbqpa{width:95px}.gbesi#gb #gbpr,.gbes#gbpr{left:16px}.gbemi#gb #gbgs4d .gbmab,.gbem#gbg4 #gbgs4d .gbmab{margin:41px 0 0}.gbesi#gb #gbgs4d .gbmab,.gbes#gbg4 #gbgs4d .gbmab{margin:33px 0 0}.gbemi#gb #gbgs4d .gbmac,.gbem#gbg4 #gbgs4d .gbmac{margin:42px 0 0}.gbesi#gb #gbgs4d .gbmac,.gbes#gbg4 #gbgs4d .gbmac{margin:34px 0 0}.gbemi#gb #gbgs4d .gbmac,.gbem#gbg4 #gbgs4d .gbmac,.gbesi#gb #gbgs4d .gbmac,.gbes#gbg4 #gbgs4d .gbmac,.gbemi#gb #gbgs4d .gbmab,.gbem#gbg4 #gbgs4d .gbmab,.gbesi#gb #gbgs4d .gbmab,.gbes#gbg4 #gbgs4d .gbmab{margin-left:-5px}#gb #gbx1,#gb #gbx3{left:0}#gbx1,#gb #gbx1,#gbq,#gbu,#gb #gbq,#gb #gbu{top:30px}#gb #gbu{top:30px}#gbzw #gbz{padding-left:0;z-index:991}#gbz .gbto #gbd,#gbz .gbto #gbs{top:29px}#gbx3{min-width:700px;border-color:#000;background-color:#2d2d2d;opacity:1;filter:alpha(opacity=100)}#gbz .gbzt,#gbz .gbgt{color:#bbb !important;font-weight:bold}#gbq .gbgt-hvr,#gbq .gbgt:focus,#gbz .gbz0l .gbts,#gbz .gbzt:hover,#gbz .gbzt:focus,#gbz .gbgt-hvr,#gbz .gbgt:focus,#gbu .gbz0l .gbts,#gbu .gbzt:hover,#gbu .gbzt:focus,#gbu .gbgt-hvr,#gbu .gbgt:focus{background-color:transparent;background-image:none}#gbz .gbz0l .gbts,#gbz .gbzt:hover,#gbz .gbzt:focus,#gbz .gbgt-hvr,#gbz .gbgt:focus{color:#fff!important}#gbz .gbma{border-top-color:#aaa}#gbz .gbzt:hover .gbma,#gbz .gbzt:focus .gbma,#gbz .gbgt-hvr .gbma,#gbz .gbgt:focus .gbma{border-top-color:#fff}#gbq1.gbto{-moz-box-shadow:none;-o-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}#gbz .gbto .gbma,#gbz .gbto .gbzt:hover .gbma,#gbz .gbto .gbzt:focus .gbma,#gbz .gbto .gbgt-hvr .gbma,#gbz .gbto .gbgt:focus .gbma{border-top-color:#000}#gbz .gbto .gbts,#gbd .gbmt{color:#000 !important;font-weight:bold}#gbd .gbmt:hover,#gbd .gbmt:focus{background-color:#f5f5f5}#gbz .gbts{padding:0 9px;z-index:991}#gbz .gbto .gbts{padding-bottom:1px;padding-top:2px;z-index:1000}#gbqlw{cursor:pointer}#gbzw{left:0;height:30px;margin-left:34px;position:absolute;top:0;z-index:991}#gbz{height:30px}.gbemi#gb #gbzw,.gbem#gbzw{height:30px;margin-left:18px}.gbeui#gb #gbzw,.gbeu#gbzw,.gbeti#gb #gbzw,.gbet#gbzw,.gbesi#gb #gbzw,.gbes#gbzw{height:24px;margin-left:6px}.gbeui#gb #gbzw,.gbeu#gbzw{margin-left:2px}.gbemi#gb #gbzw #gbz,.gbem#gbzw #gbz{height:30px}.gbemi#gb #gbx3,.gbem#gbx3{height:29px}.gbesi#gb #gbzw #gbz,.gbes#gbzw #gbz{height:24px}.gbesi#gb #gbx3,.gbes#gbx3{height:23px}#gb.gbet #gbx3,#gb.gbeti #gbx3{min-width:836px;}#gb.gbeu #gbx3,#gb.gbeui #gbx3{min-width:780px;}#gbzw .gbt{line-height:27px}.gbemi#gb #gbzw .gbt .gbem#gbzw .gbt{line-height:27px}.gbesi#gb #gbzw .gbt,.gbes#gbzw .gbt{line-height:19px}.gbqfh#gbq1{display:none}.gbqfh#gbx1,.gbqfh#gbx2,.gbem#gb .gbqfh#gbx1,.gbem#gb .gbqfh#gbx2,.gbemi#gb .gbqfh#gbx1,.gbemi#gb .gbqfh#gbx2,.gbes#gb .gbqfh#gbx1,.gbes#gb .gbqfh#gbx2,.gbesi#gb .gbqfh#gbx1,.gbesi#gb .gbqfh#gbx2,.gbet#gb .gbqfh#gbx1,.gbet#gb .gbqfh#gbx2,.gbeti#gb .gbqfh#gbx1,.gbeti#gb .gbqfh#gbx2,.gbeu#gb .gbqfh#gbx1,.gbeu#gb .gbqfh#gbx2,.gbeui#gb .gbqfh#gbx1,.gbeui#gb .gbqfh#gbx2{border-bottom-width:0;height:0}.gbes#gb,.gbesi#gb{height:70px}.gbes#gbx1,.gbes#gbx2,.gbes#gbqlw,.gbesi#gb #gbx1,.gbesi#gb #gbx2,.gbesi#gb #gbqlw{height:45px}#gb .gbes#gbx1,#gb .gbes#gbx2,.gbesi#gb #gbx1,.gbesi#gb #gbx2,#gb .gbes#gbq,#gb .gbes#gbu,.gbesi#gb #gbq,.gbesi#gb #gbu{top:24px}.gbes#gb #gbbw,.gbesi#gb #gbbw{top:74px !important}.gbpro.gbes#gb #gbbw,.gbpro.gbesi#gb #gbbw{top:104px !important}.gbes#gbu,.gbes#gbq2,.gbes#gbq3,.gbesi#gb #gbu,.gbesi#gb #gbq2,.gbesi#gb #gbq3{padding-top:8px}.gbes#gbq2,.gbesi#gb #gbq2{padding-bottom:0}.gbesi#gb .gbto #gbd1,.gbesi#gb .gbto #gbd3,.gbesi#gb .gbto #gbd4,.gbesi#gb .gbto #gbs,.gbto .gbes#gbd1,.gbto .gbes#gbd3,.gbto .gbes#gbd4,.gbes#gbu .gbto #gbs{top:40px}.gbemi#gb #gbd,.gbem#gbzw #gbd,.gbemi#gb #gbzw .gbto #gbs,.gbem#gbzw .gbto #gbs{top:29px}.gbesi#gb #gbd,.gbes#gbzw #gbd,.gbesi#gb #gbzw .gbto #gbs,.gbes#gbzw .gbto #gbs{top:23px}.gbesi#gb #gbzw .gbto .gbts,.gbes#gbzw .gbto .gbts{padding-bottom:3px}.gbesi#gb #gbg3 .gbmab,.gbes#gbg3 .gbmab,.gbesi#gb #gbgs4 .gbmab,.gbes#gbg4 .gbmab{margin:30px 0 0}.gbesi#gb #gbg1 .gbmab,.gbes#gbg1 .gbmab{margin:31px 0 0}.gbesi#gb #gbg1 .gbmac,.gbes#gbg1 .gbmac{margin:32px 0 0}.gbesi#gb #gbg3 .gbmac,.gbes#gbg3 .gbmac,.gbesi#gb #gbgs4 .gbmac,.gbes#gbg4 .gbmac{margin:31px 0 0}.gbesi#gb #gbgs4d .gbmab,.gbes#gbg4 #gbgs4d .gbmab{margin:31px 0 0}.gbesi#gb #gbgs4d .gbmac,.gbes#gbg4 #gbgs4d .gbmac{margin:32px 0 0}#gbmpicb,#gbmpicp{bottom:0;color:#fff;display:block;font-size:9px;font-weight:bold;position:absolute;text-align:center;text-decoration:none !important;-moz-transition:opacity .218s ease-in-out;-o-transition:opacity .218s ease-in-out;-webkit-transition:opacity .218s ease-in-out;transition:opacity .218s ease-in-out;white-space:normal;width:96px}#gbmpicb{background-color:#4d90fe;opacity:.7;filter:alpha(opacity=70);padding:7px 0;-moz-transition:background-color .218s ease-in-out;-o-transition:background-color .218s ease-in-out;-webkit-transition:background-color .218s ease-in-out;transition:background-color .218s ease-in-out}#gbmpicp{padding:12px 0 7px 0}#gbmpas{max-height:276px}#gbmm{max-height:530px}.gbsb{-webkit-box-sizing:border-box;display:block;position:relative;*zoom:1}.gbsbic{overflow:auto}.gbsbis .gbsbt,.gbsbis .gbsbb{-webkit-mask-box-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.1)),color-stop(.5,rgba(0,0,0,.8)),color-stop(1,rgba(0,0,0,.1)));left:0;margin-right:0;opacity:0;position:absolute;width:100%}.gbsb .gbsbt:after,.gbsb .gbsbb:after{content:"";display:block;height:0;left:0;position:absolute;width:100%}.gbsbis .gbsbt{background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:-ms-linear-gradient(top,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:linear-gradient(top,rgba(0,0,0,.2),rgba(0,0,0,0));height:6px;top:0}.gbsb .gbsbt:after{border-top:1px solid #ebebeb;border-color:rgba(0,0,0,.3);top:0}.gbsb .gbsbb{-webkit-mask-box-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(0,0,0,.1)),color-stop(.5,rgba(0,0,0,.8)),color-stop(1,rgba(0,0,0,.1)));background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.2)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:-ms-linear-gradient(bottom,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.2),rgba(0,0,0,0));background-image:linear-gradient(bottom,rgba(0,0,0,.2),rgba(0,0,0,0));bottom:0;height:4px}.gbsb .gbsbb:after{border-bottom:1px solid #ebebeb;border-color:rgba(0,0,0,.3);bottom:0}.gbsbic::-webkit-scrollbar{height:16px;width:16px}.gbsbic::-webkit-scrollbar-button{height:0;width:0}.gbsbic::-webkit-scrollbar-button:start:decrement,.gbsbic::-webkit-scrollbar-button:end:increment{display:block}.gbsbic::-webkit-scrollbar-button:vertical:start:increment,.gbsbic::-webkit-scrollbar-button:vertical:end:decrement{display:none}.gbsbic::-webkit-scrollbar-track:vertical,.gbsbic::-webkit-scrollbar-track:horizontal,.gbsbic::-webkit-scrollbar-thumb:vertical,.gbsbic::-webkit-scrollbar-thumb:horizontal,.gbsbis .gbsbic::-webkit-scrollbar-track:vertical,.gbsbis .gbsbic::-webkit-scrollbar-track:horizontal,.gbsbis .gbsbic::-webkit-scrollbar-thumb:vertical,.gbsbis .gbsbic::-webkit-scrollbar-thumb:horizontal{border-style:solid;border-color:transparent}.gbsbic::-webkit-scrollbar-track:vertical{background-clip:padding-box;background-color:#fff;border-left-width:5px;border-right-width:0}.gbsbic::-webkit-scrollbar-track:horizontal{background-clip:padding-box;background-color:#fff;border-bottom-width:0;border-top-width:5px}.gbsbic::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);background-clip:padding-box;background-color:rgba(0,0,0,.2);min-height:28px;padding-top:100px}.gbsbic::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,.25);background-color:rgba(0,0,0,.4)}.gbsbic::-webkit-scrollbar-thumb:active{-webkit-box-shadow:inset 1px 1px 3px rgba(0,0,0,.35);background-color:rgba(0,0,0,.5)}.gbsbic::-webkit-scrollbar-thumb:vertical{border-width:0;border-left-width:5px}.gbsbic::-webkit-scrollbar-thumb:horizontal{border-width:0;border-top-width:5px}.gbsbis .gbsbic::-webkit-scrollbar-track:vertical{border-left-width:6px;border-right-width:1px}.gbsbis .gbsbic::-webkit-scrollbar-track:horizontal{border-bottom:1px;border-top:6px}.gbsbis .gbsbic::-webkit-scrollbar-thumb:vertical{border-width:0;border-left-width:6px;border-right-width:1px}.gbsbis .gbsbic::-webkit-scrollbar-thumb:horizontal{border-width:0;border-bottom:1px;border-top:6px}.gbsbic::-webkit-scrollbar-track:hover{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.1);background-color:rgba(0,0,0,.05)}.gbsbic::-webkit-scrollbar-track:active{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px -1px 0 rgba(0,0,0,.07);background-color:rgba(0,0,0,.05)}</style><style type="text/css">@font-face {
4
+ font-family: 'Roboto';
5
+ font-style: normal;
6
+ font-weight: 100;
7
+ src: local('Roboto Thin'), local('Roboto-Thin'), url(//ssl.gstatic.com/fonts/roboto/v8/vzIUHo9z-oJ4WgkpPOtg1_esZW2xOQ-xsNqO47m55DA.woff) format('woff');
8
+ }
9
+ @font-face {
10
+ font-family: 'Roboto';
11
+ font-style: normal;
12
+ font-weight: 300;
13
+ src: local('Roboto Light'), local('Roboto-Light'), url(//ssl.gstatic.com/fonts/roboto/v8/Hgo13k-tfSpn0qi1SFdUfT8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
14
+ }
15
+ @font-face {
16
+ font-family: 'Roboto';
17
+ font-style: normal;
18
+ font-weight: 400;
19
+ src: local('Roboto Regular'), local('Roboto-Regular'), url(//ssl.gstatic.com/fonts/roboto/v8/2UX7WLTfW3W8TclTUvlFyQ.woff) format('woff');
20
+ }
21
+ @font-face {
22
+ font-family: 'Roboto';
23
+ font-style: normal;
24
+ font-weight: 500;
25
+ src: local('Roboto Medium'), local('Roboto-Medium'), url(//ssl.gstatic.com/fonts/roboto/v8/RxZJdnzeo3R5zSexge8UUT8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
26
+ }
27
+ @font-face {
28
+ font-family: 'Roboto';
29
+ font-style: normal;
30
+ font-weight: 700;
31
+ src: local('Roboto Bold'), local('Roboto-Bold'), url(//ssl.gstatic.com/fonts/roboto/v8/d-6IYplOFocCacKzxwXSOD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
32
+ }
33
+ @font-face {
34
+ font-family: 'Roboto';
35
+ font-style: italic;
36
+ font-weight: 100;
37
+ src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(//ssl.gstatic.com/fonts/roboto/v8/12mE4jfMSBTmg-81EiS-YRsxEYwM7FgeyaSgU71cLG0.woff) format('woff');
38
+ }
39
+ @font-face {
40
+ font-family: 'Roboto';
41
+ font-style: italic;
42
+ font-weight: 300;
43
+ src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url(//ssl.gstatic.com/fonts/roboto/v8/7m8l7TlFO-S3VkhHuR0at4bN6UDyHWBl620a-IRfuBk.woff) format('woff');
44
+ }
45
+ @font-face {
46
+ font-family: 'Roboto Slab';
47
+ font-style: normal;
48
+ font-weight: 100;
49
+ src: local('Roboto Slab Thin'), local('RobotoSlab-Thin'), url(//ssl.gstatic.com/fonts/robotoslab/v1/MEz38VLIFL-t46JUtkIEgCeJLMOzE6CCkidNEpZOseY.woff) format('woff');
50
+ }
51
+ @font-face {
52
+ font-family: 'Roboto Slab';
53
+ font-style: normal;
54
+ font-weight: 300;
55
+ src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url(//ssl.gstatic.com/fonts/robotoslab/v1/dazS1PrQQuCxC3iOAJFEJR_xHqYgAV9Bl_ZQbYUxnQU.woff) format('woff');
56
+ }
57
+ @font-face {
58
+ font-family: 'Roboto Slab';
59
+ font-style: normal;
60
+ font-weight: 700;
61
+ src: local('Roboto Slab Bold'), local('RobotoSlab-Bold'), url(//ssl.gstatic.com/fonts/robotoslab/v1/dazS1PrQQuCxC3iOAJFEJTqR_3kx9_hJXbbyU8S6IN0.woff) format('woff');
62
+ }
63
+ </style><link rel="stylesheet" href="/static/client/css/762253443-lowlife_css_ltr.css">
64
+ <link href="//ssl.gstatic.com/android/market_images/web/favicon.ico" rel="shortcut icon"><script type="text/javascript">(function(){try{var e=!0,h=null,k=!1;var ba=function(a,b,c,d){d=d||{};d._sn=["cfg",b,c].join(".");window.gbar.logger.ml(a,d)};var n=window.gbar=window.gbar||{},q=window.gbar.i=window.gbar.i||{},ca;function _tvn(a,b){var c=parseInt(a,10);return isNaN(c)?b:c}function _tvf(a,b){var c=parseFloat(a);return isNaN(c)?b:c}function _tvv(a){return!!a}function r(a,b,c){(c||n)[a]=b}n.bv={n:_tvn("2",0),r:"r_qf.",f:".49.65.51.40.70.46.55.36.",e:"31215",m:_tvn("2",1)};
65
+ function da(a,b,c){var d="on"+b;if(a.addEventListener)a.addEventListener(b,c,k);else if(a.attachEvent)a.attachEvent(d,c);else{var g=a[d];a[d]=function(){var a=g.apply(this,arguments),b=c.apply(this,arguments);return void 0==a?b:void 0==b?a:b&&a}}}var ea=function(a){return function(){return n.bv.m==a}},fa=ea(1),ga=ea(2);r("sb",fa);r("kn",ga);q.a=_tvv;q.b=_tvf;q.c=_tvn;q.i=ba;var s=window.gbar.i.i;var u=function(){},v=function(){},w=function(a){var b=new Image,c=ha;b.onerror=b.onload=b.onabort=function(){try{delete ia[c]}catch(a){}};ia[c]=b;b.src=a;ha=c+1},ia=[],ha=0;r("logger",{il:v,ml:u,log:w});var x=window.gbar.logger;var y={},ja={},z=[],ka=q.b("0.1",0.1),la=q.a("1",e),ma=function(a,b){z.push([a,b])},na=function(a,b){y[a]=b},oa=function(a){return a in y},A={},C=function(a,b){A[a]||(A[a]=[]);A[a].push(b)},D=function(a){C("m",a)},pa=function(a,b){var c=document.createElement("script");c.src=a;c.async=la;Math.random()<ka&&(c.onerror=function(){c.onerror=h;u(Error("Bundle load failed: name="+(b||"UNK")+" url="+a))});(document.getElementById("xjsc")||document.body).appendChild(c)},
66
+ G=function(a){for(var b=0,c;(c=z[b])&&c[0]!=a;++b);c&&(!c[1].l&&!c[1].s)&&(c[1].s=e,E(2,a),c[1].url&&pa(c[1].url,a),c[1].libs&&F&&F(c[1].libs))},qa=function(a){C("gc",a)},H=h,ra=function(a){H=a},E=function(a,b,c){if(H){a={t:a,b:b};if(c)for(var d in c)a[d]=c[d];try{H(a)}catch(g){}}};r("mdc",y);r("mdi",ja);r("bnc",z);r("qGC",qa);r("qm",D);r("qd",A);r("lb",G);r("mcf",na);r("bcf",ma);r("aq",C);r("mdd","");r("has",oa);r("trh",ra);r("tev",E);if(q.a("1")){var I=q.a("1"),sa=q.a("1"),ta=q.a("1"),ua=window.gapi={},va=function(a,b){var c=function(){n.dgl(a,b)};I?D(c):(C("gl",c),G("gl"))},wa={},xa=function(a){a=a.split(":");for(var b;(b=a.pop())&&wa[b];);return!b},F=function(a){function b(){for(var b=a.split(":"),d=0,g;g=b[d];++d)wa[g]=1;for(b=0;d=z[b];++b)d=d[1],(g=d.libs)&&(!d.l&&d.i&&xa(g))&&d.i()}n.dgl(a,b)},J=window.___jsl={};J.h="m;/_/scs/abc-static/_/js/k=gapi.gapi.en.ttZ9tAb8XrM.O/m=__features__/am=EA/rt=j/d=1/rs=AItRSTP3CJxcMrRUdx1_I61ycmx3Rf99QA";J.ms="https://apis.google.com";
67
+ J.m="";J.l=[];I||z.push(["gl",{url:"//ssl.gstatic.com/gb/js/abc/glm_e7bb39a7e1a24581ff4f8d199678b1b9.js"}]);var ya={pu:sa,sh:"",si:ta};y.gl=ya;r("load",va,ua);r("dgl",va);r("agl",xa);q.o=I};var za=q.b("0.1",0.001),Aa=0;
68
+ function _mlToken(a,b){try{if(1>Aa){Aa++;var c,d=a,g=b||{},f=encodeURIComponent,m="es_plusone_gc_20130724.0_p0",l=["//www.google.com/gen_204?atyp=i&zx=",(new Date).getTime(),"&jexpid=",f("35972"),"&srcpg=",f("prop=78"),"&jsr=",Math.round(1/za),"&ogev=",f("Q0n7UaLxM8bjigLSt4CgDA"),"&ogf=",n.bv.f,"&ogrp=",f(""),"&ogv=",f("1375309281.1374081516"),m?"&oggv="+f(m):"","&ogd=",f("com"),"&ogl=",f("en")];g._sn&&(g._sn="og."+g._sn);for(var p in g)l.push("&"),
69
+ l.push(f(p)),l.push("="),l.push(f(g[p]));l.push("&emsg=");l.push(f(d.name+":"+d.message));var t=l.join("");Ba(t)&&(t=t.substr(0,2E3));c=t;var B=window.gbar.logger._aem(a,c);w(B)}}catch(Y){}}var Ba=function(a){return 2E3<=a.length},Da=function(a,b){return b};function Ga(a){u=a;r("_itl",Ba,x);r("_aem",Da,x);r("ml",u,x);a={};y.er=a}q.a("")?Ga(function(a){throw a;}):q.a("1")&&Math.random()<za&&Ga(_mlToken);var _E="left",L=function(a,b){var c=a.className;K(a,b)||(a.className+=(""!=c?" ":"")+b)},M=function(a,b){var c=a.className,d=RegExp("\\s?\\b"+b+"\\b");c&&c.match(d)&&(a.className=c.replace(d,""))},K=function(a,b){var c=RegExp("\\b"+b+"\\b"),d=a.className;return!(!d||!d.match(c))},Ha=function(a,b){K(a,b)?M(a,b):L(a,b)};r("ca",L);r("cr",M);r("cc",K);q.k=L;q.l=M;q.m=K;q.n=Ha;var Ia=["gb_71","gb_155"],N;function Ja(a){N=a}function Ka(a){var b=N&&!a.href.match(/.*\/accounts\/ClearSID[?]/)&&encodeURIComponent(N());b&&(a.href=a.href.replace(/([?&]continue=)[^&]*/,"$1"+b))}function La(a){window.gApplication&&(a.href=window.gApplication.getTabUrl(a.href))}function Ma(a){try{var b=(document.forms[0].q||"").value;b&&(a.href=a.href.replace(/([?&])q=[^&]*|$/,function(a,c){return(c||"&")+"q="+encodeURIComponent(b)}))}catch(c){s(c,"sb","pq")}}
70
+ var Na=function(){for(var a=[],b=0,c;c=Ia[b];++b)(c=document.getElementById(c))&&a.push(c);return a},Oa=function(){var a=Na();return 0<a.length?a[0]:h},Pa=function(){return document.getElementById("gb_70")},O={},P={},Qa={},Q={},R=void 0,Va=function(a,b){try{var c=document.getElementById("gb");L(c,"gbpdjs");S();Ra(document.getElementById("gb"))&&L(c,"gbrtl");if(b&&b.getAttribute){var d=b.getAttribute("aria-owns");if(d.length){var g=document.getElementById(d);if(g){var f=b.parentNode;if(R==d)R=void 0,
71
+ M(f,"gbto");else{if(R){var m=document.getElementById(R);if(m&&m.getAttribute){var l=m.getAttribute("aria-owner");if(l.length){var p=document.getElementById(l);p&&p.parentNode&&M(p.parentNode,"gbto")}}}Sa(g)&&Ta(g);R=d;L(f,"gbto")}}}}D(function(){n.tg(a,b,e)});Ua(a)}catch(t){s(t,"sb","tg")}},Wa=function(a){D(function(){n.close(a)})},Xa=function(a){D(function(){n.rdd(a)})},Ra=function(a){var b,c="direction",d=document.defaultView;d&&d.getComputedStyle?(a=d.getComputedStyle(a,""))&&(b=a[c]):b=a.currentStyle?
72
+ a.currentStyle[c]:a.style[c];return"rtl"==b},Za=function(a,b,c){if(a)try{var d=document.getElementById("gbd5");if(d){var g=d.firstChild,f=g.firstChild,m=document.createElement("li");m.className=b+" gbmtc";m.id=c;a.className="gbmt";m.appendChild(a);if(f.hasChildNodes()){c=[["gbkc"],["gbf","gbe","gbn"],["gbkp"],["gbnd"]];for(var d=0,l=f.childNodes.length,g=k,p=-1,t=0,B;B=c[t];t++){for(var Y=0,$;$=B[Y];Y++){for(;d<l&&K(f.childNodes[d],$);)d++;if($==b){f.insertBefore(m,f.childNodes[d]||h);g=e;break}}if(g){if(d+
73
+ 1<f.childNodes.length){var Ca=f.childNodes[d+1];!K(Ca.firstChild,"gbmh")&&!Ya(Ca,B)&&(p=d+1)}else if(0<=d-1){var Ea=f.childNodes[d-1];!K(Ea.firstChild,"gbmh")&&!Ya(Ea,B)&&(p=d)}break}0<d&&d+1<l&&d++}if(0<=p){var aa=document.createElement("li"),Fa=document.createElement("div");aa.className="gbmtc";Fa.className="gbmt gbmh";aa.appendChild(Fa);f.insertBefore(aa,f.childNodes[p])}n.addHover&&n.addHover(a)}else f.appendChild(m)}}catch(xb){s(xb,"sb","al")}},Ya=function(a,b){for(var c=b.length,d=0;d<c;d++)if(K(a,
74
+ b[d]))return e;return k},$a=function(a,b,c){Za(a,b,c)},ab=function(a,b){Za(a,"gbe",b)},bb=function(){D(function(){n.pcm&&n.pcm()})},cb=function(){D(function(){n.pca&&n.pca()})},db=function(a,b,c,d,g,f,m,l,p,t){D(function(){n.paa&&n.paa(a,b,c,d,g,f,m,l,p,t)})},eb=function(a,b){O[a]||(O[a]=[]);O[a].push(b)},fb=function(a,b){P[a]||(P[a]=[]);P[a].push(b)},gb=function(a,b){Qa[a]=b},hb=function(a,b){Q[a]||(Q[a]=[]);Q[a].push(b)},Ua=function(a){a.preventDefault&&a.preventDefault();a.returnValue=k;a.cancelBubble=
75
+ e},ib=h,Ta=function(a,b){S();if(a){jb(a,"Opening&hellip;");T(a,e);var c="undefined"!=typeof b?b:1E4,d=function(){kb(a)};ib=window.setTimeout(d,c)}},lb=function(a){S();a&&(T(a,k),jb(a,""))},kb=function(a){try{S();var b=a||document.getElementById(R);b&&(jb(b,"This service is currently unavailable.%1$sPlease try again later.","%1$s"),T(b,e))}catch(c){s(c,"sb","sdhe")}},jb=function(a,b,c){if(a&&b){var d=Sa(a);if(d){if(c){d.innerHTML="";b=b.split(c);c=0;for(var g;g=b[c];c++){var f=document.createElement("div");f.innerHTML=g;
76
+ d.appendChild(f)}}else d.innerHTML=b;T(a,e)}}},T=function(a,b){var c=void 0!==b?b:e;c?L(a,"gbmsgo"):M(a,"gbmsgo")},Sa=function(a){for(var b=0,c;c=a.childNodes[b];b++)if(K(c,"gbmsg"))return c},S=function(){ib&&window.clearTimeout(ib)},mb=function(a){var b="inner"+a;a="offset"+a;return window[b]?window[b]:document.documentElement&&document.documentElement[a]?document.documentElement[a]:0},nb=function(){return k},ob=function(){return!!R};r("so",Oa);r("sos",Na);r("si",Pa);r("tg",Va);r("close",Wa);
77
+ r("rdd",Xa);r("addLink",$a);r("addExtraLink",ab);r("pcm",bb);r("pca",cb);r("paa",db);r("ddld",Ta);r("ddrd",lb);r("dderr",kb);r("rtl",Ra);r("op",ob);r("bh",O);r("abh",eb);r("dh",P);r("adh",fb);r("ch",Q);r("ach",hb);r("eh",Qa);r("aeh",gb);ca=q.a("")?La:Ma;r("qs",ca);r("setContinueCb",Ja);r("pc",Ka);r("bsy",nb);q.d=Ua;q.j=mb;var pb={};y.base=pb;r("wg",{rg:{}});var qb={tiw:q.c("15000",0),tie:q.c("30000",0)};y.wg=qb;var rb={thi:q.c("10000",0),thp:q.c("180000",0),tho:q.c("5000",0),tet:q.b("0.5",0)};y.wm=rb;z.push(["m",{url:"//ssl.gstatic.com/gb/js/smm_91e354fbb634b48cefd0f8852a11f872.js"}]);var sb={};y.heavy=sb;n.sg={c:""};if(q.a("1")){var tb=q.a("");z.push(["gc",{auto:tb,url:"//ssl.gstatic.com/gb/js/abc/gci_91f30755d6a6b787dcc2a4062e6e9824.js",libs:"googleapis.client:plusone"}]);var ub={version:"gci_91f30755d6a6b787dcc2a4062e6e9824.js",index:"0",lang:"en"};y.gc=ub;var vb=function(a){window.googleapis&&window.iframes?a&&a():(a&&qa(a),G("gc"))};r("lGC",vb);q.a("1")&&r("lPWF",vb)};window.__PVT="APfa0bqwYWJJaui8qaZynrRAHt0BuiDOdh-dn5yzKFfhMLK8o9YYTdu5CwXFQhZgolvloQGEpu64GAB3gL20p0nZYD15FTKePg==";if(q.a("1")&&q.a("1")){var wb=function(a){vb(function(){C("pw",a);G("pw")})};r("lPW",wb);z.push(["pw",{url:"//ssl.gstatic.com/gb/js/abc/pwm_45f73e4df07a0e388b0fa1f3d30e7280.js"}]);var yb=[],zb=function(a){yb[0]=a},Ab=function(a,b){var c=b||{};c._sn="pw";u(a,c)},Bb={signed:yb,elog:Ab,base:"https://plusone.google.com/u/0",loadTime:(new Date).getTime()};y.pw=Bb;var Cb=function(a,b){for(var c=b.split("."),d=function(){var b=arguments;a(function(){for(var a=n,d=0,f=c.length-1;d<f;++d)a=a[c[d]];a[c[d]].apply(a,b)})},g=n,f=0,m=c.length-1;f<
78
+ m;++f)g=g[c[f]]=g[c[f]]||{};return g[c[f]]=d};Cb(wb,"pw.clk");Cb(wb,"pw.hvr");r("su",zb,n.pw)};var Db={G:1,J:2,ga:3,A:4,Z:5,O:6,H:7,P:8,ka:9,X:10,N:11,W:12,V:13,Q:14,T:15,S:16,ia:17,D:18,R:19,ja:20,ha:21,B:22,I:23,ma:24,na:25,la:26,g:27,u:28,w:29,v:30,fa:31,ba:32,ca:33,L:34,M:35,ea:36,da:37,aa:38,F:39,U:40,C:41,$:42,Y:43,K:500},Eb=[1,2,3,4,5,6,9,10,11,13,14,28,29,30,34,35,37,38,39,40,41,42,43,500];var Fb=q.b("0.001",1E-4),Gb=q.b("0.01",1),Hb=k,Ib=k;if(q.a("1")){var Jb=Math.random();Jb<=Fb&&(Hb=e);Jb<=Gb&&(Ib=e)}var Kb=Db,U=h;function Lb(){var a=0,b=function(b,d){q.a(d)&&(a|=b)};b(1,"1");b(2,"1");b(4,"");b(8,"");return a}
79
+ function Mb(a,b){var c=Fb,d=Hb,g;g=a;if(!U){U={};for(var f=0;f<Eb.length;f++){var m=Eb[f];U[m]=e}}if(g=!!U[g])c=Gb,d=Ib;if(d){d=encodeURIComponent;g="es_plusone_gc_20130724.0_p0";n.rp?(f=n.rp(),f="-1"!=f?f:""):f="";c=["//www.google.com/gen_204?atyp=i&zx=",(new Date).getTime(),"&oge=",a,"&ogex=",d("35972"),"&ogev=",d("Q0n7UaLxM8bjigLSt4CgDA"),"&ogf=",n.bv.f,"&ogp=",d("78"),"&ogrp=",d(f),"&ogsr=",Math.round(1/c),"&ogv=",d("1375309281.1374081516"),
80
+ g?"&oggv="+d(g):"","&ogd=",d("com"),"&ogl=",d("en"),"&ogus=",Lb()];if(b){"ogw"in b&&(c.push("&ogw="+b.ogw),delete b.ogw);var l;g=b;f=[];for(l in g)0!=f.length&&f.push(","),f.push(Nb(l)),f.push("."),f.push(Nb(g[l]));l=f.join("");""!=l&&(c.push("&ogad="),c.push(d(l)))}w(c.join(""))}}function Nb(a){"number"==typeof a&&(a+="");return"string"==typeof a?a.replace(".","%2E").replace(",","%2C"):a}v=Mb;r("il",v,x);var Ob={};y.il=Ob;var Pb=function(a,b,c,d,g,f,m,l,p,t){D(function(){n.paa(a,b,c,d,g,f,m,l,p,t)})},Qb=function(){D(function(){n.prm()})},Rb=function(a){D(function(){n.spn(a)})},Sb=function(a){D(function(){n.sps(a)})},Tb=function(a){D(function(){n.spp(a)})},Ub={"27":"//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s27-c/photo.jpg","27":"//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s27-c/photo.jpg","27":"//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s27-c/photo.jpg"},Vb=function(a){return(a=Ub[a])||"//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s27-c/photo.jpg"},
81
+ Wb=function(){D(function(){n.spd()})};r("spn",Rb);r("spp",Tb);r("sps",Sb);r("spd",Wb);r("paa",Pb);r("prm",Qb);eb("gbd4",Qb);
82
+ if(q.a("1")){var Xb={d:q.a(""),e:"zeta.joanna@gmail.com",sanw:q.a(""),p:"//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s96-c/photo.jpg",cp:"1",xp:q.a("1"),mg:"%1$s (delegated)",md:"%1$s (default)",mh:"276",s:"1",pp:Vb,ppl:q.a(""),ppa:q.a("1"),ppm:"Google+ page"};
83
+ y.prf=Xb};var V,Yb,W,Zb,X=0,$b=function(a,b,c){if(a.indexOf)return a.indexOf(b,c);if(Array.indexOf)return Array.indexOf(a,b,c);for(c=c==h?0:0>c?Math.max(0,a.length+c):c;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1},Z=function(a,b){return-1==$b(a,X)?(s(Error(X+"_"+b),"up","caa"),k):e},bc=function(a,b){Z([1,2],"r")&&(V[a]=V[a]||[],V[a].push(b),2==X&&window.setTimeout(function(){b(ac(a))},0))},cc=function(a,b,c){if(Z([1],"nap")&&c){for(var d=0;d<c.length;d++)Yb[c[d]]=e;n.up.spl(a,b,"nap",c)}},dc=function(a,
84
+ b,c){if(Z([1],"aop")&&c){if(W)for(var d in W)W[d]=W[d]&&-1!=$b(c,d);else{W={};for(d=0;d<c.length;d++)W[c[d]]=e}n.up.spl(a,b,"aop",c)}},ec=function(){try{if(X=2,!Zb){Zb=e;for(var a in V)for(var b=V[a],c=0;c<b.length;c++)try{b[c](ac(a))}catch(d){s(d,"up","tp")}}}catch(g){s(g,"up","mtp")}},ac=function(a){if(Z([2],"ssp")){var b=!Yb[a];W&&(b=b&&!!W[a]);return b}};Zb=k;V={};Yb={};W=h;
85
+ var X=1,fc=function(a){var b=e;try{b=!a.cookie}catch(c){}return b},gc=function(){try{return!!window.localStorage&&"object"==typeof window.localStorage}catch(a){return k}},hc=function(a){return a&&a.style&&a.style.oa&&"undefined"!=typeof a.load},ic=function(a,b,c,d){try{fc(document)||(d||(b="og-up-"+b),gc()?window.localStorage.setItem(b,c):hc(a)&&(a.setAttribute(b,c),a.save(a.id)))}catch(g){g.code!=DOMException.QUOTA_EXCEEDED_ERR&&s(g,"up","spd")}},jc=function(a,b,c){try{if(fc(document))return"";c||
86
+ (b="og-up-"+b);if(gc())return window.localStorage.getItem(b);if(hc(a))return a.load(a.id),a.getAttribute(b)}catch(d){d.code!=DOMException.QUOTA_EXCEEDED_ERR&&s(d,"up","gpd")}return""},kc=function(a,b,c){a.addEventListener?a.addEventListener(b,c,k):a.attachEvent&&a.attachEvent("on"+b,c)},lc=function(a){for(var b=0,c;c=a[b];b++){var d=n.up;c=c in d&&d[c];if(!c)return k}return e};r("up",{r:bc,nap:cc,aop:dc,tp:ec,ssp:ac,spd:ic,gpd:jc,aeh:kc,aal:lc});
87
+ var mc=function(a,b){a[b]=function(c){var d=arguments;n.qm(function(){a[b].apply(this,d)})}};mc(n.up,"sl");mc(n.up,"si");mc(n.up,"spl");n.mcf("up",{sp:q.b("0.01",1),tld:"com",prid:"78"});function nc(){function a(){if(document.getElementById("gb")==h)v(Kb.g,{_m:"nogb"});else{for(var b;(b=f[m++])&&!("m"==b[0]||b[1].auto););b&&(E(2,b[0]),b[1].url&&pa(b[1].url,b[0]),b[1].libs&&F&&F(b[1].libs));m<f.length&&setTimeout(a,0)}}function b(){0<g--?setTimeout(b,0):a()}var c=q.a("1"),d=q.a(""),g=3,f=z,m=0,l=window.gbarOnReady;if(l)try{l()}catch(p){s(p,"mle","or")}d?r("ldb",a):c?da(window,"load",b):b()}r("rdl",nc);}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
88
+ (function(){try{var c=window.gbar.i.i;var e=window.gbar;var f={};function g(a,b){f[a]||(f[a]=[]);f[a].push(b)}function h(a){if(a.type)for(var b=f[a.type],d=0;b&&d<b.length;++d)try{b[d](a)}catch(k){c(k,"sbc","d")}}e.bc={subscribe:g,dispatch:h};}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
89
+ (function(){try{var a=window.gbar;var b=a.i;a.mcf("sw",{uo:"",s:"https",h:"plus.google.com",po:"",pa:"/u/0/_/notifications/frame",q:"sourceid=78",f:"pid=78",ipd:b.c("5",5),it:b.c("60",-1),l:"en",sto:b.c("10",10),mnr:b.c("0",0),co:b.a(""),obc:b.a(""),siu:"https://accounts.google.com/ServiceLogin?service=googleplay&passive=1209600&continue=https://play.google.com/store/apps/details?id%3Dcom.hulu.plus%26hl%3Den&followup=https://play.google.com/store/apps/details?id%3Dcom.hulu.plus%26hl%3Den&hl=en",ogd:".google.com",sk:"og.og.en_US.acw77PjWnpA.DU",jk:"og.og.en_US.QSb34A2e7G4.O",js:"www.gstatic.com",ml:"gu",ms:"AItRSTNdvrvIHJAhLNUXS_921Y7FLFnCFQ",
90
+ lj:b.a(""),ge:b.a("1"),gto:b.c("10")});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
91
+ (function(){try{var a=window.gbar;var b=[],d=function(c){b.push(c)};a.nuc=b;a.anuc=d;var e=function(){a.aq("m",function(){a.lni()})};a.lni=e;a.mcf("no",{ht:parseInt("100",10),n:"Notifications",es:parseInt("1",10),s:"https",h:"plus.google.com",po:"",fpmsec:parseInt("0",10),xuo:"",xhm:"POST",xpa:"/u/0/_/n/gcosuc"});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
92
+ (function(){try{var a=window.gbar;var b=[],d=function(c){b.push(c)};a.smc=b;a.asmc=d;a.mcf("sb",{ht:parseInt("100",10),n:"Share"});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
93
+ (function(){try{var b=window.gbar;var d=function(a,c){b[a]=function(){return window.navigator&&window.navigator.userAgent?c(window.navigator.userAgent):!1}},e=function(a){return!/AppleWebKit\/.+(?:Version\/3\.|Chrome\/[01]\.)/.test(a)};d("bs_w",e);}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
94
+ (function(){try{var a=window.gbar;a.mcf("sf",{});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
95
+ (function(){try{var aa=window.gbar.i.i;var a=window.gbar;var e=a.i;var k,n;var u=function(b,d){aa(b,"es",d)},v=function(b){return document.getElementById(b)},w=function(b,d){var f=Array.prototype.slice.call(arguments,1);return function(){var c=Array.prototype.slice.call(arguments);c.unshift.apply(c,f);return b.apply(this,c)}},x=void 0,y=void 0,ba=e.c("840"),ca=e.c("640");e.c("840");
96
+ var ia=e.c("640"),ja=e.c("590"),ka=e.c("1514"),la=e.c("1474");e.c("1474");var ma=e.c("1252"),na=e.c("1060"),oa=e.c("995"),pa=e.c("851"),A={},B={},C={},D={},E={},F={},G={};A.h=e.c("102");A.m=e.c("44");A.f=e.c("220");
97
+ B.h=e.c("102");B.m=e.c("44");B.f=e.c("220");C.h=e.c("102");C.m=e.c("44");C.f=e.c("220");D.h=e.c("102");D.m=e.c("28");D.f=e.c("204");E.h=e.c("70");E.m=e.c("16");E.f=e.c("176");F.h=e.c("70");
98
+ F.m=e.c("16");F.f=e.c("176");G.h=e.c("70");G.m=e.c("12");G.f=e.c("136");
99
+ var H=e.c("16"),J=e.c("200"),qa=e.c("434"),ra=e.c("319"),sa=e.c("512"),ta=e.c("512"),ua=e.c("512"),va=e.c("434"),wa=e.c("319"),xa=e.c("220"),ya=e.c("220"),za=e.c("220"),
100
+ Aa=e.c("204"),Ba=e.c("176"),Ca=e.c("176"),Da=e.c("136"),Ea=e.c("15"),Fa=e.c("15"),K=e.c("15"),Ga=e.c("15"),Ha=e.c("6"),Ia=e.c("6"),Ja=e.c("6"),
101
+ Ka=e.c("44"),La=e.c("44"),Ma=e.c("44"),Na=e.c("28"),Oa=e.c("16"),Pa=e.c("16"),Qa=e.c("12"),Ra=e.c("30"),Sa=e.c("236"),Ta=e.c("304"),Ua=e.c("35");e.a("1");
102
+ var Va=e.c("700"),Wa="gb gbq gbu gbzw gbpr gbq2 gbqf gbqff gbq3 gbq4 gbq1 gbqlw gbql gbx1 gbx2 gbx3 gbx4 gbg1 gbg3 gbg4 gbd1 gbd3 gbd4 gbs gbwc gbprc".split(" "),M=["gbzw"],Q=e.a(""),Xa=e.a(""),R=[],U=!0,W=function(b){try{a.close();var d=e.c("27");"xxl"==b?(V("gbexxl"),d=e.c("27")):"xl"==b?(V("gbexl"),d=e.c("27")):"lg"==b?(V(""),d=
103
+ e.c("27")):"md"==b?(V("gbem"),d=e.c("27")):"sm"==b?V("gbes"):"ty"==b?V("gbet"):"ut"==b&&V("gbeu");if(window.opera){var f=M.length;for(b=0;b<f;b++){var c=v(M[b]);if(c){var q=c.style.display;c.style.display="none";b+=0*c.clientHeight;c.style.display=q}}}a.sps(d)}catch(r){u(r,"stem")}},Ya=w(W,"xxl"),Za=w(W,"xl"),$a=w(W,"lg"),ab=w(W,"md"),bb=w(W,"sm"),cb=w(W,"ty"),db=w(W,"ut"),Y=function(b){try{W(b);var d=e.j("Height"),f=e.j("Width"),
104
+ c=C;switch(b){case "ut":c=G;break;case "ty":c=F;break;case "sm":c=E;break;case "md":c=D;break;case "lg":c=C;break;case "xl":c=B;break;case "xxl":c=A}eb(d,f,b,c);X()}catch(q){u(q,"seme")}},fb=function(b){try{R.push(b)}catch(d){u(d,"roec")}},gb=function(){if(U)try{for(var b=0,d;d=R[b];++b)d(k)}catch(f){u(f,"eoec")}},hb=function(b){try{return U=b}catch(d){u(d,"ear")}},ib=function(){var b=e.j("Height"),d=e.j("Width"),f=C,c="lg";if(d<pa&&Q)c="ut",f=G;else if(d<oa&&Q)c="ty",f=F;else if(d<na||b<ja)c="sm",
105
+ f=E;else if(d<ma||b<ia)c="md",f=D;Xa&&(d>la&&b>ca&&(c="xl",f=B),d>ka&&b>ba&&(c="xxl",f=A));eb(b,d,c,f);return c},X=function(){try{var b=v("gbx1");if(b){var d=a.rtl(v("gb")),f=b.clientWidth,b=f<=Va,c=v("gb_70"),q=v("gbg4"),r=v("gbg6")||q;if(!x)if(c)x=c.clientWidth;else if(r)x=r.clientWidth;else return;if(!y){var s=v("gbg3");s&&(y=s.clientWidth)}var N=k.mo,t,m,l;switch(N){case "xxl":t=Ka;m=Ea;l=xa;break;case "xl":t=La;m=Fa;l=ya;break;case "md":t=Na;m=Ga;l=Aa;break;case "sm":t=Oa-H;m=Ha;l=Ba;break;case "ty":t=
106
+ Pa-H;m=Ia;l=Ca;break;case "ut":t=Qa-H;m=Ja;l=Da;break;default:t=Ma,m=K,l=za}var p=a.snw&&a.snw();p&&(l+=p+m);var p=x,z=v("gbg1");z&&(p+=z.clientWidth+m);(s=v("gbg3"))&&(p+=y+m);var S=v("gbgs4dn");q&&!S&&(p+=q.clientWidth+m);var da=v("gbd4"),T=v("gb_71");T&&!da&&(p+=T.clientWidth+m+K);p=Math.min(Ta,p);l+=t;var O=v("gbqfbw"),I=v("gbq4");I&&(l+=I.offsetWidth);O&&(O.style.display="",l+=O.clientWidth+Ra);var I=f-l,ea=v("gbqf"),fa=v("gbqff"),h=a.gpcc&&a.gpcc();if(ea&&fa&&!h){h=f-p-l;switch(N){case "ut":h=
107
+ Math.min(h,wa);h=Math.max(h,ra);break;case "ty":h=Math.min(h,va);h=Math.max(h,qa);break;case "xl":h=Math.min(h,ua);h=Math.max(h,J);break;case "xxl":h=Math.min(h,ta);h=Math.max(h,J);break;default:h=Math.min(h,sa),h=Math.max(h,J)}ea.style.maxWidth=h+"px";fa.style.maxWidth=h+"px";I-=h}var g=v("gbgs3");if(g){var N=I<=Sa,ga=a.cc(g,"gbsbc");N&&!ga?(a.ca(g,"gbsbc"),a.close()):!N&&ga&&(a.cr(g,"gbsbc"),a.close())}g=I;z&&(z.style.display="",g-=z.clientWidth+m);s&&(s.style.display="",g-=s.clientWidth+m);q&&
108
+ !S&&(g-=q.clientWidth+m);T&&!da&&(g-=T.clientWidth+m+K);var q=S?0:Ua,P=S||v("gbi4t");if(P&&!c){g>q?(P.style.display="",P.style.maxWidth=g+"px"):P.style.display="none";r&&(r.style.width=g<x&&g>q?g+"px":"");var ha=v("gbgs4d"),r="left";x>g^d&&(r="right");P.style.textAlign=r;ha&&(ha.style.textAlign=r)}s&&0>g&&(g+=s.clientWidth,s.style.display="none");z&&0>g&&(g+=z.clientWidth,z.style.display="none");if(O&&(0>g||c&&g<c.clientWidth))O.style.display="none";var c=d?"right":"left",d=d?"left":"right",L=v("gbu"),
109
+ lb=""!=L.style[c];b?(L.style[c]=f-L.clientWidth-t+"px",L.style[d]="auto"):(L.style[c]="",L.style[d]="");b!=lb&&a.swsc&&a.swsc(b)}}catch(mb){u(mb,"cb")}},eb=function(b,d,f,c){k={};k.mo=f;k.vh=b;k.vw=d;k.es=c;f!=n&&(gb(),e.f&&e.f())},jb=function(b){A.h+=b;B.h+=b;C.h+=b;D.h+=b;E.h+=b;F.h+=b;G.h+=b},kb=function(){return k},nb=function(){try{if(!0==U){var b=n;n=ib();if(b!=n)switch(n){case "ut":db();break;case "ty":cb();break;case "sm":bb();break;case "md":ab();break;case "xl":Za();break;case "xxl":Ya();
110
+ break;default:$a()}}X();var d=v("gb");if(d){var f=d.style.opacity;d.style.opacity=".99";for(b=0;1>b;b++)b+=0*d.offsetWidth;d.style.opacity=f}}catch(c){u(c,"sem")}},V=function(b){var d=v("gb");d&&Z(d,"gbexxli gbexli gbemi gbesi gbeti gbeui".split(" "));for(var d=[],f=0,c;c=Wa[f];f++)if(c=v(c)){switch(b){case "gbexxl":Z(c,"gbexl gbem gbes gbet gbeu".split(" "));a.ca(c,b);break;case "gbexl":Z(c,"gbexxl gbem gbes gbet gbeu".split(" "));a.ca(c,b);break;case "":Z(c,"gbexxl gbexl gbem gbes gbet gbeu".split(" "));
111
+ a.ca(c,b);break;case "gbem":Z(c,"gbexxl gbexl gbes gbet gbeu".split(" "));a.ca(c,b);break;case "gbes":Z(c,"gbexxl gbexl gbem gbet gbeu".split(" "));a.ca(c,b);break;case "gbet":Z(c,"gbexxl gbexl gbem gbes gbeu".split(" "));a.ca(c,b);break;case "gbeu":Z(c,"gbexxl gbexl gbem gbes gbet".split(" ")),a.ca(c,b)}d.push(c)}return d},Z=function(b,d){for(var f=0,c=d.length;f<c;++f)d[f]&&a.cr(b,d[f])},ob=function(){try{if(!0==U)switch(ib()){case "ut":$("gbeui");break;case "ty":$("gbeti");break;case "sm":$("gbesi");
112
+ break;case "md":$("gbemi");break;case "xl":$("gbexli");break;case "xxl":$("gbexxli");break;default:$("")}X()}catch(b){u(b,"semol")}},$=function(b){var d=v("gb");d&&a.ca(d,b)};a.eli=ob;a.elg=nb;a.elxxl=w(Y,"xxl");a.elxl=w(Y,"xl");a.ell=w(Y,"lg");a.elm=w(Y,"md");a.els=w(Y,"sm");a.elr=kb;a.elc=fb;a.elx=gb;a.elh=jb;a.ela=hb;a.elp=X;a.upel=w(Y,"lg");a.upes=w(Y,"md");a.upet=w(Y,"sm");ob();nb();a.mcf("el",{});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
113
+ (function(){try{var a=window.gbar;var d=function(){return document.getElementById("gbqfqw")},h=function(){return document.getElementById("gbqfq")},k=function(){return document.getElementById("gbqf")},l=function(){return document.getElementById("gbqfb")},n=function(b){var c=document.getElementById("gbqfaa");c.appendChild(b);m()},p=function(b){var c=document.getElementById("gbqfab");c.appendChild(b);m()},m=function(){var b=document.getElementById("gbqfqwb");if(b){var c=document.getElementById("gbqfaa"),e=document.getElementById("gbqfab");
114
+ if(c||e){var f="left",g="right";a.rtl(document.getElementById("gb"))&&(f="right",g="left");c&&(b.style[f]=c.offsetWidth+"px");e&&(b.style[g]=e.offsetWidth+"px")}}},q=function(b){a.qm(function(){a.qfhi(b)})};a.qfgw=d;a.qfgq=h;a.qfgf=k;a.qfas=n;a.qfae=p;a.qfau=m;a.qfhi=q;a.qfsb=l;}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
115
+ (function(){try{var a=window.gbar;a.mcf("pm",{p:""});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
116
+ (function(){try{var a=window.gbar;a.mcf("mm",{s:"1"});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
117
+ (function(){try{var a=window.gbar;var b=a.i;a.bcf("op",{url:"//ssl.gstatic.com/gb/js/om_8b0ed098d50d5b01d7f3243da69f0fb2.js"});var d=function(c){b.d(c);a.aq("op",function(){b.e()});c=function(){a.lb("op")};a.mdi.wg?c():a.qm(c)};b.e=d;a.mcf("op",{l:"en",u:b.c("0",0)});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
118
+ (function(){try{var a=window.gbar;a.mcf("cm",{e:"1",s:"https",h:"plus.google.com",po:"",gpa:"/u/0/_/og/storage/get",spa:"/u/0/_/og/storage/set",rpa:"/u/0/_/og/storage/remove",q:"sourceid=78",guo:"",suo:"",ruo:"",srlo:"",klo:"[[[[2,[113]],[2,[10]],[2,[1]],[2,[25]],[2,[27]],[2,[27]],[2,[33]],[2,[33]],[2,[119]],[2,[113]],[2,[51]],[2,[119]],[2,[25]],[2,[78]],[2,[212]],[2,[212]],[2,[25]],[2,[25]],[2,[31]],[2,[113]],[2,[5]],[2,[10]],[2,[24]]]]]",
119
+ rs:"0.01"});}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
120
+ (function(){try{window.gbar.rdl();}catch(e){window.gbar&&gbar.logger&&gbar.logger.ml(e,{"_sn":"cfg.init"});}})();
121
+ (window['gbar']=window['gbar']||{})._CONFIG=[[[0,"www.gstatic.com","og.og.en_US.QSb34A2e7G4.O","com","en","78",0,["2","2",".49.65.51.40.70.46.55.36.","r_qf.","31215","1375309281","1374081516"],"35972","Q0n7UaLxM8bjigLSt4CgDA",0,0,"og.og.1i0rv39ujx40h.L.W.O","AItRSTNdvrvIHJAhLNUXS_921Y7FLFnCFQ","AItRSTNjZNGgOjJe7x4IZBnbTktzgV1AHA"],["","https","plus.google.com","","/u/0/_/notifications/frame","sourceid=78","pid=78","en",5],0,["m;/_/scs/abc-static/_/js/k=gapi.gapi.en.ttZ9tAb8XrM.O/m=__features__/am=EA/rt=j/d=1/rs=AItRSTP3CJxcMrRUdx1_I61ycmx3Rf99QA","https://apis.google.com","","1","1","","APfa0bqwYWJJaui8qaZynrRAHt0BuiDOdh-dn5yzKFfhMLK8o9YYTdu5CwXFQhZgolvloQGEpu64GAB3gL20p0nZYD15FTKePg==",1,"es_plusone_gc_20130724.0_p0"],["1","gci_91f30755d6a6b787dcc2a4062e6e9824.js","googleapis.client:plusone","0","en"],null,[100,"Notifications",1,"https","plus.google.com","",0,"","POST","/u/0/_/n/gcosuc",3000,0],[100,"Share"],["0.01","com","78",[["","",""],"","w",["","",""]],[["","",""],"",["","",""],0,0]],["%1$s (default)","Google+ page",0,"%1$s (delegated)",0],[1,1,0,0,"0"],[1,"0.001","0.01"],[1,"0.1"],[],[],[],[[""],[""]]]];</script><title>Hulu Plus - Android Apps on Google Play</title><meta content="Instantly watch current TV shows and acclaimed movies. Anywhere.&lt;p&gt;Download the app to enjoy unlimited instant streaming of current and classic hit TV shows with your ..." name="Description"><link href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=en" rel="canonical"><link hreflang="x-default" href="https://play.google.com/store/apps/details?id=com.hulu.plus" rel="alternate"><link hreflang="af" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=af" rel="alternate"><link hreflang="ms" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=ms" rel="alternate"><link hreflang="ca" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=ca" rel="alternate"><link hreflang="cs" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=cs" rel="alternate"><link hreflang="da" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=da" rel="alternate"><link hreflang="de" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=de" rel="alternate"><link hreflang="et" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=et" rel="alternate"><link hreflang="en_GB" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=en_GB" rel="alternate"><link hreflang="en" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=en" rel="alternate"><link hreflang="es" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=es" rel="alternate"><link hreflang="es_419" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=es_419" rel="alternate"><link hreflang="tl" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=tl" rel="alternate"><link hreflang="fr" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=fr" rel="alternate"><link hreflang="hr" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=hr" rel="alternate"><link hreflang="zu" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=zu" rel="alternate"><link hreflang="it" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=it" rel="alternate"><link hreflang="sw" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=sw" rel="alternate"><link hreflang="lv" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=lv" rel="alternate"><link hreflang="lt" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=lt" rel="alternate"><link hreflang="hu" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=hu" rel="alternate"><link hreflang="nl" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=nl" rel="alternate"><link hreflang="no" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=no" rel="alternate"><link hreflang="pl" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=pl" rel="alternate"><link hreflang="pt_BR" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=pt_BR" rel="alternate"><link hreflang="pt_PT" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=pt_PT" rel="alternate"><link hreflang="ro" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=ro" rel="alternate"><link hreflang="sk" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=sk" rel="alternate"><link hreflang="sl" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=sl" rel="alternate"><link hreflang="fi" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=fi" rel="alternate"><link hreflang="sv" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=sv" rel="alternate"><link hreflang="vi" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=vi" rel="alternate"><link hreflang="tr" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=tr" rel="alternate"><link hreflang="el" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=el" rel="alternate"><link hreflang="be" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=be" rel="alternate"><link hreflang="bg" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=bg" rel="alternate"><link hreflang="ru" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=ru" rel="alternate"><link hreflang="sr" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=sr" rel="alternate"><link hreflang="uk" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=uk" rel="alternate"><link hreflang="am" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=am" rel="alternate"><link hreflang="hi" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=hi" rel="alternate"><link hreflang="th" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=th" rel="alternate"><link hreflang="ko" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=ko" rel="alternate"><link hreflang="ja" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=ja" rel="alternate"><link hreflang="zh_CN" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=zh_CN" rel="alternate"><link hreflang="zh_TW" href="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;hl=zh_TW" rel="alternate"></head><body><div id=gb><script>window.gbar&&gbar.eli&&gbar.eli()</script><div id=gbw><div id=gbzw><div id=gbz><span class=gbtcb></span><ol id=gbzc class=gbtc><li class=gbt><a onclick=gbar.logger.il(1,{t:119}); class=gbzt id=gb_119 href="https://plus.google.com/u/0/?tab=8X"><span class=gbtb2></span><span class=gbts>+Joanna</span></a></li><li class=gbt><a onclick=gbar.qs(this);gbar.logger.il(1,{t:1}); class=gbzt id=gb_1 href="http://www.google.com/webhp?hl=en&tab=8w&authuser=0"><span class=gbtb2></span><span class=gbts>Search</span></a></li><li class=gbt><a onclick=gbar.qs(this);gbar.logger.il(1,{t:2}); class=gbzt id=gb_2 href="http://www.google.com/imghp?hl=en&tab=8i&authuser=0"><span class=gbtb2></span><span class=gbts>Images</span></a></li><li class=gbt><a onclick=gbar.qs(this);gbar.logger.il(1,{t:8}); class=gbzt id=gb_8 href="https://maps.google.com/maps?hl=en&tab=8l&authuser=0"><span class=gbtb2></span><span class=gbts>Maps</span></a></li><li class=gbt><a onclick=gbar.logger.il(1,{t:78}); class="gbzt gbz0l gbp1" id=gb_78 href="https://play.google.com/?hl=en&tab=88&authuser=0"><span class=gbtb2></span><span class=gbts>Play</span></a></li><li class=gbt><a onclick=gbar.qs(this);gbar.logger.il(1,{t:36}); class=gbzt id=gb_36 href="https://www.youtube.com/?tab=81&authuser=0"><span class=gbtb2></span><span class=gbts>YouTube</span></a></li><li class=gbt><a onclick=gbar.logger.il(1,{t:5}); class=gbzt id=gb_5 href="https://news.google.com/nwshp?hl=en&tab=8n&authuser=0"><span class=gbtb2></span><span class=gbts>News</span></a></li><li class=gbt><a onclick=gbar.logger.il(1,{t:23}); class=gbzt id=gb_23 href="https://mail.google.com/mail/?tab=8m&authuser=0"><span class=gbtb2></span><span class=gbts>Gmail</span></a></li><li class=gbt><a onclick=gbar.logger.il(1,{t:25}); class=gbzt id=gb_25 href="https://drive.google.com/?tab=8o&authuser=0"><span class=gbtb2></span><span class=gbts>Drive</span></a></li><li class=gbt><a onclick=gbar.logger.il(1,{t:24}); class=gbzt id=gb_24 href="https://www.google.com/calendar?tab=8c&authuser=0"><span class=gbtb2></span><span class=gbts>Calendar</span></a></li><li class=gbt><a class=gbgt id=gbztm href="http://www.google.com/intl/en/options/" onclick="gbar.tg(event,this)" aria-haspopup=true aria-owns=gbd><span class=gbtb2></span><span id=gbztms class="gbts gbtsa"><span id=gbztms1>More</span><span class=gbma></span></span></a><div class=gbm id=gbd aria-owner=gbztm><div id=gbmmb class="gbmc gbsb gbsbis"><ol id=gbmm class="gbmcc gbsbic"><li class=gbmtc><a onclick=gbar.qs(this);gbar.logger.il(1,{t:51}); class=gbmt id=gb_51 href="https://translate.google.com/?hl=en&tab=8T&authuser=0">Translate</a></li><li class=gbmtc><a onclick=gbar.logger.il(1,{t:17}); class=gbmt id=gb_17 href="http://www.google.com/mobile/?hl=en&tab=8D">Mobile</a></li><li class=gbmtc><a onclick=gbar.qs(this);gbar.logger.il(1,{t:10}); class=gbmt id=gb_10 href="http://books.google.com/bkshp?hl=en&tab=8p&authuser=0">Books</a></li><li class=gbmtc><a onclick=gbar.logger.il(1,{t:172}); class=gbmt id=gb_172 href="https://www.google.com/offers?utm_source=xsell&utm_medium=products&utm_campaign=sandbar&hl=en&tab=8G&authuser=0">Offers</a></li><li class=gbmtc><a onclick=gbar.logger.il(1,{t:212}); class=gbmt id=gb_212 href="https://wallet.google.com/manage/?tab=8a&authuser=0">Wallet</a></li><li class=gbmtc><a onclick=gbar.qs(this);gbar.logger.il(1,{t:6}); class=gbmt id=gb_6 href="http://www.google.com/shopping?hl=en&tab=8f&authuser=0">Shopping</a></li><li class=gbmtc><a onclick=gbar.logger.il(1,{t:30}); class=gbmt id=gb_30 href="https://www.blogger.com/?tab=8j">Blogger</a></li><li class=gbmtc><a onclick=gbar.qs(this);gbar.logger.il(1,{t:27}); class=gbmt id=gb_27 href="https://www.google.com/finance?tab=8e&authuser=0">Finance</a></li><li class=gbmtc><a onclick=gbar.qs(this);gbar.logger.il(1,{t:31}); class=gbmt id=gb_31 href="https://plus.google.com/u/0/photos?tab=8q">Photos</a></li><li class=gbmtc><a onclick=gbar.qs(this);gbar.logger.il(1,{t:12}); class=gbmt id=gb_12 href="http://video.google.com/?hl=en&tab=8v&authuser=0">Videos</a></li><li class=gbmtc><div class="gbmt gbmh"></div></li><li class=gbmtc><a onclick=gbar.logger.il(1,{t:66}); href="http://www.google.com/intl/en/options/" class=gbmt>Even more</a></li></ol><div class=gbsbt></div><div class=gbsbb></div></div></div></li></ol></div></div><div id=gbq><div id=gbq1 class="gbt"><a class=gbqla href="/store" onclick="gbar.logger.il(39)" title="Google Play"><table id=gbqlt><tr><td id=gbqlw class=gbgt><a class=gbqla2 href="/store" title="Google Play"><img id=gbqld class=gbqldr src=https://www.gstatic.com/android/market_images/web/play_logo.png alt="Google Play" /></a></td></tr></table><div class=gbqlca></div></a></div><div id=gbq2 class=gbt><div id=gbqfw ><form id=gbqf name=gbqf method=get action="/store/search" onsubmit="gbar.logger.il(31);return false;"><fieldset class=gbxx><legend class=gbxx>Hidden fields</legend><div id=gbqffd></div></fieldset><fieldset class=gbqff id=gbqff><legend class=gbxx>Search</legend><div id=gbfwa class="gbqfwa "><div id=gbqfqw class=gbqfqw><div id=gbqfaa></div><div id=gbqfqwb class=gbqfqwb><input id=gbqfq class=gbqfif name=q type=text autocomplete=off value="" placeholder="Search" ></div><div id=gbqfab></div></div></div></fieldset><div id=gbqfbw><button id=gbqfb aria-label="Google Search" class=gbqfb><span class=gbqfi></span></button></div></form></div></div></div><div id=gbu><div id=gbvg class=gbvg><h2 class=gbxx>Account Options</h2><span class=gbtcb></span><ol class="gbtc gbsr"><li class=gbt><a class=gbgt id=gbg6 href="https://plus.google.com/u/0/me?tab=8X&authuser=0" onclick="gbar.tg(event,document.getElementById('gbg4'))" tabindex=-1 aria-haspopup=true aria-owns=gbd4><span id=gbi4t>zeta.joanna@gmail.com</span></a></li><li class="gbt gbtn"><a class="gbgt gbgtd gbnh gb_gbnh " id=gbg1 href="https://plus.google.com/u/0/notifications/all?hl=en" title="Notifications" onclick="gbar.tg(event,this)" aria-haspopup=true aria-owns=gbd1><span id=gbgs1 class=gbg1t><span id=gbi1a class=gbid></span><span id=gbi1 class=gbids>&nbsp;</span></span><span class=gbmab></span><span class=gbmac></span></a><div id=gbd1 class="gbm gbmsgo" aria-owner=gbg1><div class=gbmc></div><div class=gbmsg></div></div></li><li class="gbt gbtsb"><a class=gbgt id=gbg3 href="https://plus.google.com/u/0/stream/all?hl=en" onclick="gbar.tg(event,this)" aria-haspopup=true aria-owns=gbd3><div id=gbgs3><span class=gbmab></span><span class=gbmac></span><span id=gbgsi></span><span id=gbgss>&nbsp;</span><span id=gbi3>Share</span><span id=gbgsa></span></div></a><div class="gbm gbmsgo" id=gbd3 aria-owner=gbg3><div class=gbmc></div><div class=gbmsg></div></div></li><li class=gbt guidedhelpid=gbacsw><a class="gbgt gbg4p" id=gbg4 href="https://plus.google.com/u/0/me?tab=8X&authuser=0" onclick="gbar.tg(event,this)" aria-haspopup=true aria-owns=gbd4><span id=gbgs4><img id=gbi4i width=27 height=27 onerror="window.gbar&&gbar.pge?gbar.pge():this.loadError=1;" src="//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s27-c/photo.jpg" alt="Joanna Zeta"><img id=gbi4ip style=display:none><span id=gbi4id style="display:none"></span><span class=gbmai></span><span class=gbmab></span><span class=gbmac></span></span></a><div class=gbm id=gbd4 aria-owner=gbg4 guidedhelpid=gbd4><div class=gbmc><div id=gbmpdv><div id=gbmpiw><a class="gbmpiaa gbp1" onclick="gbar.logger.il(10,{t:146})" href="https://plus.google.com/u/0/me?tab=8X&authuser=0"><span id=gbmpid style="display:none"></span><img id=gbmpi width=96 height=96 onerror="window.gbar&&gbar.ppe?gbar.ppe():this.loadError=1;" src="//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s27-c/photo.jpg" alt="Joanna Zeta"></a><span id=gbmpicb><span class=gbxv>Change photo</span></span><a href="https://plus.google.com/u/0/me?tab=8X&authuser=0" id=gbmpicp onclick="gbar.i.e(event)">Change photo</a></div><div class=gbpc><span id=gbmpn class=gbps onclick="gbar.logger.il(10,{t:69})">Joanna Zeta</span><span class=gbps2>zeta.joanna@gmail.com</span><div class=gbmlbw><a id=gb_156 onclick="gbar.logger.il(10,{t:156})" href="https://accounts.google.com/b/0/ManageAccount?hl=en" class=gbmlb>Account</a>&ndash;<a onclick="gbar.logger.il(10,{t:156})" href="https://www.google.com/settings/privacy?authuser=0" class=gbmlb>Privacy</a></div><a role=button id=gbmplp onclick="gbar.logger.il(10,{t:146})" href="https://plus.google.com/u/0/me?tab=8X&authuser=0" class="gbqfb gbiba gbp1">View profile</a></div></div><div id=gbmps><div id=gbmpasb class='gbsb gbsbis'><div id=gbmpas class=gbsbic><div id=gbmpm_0 class="gbmtc gbp0"><a id=gbmpm_0_l href="/store/apps/details?id=com.hulu.plus&hl=en&authuser=0" class=gbmt><span class="gbmpiaw gbxv"><img class=gbmpia width=48 height=48 onerror="window.gbar&&gbar.pae?gbar.pae(this):this.loadError=1;" data-asrc="//lh6.googleusercontent.com/-3Q7gQLV_TjY/AAAAAAAAAAI/AAAAAAAAAAA/RTnYsRX8pao/s48-c/photo.jpg" alt="Joanna Zeta"></span><span class=gbmpnw><span class=gbps>Joanna Zeta</span><span class=gbps2><span class=gbps3>zeta.joanna@gmail.com</span> (default)</span></span></a></div><div id=gbmpm_1 class=gbmtc><a id=gbmpm_1_l href="/store/apps/details?id=com.hulu.plus&hl=en&authuser=1" class=gbmt><span class="gbmpiaw gbxv"><img class=gbmpia width=48 height=48 onerror="window.gbar&&gbar.pae?gbar.pae(this):this.loadError=1;" data-asrc="//lh4.googleusercontent.com/-jDHnX_rTyDg/AAAAAAAAAAI/AAAAAAAAAAA/cZZ9fUtmhAE/s48-c/photo.jpg" alt="Joanna Zeta"></span><span class=gbmpnw><span class=gbps>Joanna Zeta</span><span class=gbps2><span class=gbps3>jpzeta87@gmail.com</span></span></span></a></div><div id=gbmpm_2 class=gbmtc><a id=gbmpm_2_l href="/store/apps/details?id=com.hulu.plus&hl=en&authuser=2" class=gbmt><span class="gbmpiaw gbxv"><img class=gbmpia width=48 height=48 onerror="window.gbar&&gbar.pae?gbar.pae(this):this.loadError=1;" data-asrc="//lh3.googleusercontent.com/-RIBxtg1N5rI/AAAAAAAAAAI/AAAAAAAAAAA/_PuMQd_4JT0/s48-c/photo.jpg" alt="Joanna Zeta"></span><span class=gbmpnw><span class=gbps>Joanna Zeta</span><span class=gbps2><span class=gbps3>zeta.usc@gmail.com</span></span></span></a></div><div id=gbmpm_3 class=gbmtc><a id=gbmpm_3_l href="/store/apps/details?id=com.hulu.plus&hl=en&authuser=3" class=gbmt><span class="gbmpiaw gbxv"><img class=gbmpia width=48 height=48 onerror="window.gbar&&gbar.pae?gbar.pae(this):this.loadError=1;" data-asrc="//lh6.googleusercontent.com/-aDvv2-dKljw/AAAAAAAAAAI/AAAAAAAAAAA/Hl2Td5SHiZ0/s48-c/photo.jpg" alt="Joanna Zeta"></span><span class=gbmpnw><span class=gbps>Joanna Zeta</span><span class=gbps2><span class=gbps3>joanna.zeta@disneyanimation.com</span></span></span></a></div></div><div class=gbsbt></div><div class=gbsbb></div></div><div id=gbmppc class="gbxx gbmtc"><a class=gbmt href="https://plus.google.com/u/0/dashboard"><span class=gbmppci></span>All your Google+ pages &rsaquo;</a></div></div><table id=gbmpal><tr><td class=gbmpala><a role=button href="https://accounts.google.com/AddSession?service=googleplay&continue=https://play.google.com/store/apps/details?id%3Dcom.hulu.plus%26hl%3Den&hl=en" class=gbqfbb>Add account</a></td><td class=gbmpalb><a target=_top role=button id=gb_71 onclick="gbar.logger.il(9,{l:'o'})" href="https://accounts.google.com/Logout?service=googleplay&continue=https://play.google.com/&hl=en" class=gbqfbb>Sign out</a></td></tr></table></div></div></li><noscript><li class=gbt><a id=gbg7 href="https://accounts.google.com/Logout?service=googleplay&continue=https://play.google.com/&hl=en" class=gbgt><span class=gbgs><span class=gbit>Sign out</span></span></a></li></noscript></ol><div id=gbdw></div></div></div></div><div id=gbx1 ></div><div id=gbx3></div><div id=gbbw><div id=gbb></div></div><script>window.gbar&&gbar.elp&&gbar.elp()</script></div><div id="offscreen-renderer" style="position:fixed;top:-100000px;left:-100000px;opacity:0"></div><div class="wrapper-with-footer" id="wrapper"><div><div class="nav-container" style="visibility:hidden"> <span class="show-all-hover-zone"> <span class="hover-arrow"></span> </span> <ul class="nav"> <li class="nav-list-item apps" data-backend="3" style="display:none"> <a class="menu-link no-menu-change selected" href="/store/apps"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Apps </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link no-menu-change" href="/apps"> My apps </a> </li> <li class="sub-nav-option"> <a class="shop-link no-menu-change chosen" href="/store/apps"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/store/apps/category/GAME"> Games </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/store/apps/collection/editors_choice"> Editors' Choice </a> </li> </ul> </li> <li class="nav-list-item movies-tv" data-backend="4" style="display:none"> <a class="menu-link no-menu-change default" href="/store/movies"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Movies & TV </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link no-menu-change" href="/movies"> My movies & TV </a> </li> <li class="sub-nav-option"> <a class="shop-link no-menu-change chosen" href="/store/movies"> Shop </a> </li> <li class="sub-nav-divider"></li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/store/movies/category/MOVIE"> Movies </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/store/movies/category/TV"> TV </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/store/movies/collection/promotion_collections_movie_studios"> Studios </a> </li> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/store/movies/collection/promotion_collections_tv_networks"> Networks </a> </li> </ul> </li> <li class="nav-list-item music" data-backend="2" style="display:none"> <a class="menu-link no-menu-change default" href="/store/music"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Music </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link no-menu-change no-nav" href="/music?authuser=0"> My music </a> </li> <li class="sub-nav-option"> <a class="shop-link no-menu-change chosen" href="/store/music"> Shop </a> </li> </ul> </li> <li class="nav-list-item books" data-backend="1" style="display:none"> <a class="menu-link no-menu-change default" href="/store/books"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Books </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link no-menu-change no-nav" href="/books"> My books </a> </li> <li class="sub-nav-option"> <a class="shop-link no-menu-change chosen" href="/store/books"> Shop </a> </li> </ul> </li> <li class="nav-list-item magazines" data-backend="6" style="display:none"> <a class="menu-link no-menu-change default" href="/store/magazines"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Magazines </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="library-link no-menu-change" href="/magazines"> My magazines </a> </li> <li class="sub-nav-option"> <a class="shop-link no-menu-change chosen" href="/store/magazines"> Shop </a> </li> </ul> </li> <li class="nav-list-item devices" data-backend="5" style="display:none"> <a class="menu-link no-menu-change default" href="/store/devices"> <span class="hover-target"> <span class="icon-container"> <span class="icon"></span> </span> <span class="title"> Devices </span> </span> </a> <ul class="sub-nav non-store-sub-nav"> <li class="sub-nav-option"> <a class="shop-link no-menu-change chosen" href="/store/devices"> Shop </a> </li> </ul> </li> <li class="nav-list-item store" data-backend="0" style="display:none"> <a class="menu-link no-menu-change default" href="/store"> <span class="hover-target"> <span class="icon-container"></span> <span class="title"> Store </span> </span> </a> <ul class="sub-nav"> <li class="secondary-sub-nav-option"> <a class="sub-nav-link no-menu-change" href="/wishlist"> My wishlist </a> </li> <li class="secondary-sub-nav-option cannot-set-chosen"> <a class="sub-nav-link no-menu-change no-nav" href="/redeem"> Redeem </a> </li> <li class="secondary-sub-nav-option cannot-set-chosen"> <a class="sub-nav-link no-menu-change no-nav" href="https://play.google.com/intl/en_us/about/giftcards"> Buy gift card </a> </li> <li class="secondary-sub-nav-option cannot-set-chosen"> <span class="sub-nav-link no-menu-change topup-link"> Buy Google Play credit </span> </li> </ul> </li> </ul> </div></div><div class="butterbar-container"><span id="butterbar"></span></div><div class="body-content-loading-overlay" style="display:none"><div class="body-content-loading-spinner"></div></div><script type="text/javascript" src="/static/client/js/765868912-jquery_js_compiled_jquery_js.js"></script>
122
+ <script type="text/javascript" src="/static/client/js/1946319261-initial_page_js_compiled_initial_page_js.js"></script>
123
+ <script>initializeApp();</script><div class="action-bar-container" jsl="$t;if _s(action_bar,1)&gt;0;" style="display:none"> <div class="action-bar-inner"> <div class="" jsl="$a class:'action-bar '+_f(action_bar,'',0);"> <div class="" jsinstance="*0" jsl="for item:_f(action_bar,[],1);$a class:_h(item,4)?'action-bar-item '+_f(item,'',4):'action-bar-item';" style="display:none"> <div jsl="if _f(item,0,0)==7;$u tk14413807353874531836;$t;$c _f(item,'',2);" style="display:none" class="action-bar-title"></div> <div jsl="if _f(item,0,0)==1;$u tk16015059130403238017;$t;$a class?_f(item,'',1,0)!='';$a class:'action-bar-link '+_f(item,'',1,2);" style="display:none"> <a href="#" jsl="$a href:_f(item,'',1,0);$c _f(item,'',1,1);"></a> </div> <div jsl="if _f(item,0,0)==2;$u tk11932966538199902115;$t;" style="display:none" class="action-bar-dropdown-container"> <div class="action-bar-dropdown"> <div class="action-bar-dropdown-top"> <span class="title" jsl="$c _f(item,'',2);"></span> <span class="dropdown-icon"></span> </div> </div> <div class="action-bar-dropdown-children-container" style="display:none"> <div class="dropdown-submenu empty" jsl="$a class.empty?_s(item,3)==0;"> <div jsl="$a class.submenu-item-wrapper?_s(item,3)&gt;0&amp;&amp;_f(item,0,3,0,0)==6;"> <jsl jsinstance="*0" jsl="for sub_item:_f(item,[],3);" style="display:none"> <div jsl="if _f(sub_item,0,0)==5;var parent:sub_item;$u tk13400965632782439450;$t;" style="display:none" class="submenu-item-wrapper"> <div class="parent-submenu-link-wrapper" jsl="if _f(parent,'',4)!='no-heading';"> <a href="#" title="" class="parent-submenu-link" jsl="$a href:_f(parent,'',1,0);$a title:_f(parent,'',1,1);$a class:'parent-submenu-link'+(_h(parent,4)?' '+_f(parent,'',4):'')+(_h(parent,1,2)?' '+_f(parent,'',1,2):'');$c _f(parent,'',1,1);"></a> </div> <div class="submenu-divider" jsl="if _f(parent,'',4)!='no-heading';"></div> <div class="child-submenu-link-wrapper" jsinstance="*0" jsl="for child:_f(parent,[],3);" style="display:none"> <a href="#" title="" dir="" jsl="$a href:_f(child,'',1,0);$a title:_f(child,'',1,1);$a class:'child-submenu-link'+(_h(child,4)?' '+_f(child,'',4):'')+(_h(child,1,2)?' '+_f(child,'',1,2):'');$c _f(child,'',1,1);"></a> </div> </div> <div jsl="if _f(sub_item,0,0)==6;var leaf:sub_item;$u tk4925754492023920516;$t;" style="display:none" class="leaf-submenu-link-wrapper"> <a href="#" title="" class="leaf-submenu-link" jsl="$a href:_f(leaf,'',1,0);$a title:_f(leaf,'',1,1);$a class:'leaf-submenu-link'+(_h(leaf,4)?' '+_f(leaf,'',4):'')+(_h(leaf,1,2)?' '+_f(leaf,'',1,2):'');$c _f(leaf,'',1,1);"></a> </div> </jsl> </div> </div> </div> </div> <div jsl="if _f(item,0,0)==3;" style="display:none" class="action-bar-spacer"> </div> <div jsl="if _f(item,0,0)==4;$u tk13965256392035871379;$t;" style="display:none" class="action-bar-settings-button"> </div> </div> </div> </div> </div><div itemtype="http://schema.org/MobileApplication" itemscope="itemscope" data-page-server-cookie="" id="body-content"><meta content="https://play.google.com/store/apps/details?id=com.hulu.plus" itemprop="url"><meta itemprop="logoImageUrl" content="https://www.gstatic.com/android/market_images/plus/play_stream_logo.png"><meta itemprop="logoHrefUrl" content="https://play.google.com"><div class="details-wrapper apps square-cover" data-docid="com.hulu.plus"> <div class="details-info"> <div class="cover-container"> <img class="cover-image" src="https://lh5.ggpht.com/v8ODfPPNzQYv5xnNkZJEUg71RSLpNQgNulm8ChFcX5c3QgZd2293-JH08z41G8hlCw=w300-rw" alt="Cover art" itemprop="image"> </div> <div class="info-container"> <div class="document-title" itemprop="name"> <div>Hulu Plus</div> </div> <div itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta content="/store/apps/developer?id=Hulu" itemprop="url"> <a class="document-subtitle primary" href="/store/apps/developer?id=Hulu" itemprop="name">Hulu</a> <div class="document-subtitle">- July 9, 2013</div> </div> <div> <a class="document-subtitle category" href="/store/apps/category/ENTERTAINMENT">Entertainment</a> </div> <div class="details-actions"> <span class="buy-button-container apps medium play-button" data-docid="com.hulu.plus"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span itemprop="offers" itemscope="itemscope" itemtype="http://schema.org/Offer"> <meta content="https://play.google.com/store/apps/details?id=com.hulu.plus&amp;rdid=com.hulu.plus&amp;rdot=1&amp;feature=md" itemprop="url"> <meta content="" itemprop="previewUrl"> <meta content="" itemprop="offerType"> <meta content="Free" itemprop="price"> <span itemprop="seller" itemscope="itemscope" itemtype="http://schema.org/Organization"> <meta itemprop="name" content="Android"> </span> </span> <span>Install</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.hulu.plus" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> <div class="wishlist-container" data-uitype="203" data-server-cookie="CAIaFwoVEhMKDWNvbS5odWx1LnBsdXMQARgD"> <div class="play-button wishlist-content wishlist-yet-to-add" data-docid="com.hulu.plus"> <div class="wishlist-icon"></div> <div class="wishlist-text"> <div class="wishlist-text-default wishlist-text-add track-click" data-uitype="204" data-server-cookie="CAIaFwoVEhMKDWNvbS5odWx1LnBsdXMQARgD"> Add to Wishlist </div> <div class="wishlist-text-default wishlist-text-adding"> Adding... </div> <div class="wishlist-text-default wishlist-text-added track-impression"> Added to Wishlist </div> <div class="wishlist-text-default wishlist-text-remove track-click" data-uitype="205" data-server-cookie="CAIaFwoVEhMKDWNvbS5odWx1LnBsdXMQARgD"> Remove </div> <div class="wishlist-text-default wishlist-text-removing"> Removing... </div> </div> </div> </div> </div> <div class="app-compatibility"> <div class="app-compatibility-initial" style="display:none"> <div class="compatibility-loading compatibility-image"></div> <span> Loading device compatibility... </span> </div> <div class="app-compatibility-final" style="display:none"> <div class="app-compatibility-icon compatibility-image"></div> </div> <div class="app-compatibility-device-list" style="display:none"></div> </div> <div class="details-info-divider"></div> <div class="header-star-badge"> <div class="stars-container"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 62.18661308288574%;"></div> </div> </div> <div class="stars-count"> (<span class="reviewers-small"></span>17,662) </div> <div> <span class="badge"> <meta itemprop="topDeveloperBadgeUrl" content="https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png"> <img src="https://g1.gstatic.com/android/market_images/badges/topdev_ann.png"> <span class="badge-title">Top Developer</span> </span> </div> </div> <div class="details-sharing-section"> <div class="plusone-container"> <div class="g-plusone" data-href="https://market.android.com/details?id=com.hulu.plus" data-source="google:market" data-recommendations="false" data-annotation="inline" data-size="medium" data-width="240" data-align="right"></div> <script type="text/javascript">if (gapi && gapi.plusone){gapi.plusone.go("body-content");}
124
+ </script> </div> </div> <script>(function(){var docid='com.hulu.plus';if (typeof fci !== 'undefined'){fci(docid);}else {jQuery(document).ready(function(){fci(docid);});}
125
+ })();</script> </div> </div> <div class="details-section screenshots"> <div class="details-section-contents"> <div class="details-section-body expandable"> <div class="thumbnails" data-expand-target="thumbnails"> <span class="details-trailer"> <span class="video-image-wrapper"> <img class="video-image" src="http://i.ytimg.com/vi/gdYIbRLEtB4/hqdefault.jpg"> </span> <span class="play-click-target" data-video-url="https://www.youtube.com/embed/gdYIbRLEtB4?ps=play&amp;vq=large&amp;rel=0&amp;autohide=1&amp;showinfo=0&amp;autoplay=1"> <span class="play-action-container" data-video-url="https://www.youtube.com/embed/gdYIbRLEtB4?ps=play&amp;vq=large&amp;rel=0&amp;autohide=1&amp;showinfo=0&amp;autoplay=1"> <span class="play-action"></span> </span> </span> </span> <img class="screenshot" src="https://lh3.ggpht.com/zS-AZBXK-Nz7Px2Nt88hjLgh3XbGRyre9bpPblQ7ugFMSB7GBEtZD8g0ttlYubwE7HY=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-0" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/zCfGZexrPAVviWQUAwCnsshEKwOVx5QsY4YcqCBhQJreA4KgwPqfxQvxQ-XL224Uytwg=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-1" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/DCopOoDxBhYrt_NfpKP_HTcAGs6OogLKa4OaRP0Uuc-YLWLZd6e-gc3aG1cUCiR0jbU=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-2" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/dnn7RWVa30IWmvfYqWlUuHzP-F9WmIxluTzboGX-XRFaVN6wItbmRRce6iNLjTkZTw=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-3" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/QCg565HPw-XNtFhPfSapb4_6YZzbKIHMLh8GAbokZTcdCDf_JmT2Ec_pHvhVYHlrH_s=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-4" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/RyR7oo47AZKMro2PfX-Gjxx8TiZ07frlhW9bL4i24WIiUc-w8OBwuH-mULXSNJwTDoQI=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-5" itemprop="screenshot"><img class="screenshot" src="https://lh4.ggpht.com/F1HFbjvMfWWysRCmK5qj490vchzhaKUMzLyLT8yfDQASnMZgAzVYWagu0H1wGNYNfw=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-6" itemprop="screenshot"><img class="screenshot" src="https://lh4.ggpht.com/dmBTz5dBhWDuA4rZeQzr-5cd2MSP_Hb4U51082e0ukq9vLFLkHTGZBmKbvy-MHv9cO8=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-7" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/Ocx5rrBUco_qkkNBrBRbLrNtmnDP8AL3VLmuaC5r5-PQyRNHhEJgZICLKFCD8lZyXg=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-8" itemprop="screenshot"><img class="screenshot" src="https://lh4.ggpht.com/RrwD4Ixnlr2sHz5eUm1eyubrLYcRHvXis6_vk4pea23Il7KwPe6IhV7riWdC4v6QgvU=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-9" itemprop="screenshot"><img class="screenshot" src="https://lh4.ggpht.com/KnPUaYnoJJ8ERTaF910N3m5oGCRcQALjoIp4pq1VzWPQKHVJt2cKZy0JelT_D8awdA=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-10" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/hrB36z2dZjxApttwgKf7oTrEBDmG9BvGlKKrW-3VuW7mutEMqHNbIwRA7A8UVy-sz_MS=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-11" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/30MWDO4HNUCVb-37HoSZSwka9xKyUn81Zfn5h2nstiyVQ99aNuwpFwtBv9LFcgcaAMU=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-12" itemprop="screenshot"><img class="screenshot" src="https://lh4.ggpht.com/6vOnexGwSiqx8jwB1HvczQRBs768o1Y2p3wR-yQ-WFqOWuBunLnrBZkCvNqCJMZjBw=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-13" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/m2_c31Q7gYBCwCcaRmhGYLTo6OyDiFDZEeNNU2371PkuwodaGuPlB-Kijbi70zvlzSm7=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-14" itemprop="screenshot"><img class="screenshot" src="https://lh5.ggpht.com/umJFlfzzCOV22zOC9jDFvqNyiJJEK7p6YM9zT4Ixv2zj8jXil1yqqj9W6JgHVRDViA=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-15" itemprop="screenshot"><img class="screenshot" src="https://lh5.ggpht.com/yUL-OWg_4HynkgE4lbcvT3fR0kA56U6s28uSuXs3sx_5v-h4aMdStmk4hG7uXN9FOw=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-16" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/l26ulfTvsWJaYxEreEz8-PE8Es44BHbZGhm0dR09SQtTf5zvTaWWlH15H1CVJaOAfw=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-17" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/6tue8e4M_m-Ep4Mm1Y7WxC3Xi_sYWdMHNhYDer8Qcnkx4QwuHylRp6ihzhtCPMnLAWs=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-18" itemprop="screenshot"><img class="screenshot" src="https://lh6.ggpht.com/cnl3g2oHhpQJAlzF8GRaUy3hb89S28klcIc-Sk4TQGaRzOWsd0ECuHy9fJc7iLNl4w=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-19" itemprop="screenshot"><img class="screenshot" src="https://lh3.ggpht.com/Luu5DJeH7dJbyKShPkmJ3XxUFLVaNfm-PDz5mQV0qbH6WZ7nddUzxw2WLStCibr7kXg=h310-rw" alt="Hulu Plus - screenshot thumbnail" data-expand-to="full-screenshot-20" itemprop="screenshot"> </div> <div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/zS-AZBXK-Nz7Px2Nt88hjLgh3XbGRyre9bpPblQ7ugFMSB7GBEtZD8g0ttlYubwE7HY=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-0" data-expand-to="full-screenshot-1" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/zCfGZexrPAVviWQUAwCnsshEKwOVx5QsY4YcqCBhQJreA4KgwPqfxQvxQ-XL224Uytwg=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-1" data-expand-to="full-screenshot-2" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/DCopOoDxBhYrt_NfpKP_HTcAGs6OogLKa4OaRP0Uuc-YLWLZd6e-gc3aG1cUCiR0jbU=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-2" data-expand-to="full-screenshot-3" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/dnn7RWVa30IWmvfYqWlUuHzP-F9WmIxluTzboGX-XRFaVN6wItbmRRce6iNLjTkZTw=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-3" data-expand-to="full-screenshot-4" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/QCg565HPw-XNtFhPfSapb4_6YZzbKIHMLh8GAbokZTcdCDf_JmT2Ec_pHvhVYHlrH_s=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-4" data-expand-to="full-screenshot-5" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/RyR7oo47AZKMro2PfX-Gjxx8TiZ07frlhW9bL4i24WIiUc-w8OBwuH-mULXSNJwTDoQI=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-5" data-expand-to="full-screenshot-6" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh4.ggpht.com/F1HFbjvMfWWysRCmK5qj490vchzhaKUMzLyLT8yfDQASnMZgAzVYWagu0H1wGNYNfw=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-6" data-expand-to="full-screenshot-7" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh4.ggpht.com/dmBTz5dBhWDuA4rZeQzr-5cd2MSP_Hb4U51082e0ukq9vLFLkHTGZBmKbvy-MHv9cO8=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-7" data-expand-to="full-screenshot-8" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/Ocx5rrBUco_qkkNBrBRbLrNtmnDP8AL3VLmuaC5r5-PQyRNHhEJgZICLKFCD8lZyXg=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-8" data-expand-to="full-screenshot-9" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh4.ggpht.com/RrwD4Ixnlr2sHz5eUm1eyubrLYcRHvXis6_vk4pea23Il7KwPe6IhV7riWdC4v6QgvU=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-9" data-expand-to="full-screenshot-10" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh4.ggpht.com/KnPUaYnoJJ8ERTaF910N3m5oGCRcQALjoIp4pq1VzWPQKHVJt2cKZy0JelT_D8awdA=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-10" data-expand-to="full-screenshot-11" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/hrB36z2dZjxApttwgKf7oTrEBDmG9BvGlKKrW-3VuW7mutEMqHNbIwRA7A8UVy-sz_MS=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-11" data-expand-to="full-screenshot-12" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/30MWDO4HNUCVb-37HoSZSwka9xKyUn81Zfn5h2nstiyVQ99aNuwpFwtBv9LFcgcaAMU=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-12" data-expand-to="full-screenshot-13" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh4.ggpht.com/6vOnexGwSiqx8jwB1HvczQRBs768o1Y2p3wR-yQ-WFqOWuBunLnrBZkCvNqCJMZjBw=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-13" data-expand-to="full-screenshot-14" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/m2_c31Q7gYBCwCcaRmhGYLTo6OyDiFDZEeNNU2371PkuwodaGuPlB-Kijbi70zvlzSm7=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-14" data-expand-to="full-screenshot-15" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh5.ggpht.com/umJFlfzzCOV22zOC9jDFvqNyiJJEK7p6YM9zT4Ixv2zj8jXil1yqqj9W6JgHVRDViA=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-15" data-expand-to="full-screenshot-16" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh5.ggpht.com/yUL-OWg_4HynkgE4lbcvT3fR0kA56U6s28uSuXs3sx_5v-h4aMdStmk4hG7uXN9FOw=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-16" data-expand-to="full-screenshot-17" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/l26ulfTvsWJaYxEreEz8-PE8Es44BHbZGhm0dR09SQtTf5zvTaWWlH15H1CVJaOAfw=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-17" data-expand-to="full-screenshot-18" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/6tue8e4M_m-Ep4Mm1Y7WxC3Xi_sYWdMHNhYDer8Qcnkx4QwuHylRp6ihzhtCPMnLAWs=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-18" data-expand-to="full-screenshot-19" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh6.ggpht.com/cnl3g2oHhpQJAlzF8GRaUy3hb89S28klcIc-Sk4TQGaRzOWsd0ECuHy9fJc7iLNl4w=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-19" data-expand-to="full-screenshot-20" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div><div class="screenshot-container" style="display:none"> <div class="screenshot-align"> <div class="screenshot-align-inner"> <img class="full-screenshot" src="https://lh3.ggpht.com/Luu5DJeH7dJbyKShPkmJ3XxUFLVaNfm-PDz5mQV0qbH6WZ7nddUzxw2WLStCibr7kXg=h900-rw" alt="Hulu Plus - screenshot" data-expand-target="full-screenshot-20" data-expand-to="thumbnails" data-expand-fit-screen="true" data-expand-scroll="true"> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <div class="details-section description simple contains-text-link"> <div class="details-section-contents show-more-container" data-show-use-buffer="true"> <div class="heading"> Description </div> <div class="show-more-content text-body" itemprop="description"> <div>Instantly watch current TV shows and acclaimed movies. Anywhere.<p>Download the app to enjoy unlimited instant streaming of current and classic hit TV shows with your Hulu Plus subscription (Subscription Required).<p>New to Hulu Plus? Try it FREE.<p>• Watch any current season episode of Community, Family Guy, The Office, Glee, and many more popular shows<br>• Enjoy popular kids shows, including SpongeBob SquarePants, Kung Fu Panda, Caillou and many more, ad-free<br>• Catch up on classic series including Lost, Battlestar Galactica and Arrested Development, or explore thousands of critically acclaimed movies<br>• Resume watching from where you left off on your TV or another supported device<br>• Add your favorite videos to your queue for instant access and sharing<br>• Watch over WiFi, 3G, and 4G<br>• Available for $7.99/month with limited advertising<p>Hulu Plus is supported on select Android 2.x phones, as well as most Android 3.1+ and 4.x phones and tablets. Service available in the United States and territories.<p>Please contact us at <a href="mailto:mobilesupport@hulu.com">mobilesupport@hulu.com</a> or 1-888-907-0345 if you are having issues with compatibility of your device.<p>Use of Hulu Plus is subject to the Hulu Plus Terms of Service: hulu.com/terms</div> <div class="show-more-end"></div> </div> <div class="play-button show-more small"> Read more </div> <div class="play-button expand-close"> <div class="close-image"> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div data-docid="com.hulu.plus" class="details-wrapper apps"> <div class="details-section highlighted-review" style="display:none"> <div class="highlighted-section-contents"> <div style="display:none" class="review-help unallowed-app-review-container" data-unallowed-docid="com.hulu.plus"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <span class="unallowed-app-review unowned-app"> You must install this app before submitting a review. </span> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help gplus-signup"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <a href="https://plus.google.com/up/accounts/upgrade?gpsrc=gpwr0&amp;continue=https://play.google.com/store/apps/details?id%3Dcom.hulu.plus%26hl%3Den" class="play-button no-nav apps"> Sign up for Google+ </a> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="review-help gpr-onboard"> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> Google Play reviews now use Google+ so it's easier to see opinions from people you care about. New reviews will be publicly linked to your Google+ profile. Your name on previous reviews now appears as "A Google User". </div> <div class="review-row"> <div class="review-action-button-container"> <div class="play-button enable-gpr apps"> Continue </div> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="write-review-panel"> <div> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-row"> <div class="review-row-header"> Write a review </div> </div> <div class="review-row"> <div class="write-review-title-container"> <input class="review-input-text-box write-review-title" maxlength="75" type="text"> </div> </div> <div class="review-row"> <div class="write-review-comment-container"> <textarea class="review-input-text-box write-review-comment" maxlength="1200"></textarea> </div> </div> <div class="review-row"> <div class="review-stars-container"> <div class="write-star-rating-container neutral"> <div class="star-rating-editable-container"> <span class="star-common first-star"></span> <span class="star-common second-star"></span> <span class="star-common third-star"></span> <span class="star-common fourth-star"></span> <span class="star-common fifth-star"></span> </div> <div class="small-star star-rating-non-editable-container"> <div class="current-rating" style="width: 0.0%;"></div> </div> </div> <span class="alert-message-container"> <div class="alert-image-container"></div> <div class="alert-review-text-container"></div> </span> </div> <div class="review-action-button-container"> <div class="submit-review play-button apps disabled"> Submit Review </div> </div> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> <div style="display:none" class="my-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> My review </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container"> <div class="current-rating" style="width: 0.0%;"></div> </div> </div> <div class="review-action-button-container"> <div class="play-button icon-button small review-action-button-gap"> <div class="review-trash-button-icon"></div> </div> <div class="play-button icon-button small"> <div class="edit-review-button-icon"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> <div style="display:none" class="selected-review-panel" data-reviewid=""> <div class="review-panel-content"> <div class="review-panel-close"></div> <div class="review-image-row"> <div> <span> </span> </div> </div> <div class="review-row"> <div class="review-row-header"> <span> Review from <span style="display:none"> </span> </span> </div> </div> <div class="review-row"> <span class="review-title"></span> </div> <div class="review-row"> <div class="review-stars-container"> <div class="small-star star-rating-non-editable-container"> <div class="current-rating" style="width: 0.0%;"></div> </div> </div> </div> <div class="review-row"> </div> </div> <div class="write-review-triangle-container"></div> </div> </div> </div> <div class="details-section reviews"> <div class="details-section-contents"> <div class="details-section-heading"> <div class="heading"> Reviews </div> <div class="review-actions track-click" data-uitype="206"> <div class="write-button play-button"> <span class="write-review-button-icon"></span> <span> Write a Review </span> </div> </div> </div> <div class="details-section-body expandable" data-more-reviews-docid="com.hulu.plus"> <div class="preview-panel"> <div class="preview-reviews multicol" data-multicol-width="auto" data-multicol-fixed-height="true"> <div class="rating-box"> <div class="score-container" itemscope="itemscope" itemprop="aggregateRating" itemtype="http://schema.org/AggregateRating"> <meta content="3.1093307" itemprop="ratingValue"> <meta content="17662" itemprop="ratingCount"> <div class="score">3.1</div> <div class="score-container-star-rating"> <div class="small-star star-rating-non-editable-container"> <div class="current-rating" style="width: 62.18661308288574%;"></div> </div> </div> <div class="reviews-stats"> <span class="reviewers-small"></span> <span class="reviews-num">17,662</span> total </div> </div> <div class="rating-histogram"> <div class="rating-bar-container five"> <span class="bar-label"> <span class="star-tiny star-full"></span>5 </span> <span class="bar" style="width:100%"></span> <span class="bar-number">6,917</span> </div><div class="rating-bar-container four"> <span class="bar-label"> <span class="star-tiny star-full"></span>4 </span> <span class="bar" style="width:28%"></span> <span class="bar-number">1,990</span> </div><div class="rating-bar-container three"> <span class="bar-label"> <span class="star-tiny star-full"></span>3 </span> <span class="bar" style="width:17%"></span> <span class="bar-number">1,242</span> </div><div class="rating-bar-container two"> <span class="bar-label"> <span class="star-tiny star-full"></span>2 </span> <span class="bar" style="width:16%"></span> <span class="bar-number">1,133</span> </div><div class="rating-bar-container one"> <span class="bar-label"> <span class="star-tiny star-full"></span>1 </span> <span class="bar" style="width:92%"></span> <span class="bar-number">6,380</span> </div> </div> </div> <div class="featured-review" data-reviewid="lg:AOqpTOGS5l8kLTWOLsa9pVwUEpjtBf3kISvONugeJ10NESg2N3zJsc3af39FpzXcmgWInqIHd6V06ktr_k1WTIc" data-expand-to="user-0"> <div class="author"> <span> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="A Google User avatar image"> </span> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Hulu Plus</span> Hulu Plus, has made big improvements on newer mobile devices, they now take u from the 1st show, or picks up where &amp; what season on fav.s or que, HD!!! My Roku2 XS, has the newest app Hulu Plus has and it has to be seen if u luv tv like I do, {TheAddsAreNoBigDeal-It's why the huge choice}, I put auto play on and watch each episode, &amp; all seasons {1/14~non stop}, of Law &amp; Order SVU, just 1of many top shows, &amp; HD 1080p, with great sound! HuluPlusRocks* (No limit on devices)!! Recommend* </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> A Google User </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 100.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOF8XERjGLFVKagTCReabZgunHhFO56hFvvKjOzuCOp9VFO7gk_IJuSeKBoBSqdIcgVw6GYr-tf0WnqWC90" data-expand-to="user-1"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/114709319098620590713" data-userid="114709319098620590713" target="_blank"> <img class="author-image" src="https://lh6.googleusercontent.com/-AJToDaf_--I/AAAAAAAAAAI/AAAAAAAAACA/tT0wmRsHJeA/w48-c-h48-rw/photo.jpg" alt="Judi Boggs avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Pretty good</span> Pretty good, but where is the queue? it would also be nice if favorites were on top also. </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/114709319098620590713" data-userid="114709319098620590713" target="_blank">Judi Boggs</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 60.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOFgTndBhHH5vAppioV26j4lDF6x0jh_H9uSxWkfQetvCGrmflMQXx8Ftu-1ZhNj2NUJi26yjYNaovZJDzg" data-expand-to="user-2"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/106089029074923490142" data-userid="106089029074923490142" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="kasey Vanzandt avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Restrictions!</span> I'm paying for Hulu plus, which means I should get everything streamed to the device I chose. They have restrictions on shows saying you can only watch on the web. I'm cancelling tomorrow, what's the point in paying if you are going to restricted me. </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/106089029074923490142" data-userid="106089029074923490142" target="_blank">kasey Vanzandt</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 20.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOGPo8forwJPoch_JYq1bIO9JCvcC0KEP8XXcGp5B5nLQcWQR4ojbPV2mdtJW4BZcpiBjWSGUbXSzcoxYLc" data-expand-to="user-3"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/103991467808936744501" data-userid="103991467808936744501" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="Alfonso Garcia avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">Hulu is great.</span> This app is awesome. Even with my data speed lowered cause i reached my full speed limit i can see videos without pauses. Four stars because the ads are another matter. It takes twice the time to see them cause of the buffering. But it only does it on the ads. Otherwise great app. </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/103991467808936744501" data-userid="103991467808936744501" target="_blank">Alfonso Garcia</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 80.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOFuY47J5dYfWxglN8ADYtu_7OBl_lP_YSoZ4N79F632y-uZHtqj8HfWZ3MYHLHCvkzvFIQYuDSxE9siWq4" data-expand-to="user-4"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/107004059691542892561" data-userid="107004059691542892561" target="_blank"> <img class="author-image" src="https://lh4.googleusercontent.com/-AS86nFB8NTg/AAAAAAAAAAI/AAAAAAAAAB8/YGyuW3t9Eg8/w48-c-h48-rw/photo.jpg" alt="Frankie Recupero avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">To many commercials</span> Netflix has zero commercials if you pay for the service you should get just that..netflix gives u what u pay for might as well watch tv with all the freakin commercials u pay monthly for them to make even more money wasting ur time watching commercials like u kidding </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/107004059691542892561" data-userid="107004059691542892561" target="_blank">Frankie Recupero</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 60.0%;"></div> </div> </div> </div> </div> <div class="featured-review" data-reviewid="gp:AOqpTOFcCMSDCtyvfzwcdtBcihytHD_k3EGxmAGQYQHfrt5vsigr22E3I7nSM8d9FMvDB1aQR7CPaxnAI6J5moo" data-expand-to="user-5"> <div class="author"> <a class="no-nav g-hovercard" href="https://plus.google.com/115553666916795173103" data-userid="115553666916795173103" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="marcus phanthanophay avatar image"> </a> </div> <div> <div class="quoted-review"> <div class="review-text"> <span class="review-title">I like it...</span> It's good. The ads suck a little. But you will be watchinh commercials if you pay for cable. Way better than netflix. More of a selection! </div> <div class="paragraph-end details-light"></div> </div> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/115553666916795173103" data-userid="115553666916795173103" target="_blank">marcus phanthanophay</a> </span> <div class="featured-review-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 80.0%;"></div> </div> </div> </div> </div> </div> </div> <div style="display:none" class="all-reviews multicol" data-multicol-fixed-height="true" data-expand-scroll="true"> <div> <div class="reviews-heading"> User reviews </div> <div class="single-review"> <span> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="A Google User avatar image"> </span> <div class="review-header" data-reviewid="lg:AOqpTOGS5l8kLTWOLsa9pVwUEpjtBf3kISvONugeJ10NESg2N3zJsc3af39FpzXcmgWInqIHd6V06ktr_k1WTIc" data-expand-target="user-0"> <div class="review-info"> <span class="author-name"> A Google User </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 7, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=bGc6QU9xcFRPR1M1bDhrTFRXT0xzYTlwVndVRXBqdEJmM2tJU3ZPTnVnZUoxME5FU2cyTjN6SnNjM2FmMzlGcHpYY21nV0lucUlIZDZWMDZrdHJfazFXVElj" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 100.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Hulu Plus</span> Hulu Plus, has made big improvements on newer mobile devices, they now take u from the 1st show, or picks up where &amp; what season on fav.s or que, HD!!! My Roku2 XS, has the newest app Hulu Plus has and it has to be seen if u luv tv like I do, {TheAddsAreNoBigDeal-It's why the huge choice}, I put auto play on and watch each episode, &amp; all seasons {1/14~non stop}, of Law &amp; Order SVU, just 1of many top shows, &amp; HD 1080p, with great sound! HuluPlusRocks* (No limit on devices)!! Recommend* <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/114709319098620590713" data-userid="114709319098620590713" target="_blank"> <img class="author-image" src="https://lh6.googleusercontent.com/-AJToDaf_--I/AAAAAAAAAAI/AAAAAAAAACA/tT0wmRsHJeA/w48-c-h48-rw/photo.jpg" alt="Judi Boggs avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOF8XERjGLFVKagTCReabZgunHhFO56hFvvKjOzuCOp9VFO7gk_IJuSeKBoBSqdIcgVw6GYr-tf0WnqWC90" data-expand-target="user-1"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/114709319098620590713" data-userid="114709319098620590713" title="Judi Boggs" target="_blank">Judi Boggs</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 6, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPRjhYRVJqR0xGVkthZ1RDUmVhYlpndW5IaEZPNTZoRnZ2S2pPenVDT3A5VkZPN2drX0lKdVNlS0JvQlNxZEljZ1Z3NkdZci10ZjBXbnFXQzkw" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 60.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Pretty good</span> Pretty good, but where is the queue? it would also be nice if favorites were on top also. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/106089029074923490142" data-userid="106089029074923490142" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="kasey Vanzandt avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFgTndBhHH5vAppioV26j4lDF6x0jh_H9uSxWkfQetvCGrmflMQXx8Ftu-1ZhNj2NUJi26yjYNaovZJDzg" data-expand-target="user-2"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/106089029074923490142" data-userid="106089029074923490142" title="kasey Vanzandt" target="_blank">kasey Vanzandt</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 18, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPRmdUbmRCaEhINXZBcHBpb1YyNmo0bERGNngwamhfSDl1U3hXa2ZRZXR2Q0dybWZsTVFYeDhGdHUtMVpoTmoyTlVKaTI2eWpZTmFvdlpKRHpn" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 20.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Restrictions!</span> I'm paying for Hulu plus, which means I should get everything streamed to the device I chose. They have restrictions on shows saying you can only watch on the web. I'm cancelling tomorrow, what's the point in paying if you are going to restricted me. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/103991467808936744501" data-userid="103991467808936744501" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="Alfonso Garcia avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOGPo8forwJPoch_JYq1bIO9JCvcC0KEP8XXcGp5B5nLQcWQR4ojbPV2mdtJW4BZcpiBjWSGUbXSzcoxYLc" data-expand-target="user-3"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/103991467808936744501" data-userid="103991467808936744501" title="Alfonso Garcia" target="_blank">Alfonso Garcia</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 28, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPR1BvOGZvcndKUG9jaF9KWXExYklPOUpDdmNDMEtFUDhYWGNHcDVCNW5MUWNXUVI0b2piUFYybWR0Slc0QlpjcGlCaldTR1ViWFN6Y294WUxj" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 80.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Hulu is great.</span> This app is awesome. Even with my data speed lowered cause i reached my full speed limit i can see videos without pauses. Four stars because the ads are another matter. It takes twice the time to see them cause of the buffering. But it only does it on the ads. Otherwise great app. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/107004059691542892561" data-userid="107004059691542892561" target="_blank"> <img class="author-image" src="https://lh4.googleusercontent.com/-AS86nFB8NTg/AAAAAAAAAAI/AAAAAAAAAB8/YGyuW3t9Eg8/w48-c-h48-rw/photo.jpg" alt="Frankie Recupero avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFuY47J5dYfWxglN8ADYtu_7OBl_lP_YSoZ4N79F632y-uZHtqj8HfWZ3MYHLHCvkzvFIQYuDSxE9siWq4" data-expand-target="user-4"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/107004059691542892561" data-userid="107004059691542892561" title="Frankie Recupero" target="_blank">Frankie Recupero</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 9, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPRnVZNDdKNWRZZld4Z2xOOEFEWXR1XzdPQmxfbFBfWVNvWjRONzlGNjMyeS11Wkh0cWo4SGZXWjNNWUhMSEN2a3p2RklRWXVEU3hFOXNpV3E0" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 60.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">To many commercials</span> Netflix has zero commercials if you pay for the service you should get just that..netflix gives u what u pay for might as well watch tv with all the freakin commercials u pay monthly for them to make even more money wasting ur time watching commercials like u kidding <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/115553666916795173103" data-userid="115553666916795173103" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="marcus phanthanophay avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFcCMSDCtyvfzwcdtBcihytHD_k3EGxmAGQYQHfrt5vsigr22E3I7nSM8d9FMvDB1aQR7CPaxnAI6J5moo" data-expand-target="user-5"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/115553666916795173103" data-userid="115553666916795173103" title="marcus phanthanophay" target="_blank">marcus phanthanophay</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 16, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPRmNDTVNEQ3R5dmZ6d2NkdEJjaWh5dEhEX2szRUd4bUFHUVlRSGZydDV2c2lncjIyRTNJN25TTThkOUZNdkRCMWFRUjdDUGF4bkFJNko1bW9v" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 80.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">I like it...</span> It's good. The ads suck a little. But you will be watchinh commercials if you pay for cable. Way better than netflix. More of a selection! <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/100648962467787668290" data-userid="100648962467787668290" target="_blank"> <img class="author-image" src="https://lh5.googleusercontent.com/-cyGpBGHaeEY/AAAAAAAAAAI/AAAAAAAAAE4/cvMbvujmK8g/w48-c-h48-rw/photo.jpg" alt="Suzie Nicolas avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOFxMl8ydu-QOh0UKVJl2xJanIHjBZ-XG0hUORDu9AsuEckpGXdpxsKbOZThFCUEB4O8qjWMws8q5BlWhxY" data-expand-target="user-6"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/100648962467787668290" data-userid="100648962467787668290" title="Suzie Nicolas" target="_blank">Suzie Nicolas</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 6, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPRnhNbDh5ZHUtUU9oMFVLVkpsMnhKYW5JSGpCWi1YRzBoVU9SRHU5QXN1RWNrcEdYZHB4c0tiT1pUaEZDVUVCNE84cWpXTXdzOHE1QmxXaHhZ" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 20.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Geo Restriction and Feedback</span> I am located in NJ and my phone is a Samsung Galaxy S3. When I try to view a show, I get a Geo Restriction block. When I try to provide feedback so that I can receive support, the app crashes. I might have to cancel my subscription. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/115159566432100899823" data-userid="115159566432100899823" target="_blank"> <img class="author-image" src="https://lh3.googleusercontent.com/-HZw8_2pLYv0/AAAAAAAAAAI/AAAAAAAAAAA/GifrSGObtAw/w48-c-h48-rw/photo.jpg" alt="Aaron Sandoval avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOF2hkiUTWICxJKIhGjcmocHVRdCJlbLhAxP95dZSQXTCEgrX75Z1H78S2IMBK-CWUsxpRZuMPacPz-dMag" data-expand-target="user-7"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/115159566432100899823" data-userid="115159566432100899823" title="Aaron Sandoval" target="_blank">Aaron Sandoval</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 26, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPRjJoa2lVVFdJQ3hKS0loR2pjbW9jSFZSZENKbGJMaEF4UDk1ZFpTUVhUQ0Vnclg3NVoxSDc4UzJJTUJLLUNXVXN4cFJadU1QYWNQei1kTWFn" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 40.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Bad</span> It keeps telling me that there's an error, I took off the ad blocker I have I even uninstalled the app and it still won't work <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/107309320679215031152" data-userid="107309320679215031152" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="Tonya Durham avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOE3EGtm2Uu2PGZBkJchq6QI0CvTKJe8DzLpI09alhgltkaYDLxHUYrcSPzm5jYcI4ISRU1wJ3jwJaYwhyM" data-expand-target="user-8"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/107309320679215031152" data-userid="107309320679215031152" title="Tonya Durham" target="_blank">Tonya Durham</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 14, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPRTNFR3RtMlV1MlBHWkJrSmNocTZRSTBDdlRLSmU4RHpMcEkwOWFsaGdsdGthWURMeEhVWXJjU1B6bTVqWWNJNElTUlUxd0ozandKYVl3aHlN" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 20.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Used to love it</span> I pay for a monthly subscription and i don't mind the commercials....but now i can't watch any of my shows they now all say only available on the computer when i used to watch them on my phone, heck. it was why i bought this phone in the first place. <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> <div> <div class="single-review"> <a class="no-nav g-hovercard" href="https://plus.google.com/104616668925888250971" data-userid="104616668925888250971" target="_blank"> <img class="author-image" src="https://lh5.ggpht.com/RREE0f2gSFRq9Yi_umALXt_ML6nJbTYJ6TEsCJg-75c1TUjH4nqP0KNfOsDqxaa_CqY=w48-c-h48-rw" alt="Lukas Tucker avatar image"> </a> <div class="review-header" data-reviewid="gp:AOqpTOGDcmRBq4u7jNp7ZqNUD7Gf7qdYhNh2bNIFjZvEcDDdETjRtSjMUcLpiwoDSRK2eNakKUsyRT2ZKOJJTdk" data-expand-target="user-9"> <div class="review-info"> <span class="author-name"> <a class="no-nav g-hovercard" href="https://plus.google.com/104616668925888250971" data-userid="104616668925888250971" title="Lukas Tucker" target="_blank">Lukas Tucker</a> </span> <span class="author-name" title="" style="display:none"></span> <span class="review-date">July 11, 2013</span> <a class="reviews-permalink" href="/store/apps/details?id=com.hulu.plus&amp;reviewId=Z3A6QU9xcFRPR0RjbVJCcTR1N2pOcDdacU5VRDdHZjdxZFloTmgyYk5JRmpadkVjRERkRVRqUnRTak1VY0xwaXdvRFNSSzJlTmFrS1VzeVJUMlpLT0pKVGRr" title=" Link to this review "></a> <div class="review-source" style="display:none"></div> <div class="review-info-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 20.0%;"></div> </div> </div> </div> <div class="rate-review-wrapper"> <div class="play-button icon-button small rate-review" title=" Spam " data-rating="SPAM"> <div class="icon spam-flag"></div> </div> <div class="play-button icon-button small rate-review" title=" Helpful " data-rating="HELPFUL"> <div class="icon thumbs-up"></div> </div> <div class="play-button icon-button small rate-review" title=" Unhelpful " data-rating="UNHELPFUL"> <div class="icon thumbs-down"></div> </div> </div> </div> <div class="review-body"> <span class="review-title">Not custom rom friendly</span> If you have a custom rom that comes with built in ad blocker(which most do) app will not work youll get an error when loading video unfortunately i cant turn off ad blocking on my rom so unusable for me <div class="review-link" style="display:none"> <a class="no-nav play-button tiny" href="#" target="_blank"> Full Review </a> </div> </div> </div> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> <script>if (typeof ircs == 'undefined'){jQuery(document).ready(function(){ircs();});}else {ircs();}
126
+ </script> </div> <div class="details-wrapper"> <div class="details-section whatsnew"> <div class="details-section-contents show-more-container"> <div class="heading"> What's New </div> <div class="recent-change">• New Episode badges on Shows You Watch for instant access to the latest episode</div><div class="recent-change">• Support for the Samsung Galaxy Tab 3 10.1"</div><div class="recent-change">• Bug fixes and performance improvements</div><div class="recent-change">--</div><div class="recent-change">If you experience playback or other issues, please reach out to us at mobilesupport@hulu.com and let us know what device you're using.</div> <div class="show-more-end"></div> <div> <div class="play-button show-more small"> Read more </div> <div class="play-button expand-close"> <div class="close-image"> </div> </div> </div> </div> <div class="details-section-divider"></div> </div> </div> <div class="details-wrapper"> <div class="details-section metadata"> <div class="details-section-heading"> <div class="heading"> Additional information </div> </div> <div class="details-section-contents"> <div class="meta-info"> <div class="title">Updated</div> <div class="content" itemprop="datePublished">July 9, 2013</div> </div> <div class="meta-info"> <div class="title">Size</div> <div class="content" itemprop="fileSize"> Varies with device </div> </div> <div class="meta-info"> <div class="title">Installs</div> <div class="content" itemprop="numDownloads"> 1,000,000 - 5,000,000 </div> </div> <div class="meta-info"> <div class="title">Current Version</div> <div class="content" itemprop="softwareVersion"> Varies with device </div> </div> <div class="meta-info"> <div class="title">Requires Android</div> <div class="content" itemprop="operatingSystems"> Varies with device </div> </div> <div class="meta-info"> <div class="title">Content Rating</div> <div class="content" itemprop="contentRating"> Medium Maturity </div> </div> <div class="meta-info"> <div class="title"> Contact Developer </div> <div class="content contains-text-link"> <a class="dev-link" href="https://www.google.com/url?q=http://hulu.com/plus&amp;sa=D&amp;usg=AFQjCNEwmcUMEqVhWMz1HawKCfxwuJYJPw" target="_blank" rel="nofollow"> Visit Developer's Website </a> <a class="dev-link" href="mailto:mobilesupport@hulu.com" target="_blank" rel="nofollow"> Email Developer </a> <a class="dev-link" href="https://www.google.com/url?q=http://www.hulu.com/privacy&amp;sa=D&amp;usg=AFQjCNF_pOfvbcCLaD1Hf-G4a5JX4km0RQ" target="_blank" rel="nofollow"> Privacy Policy </a> </div> </div> </div> <div class="details-section-divider"></div> </div> </div><div class="details-wrapper"> <div class="details-section recommendation"> <div class="details-section-contents"> <div class="rec-cluster"> <div class="heading">Similar</div> <div class="cards expandable"> <div data-docid="com.mobitv.client.tv" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHgocEhoKFGNvbS5tb2JpdHYuY2xpZW50LnR2EAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.mobitv.client.tv"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh4.ggpht.com/FRDr3m-vKPvOBnV3r5RJ4PVQN0GJy5ZcrLVaS0F2LwA9A0-A4RLZ8fwjywoVBIiRbhE=w170-rw" alt="Mobile TV" data-cover-small="https://lh4.ggpht.com/FRDr3m-vKPvOBnV3r5RJ4PVQN0GJy5ZcrLVaS0F2LwA9A0-A4RLZ8fwjywoVBIiRbhE=w170-rw" data-cover-large="https://lh4.ggpht.com/FRDr3m-vKPvOBnV3r5RJ4PVQN0GJy5ZcrLVaS0F2LwA9A0-A4RLZ8fwjywoVBIiRbhE=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.mobitv.client.tv"> <span class="preview-overlay-container acquired"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.mobitv.client.tv"></a> <a class="title" href="/store/apps/details?id=com.mobitv.client.tv" title="Mobile TV"> Mobile TV <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=AT%26T+Services,+Inc." title="AT&amp;T Services, Inc.">AT&amp;T Services, Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.mobitv.client.tv"> <div class="pon" style="display:none">1</div> <span style="display:none" class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.mobitv.client.tv" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Mobile TV brings you LIVE and On-Demand TV to watch on the go.<p>Downloading the Mobile TV app is FREE and your first 7 days of service are free. After that a monthly subscription fee applies.<p>With Mobile TV you get: <br>• Live pro &amp; college sports on ESPN Mobile TV &amp; NBC Sports plus special events each week. Watch NBA Playoffs, Live MLB games, Live NHL games to keep up while you are on the go!<br>• Access to hundreds of full-episodes of your favorite shows like Glee, Arrested Development, Jerseylicious, Colbert Report, The Daily Show, The Bachelorette and many more from On-Demand from networks like FOX Mobile Entertainment, MTV, Disney Channel, Comedy Central, E! and more.<br>• Live 24/7 breaking news on Bloomberg, Fox News and ABC News Now.<br>• The first 7 days of service are FREE, then just $9.99/mo. To continue to watch there’s a monthly subscription of $9.99/mo. <br>Here are just a few of the events/programming you can watch:<br>• Live kids shows on the Disney Channel to keep the kids entertained with programs such as Jessie, Gravity Falls, Phineas and Ferb and more.<br>• Hit shows including: Revenge, Family Guy, The Cleveland Show, Grimm, The Office and more.<br>• Reality Programming including: The Voice, Real Housewives, Say Yes to the Dress and more!<p>Bonus: Install the free Mobile TV widget from your “Add a Widget” menu and get programming updates without having to launch the application.<p>Check out the Mobile TV channels included below, or see the full lineup at <a href="https://www.google.com/url?q=http://IX.LY/LIVETV&amp;sa=D&amp;usg=AFQjCNEceoT2owOp_bdrNHjYqayo202V-Q" target="_blank">http://IX.LY/LIVETV</a> <br>OPTIONAL ENTERTAINMENT PACKAGES<p>AT&amp;T paquete en español móvil<br>Obtén acceso a los artistas más populares de la televisión hispana con paquete en español móvil. Paquete en español móvil es tu puerta de entrada al mundo de la televisión en español. ¡Comienza a ver episodios completos de tus programas favoritos, además de deportes en vivo y más de Univisión, Telemundo, Azteca América, ESPN Deportes y otros canales!* <p>Playground TV<br>Playground TV provides your family with quality kids shows that you can trust.. Watch full episodes from PBS Kids, plus Sesame Street, Baby First TV, Discovery for Families and more! Entertain your kids in the car, in line or anywhere – with Playground TV, fun is always easy to find. ($4.99/mo.)*<p>Urban Zone<br>Add the best in urban entertainment, from BET to classic television! Urban Zone brings you full-length shows on BET, the latest R&amp;B and hip-hop videos; stand-up comedy; full episodes of classic TV and more. ($4.99/mo)* <br>* Mobile TV: monthly subscription fee applies and requires compatible device, eligible data plan, and 3G or 4G service. Service not available in all areas. Downloaded content is available for viewing for limited time periods. Urban Zone, Paquette en espanol movil and/or Playground TV requires purchase of Mobile TV at $9.99/mo. 7 days free offer: You must cancel within 7 days or be automatically subscribed at a cost of $9.99 per month. You can cancel by clicking the &quot;?&quot; button on the app home page, then &quot;View Subscription&quot; or by calling AT&amp;T Customer Service. Channels and shows are subject to change without notice. <p>Terms: The complete terms &amp; conditions can be found @ <a href="https://www.google.com/url?q=http://attuverselivetv.att.com/terms-and-conditions.php&amp;sa=D&amp;usg=AFQjCNHcAamqGc6E1p_pQkrejr6V-LGyXw" target="_blank">http://attuverselivetv.att.com/terms-and-conditions.php</a><br>Customer Service/Technical Support: Please contact customer service if you have any issues with your purchase or for any questions: <a href="https://www.google.com/url?q=https://www.wireless.att.com/support/content.do?page%3Dsupport-home&amp;sa=D&amp;usg=AFQjCNFlL3Uxr4LocmhDNCE8svJmh56DXg" target="_blank">https://www.wireless.att.com/support/content.do?page=support-home</a><br>FAQ&#39;s: A list of frequently asked questions can be found @ <a href="https://www.google.com/url?q=http://uverselivetv.mobitv.com/faq.php&amp;sa=D&amp;usg=AFQjCNH8KsPrjxELNRLrPIsXpWj5LyqFAA" target="_blank">http://uverselivetv.mobitv.com/faq.php</a><br>Privacy: AT&amp;T&#39;s Privacy Policy can be found @ <a href="https://www.google.com/url?q=http://www.att.com/privacy/&amp;sa=D&amp;usg=AFQjCNHBgyW24nptAysbr2XtcYC8KMdgnw" target="_blank">http://www.att.com/privacy/</a><br>Sitemap: <a href="https://www.google.com/url?q=http://www.att.com/sitemap/&amp;sa=D&amp;usg=AFQjCNGTCk2McetlCWiRL_J3JB3ZxV1-sw" target="_blank">http://www.att.com/sitemap/</a><br>© 2012 AT&amp;T Intellectual Property <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.mobitv.client.tv"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.mobitv.client.tv"></a> <a href="/store/apps/details?id=com.mobitv.client.tv"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.mobitv.client.tv"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 66.53270244598389%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.mobitv.client.tv"> <div class="pon" style="display:none">1</div> <span style="display:none" class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.mobitv.client.tv" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.hulu.plus.jp" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGgoYEhYKEGNvbS5odWx1LnBsdXMuanAQARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.hulu.plus.jp"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/AUsEry2YQcjURDHV_jyYKXeKLQ_RFHkGXPBGq9U8jYBA95HwmFOIeUa5rWJgELyMrA=w170-rw" alt="Hulu" data-cover-small="https://lh6.ggpht.com/AUsEry2YQcjURDHV_jyYKXeKLQ_RFHkGXPBGq9U8jYBA95HwmFOIeUa5rWJgELyMrA=w170-rw" data-cover-large="https://lh6.ggpht.com/AUsEry2YQcjURDHV_jyYKXeKLQ_RFHkGXPBGq9U8jYBA95HwmFOIeUa5rWJgELyMrA=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.hulu.plus.jp"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.hulu.plus.jp"></a> <a class="title" href="/store/apps/details?id=com.hulu.plus.jp" title="Hulu"> Hulu <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Hulu" title="Hulu">Hulu</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.hulu.plus.jp"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.hulu.plus.jp" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Subscribers receive unlimited access to hit movies and TV shows with one monthly fee. Hulu is the place to watch and enjoy premium videos from the biggest names in entertainment. A subscription is required to use this application.<p>• Hit and classic TV shows and movies from the biggest names in entertainment.<br>• Watch your favorite shows in your living room or on the go. Migrate your viewing experience seamlessly across devices: start watching on your phone, continue watching on your TV.<br>• Add favorites to your Queue to create a personalized list for instant viewing later.<p>Enjoy Hulu now!<p>Android OS 2.2 or later (some features are only available for Android OS 3.0 or later)<br>For a complete list of supported devices, please see <a href="https://www.google.com/url?q=http://hulu.jp/android&amp;sa=D&amp;usg=AFQjCNGLBN33EQIyUyD4G7NV1mmEBkn3jA" target="_blank">http://hulu.jp/android</a> <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.hulu.plus.jp"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.hulu.plus.jp"></a> <a href="/store/apps/details?id=com.hulu.plus.jp"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.hulu.plus.jp"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 55.27637958526611%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.hulu.plus.jp"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.hulu.plus.jp" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.gotv.crackle.handset" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIgogEh4KGGNvbS5nb3R2LmNyYWNrbGUuaGFuZHNldBABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.gotv.crackle.handset"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/8uWVDVKec2CLOHYez5gCoyAs7h9k2IrYU3gxCwXStwDR7MRbP_tDc8xHFFQNfR4Btmc=w170-rw" alt="Crackle - Movies &amp; TV" data-cover-small="https://lh6.ggpht.com/8uWVDVKec2CLOHYez5gCoyAs7h9k2IrYU3gxCwXStwDR7MRbP_tDc8xHFFQNfR4Btmc=w170-rw" data-cover-large="https://lh6.ggpht.com/8uWVDVKec2CLOHYez5gCoyAs7h9k2IrYU3gxCwXStwDR7MRbP_tDc8xHFFQNfR4Btmc=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.gotv.crackle.handset"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.gotv.crackle.handset"></a> <a class="title" href="/store/apps/details?id=com.gotv.crackle.handset" title="Crackle - Movies &amp; TV"> Crackle - Movies &amp; TV <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Crackle" title="Crackle">Crackle</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.gotv.crackle.handset"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.gotv.crackle.handset" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Finally, watch FREE movies on your Android phone &amp; tablet. <p>~ Newly re-designed based on feedback from our 11 million users!~ <br>***2012 Mobile Excellence Award Finalist*** <br>PINEAPPLE EXPRESS, BIG DADDY, JOE DIRT, LAYER CAKE, MR. DEEDS, PANIC ROOM, S.W.A.T. and hundreds more: full-length, uncut and FREE. Plus, top rated TV series like SEINFELD. <p>&quot;Crackle... gives you free movies to watch, great TV shows to remember.&quot; – Casey Chan, Gizmodo <p>&quot;..for free…That’s right. Unlike Hulu Plus, you don’t need to sign up and pay a fee to watch...&quot; – Damien Scott, Complex Magazine <p>&quot;Sony has a real gem on their hands with this app...&quot; – Jake Gaecke, Appletell <p>* Watch full-length Hollywood movies and TV series <br>* FREE to download app, FREE to watch <br>* Unlimited, on demand viewing <br>* New movies and TV episodes added monthly <br>* Genres including: action, anime, comedy, crime, horror, thriller, sci-fi and anime <br>* Optimized for both phones and tablets <br>* Browse Movies, TV, Originals, Collections and Genres <br>* Build and manage your Watchlist for viewing on the app or online at Crackle.com. <br>* Stream HQ video via 3G, 4G or Wi-Fi <br>* App works in US, Canada, UK and Australia <p>CURRENT MOVIES AND TV*: <p>MOVIES <br>Hundreds of movies including: PINEAPPLE EXPRESS, BIG DADDY, JOE DIRT, LAYER CAKE, MR. DEEDS, PANIC ROOM, S.W.A.T., SNATCH, STRANGER THAN FICTION, SAVING SILVERMAN, and more <p>TV <br>Thousands of full-length episodes; series include: SEINFELD, SPIDER-MAN, MARRIED… WITH CHILDREN, THE THREE STOOGES plus over 25 series and 1000+ episodes of Anime including BLOOD +, QUEEN’s BLADE and IKKI TOUSEN <p>Data charges may apply (unlimited data plan recommended). <p>**************************FAQ************************** <br>Thanks for everyone’s feedback and reviews. We are listening and are always working to improve the service. <br>* To use this app, you must be in US, Canada, United Kingdom or Australia. <br>* Yes, the app is free. To cover our costs we include some short video ads. Your carrier may charge data fees, so an unlimited data plan and/or viewing over Wi-Fi is recommended. <p>ABOUT CRACKLE <p>Crackle is one of the fastest growing digital entertainment networks, offering quality movies and TV series from Columbia Pictures, Tri-Star, Screen Gems, Sony Pictures Classics and more. Crackle is available via web, mobile, gaming systems and set-top boxes. For more information, visit www.crackle.com. Crackle is a division of Sony Pictures Entertainment. <p>* Movies and TV series updated monthly; titles subject to change. Current content list is available on the app or at www.crackle.com <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.gotv.crackle.handset"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.gotv.crackle.handset"></a> <a href="/store/apps/details?id=com.gotv.crackle.handset"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.gotv.crackle.handset"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 72.84591674804688%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.gotv.crackle.handset"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.gotv.crackle.handset" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.playon.playonapp" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHgocEhoKFGNvbS5wbGF5b24ucGxheW9uYXBwEAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.playon.playonapp"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/j7kWg3W7RiJEgyECfI-dA0Bu15nfYJcw5CzPwdhY2E-3XscFtz_r68HNZqJbJzYS_y5A=w170-rw" alt="PlayOn" data-cover-small="https://lh6.ggpht.com/j7kWg3W7RiJEgyECfI-dA0Bu15nfYJcw5CzPwdhY2E-3XscFtz_r68HNZqJbJzYS_y5A=w170-rw" data-cover-large="https://lh6.ggpht.com/j7kWg3W7RiJEgyECfI-dA0Bu15nfYJcw5CzPwdhY2E-3XscFtz_r68HNZqJbJzYS_y5A=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.playon.playonapp"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.playon.playonapp"></a> <a class="title" href="/store/apps/details?id=com.playon.playonapp" title="PlayOn"> PlayOn <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=MediaMall+Technologies,+Inc." title="MediaMall Technologies, Inc.">MediaMall Technologies, Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.playon.playonapp"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.playon.playonapp" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> PlayOn is the award-winning software that has won awards from Money Magazine and Popular Science Magazine. PlayOn was recently named one of the best cord-cutting tools on the planet by CNET. <p>PlayOn Mobile is now available for Android and it lets you watch all of the online content from Hulu (no Hulu Plus subscription required), Redbox*, Netflix*, NBC, ABC, FOX, CBS, Comedy Central, MLB.tv*, CNN, The Food Network, History, ESPN, ESPN3, TV.com, SpikeTV, Amazon VOD, BET, Adult Swim, Oprah Winfrey Network, Nick, PBS, PBS Kids, FoxSoccer.tv*, Al Jazeera, MTV, Vevo, and many more. It even works over Wi-Fi, 4G, or 3G.<p>PlayOn requires that you have PlayOn Media Server running on your PC.<p>You can purchase the PlayOn Media Server at <a href="https://www.google.com/url?q=http://www.playon.tv/android&amp;sa=D&amp;usg=AFQjCNEzBi_nTabjTSDxUc6q7liggzY67A" target="_blank">http://www.playon.tv/android</a> You must be running Android OS 2.2 or later and your phone must support Flash or HLS Streaming. As long as your PC running PlayOn is turned on, you can connect your phone using either a WiFi connection, 4G, or 3G and access all of PlayOn’s content and features.<p>Imagine catching up on your favorite TV series while waiting for a flight, or enjoying a sitcom during an oil change. Think about how nice it will be to sit on you couch and watch Hulu on your TV. Whatever your daily life throws at you, PlayOn can entertain you. Install this app on your phone or tablet, get the PlayOn server software on your PC, and you’ll be up and running in 5 minutes.<p>*Redbox, MLB.tv, and Netflix* require a subscriptions sold separately. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.playon.playonapp"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.playon.playonapp"></a> <a href="/store/apps/details?id=com.playon.playonapp"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.playon.playonapp"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 70.25240898132324%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.playon.playonapp"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.playon.playonapp" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.redux.android.hg" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHgocEhoKFGNvbS5yZWR1eC5hbmRyb2lkLmhnEAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.redux.android.hg"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/QxxgLuWpo4lABGsRLaMiNYJdQXovcsia0GlGrJLHB7GDfRr7yAam1adG5h3cMKdq2Bg=w170-rw" alt="Redux for Google TV" data-cover-small="https://lh5.ggpht.com/QxxgLuWpo4lABGsRLaMiNYJdQXovcsia0GlGrJLHB7GDfRr7yAam1adG5h3cMKdq2Bg=w170-rw" data-cover-large="https://lh5.ggpht.com/QxxgLuWpo4lABGsRLaMiNYJdQXovcsia0GlGrJLHB7GDfRr7yAam1adG5h3cMKdq2Bg=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.redux.android.hg"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.redux.android.hg"></a> <a class="title" href="/store/apps/details?id=com.redux.android.hg" title="Redux for Google TV"> Redux for Google TV <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Redux" title="Redux">Redux</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.redux.android.hg"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.redux.android.hg" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Discover a new kind of TV - exceptional entertainment programmed for you by awesome curators, tastemakers, and friends. Redux is effortless, high-end entertainment discovery.<p>Video surf through hundreds of channels with a beautiful interface that feels like TV. Discover refreshing, off-the-beaten-path, living room-worthy shows so good, you&#39;d never guess they came from the web. Redux brings you closer to the things that interest you, better than cable or broadcast television ever could, all in one place.<p>---- APP UPDATING / ERROR CONCERNS: PLEASE READ BELOW ----<p>Occasional reports of errors and inability to update the app have recently occurred on Market. Make sure you click on the &quot;UPDATE&quot; button in the market next to our app, and ensure the download begins and finishes. <p>If updating fails, try clearing your Market data. It&#39;s fun and safe to do. Just select Market on the All Apps screen, hold down &quot;Enter&quot;, and select &quot;Clear Data&quot; in the application info window. <p>If the app tells you that you must update, but you don&#39;t see an update button, try coming back in a few hours - for some users, the update can take a while to propagate in the android market. Worst case scenario, try uninstalling the app and then reinstalling from the market. <p>Apologies for any inconvenience. As we work with Google to resolve this unpleasantness, feel free to email us directly at <a href="mailto:tv@redux.com">tv@redux.com</a> for one-on-one support. <p>-----------------------------------------------------------<br> <br>Grab some pop corn, lean back, and let us show you how good web video can be.<br> <br>What reviewers are saying:<br> <br>&quot;Every Google TV owner should install Redux. I love how much content it offers, and I get to decide what I want to watch. Arguably better than cable.&quot;<br> <br>&quot;This is the future of TV. Beautiful interface, feels like TV. I spend hours everyday on Redux. It&#39;s better than cable. LOVE IT&quot;<br> <br>&quot;I know its kind of stupid to compare it to Netflix but let&#39;s be real. Netflix movies blow most the time. This offers refreshingly good short films. I love it and its not $8 a month.&quot;<p>&quot;Excellent app. No longer need cable between this, youtube and netflix.&quot;<p>&quot;Love this app between it and Youtube, you should probably just cancel your cable now.&quot;<br> <br>&quot;Awesome! Unlike anything else! better than TV!&quot;<br> <br>Like cars? Check out the Rides channel.<br>Gadget obsessed? The Tech channel&#39;s got you covered.<br>Enjoy high-brow nature documentaries? Check out Nature&#39;s Imprint.<br>Follow the latest in fashion? Flip to Dress Code.<br>Extreme sports junkie? Your next fix is on the Adrenaline channel.<br>Tech insider? Jason&#39;s Hirschorn&#39;s Media Redefined channel&#39;s got you covered.<br>Music snob? Light your fire on the Music: Backstage channel.<br> <br>We&#39;re adding new channels constantly, as well as partners with exclusive content like Thrillist, Storyful, and The Chicago Tribune. <p>Our family of curators regularly features the best available content from a variety of sources and subjects, including MotorTrend, Crackle, NBC, ABC, Bravo, Fox, FX, ESPN, The History Channel, CNBC, HBO, Showtime, Hulu, CBS, CNET, Animal Planet, YouTube, Vimeo, and IMDB. We&#39;ve even got rare blooper footage from baseball, basketball, football, poker, and international games, plus a host of other content you won&#39;t see on Comcast, Flixster, iTunes, DirecTV, YouTube, or even Classy Fireplace :] <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.redux.android.hg"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.redux.android.hg"></a> <a href="/store/apps/details?id=com.redux.android.hg"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.redux.android.hg"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 83.99999618530273%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.redux.android.hg"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.redux.android.hg" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.tvguidemobile" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGwoZEhcKEWNvbS50dmd1aWRlbW9iaWxlEAEYAw=="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.tvguidemobile"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh3.ggpht.com/qGtpeqk3IbteG0A-utaTTBgP_RO9UyaWwwRByNGLkiAcRMdTBXdAaRv-v9dHQaixzQ8=w170-rw" alt="TV Guide Mobile" data-cover-small="https://lh3.ggpht.com/qGtpeqk3IbteG0A-utaTTBgP_RO9UyaWwwRByNGLkiAcRMdTBXdAaRv-v9dHQaixzQ8=w170-rw" data-cover-large="https://lh3.ggpht.com/qGtpeqk3IbteG0A-utaTTBgP_RO9UyaWwwRByNGLkiAcRMdTBXdAaRv-v9dHQaixzQ8=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.tvguidemobile"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.tvguidemobile"></a> <a class="title" href="/store/apps/details?id=com.tvguidemobile" title="TV Guide Mobile"> TV Guide Mobile <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=TV+Guide" title="TV Guide">TV Guide</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.tvguidemobile"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.tvguidemobile" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> TV Guide’s new official app for Android is your one-stop, 24/7 TV companion and our best listings guide ever. It makes TV simple again – anywhere, anytime. Your feedback was instrumental in the creation of many cool new features and we’re excited for you to see them. Please keep your feedback coming – what you love, what you don’t and what you want to see next. <br> <br>Highlights:<br>• Watchlist - your super-personalized TV Guide: Organize your favorite shows, sports teams, movies, and actors and find where you can watch them – on TV, on demand, streaming and DVD.<br> <br>• Video: Link to watch TV and movies instantly on Crackle, The CW, HBO GO, Hulu Plus, and MAX GO. Watch now, anywhere, anytime.<p>• New Tonight: What&#39;s new in prime time with three handy filters:<br>1. All new shows<br>2. Trending – a social hot list based on what TV Guide users are watching<br>3. Watchlist – only your favorite shows<p>• Listings: Detailed info about every airing with the ability to:<br>1. Set up alerts and never miss a live airing<br>2. Easily personalize your Watchlist<br>3. Filter by HD-only and favorite channels<br>4. Check-in and share what you&#39;re watching with your friends on Facebook, Twitter and more<p>• Exclusive content: The best in breaking news, features, videos and photos, curated by TV Guide&#39;s editors<p>• News Watchlist filter: Get news customized just for you<p>• One account: TVGuide.com users can enjoy the convenience of one linked account for TVGuide.com and TV Guide for iPhone, iPad and iPod touch and Android. Set up individual accounts for every member of your family.<p>The app is available for these Android versions only:<br>• Ice Cream Sandwich (4.0.2+) <br>• Jellybean (4.1+) <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.tvguidemobile"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.tvguidemobile"></a> <a href="/store/apps/details?id=com.tvguidemobile"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.tvguidemobile"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 80.90585708618164%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.tvguidemobile"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.tvguidemobile" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="linuspetren.com.huloid" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIAoeEhwKFmxpbnVzcGV0cmVuLmNvbS5odWxvaWQQARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=linuspetren.com.huloid"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/kOlamRxR3Kb-0VeOLDCjjN8NQ0z4ot2zg9yOdmR196715UT5m94uOoIYMKCRcYsgPDQ=w170-rw" alt="hulOID" data-cover-small="https://lh5.ggpht.com/kOlamRxR3Kb-0VeOLDCjjN8NQ0z4ot2zg9yOdmR196715UT5m94uOoIYMKCRcYsgPDQ=w170-rw" data-cover-large="https://lh5.ggpht.com/kOlamRxR3Kb-0VeOLDCjjN8NQ0z4ot2zg9yOdmR196715UT5m94uOoIYMKCRcYsgPDQ=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=linuspetren.com.huloid"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=linuspetren.com.huloid"></a> <a class="title" href="/store/apps/details?id=linuspetren.com.huloid" title="hulOID"> hulOID <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Linus+Petren" title="Linus Petren">Linus Petren</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="linuspetren.com.huloid"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="linuspetren.com.huloid" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> hulOID 1.8<p>This is an application where you can see information about all the content on hulu.com<p>*See most popular<br>*Search for your favorite shows<br>*Save your searches<br>*Updated UI<br>*Share your favorites to social networks<br>*Go to the hulu page for the show<p>Hulu does not allow watching their content from cell phones today! <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=linuspetren.com.huloid"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=linuspetren.com.huloid"></a> <a href="/store/apps/details?id=linuspetren.com.huloid"> </a> <span class="stars-container"> <a href="/store/apps/details?id=linuspetren.com.huloid"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 50.2641487121582%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="linuspetren.com.huloid"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="linuspetren.com.huloid" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.Rankarthai.TV.Online" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIgogEh4KGGNvbS5SYW5rYXJ0aGFpLlRWLk9ubGluZRABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.Rankarthai.TV.Online"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/GhzQQ4BjEdrUu_JBn4ddo4jO0jiYezfUN06FaADco3F9Ocx_FnnpGKvN9PpGR3rjLQ=w170-rw" alt="TV Online" data-cover-small="https://lh5.ggpht.com/GhzQQ4BjEdrUu_JBn4ddo4jO0jiYezfUN06FaADco3F9Ocx_FnnpGKvN9PpGR3rjLQ=w170-rw" data-cover-large="https://lh5.ggpht.com/GhzQQ4BjEdrUu_JBn4ddo4jO0jiYezfUN06FaADco3F9Ocx_FnnpGKvN9PpGR3rjLQ=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.Rankarthai.TV.Online"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.Rankarthai.TV.Online"></a> <a class="title" href="/store/apps/details?id=com.Rankarthai.TV.Online" title="TV Online"> TV Online <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Rankarthai" title="Rankarthai">Rankarthai</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.Rankarthai.TV.Online"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.Rankarthai.TV.Online" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> *** More than 500,000 downloads in two months.<br>Application TV Online Free. Collect entertainment is in your hands.You can watch TV online for 24 hours.Both in Thailand and abroad more than 160 channels.Such as TV,News,Star entertainment,Music,Sports and so on.<br>You can either use EDGE GPRS 2G and 3G Wifi. Have a good application for your mobile and you can get news anywhere and anytime.<br>- Can be viewed on both Wi-Fi and 3G.If you do not see the link.For you to choose link2 or link3.<p>Special features.<br>- No need to download an extra application.<br>- Can be viewed on a smartphone and tablet.<br>- Can chat and comment.<br>- Easy to use.<br>- Colorful patterns.<p>Recommendation<br>- If an open applications with EDGE, GPRS &amp; 2G Image more slowly than usual. So the performance should be better with Wifi Internet.<p>Application TV Online make you fun endless.<p><br>tags:tv thai,thai,tv,Live tv thai , tv online,ทีวี,ทีวี ไทย,ทีวี ออนไลน์<p><a href="https://www.google.com/url?q=https://www.facebook.com/rankarthai&amp;sa=D&amp;usg=AFQjCNH86_4KK20FP3zBYnCaB_cjPy7cTQ" target="_blank">https://www.facebook.com/rankarthai</a><br>by rankarthai.com <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.Rankarthai.TV.Online"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.Rankarthai.TV.Online"></a> <a href="/store/apps/details?id=com.Rankarthai.TV.Online"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.Rankarthai.TV.Online"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 87.92284965515137%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.Rankarthai.TV.Online"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.Rankarthai.TV.Online" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.rhythmnewmedia.tvdotcom" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaJQojEiEKG2NvbS5yaHl0aG1uZXdtZWRpYS50dmRvdGNvbRABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh3.ggpht.com/tvhSeCfKGen5s_Q27r9XwXDZKzLZyCwEnftU7g_EjiIok5DRPLSYRPT7yPilsvuW2dW3=w170-rw" alt="TV.com" data-cover-small="https://lh3.ggpht.com/tvhSeCfKGen5s_Q27r9XwXDZKzLZyCwEnftU7g_EjiIok5DRPLSYRPT7yPilsvuW2dW3=w170-rw" data-cover-large="https://lh3.ggpht.com/tvhSeCfKGen5s_Q27r9XwXDZKzLZyCwEnftU7g_EjiIok5DRPLSYRPT7yPilsvuW2dW3=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom"></a> <a class="title" href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom" title="TV.com"> TV.com <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=CBS+Interactive,+Inc." title="CBS Interactive, Inc.">CBS Interactive, Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.rhythmnewmedia.tvdotcom"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.rhythmnewmedia.tvdotcom" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> TV.com brings personal TV to your phone on WiFi and cellular networks. Access the videos you want anywhere you go including full episodes...and it’s free! Get video from CBS, The CW, CNET, ET, Showtime, CBS News, CBS Sports and much more! Watch your favorite shows anywhere, anytime on TV.com. No subscription fees apply. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom"></a> <a href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.rhythmnewmedia.tvdotcom"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 75.09520530700684%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.rhythmnewmedia.tvdotcom"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.rhythmnewmedia.tvdotcom" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.cisi.activities" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHQobEhkKE2NvbS5jaXNpLmFjdGl2aXRpZXMQARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.cisi.activities"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/Uv4xy2V5i4nslIWqd0aqWCsC519ylM-EbBz9OL_WMjm23I1_CEF2E2aRXzo8I0HANms=w170-rw" alt="Can I Stream It?" data-cover-small="https://lh6.ggpht.com/Uv4xy2V5i4nslIWqd0aqWCsC519ylM-EbBz9OL_WMjm23I1_CEF2E2aRXzo8I0HANms=w170-rw" data-cover-large="https://lh6.ggpht.com/Uv4xy2V5i4nslIWqd0aqWCsC519ylM-EbBz9OL_WMjm23I1_CEF2E2aRXzo8I0HANms=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.cisi.activities"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.cisi.activities"></a> <a class="title" href="/store/apps/details?id=com.cisi.activities" title="Can I Stream It?"> Can I Stream It? <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Urban+Pixels+LLC" title="Urban Pixels LLC">Urban Pixels LLC</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.cisi.activities"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.cisi.activities" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> The fastest and most awesome way to find streaming **movies and tv shows** to rent or buy, across most major services. Never waste time checking each individual service again! <p>&quot;It&#39;s like Kayak for streaming services.&quot; - Roberto Baldwin, Gizmodo.com 11/01/2011 <p>CanIStream.it currently searches iTunes, Hulu, Netflix, Amazon Instant Video, VUDU, Crackle, EPIX, Streampix, Redbox, and XFinity premium channels; we are continually adding new services to the list, so remember to check back often. <p>If the movie you are looking for is not available, you can: <br>-Set up reminders, or <br>-Push notifications <p>Simply select the movie and the service, and the moment it becomes available for your chosen method of viewing, we will inform you. <p>And the best part – it’s FREE!<p>Services currently searched:<br>- Netflix (Instant and DVD)<br>- Amazon (Prime Instant, Rental, Purchase, DVD, Bluray)<br>- Hulu (including Plus)<br>- YouTube (free / rental)<br>- EPIX<br>- Streampix<br>- Vudu (rental / purchase)<br>- Blockbuster (rental / purchase)<br>- Android (rental)<br>- Redbox (DVD rentals)<br>- XFinity (HBO, Showtime, Encore, Starz, etc)<p>Visit us on the web at CanIStream.It <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.cisi.activities"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.cisi.activities"></a> <a href="/store/apps/details?id=com.cisi.activities"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.cisi.activities"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 77.5108528137207%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.cisi.activities"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.cisi.activities" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.viki.android" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGgoYEhYKEGNvbS52aWtpLmFuZHJvaWQQARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.viki.android"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/s3_8Et20lDhPWKgj03-TxKmBGrNYk0THrQCYPbiw7nI-b0kzVXmLGPjpzc-TjlDtdxg=w170-rw" alt="Viki: TV, Movie, Music, KDrama" data-cover-small="https://lh6.ggpht.com/s3_8Et20lDhPWKgj03-TxKmBGrNYk0THrQCYPbiw7nI-b0kzVXmLGPjpzc-TjlDtdxg=w170-rw" data-cover-large="https://lh6.ggpht.com/s3_8Et20lDhPWKgj03-TxKmBGrNYk0THrQCYPbiw7nI-b0kzVXmLGPjpzc-TjlDtdxg=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.viki.android"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.viki.android"></a> <a class="title" href="/store/apps/details?id=com.viki.android" title="Viki: TV, Movie, Music, KDrama"> Viki: TV, Movie, Music, KDrama <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Viki,+Inc" title="Viki, Inc">Viki, Inc</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.viki.android"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.viki.android" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> GLOBAL TV POWERED BY FANS<p>Watch the best TV shows, movies, music videos, variety selection of Korean dramas, and other premium content in high quality, translated into more than 150 languages by a community of avid fans. Top titles include the hottest Korean dramas, Japanese anime, American cartoons, NBC Universal, BBC, History Channel, A&amp;E, Bravo and Bio TV shows, as well as movies from Bollywood and Latin America to Africa (note: not all content available for all regions). <p>- Discover great shows from around the world in &quot;Featured&quot; and &quot;Coming Soon&quot;<br>- Watch in your language <br>- Music videos from around the world, subbed in your language (K-pop, hip-hop and more!) <br>- Auto Play recommended videos for TV, Music and News - watch uninterrupted! <br>- Timed comments - watch the video with comments from the Viki community<br>- Classic Japanese anime<br>- Classic American cartoons<br>- Popular Korean dramas<br>- Facebook Connect, invite your friends, and publish videos to your timeline<br>- Search by country and by genre<br>- Share your favorites with friends via Facebook, Twitter, SMS and email <br>- Stream videos anywhere and anytime with a WiFi or 3G connection<p>Download Viki now!<p>For questions, comments or suggestions, please email us at <a href="mailto:mobile@viki.com">mobile@viki.com</a>.<p>Learn more about Viki by visiting our website: <a href="https://www.google.com/url?q=http://www.viki.com&amp;sa=D&amp;usg=AFQjCNH4ywGImHFAQ60-m7NjYX9Dwb6ONw" target="_blank">http://www.viki.com</a><p>Get access to even more content by becoming a Qualified Contributor. Learn more at www.viki.com/community. <p>PLEASE NOTE: Due to the nature of some licenses from content owners, videos may not be available in all regions. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.viki.android"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.viki.android"></a> <a href="/store/apps/details?id=com.viki.android"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.viki.android"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 88.32550048828125%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.viki.android"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.viki.android" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.imdb.mobile" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaGQoXEhUKD2NvbS5pbWRiLm1vYmlsZRABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.imdb.mobile"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh6.ggpht.com/BFD_zfFU4xN17xVdmkpqs05oyU2o0JT0gBZhyQD4xBAs0AaXbpZQBJIun95GHhwgC6U=w170-rw" alt="IMDb Movies &amp; TV" data-cover-small="https://lh6.ggpht.com/BFD_zfFU4xN17xVdmkpqs05oyU2o0JT0gBZhyQD4xBAs0AaXbpZQBJIun95GHhwgC6U=w170-rw" data-cover-large="https://lh6.ggpht.com/BFD_zfFU4xN17xVdmkpqs05oyU2o0JT0gBZhyQD4xBAs0AaXbpZQBJIun95GHhwgC6U=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.imdb.mobile"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.imdb.mobile"></a> <a class="title" href="/store/apps/details?id=com.imdb.mobile" title="IMDb Movies &amp; TV"> IMDb Movies &amp; TV <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=IMDb" title="IMDb">IMDb</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.imdb.mobile"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.imdb.mobile" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Search the world&#39;s largest collection:<br>· Over 2 million movie and TV titles<br>· Over 4 million celebrities, actors, actresses, directors and other crew members<p>Rate:<br>· Rate movies and TV shows<br>· Sign in with your IMDb account or your Facebook account<p>View:<br>· Movie trailers<br>· User reviews for movies and TV shows<br>· Critics reviews for movies and TV shows<br>· Quotes, trivia and goofs about movies and celebrities<br>· Your browse and search history on IMDb<p>Look up:<br>· Movie showtimes at local theaters near you<br>· TV listings for your local time zone<br>· Recaps of TV shows from previous night<br>· Upcoming movies<br>· Latest entertainment news from hundreds of media outlets<p>Notifications:<br>· Choose &quot;notify me&quot; on titles and names you&#39;re interested in to be notified of trailers, photos, showtimes, and news.<p>Explore popular charts:<br>· Best Picture - award winners<br>· Top rated movies of all time (IMDb Top 250)<br>· Most popular movies of the day on IMDb (MOVIEmeter)<br>· Most popular celebrities of the day on IMDb (STARmeter)<br>· Lowest rated movies of all time (IMDb Bottom 100)<br>· Most popular TV shows<br>· US Box office results<br>· Celebrity birthdays<p>Availability:<br>· IMDb is available worldwide in English (US/UK), Spanish, German, French, Portuguese, Italian, Japanese, Korean and Chinese.<br> <br>We hope your IMDb experience on your Android phone and Android tablet continues to be entertaining.<p>If you have questions about why we require certain permissions, please see our Android app FAQ page: <a href="https://www.google.com/url?q=http://imdb.com/androidfaq&amp;sa=D&amp;usg=AFQjCNFqixq_rajPdxxKjaWEop0l-B-BDA" target="_blank">http://imdb.com/androidfaq</a><p>Galaxy Note users, if you are having trouble please go to the phone settings, then select &quot;language and keyboard.&quot; The language setting will show English, but click to select it and you will see it is not English. Select English.<p>Thank you<br>-IMDb Android team <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.imdb.mobile"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.imdb.mobile"></a> <a href="/store/apps/details?id=com.imdb.mobile"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.imdb.mobile"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 88.78217697143555%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.imdb.mobile"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.imdb.mobile" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.sm.SlingGuide.Dish" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIAoeEhwKFmNvbS5zbS5TbGluZ0d1aWRlLkRpc2gQARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.sm.SlingGuide.Dish"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/ddv92tewQBxVzMJlWdaq8msObi6E00h0FOxuaMmnTQxmWek9HtDjBJx1ZfP6l6vYfCAO=w170-rw" alt="DISH Anywhere" data-cover-small="https://lh5.ggpht.com/ddv92tewQBxVzMJlWdaq8msObi6E00h0FOxuaMmnTQxmWek9HtDjBJx1ZfP6l6vYfCAO=w170-rw" data-cover-large="https://lh5.ggpht.com/ddv92tewQBxVzMJlWdaq8msObi6E00h0FOxuaMmnTQxmWek9HtDjBJx1ZfP6l6vYfCAO=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.sm.SlingGuide.Dish"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.sm.SlingGuide.Dish"></a> <a class="title" href="/store/apps/details?id=com.sm.SlingGuide.Dish" title="DISH Anywhere"> DISH Anywhere <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=DISH+Network+LLC" title="DISH Network LLC">DISH Network LLC</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.sm.SlingGuide.Dish"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.sm.SlingGuide.Dish" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Take your TV with you. With the DISH Anywhere, you can watch the same TV you get at home on your Android device. Enjoy your favorite live or recorded programs anytime, anywhere. Also, manage your home television with a full-featured DVR manager and a searchable program guide. This is a must-have app for DISH Subscribers. <p>Now with thousands of On Demand movies and TV shows from HBO, Cinemax, Epix, and many more networks! <p>Features: <br>Watch your TV* <br>Take your TV with you- and enjoy watching all of your favorite sports, news, TV shows, and movies from your Hopper with Sling, Hopper, ViP™ 922 Slingloaded™ DVR or ViP™ 722 or 722k DVR with the Sling® Adapter accessory on your Android device. <br>-Integrated user interface makes it fast and easy to find the shows and movies you want to watch. <p>Schedule DVR Recordings <br>- Schedule DVR recordings from anywhere. <br>- One-touch recording- simply choose to record one event, all events, or only new events. <p>Browse and Search the Program Guide and On Demand Titles<br>- Search the program guide up to 9 days in advance. <br>- Search for shows by title, genre, network, keyword, or actor. <br>- View graphics and posters of your favorite shows and movies. <p>Manage your DVR Library** <br>- Set recording priorities. <br>- Manage recording conflicts. <br>- Delete shows you’ve already watched. <br>- View and adjust your recording schedule. <p>DISH Anywhere requires an online DISH account and is compatible with the following DISH Network receiver models: 512, 522, 625, 612, 622, 722, 722k, 922, Hopper, Hopper with Sling. <p>*Requires high-speed Internet connection to a ViP™ 922 Slingloaded™ DVR, or a ViP™ 722 or ViP722k or Hopper DVR with Sling Adapter accessory. <br>**Requires high-speed Internet connection to one of the following receiver models: ViP612, ViP622, ViP 722, ViP722k, ViP 922, Hopper, Hopper with Sling. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.sm.SlingGuide.Dish"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.sm.SlingGuide.Dish"></a> <a href="/store/apps/details?id=com.sm.SlingGuide.Dish"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.sm.SlingGuide.Dish"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 80.05993843078613%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.sm.SlingGuide.Dish"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.sm.SlingGuide.Dish" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="tv.w3b.client.android" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHwodEhsKFXR2LnczYi5jbGllbnQuYW5kcm9pZBABGAM="> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=tv.w3b.client.android"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh4.ggpht.com/LJkob-Tmge0RA-MIkicuezL7gFoMM2PdD6TAXMYXmZ2NPPnIWYLdEV-q70uqIJpSjYQ=w170-rw" alt="W3b Tv" data-cover-small="https://lh4.ggpht.com/LJkob-Tmge0RA-MIkicuezL7gFoMM2PdD6TAXMYXmZ2NPPnIWYLdEV-q70uqIJpSjYQ=w170-rw" data-cover-large="https://lh4.ggpht.com/LJkob-Tmge0RA-MIkicuezL7gFoMM2PdD6TAXMYXmZ2NPPnIWYLdEV-q70uqIJpSjYQ=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=tv.w3b.client.android"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=tv.w3b.client.android"></a> <a class="title" href="/store/apps/details?id=tv.w3b.client.android" title="W3b Tv"> W3b Tv <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Marc+Stogaitis+%26+Mimi+Sun" title="Marc Stogaitis &amp; Mimi Sun">Marc Stogaitis &amp; Mimi Sun</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="tv.w3b.client.android"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="tv.w3b.client.android" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Web Tv turns Android into a remote control for your computer, allowing you to start and control TV shows at a distance.<p>A huge number of television shows are currently available online. This app makes it easy to find the latest episodes of these shows and instantly start them on your computer using your Android phone. You can then control the playback by using the built-in touchpad and keyboard of Web Tv.<p>Note that you will need to install our free W3b Tv server on each computer you with to control. <p>Features<br>* Use your phone to start a TV show on your computer<br>* Huge list of available free TV shows<br>* Remote touchpad feature allows you to control video players on different websites<br>* Star your favorite shows for quick future access<br>* Queue feature which gives you one click access to new episodes of your favorite TV shows and videos<p>Supports displaying shows from Hulu, Youtube, TED, CBS, The CW.<p>TV shows include: Family Guy, Bones, The Daily Show, The Office, Grey&#39;s Anatomy, Modern Family, The Big Bang Theory, Grimm and hundreds more!<p>Supports Windows, Mac and Linux.<p>Keywords: TV, Shows, Remote, videos, Remote Control, Touchpad, Keyboard, Tv Shows, Watch, youtube, rss, feeds, webtv, w3btv, hulu, tvguide, hulu.com, Web tv, nfl, superbowl, super bowl, Super Bowl XLVII <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=tv.w3b.client.android"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=tv.w3b.client.android"></a> <a href="/store/apps/details?id=tv.w3b.client.android"> </a> <span class="stars-container"> <a href="/store/apps/details?id=tv.w3b.client.android"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 79.07692432403564%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="tv.w3b.client.android"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="tv.w3b.client.android" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.xfinity.playnow" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaHQobEhkKE2NvbS54ZmluaXR5LnBsYXlub3cQARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.xfinity.playnow"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh3.ggpht.com/zywoaJOEotXxcBTBz5tw8PWhDk-uBBUj9JWLUu1KJL51lHH6h7C97-I8R0r6xne86Ic=w170-rw" alt="XFINITY™ TV Player" data-cover-small="https://lh3.ggpht.com/zywoaJOEotXxcBTBz5tw8PWhDk-uBBUj9JWLUu1KJL51lHH6h7C97-I8R0r6xne86Ic=w170-rw" data-cover-large="https://lh3.ggpht.com/zywoaJOEotXxcBTBz5tw8PWhDk-uBBUj9JWLUu1KJL51lHH6h7C97-I8R0r6xne86Ic=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.xfinity.playnow"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.xfinity.playnow"></a> <a class="title" href="/store/apps/details?id=com.xfinity.playnow" title="XFINITY™ TV Player"> XFINITY™ TV Player <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Comcast+Interactive+Media" title="Comcast Interactive Media">Comcast Interactive Media</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.xfinity.playnow"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.xfinity.playnow" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Watch thousands of XFINITY On Demand™ TV Shows &amp; Movies anytime, anywhere.<p>Plus, now you can download thousands of hit shows &amp; movies from Showtime, Starz, Encore and more to your Android tablet or phone &amp; watch them anytime, anywhere -- even when you’re offline.<p>With the XFINITY TV Player app, you can watch thousands of hours of TV shows and movies.<br>• Watch content anytime, anywhere on any Wi-Fi connected Android Phone or Tablet<br>• Stream TV Shows and movies from your favorite networks, including premium channels like HBO, Starz, Showtime, Cinemax and cable channels like TNT, TBS, Cartoon Network and BBC America.<br>• Download TV shows &amp; movies from Showtime, Starz, Encore and MoviePlex and watch them when you’re offline.<br>• Set parental controls, so you can enjoy your content with privacy and peace of mind.<p><br>REQUIREMENTS: <p>• Wi-Fi internet connection for streaming and download of video<br>• Android phone or tablet running Android 2.3 and higher.<br>• XFINITY TV or Comcast Digital Video service. You will also need a subscription to one or more eligible channels to play content. <br>• Comcast ID or Comcast.net email address and password. <p>Streaming and downloading of video is not available internationally.<p>SUPPORT:<p>Get Help Signing-In!<p>• Create a Comcast ID --&gt; <a href="https://www.google.com/url?q=https://login.comcast.net/myaccount/create-uid&amp;sa=D&amp;usg=AFQjCNGNXY5KMxx1CbYkwWIuMj6f0KNBWg" target="_blank">https://login.comcast.net/myaccount/create-uid</a><br>• Look up your Comcast ID --&gt; <a href="https://www.google.com/url?q=https://login.comcast.net/myaccount/lookup&amp;sa=D&amp;usg=AFQjCNGdScRqKxOzuauCTIKgSrbFgMqlNw" target="_blank">https://login.comcast.net/myaccount/lookup</a><br>• Retrieve your Comcast ID Password --&gt; <a href="https://www.google.com/url?q=https://login.comcast.net/myaccount/reset&amp;sa=D&amp;usg=AFQjCNFSH6g41oy3e1yxXYcEnYU6YN8Isw" target="_blank">https://login.comcast.net/myaccount/reset</a><p><p>*** Follow @XfinityTVApps on Twitter for tips and product information relating to all XFINITY mobile apps. <p>**** Having trouble with the XFINITY TV Player App? Contact our support team via email: <a href="mailto:xfinity_remote@cable.comcast.com">xfinity_remote@cable.comcast.com</a>. We cannot respond through the Android Market comment/ratings system but would love to hear from you.<p>**** Explanation of permissions requested:<br>* permission.CALL_PHONE - Allows us to pass our support phone number to your dialer.<br>* permission.INTERNET - Access the Internet.<br>* permission.READ_PHONE_STATE - We use the ID of your phone to prevent playback abuse.<br>* permission.ACCESS_WIFI_STATE - We tune playback if you are on WiFi.<br>* permission.ACCESS_NETWORK_STATE - We detect connectivity before allowing playback.<br>* permission.WRITE_EXTERNAL_STORAGE - We cache browse images to your sdcard to save your bandwidth.<br>* permission.WAKE_LOCK - We prevent your device from sleeping during playback. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.xfinity.playnow"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.xfinity.playnow"></a> <a href="/store/apps/details?id=com.xfinity.playnow"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.xfinity.playnow"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 67.92389392852783%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.xfinity.playnow"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.xfinity.playnow" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> <div data-docid="com.google.android.videos" class="card apps square-cover small no-rationale" data-original-classes="card apps square-cover small no-rationale" data-short-classes="card apps square-cover tiny no-rationale" data-server-cookie="CAIaIwohEh8KGWNvbS5nb29nbGUuYW5kcm9pZC52aWRlb3MQARgD"> <div class="card-content track-click track-impression" data-uitype="500"> <a class="card-click-target" href="/store/apps/details?id=com.google.android.videos"></a> <div class="cover"> <div class="cover-image-container"> <div class="cover-outer-align"> <div class="cover-inner-align"> <img class="cover-image" src="https://lh5.ggpht.com/fFPQTALNNU4xflvbazvbwPL5o4X3a_CqYHUWIh4FXmfU78aSSuP1OMkGXhXouxXzWPov=w170-rw" alt="Google Play Movies &amp; TV" data-cover-small="https://lh5.ggpht.com/fFPQTALNNU4xflvbazvbwPL5o4X3a_CqYHUWIh4FXmfU78aSSuP1OMkGXhXouxXzWPov=w170-rw" data-cover-large="https://lh5.ggpht.com/fFPQTALNNU4xflvbazvbwPL5o4X3a_CqYHUWIh4FXmfU78aSSuP1OMkGXhXouxXzWPov=w340-rw"> </div> </div> </div> <a class="card-content-link" href="/store/apps/details?id=com.google.android.videos"> <span class="preview-overlay-container"> </span> </a> </div> <div class="details"> <a class="card-click-target" href="/store/apps/details?id=com.google.android.videos"></a> <a class="title" href="/store/apps/details?id=com.google.android.videos" title="Google Play Movies &amp; TV"> Google Play Movies &amp; TV <span class="paragraph-end"></span> </a> <div class="subtitle-container"> <a class="subtitle" href="/store/apps/developer?id=Google+Inc." title="Google Inc.">Google Inc.</a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.google.android.videos"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.google.android.videos" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </div> <div class="description"> Google Play Movies &amp; TV allows you to watch movies and TV shows purchased on Google Play.<br>You can stream instantly on your Android phone or tablet, or download so you can watch from anywhere, even when you’re not connected. Also, get quick access to your personal video collection, including those taken on your phone or tablet.<br>Learn more about Google Play Movies &amp; TV at http://play.google.com/about/movies<br>Note: TV shows are currently available in the United States only. <span class="paragraph-end"></span> <a class="card-click-target" href="/store/apps/details?id=com.google.android.videos"></a> </div> </div> <div class="reason-set"> <a class="card-click-target" href="/store/apps/details?id=com.google.android.videos"></a> <a href="/store/apps/details?id=com.google.android.videos"> </a> <span class="stars-container"> <a href="/store/apps/details?id=com.google.android.videos"> <div class="reason-set-star-rating"> <div class="tiny-star star-rating-non-editable-container"> <div class="current-rating" style="width: 66.7464828491211%;"></div> </div> </div> </a> <span class="price-container"> <span class="paragraph-end"></span> <span class="buy-button-container apps is-price-tag" data-docid="com.google.android.videos"> <div class="pon" style="display:none">1</div> <span class="price buy"> <span>Free</span> </span> <span style="display:none" class="consume-label"> <a style="display:none" class="consume-link no-nav track-click" href="#" data-uitype="218" target="_blank"> <span class="no-nav" style="display:none"> Listen </span> <span class="no-nav" style="display:none"> Read </span> </a> <span class="info-label" style="display:none"> Device Only </span> <span style="display:none" class="consume-link no-nav watch-button track-click" data-video-docid="com.google.android.videos" data-uitype="218"> Watch </span> <span class="price buy track-click" data-uitype="221"> Installed </span> </span> <span style="display:none" class="acquired-label"> <span class="acquired-icon"></span> </span> </span> </span> </span> </div> </div> </div> </div> </div> </div> </div> </div></div><div class="overlay-background" style="display:none"></div><div class="overlay-wrapper" style="display:none"><div class="overlay-content-wrapper"><div id="overlay-content"></div></div></div><div style="clear:both"></div><div id="footer-content"> <button class="play-button" id="show-more-button" style="display:none"> Show More </button> <div class="bottom-loading" style="display:none"></div> <div class="footer cluster"> <div class="footer-links-container card-list"> <span class="copyright">©2013 Google</span> <a class="footer-link no-nav" href="https://play.google.com/intl/en_us/about/play-terms.html"> Site Terms of Service</a> <a class="footer-link no-nav" href="https://play.google.com/intl/en_us/about/device-terms.html"> Devices Terms of Sale</a> <a class="footer-link no-nav" href="https://support.google.com/googleplay/bin/answer.py?answer=1196018&amp;hl=en&amp;authuser=0"> Privacy Policy</a> <a class="footer-link" href="http://developer.android.com/index.html"> Developers</a> <a class="footer-link no-nav" href="https://play.google.com/artists"> Artists</a> </div> </div> </div></div><script type="text/javascript">(function(){var locale='en';window.___gcfg = {lang:locale,parsetags:'explicit'
127
+ };(function(){function doPlusOne(){if (gapi && gapi.plusone){gapi.plusone.go("body-content");}
128
+ }
129
+ var po = document.createElement('script');po.type = 'text/javascript';po.async = true;po.src = 'https://apis.google.com/js/plusone.js';if (!po.addEventListener){po.attachEvent('onload',doPlusOne);}else {po.addEventListener('load',doPlusOne,false);}
130
+ var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(po,s);})();})();</script><script type="text/javascript">if (gapi && gapi.load){gapi.load('card',function(){gapi.config.update('card/source','play.webstore');gapi.card.watch()});}
131
+ </script><div class="loading" id="page-load-indicator"></div><div id="audio-player"><audio id="html5Player" autoplay="autoplay"></audio></div><script>(function(){window._sc='[[null,\42/\42,\42/store\42,\42/store/account\42,\42/store/movies\42,\42/store/music\42,\42/store/books\42,\42/store/magazines\42,\42/store/apps\42,\42/store/devices\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d0\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d4\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d1\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d6\42,null,\42https://encrypted.google.com/complete/search?client\\u003dpartner\\u0026partnerid\\u003dskyjam-store\\u0026ds\\u003dcse\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d3\42,\42https://market.android.com/suggest/SuggRequest?json\\u003d1\\u0026c\\u003d5\42,null,\42/\42,\42/log?format\\u003djson\42,null,\42https://play.google.com/intl/en_us/about/play-terms.html\42,\42https://support.google.com/googleplay/bin/answer.py?topic\\u003d2450225\\u0026answer\\u003d2479637\\u0026hl\\u003den\42,\42/store/buy\42,\42/store/install\42,\42/store/getpurchaseoutcome\42,\42/wishlist\42,\42/movies\42,\42/music?authuser\\u003d0\42,\42/books\42,\42/magazines\42,\42/apps\42,\42/store/xhr/enablegpr\42,\42/store/xhr/deletereview\42,\42/store/xhr/ructx\42,\42/store/xhr/getuseraddress\42,\42/store/submitreview\42,\42/store/addtocart\42,\42/store/xhr/updatecart\42,\42/static/client/swf/musicplayer.swf\42,\42/store/xhr/rapcategories\42,\42/store/xhr/rapsubmit\42,\42/store/xhr/puc\42,\42/store/xhr/pulc\42,\42/store/xhr/getwatchembed\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d86400\42,\42https://accounts.google.com/ServiceLogin?service\\u003dgoogleplay\\u0026passive\\u003d0\42,null,\42/store/xhr/mul\42,\42/store/xhr/getdoc\42,\42http://support.google.com/mobile/?p\\u003dbooks_formats\42,\42http://support.google.com/mobile/?p\\u003dbooks_devices\42,\42http://support.google.com/mobile/?p\\u003dbooks_androidapp\42,\42http://support.google.com/mobile/?p\\u003dbooks_iosapp\42,\42http://support.google.com/googleplay/bin/answer.py?answer\\u003d1062502\\u0026topic\\u003d1187416\\u0026ctx\\u003dtopic\42,\42/store/apps/details?id\\u003dcom.google.android.apps.books\42,\42/store/apps/details?id\\u003dcom.google.android.music\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.apps.magazines\42,\42/store/xhr/topupopts\42,\42/store/setuserdata\42,\42/store/xhr/buynoco\42,\42/store/apps/collection/editors_choice\42,\42/store/apps/category/GAME\42,\42/store/account\42,\42/redeem\42,\42/store/xhr/getnumcartitems\42,\42/store/cart?modTime\\u003d0\42,\42/store/xhr/cancelsub\42,\42/store/xhr/dfph\42,\42https://play.google.com/intl/en_us/about/giftcards\42,\42/store/movies/category/MOVIE\42,\42/store/movies/category/TV\42,\42/store/cancelpreorder\42,\42http://support.google.com/googleplay/devices\42,\42/settings\42,\42/store/ratereview\42,\42/store/getdevicepermissions\42,\42/store/xhr/hide\42,\42/store/getreviews\42,\42/store/movies/collection/promotion_collections_movie_studios\42,\42/store/movies/collection/promotion_collections_tv_networks\42,\42/store/xhr/canceldeviceorder\42,\42https://plus.google.com/\42,\42https://wallet.google.com/updateCreditCard\42]\n,1,1]\n';})();</script><script>(function(){window._uc='[\42RBNrAb4A_zWQ0P6Lhp--X7-t-8w:1375422787849\42,\0420\42,\42en\42,\42US\42,[]\n,0,0,0,null,null,[]\n,null,1,[\42nocache:enable_play_country\42,\42nocache:web:greenback.experiment.treatment\42,\42nocache:web:hardware.greenback.experiment.treatment\42,\42nocache:web:purchase-frames.experiment.treatment\42,\42signed-in\42]\n]\n';})();</script><script type="text/javascript" src="/static/client/js/3885100287-main_page_js_compiled_main_page_js.js"></script>
132
+ <script>pressPlay();</script><script src="https://wallet.google.com/inapp/lib/buy.js"></script></body></html><div> <script>(function(){var sd=['[\42com.hulu.plus\42,\42com.hulu.plus\42,1,3,\42/store/apps/details?id\\u003dcom.hulu.plus\42,\42/store/apps/details?id\\u003dcom.hulu.plus\42,\42https://play.google.com/store/apps/details?id\\u003dcom.hulu.plus\42,\42https://market.android.com/details?id\\u003dcom.hulu.plus\42,\42Hulu Plus\42,\42Instantly watch current TV shows and acclaimed movies. Anywhere.\\u003cp\\u003eDownload the app to enjoy unlimited instant streaming of current and classic hit TV shows with your Hulu Plus subscription (Subscription Required).\\u003cp\\u003eNew to Hulu Plus? Try it FREE.\\u003cp\\u003e• Watch any current season episode of Community, Family Guy, The Office, Glee, and many more popular shows\\u003cbr\\u003e• Enjoy popular kids shows, including SpongeBob SquarePants, Kung Fu Panda, Caillou and many more, ad-free\\u003cbr\\u003e• Catch up on classic series including Lost, Battlestar Galactica and Arrested Development, or explore thousands of critically acclaimed movies\\u003cbr\\u003e• Resume watching from where you left off on your TV or another supported device\\u003cbr\\u003e• Add your favorite videos to your queue for instant access and sharing\\u003cbr\\u003e• Watch over WiFi, 3G, and 4G\\u003cbr\\u003e• Available for $7.99/month with limited advertising\\u003cp\\u003eHulu Plus is supported on select Android 2.x phones, as well as most Android 3.1+ and 4.x phones and tablets. Service available in the United States and territories.\\u003cp\\u003ePlease contact us at \\u003ca href\\u003d\\\42mailto:mobilesupport@hulu.com\\\42\\u003emobilesupport@hulu.com\\u003c/a\\u003e or 1-888-907-0345 if you are having issues with compatibility of your device.\\u003cp\\u003eUse of Hulu Plus is subject to the Hulu Plus Terms of Service: hulu.com/terms\42,null,[[4,0,null,null,\42http://lh5.ggpht.com/v8ODfPPNzQYv5xnNkZJEUg71RSLpNQgNulm8ChFcX5c3QgZd2293-JH08z41G8hlCw\42,\42https://lh5.ggpht.com/v8ODfPPNzQYv5xnNkZJEUg71RSLpNQgNulm8ChFcX5c3QgZd2293-JH08z41G8hlCw\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42https://lh3.ggpht.com/1iLLP_KgnI5Umro20FYjxZr4w0AfxHmNYxFg8zXZvE0hEUIZKIK0I3smWBdD7G7vjQ\42,\42https://lh3.ggpht.com/1iLLP_KgnI5Umro20FYjxZr4w0AfxHmNYxFg8zXZvE0hEUIZKIK0I3smWBdD7G7vjQ\42,\42\42,1,null,null,0,\42\42]\n,[3,0,null,null,\42https://www.youtube.com/embed/gdYIbRLEtB4?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42https://www.youtube.com/embed/gdYIbRLEtB4?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42\42,0,null,null,0,\42\42]\n,[13,0,null,null,\42http://i.ytimg.com/vi/gdYIbRLEtB4/hqdefault.jpg\42,\42\42,\42\42,0,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh3.ggpht.com/zS-AZBXK-Nz7Px2Nt88hjLgh3XbGRyre9bpPblQ7ugFMSB7GBEtZD8g0ttlYubwE7HY\42,\42https://lh3.ggpht.com/zS-AZBXK-Nz7Px2Nt88hjLgh3XbGRyre9bpPblQ7ugFMSB7GBEtZD8g0ttlYubwE7HY\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh3.ggpht.com/zCfGZexrPAVviWQUAwCnsshEKwOVx5QsY4YcqCBhQJreA4KgwPqfxQvxQ-XL224Uytwg\42,\42https://lh3.ggpht.com/zCfGZexrPAVviWQUAwCnsshEKwOVx5QsY4YcqCBhQJreA4KgwPqfxQvxQ-XL224Uytwg\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh6.ggpht.com/DCopOoDxBhYrt_NfpKP_HTcAGs6OogLKa4OaRP0Uuc-YLWLZd6e-gc3aG1cUCiR0jbU\42,\42https://lh6.ggpht.com/DCopOoDxBhYrt_NfpKP_HTcAGs6OogLKa4OaRP0Uuc-YLWLZd6e-gc3aG1cUCiR0jbU\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/dnn7RWVa30IWmvfYqWlUuHzP-F9WmIxluTzboGX-XRFaVN6wItbmRRce6iNLjTkZTw\42,\42https://lh6.ggpht.com/dnn7RWVa30IWmvfYqWlUuHzP-F9WmIxluTzboGX-XRFaVN6wItbmRRce6iNLjTkZTw\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh3.ggpht.com/QCg565HPw-XNtFhPfSapb4_6YZzbKIHMLh8GAbokZTcdCDf_JmT2Ec_pHvhVYHlrH_s\42,\42https://lh3.ggpht.com/QCg565HPw-XNtFhPfSapb4_6YZzbKIHMLh8GAbokZTcdCDf_JmT2Ec_pHvhVYHlrH_s\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/RyR7oo47AZKMro2PfX-Gjxx8TiZ07frlhW9bL4i24WIiUc-w8OBwuH-mULXSNJwTDoQI\42,\42https://lh3.ggpht.com/RyR7oo47AZKMro2PfX-Gjxx8TiZ07frlhW9bL4i24WIiUc-w8OBwuH-mULXSNJwTDoQI\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh4.ggpht.com/F1HFbjvMfWWysRCmK5qj490vchzhaKUMzLyLT8yfDQASnMZgAzVYWagu0H1wGNYNfw\42,\42https://lh4.ggpht.com/F1HFbjvMfWWysRCmK5qj490vchzhaKUMzLyLT8yfDQASnMZgAzVYWagu0H1wGNYNfw\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh4.ggpht.com/dmBTz5dBhWDuA4rZeQzr-5cd2MSP_Hb4U51082e0ukq9vLFLkHTGZBmKbvy-MHv9cO8\42,\42https://lh4.ggpht.com/dmBTz5dBhWDuA4rZeQzr-5cd2MSP_Hb4U51082e0ukq9vLFLkHTGZBmKbvy-MHv9cO8\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh6.ggpht.com/Ocx5rrBUco_qkkNBrBRbLrNtmnDP8AL3VLmuaC5r5-PQyRNHhEJgZICLKFCD8lZyXg\42,\42https://lh6.ggpht.com/Ocx5rrBUco_qkkNBrBRbLrNtmnDP8AL3VLmuaC5r5-PQyRNHhEJgZICLKFCD8lZyXg\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh4.ggpht.com/RrwD4Ixnlr2sHz5eUm1eyubrLYcRHvXis6_vk4pea23Il7KwPe6IhV7riWdC4v6QgvU\42,\42https://lh4.ggpht.com/RrwD4Ixnlr2sHz5eUm1eyubrLYcRHvXis6_vk4pea23Il7KwPe6IhV7riWdC4v6QgvU\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/KnPUaYnoJJ8ERTaF910N3m5oGCRcQALjoIp4pq1VzWPQKHVJt2cKZy0JelT_D8awdA\42,\42https://lh4.ggpht.com/KnPUaYnoJJ8ERTaF910N3m5oGCRcQALjoIp4pq1VzWPQKHVJt2cKZy0JelT_D8awdA\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh6.ggpht.com/hrB36z2dZjxApttwgKf7oTrEBDmG9BvGlKKrW-3VuW7mutEMqHNbIwRA7A8UVy-sz_MS\42,\42https://lh6.ggpht.com/hrB36z2dZjxApttwgKf7oTrEBDmG9BvGlKKrW-3VuW7mutEMqHNbIwRA7A8UVy-sz_MS\42,\42\42,1,null,null,0,\42\42]\n,[1,12,null,null,\42https://lh6.ggpht.com/30MWDO4HNUCVb-37HoSZSwka9xKyUn81Zfn5h2nstiyVQ99aNuwpFwtBv9LFcgcaAMU\42,\42https://lh6.ggpht.com/30MWDO4HNUCVb-37HoSZSwka9xKyUn81Zfn5h2nstiyVQ99aNuwpFwtBv9LFcgcaAMU\42,\42\42,1,null,null,0,\42\42]\n,[1,13,null,null,\42https://lh4.ggpht.com/6vOnexGwSiqx8jwB1HvczQRBs768o1Y2p3wR-yQ-WFqOWuBunLnrBZkCvNqCJMZjBw\42,\42https://lh4.ggpht.com/6vOnexGwSiqx8jwB1HvczQRBs768o1Y2p3wR-yQ-WFqOWuBunLnrBZkCvNqCJMZjBw\42,\42\42,1,null,null,0,\42\42]\n,[1,14,null,null,\42https://lh3.ggpht.com/m2_c31Q7gYBCwCcaRmhGYLTo6OyDiFDZEeNNU2371PkuwodaGuPlB-Kijbi70zvlzSm7\42,\42https://lh3.ggpht.com/m2_c31Q7gYBCwCcaRmhGYLTo6OyDiFDZEeNNU2371PkuwodaGuPlB-Kijbi70zvlzSm7\42,\42\42,1,null,null,0,\42\42]\n,[1,15,null,null,\42https://lh5.ggpht.com/umJFlfzzCOV22zOC9jDFvqNyiJJEK7p6YM9zT4Ixv2zj8jXil1yqqj9W6JgHVRDViA\42,\42https://lh5.ggpht.com/umJFlfzzCOV22zOC9jDFvqNyiJJEK7p6YM9zT4Ixv2zj8jXil1yqqj9W6JgHVRDViA\42,\42\42,1,null,null,0,\42\42]\n,[1,16,null,null,\42https://lh5.ggpht.com/yUL-OWg_4HynkgE4lbcvT3fR0kA56U6s28uSuXs3sx_5v-h4aMdStmk4hG7uXN9FOw\42,\42https://lh5.ggpht.com/yUL-OWg_4HynkgE4lbcvT3fR0kA56U6s28uSuXs3sx_5v-h4aMdStmk4hG7uXN9FOw\42,\42\42,1,null,null,0,\42\42]\n,[1,17,null,null,\42https://lh6.ggpht.com/l26ulfTvsWJaYxEreEz8-PE8Es44BHbZGhm0dR09SQtTf5zvTaWWlH15H1CVJaOAfw\42,\42https://lh6.ggpht.com/l26ulfTvsWJaYxEreEz8-PE8Es44BHbZGhm0dR09SQtTf5zvTaWWlH15H1CVJaOAfw\42,\42\42,1,null,null,0,\42\42]\n,[1,18,null,null,\42https://lh6.ggpht.com/6tue8e4M_m-Ep4Mm1Y7WxC3Xi_sYWdMHNhYDer8Qcnkx4QwuHylRp6ihzhtCPMnLAWs\42,\42https://lh6.ggpht.com/6tue8e4M_m-Ep4Mm1Y7WxC3Xi_sYWdMHNhYDer8Qcnkx4QwuHylRp6ihzhtCPMnLAWs\42,\42\42,1,null,null,0,\42\42]\n,[1,19,null,null,\42https://lh6.ggpht.com/cnl3g2oHhpQJAlzF8GRaUy3hb89S28klcIc-Sk4TQGaRzOWsd0ECuHy9fJc7iLNl4w\42,\42https://lh6.ggpht.com/cnl3g2oHhpQJAlzF8GRaUy3hb89S28klcIc-Sk4TQGaRzOWsd0ECuHy9fJc7iLNl4w\42,\42\42,1,null,null,0,\42\42]\n,[1,20,null,null,\42https://lh3.ggpht.com/Luu5DJeH7dJbyKShPkmJ3XxUFLVaNfm-PDz5mQV0qbH6WZ7nddUzxw2WLStCibr7kXg\42,\42https://lh3.ggpht.com/Luu5DJeH7dJbyKShPkmJ3XxUFLVaNfm-PDz5mQV0qbH6WZ7nddUzxw2WLStCibr7kXg\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.hulu.plus\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.hulu.plus\\u0026rdid\\u003dcom.hulu.plus\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.1093307,17662,\42https://lh5.ggpht.com/v8ODfPPNzQYv5xnNkZJEUg71RSLpNQgNulm8ChFcX5c3QgZd2293-JH08z41G8hlCw\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh3.ggpht.com/zS-AZBXK-Nz7Px2Nt88hjLgh3XbGRyre9bpPblQ7ugFMSB7GBEtZD8g0ttlYubwE7HY\42,\42https://lh3.ggpht.com/zS-AZBXK-Nz7Px2Nt88hjLgh3XbGRyre9bpPblQ7ugFMSB7GBEtZD8g0ttlYubwE7HY\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh3.ggpht.com/zCfGZexrPAVviWQUAwCnsshEKwOVx5QsY4YcqCBhQJreA4KgwPqfxQvxQ-XL224Uytwg\42,\42https://lh3.ggpht.com/zCfGZexrPAVviWQUAwCnsshEKwOVx5QsY4YcqCBhQJreA4KgwPqfxQvxQ-XL224Uytwg\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh6.ggpht.com/DCopOoDxBhYrt_NfpKP_HTcAGs6OogLKa4OaRP0Uuc-YLWLZd6e-gc3aG1cUCiR0jbU\42,\42https://lh6.ggpht.com/DCopOoDxBhYrt_NfpKP_HTcAGs6OogLKa4OaRP0Uuc-YLWLZd6e-gc3aG1cUCiR0jbU\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/dnn7RWVa30IWmvfYqWlUuHzP-F9WmIxluTzboGX-XRFaVN6wItbmRRce6iNLjTkZTw\42,\42https://lh6.ggpht.com/dnn7RWVa30IWmvfYqWlUuHzP-F9WmIxluTzboGX-XRFaVN6wItbmRRce6iNLjTkZTw\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh3.ggpht.com/QCg565HPw-XNtFhPfSapb4_6YZzbKIHMLh8GAbokZTcdCDf_JmT2Ec_pHvhVYHlrH_s\42,\42https://lh3.ggpht.com/QCg565HPw-XNtFhPfSapb4_6YZzbKIHMLh8GAbokZTcdCDf_JmT2Ec_pHvhVYHlrH_s\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/RyR7oo47AZKMro2PfX-Gjxx8TiZ07frlhW9bL4i24WIiUc-w8OBwuH-mULXSNJwTDoQI\42,\42https://lh3.ggpht.com/RyR7oo47AZKMro2PfX-Gjxx8TiZ07frlhW9bL4i24WIiUc-w8OBwuH-mULXSNJwTDoQI\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh4.ggpht.com/F1HFbjvMfWWysRCmK5qj490vchzhaKUMzLyLT8yfDQASnMZgAzVYWagu0H1wGNYNfw\42,\42https://lh4.ggpht.com/F1HFbjvMfWWysRCmK5qj490vchzhaKUMzLyLT8yfDQASnMZgAzVYWagu0H1wGNYNfw\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh4.ggpht.com/dmBTz5dBhWDuA4rZeQzr-5cd2MSP_Hb4U51082e0ukq9vLFLkHTGZBmKbvy-MHv9cO8\42,\42https://lh4.ggpht.com/dmBTz5dBhWDuA4rZeQzr-5cd2MSP_Hb4U51082e0ukq9vLFLkHTGZBmKbvy-MHv9cO8\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh6.ggpht.com/Ocx5rrBUco_qkkNBrBRbLrNtmnDP8AL3VLmuaC5r5-PQyRNHhEJgZICLKFCD8lZyXg\42,\42https://lh6.ggpht.com/Ocx5rrBUco_qkkNBrBRbLrNtmnDP8AL3VLmuaC5r5-PQyRNHhEJgZICLKFCD8lZyXg\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh4.ggpht.com/RrwD4Ixnlr2sHz5eUm1eyubrLYcRHvXis6_vk4pea23Il7KwPe6IhV7riWdC4v6QgvU\42,\42https://lh4.ggpht.com/RrwD4Ixnlr2sHz5eUm1eyubrLYcRHvXis6_vk4pea23Il7KwPe6IhV7riWdC4v6QgvU\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/KnPUaYnoJJ8ERTaF910N3m5oGCRcQALjoIp4pq1VzWPQKHVJt2cKZy0JelT_D8awdA\42,\42https://lh4.ggpht.com/KnPUaYnoJJ8ERTaF910N3m5oGCRcQALjoIp4pq1VzWPQKHVJt2cKZy0JelT_D8awdA\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh6.ggpht.com/hrB36z2dZjxApttwgKf7oTrEBDmG9BvGlKKrW-3VuW7mutEMqHNbIwRA7A8UVy-sz_MS\42,\42https://lh6.ggpht.com/hrB36z2dZjxApttwgKf7oTrEBDmG9BvGlKKrW-3VuW7mutEMqHNbIwRA7A8UVy-sz_MS\42,\42\42,1,null,null,0,\42\42]\n,[1,12,null,null,\42https://lh6.ggpht.com/30MWDO4HNUCVb-37HoSZSwka9xKyUn81Zfn5h2nstiyVQ99aNuwpFwtBv9LFcgcaAMU\42,\42https://lh6.ggpht.com/30MWDO4HNUCVb-37HoSZSwka9xKyUn81Zfn5h2nstiyVQ99aNuwpFwtBv9LFcgcaAMU\42,\42\42,1,null,null,0,\42\42]\n,[1,13,null,null,\42https://lh4.ggpht.com/6vOnexGwSiqx8jwB1HvczQRBs768o1Y2p3wR-yQ-WFqOWuBunLnrBZkCvNqCJMZjBw\42,\42https://lh4.ggpht.com/6vOnexGwSiqx8jwB1HvczQRBs768o1Y2p3wR-yQ-WFqOWuBunLnrBZkCvNqCJMZjBw\42,\42\42,1,null,null,0,\42\42]\n,[1,14,null,null,\42https://lh3.ggpht.com/m2_c31Q7gYBCwCcaRmhGYLTo6OyDiFDZEeNNU2371PkuwodaGuPlB-Kijbi70zvlzSm7\42,\42https://lh3.ggpht.com/m2_c31Q7gYBCwCcaRmhGYLTo6OyDiFDZEeNNU2371PkuwodaGuPlB-Kijbi70zvlzSm7\42,\42\42,1,null,null,0,\42\42]\n,[1,15,null,null,\42https://lh5.ggpht.com/umJFlfzzCOV22zOC9jDFvqNyiJJEK7p6YM9zT4Ixv2zj8jXil1yqqj9W6JgHVRDViA\42,\42https://lh5.ggpht.com/umJFlfzzCOV22zOC9jDFvqNyiJJEK7p6YM9zT4Ixv2zj8jXil1yqqj9W6JgHVRDViA\42,\42\42,1,null,null,0,\42\42]\n,[1,16,null,null,\42https://lh5.ggpht.com/yUL-OWg_4HynkgE4lbcvT3fR0kA56U6s28uSuXs3sx_5v-h4aMdStmk4hG7uXN9FOw\42,\42https://lh5.ggpht.com/yUL-OWg_4HynkgE4lbcvT3fR0kA56U6s28uSuXs3sx_5v-h4aMdStmk4hG7uXN9FOw\42,\42\42,1,null,null,0,\42\42]\n,[1,17,null,null,\42https://lh6.ggpht.com/l26ulfTvsWJaYxEreEz8-PE8Es44BHbZGhm0dR09SQtTf5zvTaWWlH15H1CVJaOAfw\42,\42https://lh6.ggpht.com/l26ulfTvsWJaYxEreEz8-PE8Es44BHbZGhm0dR09SQtTf5zvTaWWlH15H1CVJaOAfw\42,\42\42,1,null,null,0,\42\42]\n,[1,18,null,null,\42https://lh6.ggpht.com/6tue8e4M_m-Ep4Mm1Y7WxC3Xi_sYWdMHNhYDer8Qcnkx4QwuHylRp6ihzhtCPMnLAWs\42,\42https://lh6.ggpht.com/6tue8e4M_m-Ep4Mm1Y7WxC3Xi_sYWdMHNhYDer8Qcnkx4QwuHylRp6ihzhtCPMnLAWs\42,\42\42,1,null,null,0,\42\42]\n,[1,19,null,null,\42https://lh6.ggpht.com/cnl3g2oHhpQJAlzF8GRaUy3hb89S28klcIc-Sk4TQGaRzOWsd0ECuHy9fJc7iLNl4w\42,\42https://lh6.ggpht.com/cnl3g2oHhpQJAlzF8GRaUy3hb89S28klcIc-Sk4TQGaRzOWsd0ECuHy9fJc7iLNl4w\42,\42\42,1,null,null,0,\42\42]\n,[1,20,null,null,\42https://lh3.ggpht.com/Luu5DJeH7dJbyKShPkmJ3XxUFLVaNfm-PDz5mQV0qbH6WZ7nddUzxw2WLStCibr7kXg\42,\42https://lh3.ggpht.com/Luu5DJeH7dJbyKShPkmJ3XxUFLVaNfm-PDz5mQV0qbH6WZ7nddUzxw2WLStCibr7kXg\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\04217,662\42,\0423.1\42,[[[\0426,917\42,\042100%\42]\n,[\0421,990\42,\04228%\42]\n,[\0421,242\42,\04217%\42]\n,[\0421,133\42,\04216%\42]\n,[\0426,380\42,\4292%\42]\n]\n]\n,null,[[\42Top Developer\42,[[5,0,11,11,\42http://www.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42\42,0,null,null,0,\42\42]\n,[6,0,24,24,\42http://www.gstatic.com/android/market_images/badges/topdev_list.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_list.png\42,\42\42,0,null,null,0,\42\42]\n,[7,0,28,33,\42http://www.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42\42,0,null,null,0,\42\42]\n]\n,null,\42topDeveloperBadgeUrl\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42]\n]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Hulu\42,\42/store/apps/developer?id\\u003dHulu\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n]\n,[]\n,[]\n]\n,\42July 9, 2013\42,3,,\0421,000,000\42,\0425,000,000\42,,1,\0422.2\42,,[\42• New Episode badges on Shows You Watch for instant access to the latest episode\42,\42• Support for the Samsung Galaxy Tab 3 10.1\\\42\42,\42• Bug fixes and performance improvements\42,\42--\42,\42If you experience playback or other issues, please reach out to us at mobilesupport@hulu.com and let us know what device you\47re using.\42]\n,\42https://www.google.com/url?q\\u003dhttp://hulu.com/plus\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNEwmcUMEqVhWMz1HawKCfxwuJYJPw\42,\42https://www.google.com/url?q\\u003dhttp://www.hulu.com/privacy\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNF_pOfvbcCLaD1Hf-G4a5JX4km0RQ\42,\42mobilesupport@hulu.com\42]\n}]\n','[\42com.mobitv.client.tv\42,\42com.mobitv.client.tv\42,1,3,\42/store/apps/details?id\\u003dcom.mobitv.client.tv\42,\42/store/apps/details?id\\u003dcom.mobitv.client.tv\42,\42https://play.google.com/store/apps/details?id\\u003dcom.mobitv.client.tv\42,\42https://market.android.com/details?id\\u003dcom.mobitv.client.tv\42,\42Mobile TV\42,\42Mobile TV brings you LIVE and On-Demand TV to watch on the go.\\u003cp\\u003eDownloading the Mobile TV app is FREE and your first 7 days of service are free. After that a monthly subscription fee applies.\\u003cp\\u003eWith Mobile TV you get: \\u003cbr\\u003e• Live pro \\u0026amp; college sports on ESPN Mobile TV \\u0026amp; NBC Sports plus special events each week. Watch NBA Playoffs, Live MLB games, Live NHL games to keep up while you are on the go!\\u003cbr\\u003e• Access to hundreds of full-episodes of your favorite shows like Glee, Arrested Development, Jerseylicious, Colbert Report, The Daily Show, The Bachelorette and many more from On-Demand from networks like FOX Mobile Entertainment, MTV, Disney Channel, Comedy Central, E! and more.\\u003cbr\\u003e• Live 24/7 breaking news on Bloomberg, Fox News and ABC News Now.\\u003cbr\\u003e• The first 7 days of service are FREE, then just $9.99/mo. To continue to watch there’s a monthly subscription of $9.99/mo. \\u003cbr\\u003eHere are just a few of the events/programming you can watch:\\u003cbr\\u003e• Live kids shows on the Disney Channel to keep the kids entertained with programs such as Jessie, Gravity Falls, Phineas and Ferb and more.\\u003cbr\\u003e• Hit shows including: Revenge, Family Guy, The Cleveland Show, Grimm, The Office and more.\\u003cbr\\u003e• Reality Programming including: The Voice, Real Housewives, Say Yes to the Dress and more!\\u003cp\\u003eBonus: Install the free Mobile TV widget from your “Add a Widget” menu and get programming updates without having to launch the application.\\u003cp\\u003eCheck out the Mobile TV channels included below, or see the full lineup at \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://IX.LY/LIVETV\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNEceoT2owOp_bdrNHjYqayo202V-Q\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://IX.LY/LIVETV\\u003c/a\\u003e \\u003cbr\\u003eOPTIONAL ENTERTAINMENT PACKAGES\\u003cp\\u003eAT\\u0026amp;T paquete en español móvil\\u003cbr\\u003eObtén acceso a los artistas más populares de la televisión hispana con paquete en español móvil. Paquete en español móvil es tu puerta de entrada al mundo de la televisión en español. ¡Comienza a ver episodios completos de tus programas favoritos, además de deportes en vivo y más de Univisión, Telemundo, Azteca América, ESPN Deportes y otros canales!* \\u003cp\\u003ePlayground TV\\u003cbr\\u003ePlayground TV provides your family with quality kids shows that you can trust.. Watch full episodes from PBS Kids, plus Sesame Street, Baby First TV, Discovery for Families and more! Entertain your kids in the car, in line or anywhere – with Playground TV, fun is always easy to find. ($4.99/mo.)*\\u003cp\\u003eUrban Zone\\u003cbr\\u003eAdd the best in urban entertainment, from BET to classic television! Urban Zone brings you full-length shows on BET, the latest R\\u0026amp;B and hip-hop videos; stand-up comedy; full episodes of classic TV and more. ($4.99/mo)* \\u003cbr\\u003e* Mobile TV: monthly subscription fee applies and requires compatible device, eligible data plan, and 3G or 4G service. Service not available in all areas. Downloaded content is available for viewing for limited time periods. Urban Zone, Paquette en espanol movil and/or Playground TV requires purchase of Mobile TV at $9.99/mo. 7 days free offer: You must cancel within 7 days or be automatically subscribed at a cost of $9.99 per month. You can cancel by clicking the \\u0026quot;?\\u0026quot; button on the app home page, then \\u0026quot;View Subscription\\u0026quot; or by calling AT\\u0026amp;T Customer Service. Channels and shows are subject to change without notice. \\u003cp\\u003eTerms: The complete terms \\u0026amp; conditions can be found @ \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://attuverselivetv.att.com/terms-and-conditions.php\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNHcAamqGc6E1p_pQkrejr6V-LGyXw\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://attuverselivetv.att.com/terms-and-conditions.php\\u003c/a\\u003e\\u003cbr\\u003eCustomer Service/Technical Support: Please contact customer service if you have any issues with your purchase or for any questions: \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttps://www.wireless.att.com/support/content.do?page%3Dsupport-home\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNFlL3Uxr4LocmhDNCE8svJmh56DXg\\\42 target\\u003d\\\42_blank\\\42\\u003ehttps://www.wireless.att.com/support/content.do?page\\u003dsupport-home\\u003c/a\\u003e\\u003cbr\\u003eFAQ\\u0026#39;s: A list of frequently asked questions can be found @ \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://uverselivetv.mobitv.com/faq.php\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNH8KsPrjxELNRLrPIsXpWj5LyqFAA\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://uverselivetv.mobitv.com/faq.php\\u003c/a\\u003e\\u003cbr\\u003ePrivacy: AT\\u0026amp;T\\u0026#39;s Privacy Policy can be found @ \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://www.att.com/privacy/\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNHBgyW24nptAysbr2XtcYC8KMdgnw\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://www.att.com/privacy/\\u003c/a\\u003e\\u003cbr\\u003eSitemap: \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://www.att.com/sitemap/\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNGTCk2McetlCWiRL_J3JB3ZxV1-sw\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://www.att.com/sitemap/\\u003c/a\\u003e\\u003cbr\\u003e© 2012 AT\\u0026amp;T Intellectual Property\42,null,[[4,0,null,null,\42http://lh4.ggpht.com/FRDr3m-vKPvOBnV3r5RJ4PVQN0GJy5ZcrLVaS0F2LwA9A0-A4RLZ8fwjywoVBIiRbhE\42,\42https://lh4.ggpht.com/FRDr3m-vKPvOBnV3r5RJ4PVQN0GJy5ZcrLVaS0F2LwA9A0-A4RLZ8fwjywoVBIiRbhE\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh6.ggpht.com/OlFO1u6YWaJaZSpfZcC-QUp3g0DUCuS7GQf6ojxtyQ-akmkcW_eAd39SvYUvtRFc\42,\42https://lh6.ggpht.com/OlFO1u6YWaJaZSpfZcC-QUp3g0DUCuS7GQf6ojxtyQ-akmkcW_eAd39SvYUvtRFc\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh4.ggpht.com/bxMeDZ5bQpctcDRXNqxbi0BSe95CmG0AGv7-bW0bPmCp4m_YquqcbhJMmCH43ic41Gs\42,\42https://lh4.ggpht.com/bxMeDZ5bQpctcDRXNqxbi0BSe95CmG0AGv7-bW0bPmCp4m_YquqcbhJMmCH43ic41Gs\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/uRNFq0m9TtIUHDmrNRYF9zZTHOabpwcUgom51IqGcKh6wg1J9z0jTXNCUdZQGVeefrUU\42,\42https://lh4.ggpht.com/uRNFq0m9TtIUHDmrNRYF9zZTHOabpwcUgom51IqGcKh6wg1J9z0jTXNCUdZQGVeefrUU\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/y-3YbJ2sbD-Bs77-KC90MZlcEuSxM-MFOZ36WMlLzqtkzhelER_LV6Ug77l-fPKgZd4\42,\42https://lh3.ggpht.com/y-3YbJ2sbD-Bs77-KC90MZlcEuSxM-MFOZ36WMlLzqtkzhelER_LV6Ug77l-fPKgZd4\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh5.ggpht.com/ivfqi5o767GwjLK4PqskvhqwQ9vrxRLCYLKsiRuAZR7Wc_BgkJ4zrKayPbtw3bY2hhg\42,\42https://lh5.ggpht.com/ivfqi5o767GwjLK4PqskvhqwQ9vrxRLCYLKsiRuAZR7Wc_BgkJ4zrKayPbtw3bY2hhg\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh6.ggpht.com/_ZaDDGOEt1CzmDUwXOR4ILRkvQ_LTee_8GfGHX2gvRQp-dMQ0mvkbQ2rgEYQmfPzgIU\42,\42https://lh6.ggpht.com/_ZaDDGOEt1CzmDUwXOR4ILRkvQ_LTee_8GfGHX2gvRQp-dMQ0mvkbQ2rgEYQmfPzgIU\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.mobitv.client.tv\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.mobitv.client.tv\\u0026rdid\\u003dcom.mobitv.client.tv\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[1,1,0,0,1,0,0,null,0,0]\n,3.3266351,7813,\42https://lh4.ggpht.com/FRDr3m-vKPvOBnV3r5RJ4PVQN0GJy5ZcrLVaS0F2LwA9A0-A4RLZ8fwjywoVBIiRbhE\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh6.ggpht.com/OlFO1u6YWaJaZSpfZcC-QUp3g0DUCuS7GQf6ojxtyQ-akmkcW_eAd39SvYUvtRFc\42,\42https://lh6.ggpht.com/OlFO1u6YWaJaZSpfZcC-QUp3g0DUCuS7GQf6ojxtyQ-akmkcW_eAd39SvYUvtRFc\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh4.ggpht.com/bxMeDZ5bQpctcDRXNqxbi0BSe95CmG0AGv7-bW0bPmCp4m_YquqcbhJMmCH43ic41Gs\42,\42https://lh4.ggpht.com/bxMeDZ5bQpctcDRXNqxbi0BSe95CmG0AGv7-bW0bPmCp4m_YquqcbhJMmCH43ic41Gs\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/uRNFq0m9TtIUHDmrNRYF9zZTHOabpwcUgom51IqGcKh6wg1J9z0jTXNCUdZQGVeefrUU\42,\42https://lh4.ggpht.com/uRNFq0m9TtIUHDmrNRYF9zZTHOabpwcUgom51IqGcKh6wg1J9z0jTXNCUdZQGVeefrUU\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/y-3YbJ2sbD-Bs77-KC90MZlcEuSxM-MFOZ36WMlLzqtkzhelER_LV6Ug77l-fPKgZd4\42,\42https://lh3.ggpht.com/y-3YbJ2sbD-Bs77-KC90MZlcEuSxM-MFOZ36WMlLzqtkzhelER_LV6Ug77l-fPKgZd4\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh5.ggpht.com/ivfqi5o767GwjLK4PqskvhqwQ9vrxRLCYLKsiRuAZR7Wc_BgkJ4zrKayPbtw3bY2hhg\42,\42https://lh5.ggpht.com/ivfqi5o767GwjLK4PqskvhqwQ9vrxRLCYLKsiRuAZR7Wc_BgkJ4zrKayPbtw3bY2hhg\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh6.ggpht.com/_ZaDDGOEt1CzmDUwXOR4ILRkvQ_LTee_8GfGHX2gvRQp-dMQ0mvkbQ2rgEYQmfPzgIU\42,\42https://lh6.ggpht.com/_ZaDDGOEt1CzmDUwXOR4ILRkvQ_LTee_8GfGHX2gvRQp-dMQ0mvkbQ2rgEYQmfPzgIU\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\0427,813\42,\0423.3\42,[[[\0423,594\42,\042100%\42]\n,[\042788\42,\04221%\42]\n,[\042572\42,\04215%\42]\n,[\042294\42,\428%\42]\n,[\0422,565\42,\04271%\42]\n]\n]\n,null,[[\42Top Developer\42,[[5,0,11,11,\42http://www.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42\42,0,null,null,0,\42\42]\n,[6,0,24,24,\42http://www.gstatic.com/android/market_images/badges/topdev_list.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_list.png\42,\42\42,0,null,null,0,\42\42]\n,[7,0,28,33,\42http://www.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42\42,0,null,null,0,\42\42]\n]\n,null,\42topDeveloperBadgeUrl\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42]\n]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42AT\\u0026T Services, Inc.\42,\42/store/apps/developer?id\\u003dAT%26T+Services,+Inc.\42]\n,[[[\42Your accounts\42,[[\42add or remove accounts\42,\42Allows the app to perform operations like adding and removing accounts, and deleting their password.\42,1]\n]\n]\n,[\42Your location\42,[[\42approximate location (network-based)\42,\42Allows the app to get your approximate location. This location is derived by location services using network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine approximately where you are.\42,1]\n,[\42precise location (GPS and network-based)\42,\42Allows the app to get your precise location using the Global Positioning System (GPS) or network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine where you are, and may consume additional battery power.\42,1]\n]\n]\n,[\42Your messages\42,[[\42receive text messages (SMS)\42,\42Allows the app to receive and process SMS messages. This means the app could monitor or delete messages sent to your device without showing them to you.\42,1]\n,[\42read your text messages (SMS or MMS)\42,\42Allows the app to read SMS messages stored on your device or SIM card. This allows the app to read all SMS messages, regardless of content or confidentiality.\42,1]\n,[\42receive text messages (WAP)\42,\42Allows the app to receive and process WAP messages. This permission includes the ability to monitor or delete messages sent to you without showing them to you.\42,1]\n,[\42send SMS messages\42,\42Allows the app to send SMS messages. This may result in unexpected charges. Malicious apps may cost you money by sending messages without your confirmation.\42,1]\n,[\42receive text messages (MMS)\42,\42Allows the app to receive and process MMS messages. This means the app could monitor or delete messages sent to your device without showing them to you.\42,1]\n]\n]\n,[\42Network communication\42,[[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n,[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n,[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42connect and disconnect from Wi-Fi\42,\42Allows the app to connect to and disconnect from Wi-Fi access points and to make changes to device configuration for Wi-Fi networks.\42,1]\n,[\42change network connectivity\42,\42Allows the app to change the state of network connectivity.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n,[\42Bluetooth\42,[[\42pair with Bluetooth devices\42,\42Allows the app to view the configuration of Bluetooth on the device, and to make and accept connections with paired devices.\42,1]\n]\n]\n,[\42Lock screen\42,[[\42disable your screen lock\42,\42Allows the app to disable the keylock and any associated password security. For example, the phone disables the keylock when receiving an incoming phone call, then re-enables the keylock when the call is finished.\42,1]\n]\n]\n]\n,[[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n,[\42send sticky broadcast\42,\42Allows the app to send sticky broadcasts, which remain after the broadcast ends. Excessive use may make the device slow or unstable by causing it to use too much memory.\42,0]\n,[\42change/intercept network settings and traffic\42,\42Allows the app to change network settings and to intercept and inspect all network traffic, for example to change the proxy and port of any APN. Malicious apps may monitor, redirect, or modify network packets without your knowledge.\42,0]\n,[\42modify system settings\42,\42Allows the app to modify the system\47s settings data. Malicious apps may corrupt your system\47s configuration.\42,0]\n,[\42access extra location provider commands\42,\42Allows the app to access extra location provider commands. This may allow the app to to interfere with the operation of the GPS or other location sources.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n,[\42control vibration\42,\42Allows the app to control the vibrator.\42,0]\n]\n]\n]\n,[]\n]\n,\42July 30, 2013\42,2,,\0425,000,000\42,\04210,000,000\42,,1,\0422.1\42,,[]\n,\42https://www.google.com/url?q\\u003dhttp://www.att.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNFg6u9RKEiTPJXygwE6MQr0gX_idQ\42,\42https://www.google.com/url?q\\u003dhttp://www.att.com/privacypolicy\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNHGf1VK0ejFIi1m5UlqPHEkMbccrg\42,\42android.applications@att.com\42]\n}]\n','[\42com.hulu.plus.jp\42,\42com.hulu.plus.jp\42,1,3,\42/store/apps/details?id\\u003dcom.hulu.plus.jp\42,\42/store/apps/details?id\\u003dcom.hulu.plus.jp\42,\42https://play.google.com/store/apps/details?id\\u003dcom.hulu.plus.jp\42,\42https://market.android.com/details?id\\u003dcom.hulu.plus.jp\42,\42Hulu\42,\42Subscribers receive unlimited access to hit movies and TV shows with one monthly fee. Hulu is the place to watch and enjoy premium videos from the biggest names in entertainment. A subscription is required to use this application.\\u003cp\\u003e• Hit and classic TV shows and movies from the biggest names in entertainment.\\u003cbr\\u003e• Watch your favorite shows in your living room or on the go. Migrate your viewing experience seamlessly across devices: start watching on your phone, continue watching on your TV.\\u003cbr\\u003e• Add favorites to your Queue to create a personalized list for instant viewing later.\\u003cp\\u003eEnjoy Hulu now!\\u003cp\\u003eAndroid OS 2.2 or later (some features are only available for Android OS 3.0 or later)\\u003cbr\\u003eFor a complete list of supported devices, please see \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://hulu.jp/android\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNGLBN33EQIyUyD4G7NV1mmEBkn3jA\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://hulu.jp/android\\u003c/a\\u003e\42,null,[[4,0,null,null,\42http://lh6.ggpht.com/AUsEry2YQcjURDHV_jyYKXeKLQ_RFHkGXPBGq9U8jYBA95HwmFOIeUa5rWJgELyMrA\42,\42https://lh6.ggpht.com/AUsEry2YQcjURDHV_jyYKXeKLQ_RFHkGXPBGq9U8jYBA95HwmFOIeUa5rWJgELyMrA\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh6.ggpht.com/NJBbDd8vykQtd_VFrm1wJgq-T8mIsIkrT1G1XxapI84cMg7D4vE-gglIeJkhTsADYQ\42,\42https://lh6.ggpht.com/NJBbDd8vykQtd_VFrm1wJgq-T8mIsIkrT1G1XxapI84cMg7D4vE-gglIeJkhTsADYQ\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh5.ggpht.com/A-tSMEXWyi_4GsM17EC4-y57493YMiNAZtdTlQsPFMMmLFdIQVwc4_BZySqIvDc28g\42,\42https://lh5.ggpht.com/A-tSMEXWyi_4GsM17EC4-y57493YMiNAZtdTlQsPFMMmLFdIQVwc4_BZySqIvDc28g\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/QEBeEwKOk_OlT9os0EfrG95TcqO7XJDN-KEOVFGSDsNZGRREHXI0qnGYshMn4rRFBGH0\42,\42https://lh6.ggpht.com/QEBeEwKOk_OlT9os0EfrG95TcqO7XJDN-KEOVFGSDsNZGRREHXI0qnGYshMn4rRFBGH0\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/uohJB4584_KKn6ifJdcAvMKQM5HdvwniMqvvwuPNFvwckeWfL1tfEaKGRUocFkGv0AL3\42,\42https://lh4.ggpht.com/uohJB4584_KKn6ifJdcAvMKQM5HdvwniMqvvwuPNFvwckeWfL1tfEaKGRUocFkGv0AL3\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/cZOhTqBExoOM1urd8rhKKaFiH4mrcmKaoDf6GJb7vsKc13ITiKztU8PAKis-FfgKxXQ\42,\42https://lh3.ggpht.com/cZOhTqBExoOM1urd8rhKKaFiH4mrcmKaoDf6GJb7vsKc13ITiKztU8PAKis-FfgKxXQ\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/h3u-qJeMUYR9H_PhjEmT-yf9lxBrCxAcPPPziFurG_MU4DiZ7_dK5nidIQFFdajZaw\42,\42https://lh4.ggpht.com/h3u-qJeMUYR9H_PhjEmT-yf9lxBrCxAcPPPziFurG_MU4DiZ7_dK5nidIQFFdajZaw\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/z0lnPZAiF5CgyjonlOFYKkvcBfSt8v6HSzI3namzboyLekcTCRkzSCT5Cirww-PG51w\42,\42https://lh3.ggpht.com/z0lnPZAiF5CgyjonlOFYKkvcBfSt8v6HSzI3namzboyLekcTCRkzSCT5Cirww-PG51w\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh6.ggpht.com/w6ZZQV8BbsqQ0dCFezx53AI_bSxFXMCmpj10dvgITATQYi9ya379gtSMWWqksNupKps\42,\42https://lh6.ggpht.com/w6ZZQV8BbsqQ0dCFezx53AI_bSxFXMCmpj10dvgITATQYi9ya379gtSMWWqksNupKps\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh5.ggpht.com/w-gQ6z4zJTwT8ywWLoz_vzaHWTbYnNLPkumCjLka_9k7ox7tWKsd3PCPlKzzW8llBFM\42,\42https://lh5.ggpht.com/w-gQ6z4zJTwT8ywWLoz_vzaHWTbYnNLPkumCjLka_9k7ox7tWKsd3PCPlKzzW8llBFM\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.hulu.plus.jp\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.hulu.plus.jp\\u0026rdid\\u003dcom.hulu.plus.jp\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,2.763819,1393,\42https://lh6.ggpht.com/AUsEry2YQcjURDHV_jyYKXeKLQ_RFHkGXPBGq9U8jYBA95HwmFOIeUa5rWJgELyMrA\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh5.ggpht.com/A-tSMEXWyi_4GsM17EC4-y57493YMiNAZtdTlQsPFMMmLFdIQVwc4_BZySqIvDc28g\42,\42https://lh5.ggpht.com/A-tSMEXWyi_4GsM17EC4-y57493YMiNAZtdTlQsPFMMmLFdIQVwc4_BZySqIvDc28g\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/QEBeEwKOk_OlT9os0EfrG95TcqO7XJDN-KEOVFGSDsNZGRREHXI0qnGYshMn4rRFBGH0\42,\42https://lh6.ggpht.com/QEBeEwKOk_OlT9os0EfrG95TcqO7XJDN-KEOVFGSDsNZGRREHXI0qnGYshMn4rRFBGH0\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/uohJB4584_KKn6ifJdcAvMKQM5HdvwniMqvvwuPNFvwckeWfL1tfEaKGRUocFkGv0AL3\42,\42https://lh4.ggpht.com/uohJB4584_KKn6ifJdcAvMKQM5HdvwniMqvvwuPNFvwckeWfL1tfEaKGRUocFkGv0AL3\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/cZOhTqBExoOM1urd8rhKKaFiH4mrcmKaoDf6GJb7vsKc13ITiKztU8PAKis-FfgKxXQ\42,\42https://lh3.ggpht.com/cZOhTqBExoOM1urd8rhKKaFiH4mrcmKaoDf6GJb7vsKc13ITiKztU8PAKis-FfgKxXQ\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/h3u-qJeMUYR9H_PhjEmT-yf9lxBrCxAcPPPziFurG_MU4DiZ7_dK5nidIQFFdajZaw\42,\42https://lh4.ggpht.com/h3u-qJeMUYR9H_PhjEmT-yf9lxBrCxAcPPPziFurG_MU4DiZ7_dK5nidIQFFdajZaw\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/z0lnPZAiF5CgyjonlOFYKkvcBfSt8v6HSzI3namzboyLekcTCRkzSCT5Cirww-PG51w\42,\42https://lh3.ggpht.com/z0lnPZAiF5CgyjonlOFYKkvcBfSt8v6HSzI3namzboyLekcTCRkzSCT5Cirww-PG51w\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh6.ggpht.com/w6ZZQV8BbsqQ0dCFezx53AI_bSxFXMCmpj10dvgITATQYi9ya379gtSMWWqksNupKps\42,\42https://lh6.ggpht.com/w6ZZQV8BbsqQ0dCFezx53AI_bSxFXMCmpj10dvgITATQYi9ya379gtSMWWqksNupKps\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh5.ggpht.com/w-gQ6z4zJTwT8ywWLoz_vzaHWTbYnNLPkumCjLka_9k7ox7tWKsd3PCPlKzzW8llBFM\42,\42https://lh5.ggpht.com/w-gQ6z4zJTwT8ywWLoz_vzaHWTbYnNLPkumCjLka_9k7ox7tWKsd3PCPlKzzW8llBFM\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\0421,393\42,\0422.8\42,[[[\042376\42,\04268%\42]\n,[\042146\42,\04226%\42]\n,[\042192\42,\04235%\42]\n,[\042131\42,\04223%\42]\n,[\042548\42,\042100%\42]\n]\n]\n,null,[[\42Top Developer\42,[[5,0,11,11,\42http://www.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42\42,0,null,null,0,\42\42]\n,[6,0,24,24,\42http://www.gstatic.com/android/market_images/badges/topdev_list.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_list.png\42,\42\42,0,null,null,0,\42\42]\n,[7,0,28,33,\42http://www.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42\42,0,null,null,0,\42\42]\n]\n,null,\42topDeveloperBadgeUrl\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42]\n]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Hulu\42,\42/store/apps/developer?id\\u003dHulu\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n]\n,[]\n,[]\n]\n,\42June 20, 2013\42,3,,\0421,000,000\42,\0425,000,000\42,,1,\0422.2\42,,[\42Includes fixes for some playback issues for certain devices.*\42,\42If you experience playback or other issues, please reach out to us at support@hulu.jp and let us know what device you\47re using.\42,\42* Only available on Android 4.0 or later\42]\n,\42https://www.google.com/url?q\\u003dhttp://hulu.jp\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNHRtixiHn7iYhMtWMllYtbVO529AQ\42,\42https://www.google.com/url?q\\u003dhttp://www.hulu.jp/privacy\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNG78RA6e5jXWs280PsEse7VglUriQ\42,\42support@hulu.jp\42]\n}]\n','[\42com.gotv.crackle.handset\42,\42com.gotv.crackle.handset\42,1,3,\42/store/apps/details?id\\u003dcom.gotv.crackle.handset\42,\42/store/apps/details?id\\u003dcom.gotv.crackle.handset\42,\42https://play.google.com/store/apps/details?id\\u003dcom.gotv.crackle.handset\42,\42https://market.android.com/details?id\\u003dcom.gotv.crackle.handset\42,\42Crackle - Movies \\u0026 TV\42,\42Finally, watch FREE movies on your Android phone \\u0026amp; tablet. \\u003cp\\u003e~ Newly re-designed based on feedback from our 11 million users!~ \\u003cbr\\u003e***2012 Mobile Excellence Award Finalist*** \\u003cbr\\u003ePINEAPPLE EXPRESS, BIG DADDY, JOE DIRT, LAYER CAKE, MR. DEEDS, PANIC ROOM, S.W.A.T. and hundreds more: full-length, uncut and FREE. Plus, top rated TV series like SEINFELD. \\u003cp\\u003e\\u0026quot;Crackle... gives you free movies to watch, great TV shows to remember.\\u0026quot; – Casey Chan, Gizmodo \\u003cp\\u003e\\u0026quot;..for free…That’s right. Unlike Hulu Plus, you don’t need to sign up and pay a fee to watch...\\u0026quot; – Damien Scott, Complex Magazine \\u003cp\\u003e\\u0026quot;Sony has a real gem on their hands with this app...\\u0026quot; – Jake Gaecke, Appletell \\u003cp\\u003e* Watch full-length Hollywood movies and TV series \\u003cbr\\u003e* FREE to download app, FREE to watch \\u003cbr\\u003e* Unlimited, on demand viewing \\u003cbr\\u003e* New movies and TV episodes added monthly \\u003cbr\\u003e* Genres including: action, anime, comedy, crime, horror, thriller, sci-fi and anime \\u003cbr\\u003e* Optimized for both phones and tablets \\u003cbr\\u003e* Browse Movies, TV, Originals, Collections and Genres \\u003cbr\\u003e* Build and manage your Watchlist for viewing on the app or online at Crackle.com. \\u003cbr\\u003e* Stream HQ video via 3G, 4G or Wi-Fi \\u003cbr\\u003e* App works in US, Canada, UK and Australia \\u003cp\\u003eCURRENT MOVIES AND TV*: \\u003cp\\u003eMOVIES \\u003cbr\\u003eHundreds of movies including: PINEAPPLE EXPRESS, BIG DADDY, JOE DIRT, LAYER CAKE, MR. DEEDS, PANIC ROOM, S.W.A.T., SNATCH, STRANGER THAN FICTION, SAVING SILVERMAN, and more \\u003cp\\u003eTV \\u003cbr\\u003eThousands of full-length episodes; series include: SEINFELD, SPIDER-MAN, MARRIED… WITH CHILDREN, THE THREE STOOGES plus over 25 series and 1000+ episodes of Anime including BLOOD +, QUEEN’s BLADE and IKKI TOUSEN \\u003cp\\u003eData charges may apply (unlimited data plan recommended). \\u003cp\\u003e**************************FAQ************************** \\u003cbr\\u003eThanks for everyone’s feedback and reviews. We are listening and are always working to improve the service. \\u003cbr\\u003e* To use this app, you must be in US, Canada, United Kingdom or Australia. \\u003cbr\\u003e* Yes, the app is free. To cover our costs we include some short video ads. Your carrier may charge data fees, so an unlimited data plan and/or viewing over Wi-Fi is recommended. \\u003cp\\u003eABOUT CRACKLE \\u003cp\\u003eCrackle is one of the fastest growing digital entertainment networks, offering quality movies and TV series from Columbia Pictures, Tri-Star, Screen Gems, Sony Pictures Classics and more. Crackle is available via web, mobile, gaming systems and set-top boxes. For more information, visit www.crackle.com. Crackle is a division of Sony Pictures Entertainment. \\u003cp\\u003e* Movies and TV series updated monthly; titles subject to change. Current content list is available on the app or at www.crackle.com\42,null,[[4,0,null,null,\42http://lh6.ggpht.com/8uWVDVKec2CLOHYez5gCoyAs7h9k2IrYU3gxCwXStwDR7MRbP_tDc8xHFFQNfR4Btmc\42,\42https://lh6.ggpht.com/8uWVDVKec2CLOHYez5gCoyAs7h9k2IrYU3gxCwXStwDR7MRbP_tDc8xHFFQNfR4Btmc\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh6.ggpht.com/Ck3OjQihHJumDY0En2Fj3dAshkr5iJgbqem6ziwIcsQ9tiOWnzFDP6XGbenDXT9uRn4\42,\42https://lh6.ggpht.com/Ck3OjQihHJumDY0En2Fj3dAshkr5iJgbqem6ziwIcsQ9tiOWnzFDP6XGbenDXT9uRn4\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh3.ggpht.com/jslCZaUnmu9G5p5PmIMcdPAee4c6EU_BkBCStORz3JSoln2sYMLf3kge5E4Jhn9scIk\42,\42https://lh3.ggpht.com/jslCZaUnmu9G5p5PmIMcdPAee4c6EU_BkBCStORz3JSoln2sYMLf3kge5E4Jhn9scIk\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/Y7agd5iOP4EtU8k7XaGJG6DjIspI0DcZabymn48qa09NtLVQat5XpY9iWdvwI1k6mA\42,\42https://lh6.ggpht.com/Y7agd5iOP4EtU8k7XaGJG6DjIspI0DcZabymn48qa09NtLVQat5XpY9iWdvwI1k6mA\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/cXVzcLjn7q-kDRDEjlN2B-Bcd838QdqUp1-vxhc3h5bo3bop6xuZcvKAdA1zrnkexA\42,\42https://lh4.ggpht.com/cXVzcLjn7q-kDRDEjlN2B-Bcd838QdqUp1-vxhc3h5bo3bop6xuZcvKAdA1zrnkexA\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/WZmO4zbDVTlzi8OwX6NurSy-G0AKlnsTJpdBGkG8tLGkPbfkygWYeFdKAJ9JT1lgvy8\42,\42https://lh6.ggpht.com/WZmO4zbDVTlzi8OwX6NurSy-G0AKlnsTJpdBGkG8tLGkPbfkygWYeFdKAJ9JT1lgvy8\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh6.ggpht.com/PLKYKIg5RKqmwgQLXHyWf22AupFvHBNHW0yfiKdhmoKcZVtt5myJk-sAe9_iCB2wtO8\42,\42https://lh6.ggpht.com/PLKYKIg5RKqmwgQLXHyWf22AupFvHBNHW0yfiKdhmoKcZVtt5myJk-sAe9_iCB2wtO8\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/fsbNoHzB8e6ET6jmZJf4E8P5ebp5md9sWJcSaosF9jchhN9Ztum0BTDY35UnbvXK11T2\42,\42https://lh3.ggpht.com/fsbNoHzB8e6ET6jmZJf4E8P5ebp5md9sWJcSaosF9jchhN9Ztum0BTDY35UnbvXK11T2\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh6.ggpht.com/XnbODmfPaWhsPkYQHD6tWaDgsUunELE-sGZukyG2bxFQ4-J3uOTR9V8XPBO1dwq4jpw\42,\42https://lh6.ggpht.com/XnbODmfPaWhsPkYQHD6tWaDgsUunELE-sGZukyG2bxFQ4-J3uOTR9V8XPBO1dwq4jpw\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh4.ggpht.com/qrhEe9M1f2b0dtMdHMJu2kdfJrPYDKYWoLPNgQYaYluEijKkGJj2OkpDQ_zYPM7VR_E\42,\42https://lh4.ggpht.com/qrhEe9M1f2b0dtMdHMJu2kdfJrPYDKYWoLPNgQYaYluEijKkGJj2OkpDQ_zYPM7VR_E\42,\42\42,1,null,null,0,\42\42]\n,[3,0,null,null,\42https://www.youtube.com/embed/5LEuqEQRWgY?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42https://www.youtube.com/embed/5LEuqEQRWgY?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42\42,0,null,null,0,\42\42]\n,[13,0,null,null,\42http://i.ytimg.com/vi/5LEuqEQRWgY/hqdefault.jpg\42,\42\42,\42\42,0,null,null,0,\42\42]\n]\n,null,[[\42com.gotv.crackle.handset\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.gotv.crackle.handset\\u0026rdid\\u003dcom.gotv.crackle.handset\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.6422958,69222,\42https://lh6.ggpht.com/8uWVDVKec2CLOHYez5gCoyAs7h9k2IrYU3gxCwXStwDR7MRbP_tDc8xHFFQNfR4Btmc\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh3.ggpht.com/jslCZaUnmu9G5p5PmIMcdPAee4c6EU_BkBCStORz3JSoln2sYMLf3kge5E4Jhn9scIk\42,\42https://lh3.ggpht.com/jslCZaUnmu9G5p5PmIMcdPAee4c6EU_BkBCStORz3JSoln2sYMLf3kge5E4Jhn9scIk\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/Y7agd5iOP4EtU8k7XaGJG6DjIspI0DcZabymn48qa09NtLVQat5XpY9iWdvwI1k6mA\42,\42https://lh6.ggpht.com/Y7agd5iOP4EtU8k7XaGJG6DjIspI0DcZabymn48qa09NtLVQat5XpY9iWdvwI1k6mA\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/cXVzcLjn7q-kDRDEjlN2B-Bcd838QdqUp1-vxhc3h5bo3bop6xuZcvKAdA1zrnkexA\42,\42https://lh4.ggpht.com/cXVzcLjn7q-kDRDEjlN2B-Bcd838QdqUp1-vxhc3h5bo3bop6xuZcvKAdA1zrnkexA\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/WZmO4zbDVTlzi8OwX6NurSy-G0AKlnsTJpdBGkG8tLGkPbfkygWYeFdKAJ9JT1lgvy8\42,\42https://lh6.ggpht.com/WZmO4zbDVTlzi8OwX6NurSy-G0AKlnsTJpdBGkG8tLGkPbfkygWYeFdKAJ9JT1lgvy8\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh6.ggpht.com/PLKYKIg5RKqmwgQLXHyWf22AupFvHBNHW0yfiKdhmoKcZVtt5myJk-sAe9_iCB2wtO8\42,\42https://lh6.ggpht.com/PLKYKIg5RKqmwgQLXHyWf22AupFvHBNHW0yfiKdhmoKcZVtt5myJk-sAe9_iCB2wtO8\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/fsbNoHzB8e6ET6jmZJf4E8P5ebp5md9sWJcSaosF9jchhN9Ztum0BTDY35UnbvXK11T2\42,\42https://lh3.ggpht.com/fsbNoHzB8e6ET6jmZJf4E8P5ebp5md9sWJcSaosF9jchhN9Ztum0BTDY35UnbvXK11T2\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh6.ggpht.com/XnbODmfPaWhsPkYQHD6tWaDgsUunELE-sGZukyG2bxFQ4-J3uOTR9V8XPBO1dwq4jpw\42,\42https://lh6.ggpht.com/XnbODmfPaWhsPkYQHD6tWaDgsUunELE-sGZukyG2bxFQ4-J3uOTR9V8XPBO1dwq4jpw\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh4.ggpht.com/qrhEe9M1f2b0dtMdHMJu2kdfJrPYDKYWoLPNgQYaYluEijKkGJj2OkpDQ_zYPM7VR_E\42,\42https://lh4.ggpht.com/qrhEe9M1f2b0dtMdHMJu2kdfJrPYDKYWoLPNgQYaYluEijKkGJj2OkpDQ_zYPM7VR_E\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\04269,222\42,\0423.6\42,[[[\04233,671\42,\042100%\42]\n,[\04210,888\42,\04232%\42]\n,[\0425,869\42,\04217%\42]\n,[\0423,819\42,\04211%\42]\n,[\04214,975\42,\04244%\42]\n]\n]\n,null,[[\42Top Developer\42,[[5,0,11,11,\42http://www.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42\42,0,null,null,0,\42\42]\n,[6,0,24,24,\42http://www.gstatic.com/android/market_images/badges/topdev_list.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_list.png\42,\42\42,0,null,null,0,\42\42]\n,[7,0,28,33,\42http://www.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42\42,0,null,null,0,\42\42]\n]\n,null,\42topDeveloperBadgeUrl\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42]\n]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Crackle\42,\42/store/apps/developer?id\\u003dCrackle\42]\n,[[[\42Your location\42,[[\42approximate location (network-based)\42,\42Allows the app to get your approximate location. This location is derived by location services using network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine approximately where you are.\42,1]\n,[\42precise location (GPS and network-based)\42,\42Allows the app to get your precise location using the Global Positioning System (GPS) or network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine where you are, and may consume additional battery power.\42,1]\n]\n]\n,[\42Network communication\42,[[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n,[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n]\n,[[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n,[\42send sticky broadcast\42,\42Allows the app to send sticky broadcasts, which remain after the broadcast ends. Excessive use may make the device slow or unstable by causing it to use too much memory.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42control vibration\42,\42Allows the app to control the vibrator.\42,0]\n,[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n,[\42Your applications information\42,[[\42run at startup\42,\42Allows the app to have itself started as soon as the system has finished booting. This can make it take longer to start the device and allow the app to slow down the overall device by always running.\42,0]\n]\n]\n]\n,[]\n]\n,\42July 18, 2013\42,3,,\04210,000,000\42,\04250,000,000\42,,1,\0422.2\42,,[\42- New this month: BLAIR WITCH PROJECT 1 \\u0026 2, The Shield, STARSHIP TROOPERS, anime including Samurai X and more\42,\42- Bug fixes based on user feedback\42,\42Previous updates\42,\42- Support for even more handsets and tablets\42,\42- Easier to find your favorite movies \\u0026 shows\42,\42- Improved video quality\42,\42- Watch on your TV via HDMI out\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.crackle.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNHqu5x15z5npGSTG3z6_bbdmgN1Ng\42,,\42Android@crackle.com\42]\n}]\n','[\42com.playon.playonapp\42,\42com.playon.playonapp\42,1,3,\42/store/apps/details?id\\u003dcom.playon.playonapp\42,\42/store/apps/details?id\\u003dcom.playon.playonapp\42,\42https://play.google.com/store/apps/details?id\\u003dcom.playon.playonapp\42,\42https://market.android.com/details?id\\u003dcom.playon.playonapp\42,\42PlayOn\42,\42PlayOn is the award-winning software that has won awards from Money Magazine and Popular Science Magazine. PlayOn was recently named one of the best cord-cutting tools on the planet by CNET. \\u003cp\\u003ePlayOn Mobile is now available for Android and it lets you watch all of the online content from Hulu (no Hulu Plus subscription required), Redbox*, Netflix*, NBC, ABC, FOX, CBS, Comedy Central, MLB.tv*, CNN, The Food Network, History, ESPN, ESPN3, TV.com, SpikeTV, Amazon VOD, BET, Adult Swim, Oprah Winfrey Network, Nick, PBS, PBS Kids, FoxSoccer.tv*, Al Jazeera, MTV, Vevo, and many more. It even works over Wi-Fi, 4G, or 3G.\\u003cp\\u003ePlayOn requires that you have PlayOn Media Server running on your PC.\\u003cp\\u003eYou can purchase the PlayOn Media Server at \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://www.playon.tv/android\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNEzBi_nTabjTSDxUc6q7liggzY67A\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://www.playon.tv/android\\u003c/a\\u003e You must be running Android OS 2.2 or later and your phone must support Flash or HLS Streaming. As long as your PC running PlayOn is turned on, you can connect your phone using either a WiFi connection, 4G, or 3G and access all of PlayOn’s content and features.\\u003cp\\u003eImagine catching up on your favorite TV series while waiting for a flight, or enjoying a sitcom during an oil change. Think about how nice it will be to sit on you couch and watch Hulu on your TV. Whatever your daily life throws at you, PlayOn can entertain you. Install this app on your phone or tablet, get the PlayOn server software on your PC, and you’ll be up and running in 5 minutes.\\u003cp\\u003e*Redbox, MLB.tv, and Netflix* require a subscriptions sold separately.\42,null,[[4,0,null,null,\42https://lh6.ggpht.com/j7kWg3W7RiJEgyECfI-dA0Bu15nfYJcw5CzPwdhY2E-3XscFtz_r68HNZqJbJzYS_y5A\42,\42https://lh6.ggpht.com/j7kWg3W7RiJEgyECfI-dA0Bu15nfYJcw5CzPwdhY2E-3XscFtz_r68HNZqJbJzYS_y5A\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42https://lh3.ggpht.com/YpMQ05-MK80cfDJqrsoo0Sy5AgbJPHApm7N3rqJEuGzpgRqrLFiXMcu9F36qlndTQA\42,\42https://lh3.ggpht.com/YpMQ05-MK80cfDJqrsoo0Sy5AgbJPHApm7N3rqJEuGzpgRqrLFiXMcu9F36qlndTQA\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh6.ggpht.com/tPXCJ0_12rLKvw1x_ChfSzLqll9uHcaQYfQp6L1LFZxhDFCGBp5CgXYZzABp71dwKQ\42,\42https://lh6.ggpht.com/tPXCJ0_12rLKvw1x_ChfSzLqll9uHcaQYfQp6L1LFZxhDFCGBp5CgXYZzABp71dwKQ\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/_ufYxQqy40QmXTfwIGYnT99miorC2Yis_lcRfKcigL0MN6qTSW7kMEwuTG4wdD8bxa8\42,\42https://lh6.ggpht.com/_ufYxQqy40QmXTfwIGYnT99miorC2Yis_lcRfKcigL0MN6qTSW7kMEwuTG4wdD8bxa8\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh3.ggpht.com/paZP8ILx4-tlWTyWjlTaxZygoQ58_lc-h_BIxqTcJP7rcI1Tv5KFPF4ut6gIRF1BH4nu\42,\42https://lh3.ggpht.com/paZP8ILx4-tlWTyWjlTaxZygoQ58_lc-h_BIxqTcJP7rcI1Tv5KFPF4ut6gIRF1BH4nu\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/KL3LeoHKK6lgRjmEyS_bkG9CG2PCUlkyhnZka-YeA-U-i8elFwbJiDcWNfXCyOqJYhs\42,\42https://lh6.ggpht.com/KL3LeoHKK6lgRjmEyS_bkG9CG2PCUlkyhnZka-YeA-U-i8elFwbJiDcWNfXCyOqJYhs\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh5.ggpht.com/oqlzMeT4bhHMF0TUyXbUW8b7Pl2URXp9Jfyz7xsszAQMMFMGA7N6VAQHWmDvnkc6_Ng\42,\42https://lh5.ggpht.com/oqlzMeT4bhHMF0TUyXbUW8b7Pl2URXp9Jfyz7xsszAQMMFMGA7N6VAQHWmDvnkc6_Ng\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh6.ggpht.com/iFNz--8-TbneecwtzYnVVHw7wx6ZlmmVa9rkxJlirWDg2q1kVN_KqPpWoszGC5I9USY\42,\42https://lh6.ggpht.com/iFNz--8-TbneecwtzYnVVHw7wx6ZlmmVa9rkxJlirWDg2q1kVN_KqPpWoszGC5I9USY\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh4.ggpht.com/LmZAbPBouGIC7vESdKWMYXQRuyY5Kp00xmJXImiifLdLYiGhRUPxaAxIf1Z-ep70g2IP\42,\42https://lh4.ggpht.com/LmZAbPBouGIC7vESdKWMYXQRuyY5Kp00xmJXImiifLdLYiGhRUPxaAxIf1Z-ep70g2IP\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh3.ggpht.com/4WL97_5_xVBiDnNFnl3JYUmtkZAHPN6DsG_CNT-W2g7ksdshwhnj1jmbooyDi8c0MiPs\42,\42https://lh3.ggpht.com/4WL97_5_xVBiDnNFnl3JYUmtkZAHPN6DsG_CNT-W2g7ksdshwhnj1jmbooyDi8c0MiPs\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh6.ggpht.com/yOWYv31EasJXkWJAbXvH2Y4clQrQgSX2m1S0GEu61D4gsQqkJoZcFnFC4OIIeifNZHE\42,\42https://lh6.ggpht.com/yOWYv31EasJXkWJAbXvH2Y4clQrQgSX2m1S0GEu61D4gsQqkJoZcFnFC4OIIeifNZHE\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh3.ggpht.com/zAmFZRVsvFXXSnMbwEm8HAO86dRCM_N6iJrod0fGt7OtIpU90oJX7ClQ6pntoOQbFZY\42,\42https://lh3.ggpht.com/zAmFZRVsvFXXSnMbwEm8HAO86dRCM_N6iJrod0fGt7OtIpU90oJX7ClQ6pntoOQbFZY\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/4SoJiYlMIp3BL0A83i2HSH9SoLk4jsW9yhtvhM_tQaLGsSh7ZFbgbxptc8lgF4Qop98\42,\42https://lh4.ggpht.com/4SoJiYlMIp3BL0A83i2HSH9SoLk4jsW9yhtvhM_tQaLGsSh7ZFbgbxptc8lgF4Qop98\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/wXrlZvHmtC3mUYB0ILlKS4dMYX2euKA3QqqExD4BGlhwB6eXrtJL9FsYDt0M_36V_4E\42,\42https://lh3.ggpht.com/wXrlZvHmtC3mUYB0ILlKS4dMYX2euKA3QqqExD4BGlhwB6eXrtJL9FsYDt0M_36V_4E\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.playon.playonapp\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.playon.playonapp\\u0026rdid\\u003dcom.playon.playonapp\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.5126204,2179,\42https://lh6.ggpht.com/j7kWg3W7RiJEgyECfI-dA0Bu15nfYJcw5CzPwdhY2E-3XscFtz_r68HNZqJbJzYS_y5A\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh6.ggpht.com/tPXCJ0_12rLKvw1x_ChfSzLqll9uHcaQYfQp6L1LFZxhDFCGBp5CgXYZzABp71dwKQ\42,\42https://lh6.ggpht.com/tPXCJ0_12rLKvw1x_ChfSzLqll9uHcaQYfQp6L1LFZxhDFCGBp5CgXYZzABp71dwKQ\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/_ufYxQqy40QmXTfwIGYnT99miorC2Yis_lcRfKcigL0MN6qTSW7kMEwuTG4wdD8bxa8\42,\42https://lh6.ggpht.com/_ufYxQqy40QmXTfwIGYnT99miorC2Yis_lcRfKcigL0MN6qTSW7kMEwuTG4wdD8bxa8\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh3.ggpht.com/paZP8ILx4-tlWTyWjlTaxZygoQ58_lc-h_BIxqTcJP7rcI1Tv5KFPF4ut6gIRF1BH4nu\42,\42https://lh3.ggpht.com/paZP8ILx4-tlWTyWjlTaxZygoQ58_lc-h_BIxqTcJP7rcI1Tv5KFPF4ut6gIRF1BH4nu\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/KL3LeoHKK6lgRjmEyS_bkG9CG2PCUlkyhnZka-YeA-U-i8elFwbJiDcWNfXCyOqJYhs\42,\42https://lh6.ggpht.com/KL3LeoHKK6lgRjmEyS_bkG9CG2PCUlkyhnZka-YeA-U-i8elFwbJiDcWNfXCyOqJYhs\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh5.ggpht.com/oqlzMeT4bhHMF0TUyXbUW8b7Pl2URXp9Jfyz7xsszAQMMFMGA7N6VAQHWmDvnkc6_Ng\42,\42https://lh5.ggpht.com/oqlzMeT4bhHMF0TUyXbUW8b7Pl2URXp9Jfyz7xsszAQMMFMGA7N6VAQHWmDvnkc6_Ng\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh6.ggpht.com/iFNz--8-TbneecwtzYnVVHw7wx6ZlmmVa9rkxJlirWDg2q1kVN_KqPpWoszGC5I9USY\42,\42https://lh6.ggpht.com/iFNz--8-TbneecwtzYnVVHw7wx6ZlmmVa9rkxJlirWDg2q1kVN_KqPpWoszGC5I9USY\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh4.ggpht.com/LmZAbPBouGIC7vESdKWMYXQRuyY5Kp00xmJXImiifLdLYiGhRUPxaAxIf1Z-ep70g2IP\42,\42https://lh4.ggpht.com/LmZAbPBouGIC7vESdKWMYXQRuyY5Kp00xmJXImiifLdLYiGhRUPxaAxIf1Z-ep70g2IP\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh3.ggpht.com/4WL97_5_xVBiDnNFnl3JYUmtkZAHPN6DsG_CNT-W2g7ksdshwhnj1jmbooyDi8c0MiPs\42,\42https://lh3.ggpht.com/4WL97_5_xVBiDnNFnl3JYUmtkZAHPN6DsG_CNT-W2g7ksdshwhnj1jmbooyDi8c0MiPs\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh6.ggpht.com/yOWYv31EasJXkWJAbXvH2Y4clQrQgSX2m1S0GEu61D4gsQqkJoZcFnFC4OIIeifNZHE\42,\42https://lh6.ggpht.com/yOWYv31EasJXkWJAbXvH2Y4clQrQgSX2m1S0GEu61D4gsQqkJoZcFnFC4OIIeifNZHE\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh3.ggpht.com/zAmFZRVsvFXXSnMbwEm8HAO86dRCM_N6iJrod0fGt7OtIpU90oJX7ClQ6pntoOQbFZY\42,\42https://lh3.ggpht.com/zAmFZRVsvFXXSnMbwEm8HAO86dRCM_N6iJrod0fGt7OtIpU90oJX7ClQ6pntoOQbFZY\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/4SoJiYlMIp3BL0A83i2HSH9SoLk4jsW9yhtvhM_tQaLGsSh7ZFbgbxptc8lgF4Qop98\42,\42https://lh4.ggpht.com/4SoJiYlMIp3BL0A83i2HSH9SoLk4jsW9yhtvhM_tQaLGsSh7ZFbgbxptc8lgF4Qop98\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/wXrlZvHmtC3mUYB0ILlKS4dMYX2euKA3QqqExD4BGlhwB6eXrtJL9FsYDt0M_36V_4E\42,\42https://lh3.ggpht.com/wXrlZvHmtC3mUYB0ILlKS4dMYX2euKA3QqqExD4BGlhwB6eXrtJL9FsYDt0M_36V_4E\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\0422,179\42,\0423.5\42,[[[\0421,009\42,\042100%\42]\n,[\042332\42,\04232%\42]\n,[\042156\42,\04215%\42]\n,[\042131\42,\04212%\42]\n,[\042551\42,\04254%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42MediaMall Technologies, Inc.\42,\42/store/apps/developer?id\\u003dMediaMall+Technologies,+Inc.\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n]\n]\n]\n,[[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42July 3, 2013\42,1,\4294k\42,\0421,000,000\42,\0425,000,000\42,\0421.20\42,0,\0422.2\42,,[\42Fixed extra touch required to activate flash on some devices.\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.playon.tv\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNEqqLqfATkGDIHlOYUvxG7QzDSCew\42,,\42support@playon.tv\42]\n}]\n','[\42com.redux.android.hg\42,\42com.redux.android.hg\42,1,3,\42/store/apps/details?id\\u003dcom.redux.android.hg\42,\42/store/apps/details?id\\u003dcom.redux.android.hg\42,\42https://play.google.com/store/apps/details?id\\u003dcom.redux.android.hg\42,\42https://market.android.com/details?id\\u003dcom.redux.android.hg\42,\42Redux for Google TV\42,\42Discover a new kind of TV - exceptional entertainment programmed for you by awesome curators, tastemakers, and friends. Redux is effortless, high-end entertainment discovery.\\u003cp\\u003eVideo surf through hundreds of channels with a beautiful interface that feels like TV. Discover refreshing, off-the-beaten-path, living room-worthy shows so good, you\\u0026#39;d never guess they came from the web. Redux brings you closer to the things that interest you, better than cable or broadcast television ever could, all in one place.\\u003cp\\u003e---- APP UPDATING / ERROR CONCERNS: PLEASE READ BELOW ----\\u003cp\\u003eOccasional reports of errors and inability to update the app have recently occurred on Market. Make sure you click on the \\u0026quot;UPDATE\\u0026quot; button in the market next to our app, and ensure the download begins and finishes. \\u003cp\\u003eIf updating fails, try clearing your Market data. It\\u0026#39;s fun and safe to do. Just select Market on the All Apps screen, hold down \\u0026quot;Enter\\u0026quot;, and select \\u0026quot;Clear Data\\u0026quot; in the application info window. \\u003cp\\u003eIf the app tells you that you must update, but you don\\u0026#39;t see an update button, try coming back in a few hours - for some users, the update can take a while to propagate in the android market. Worst case scenario, try uninstalling the app and then reinstalling from the market. \\u003cp\\u003eApologies for any inconvenience. As we work with Google to resolve this unpleasantness, feel free to email us directly at \\u003ca href\\u003d\\\42mailto:tv@redux.com\\\42\\u003etv@redux.com\\u003c/a\\u003e for one-on-one support. \\u003cp\\u003e-----------------------------------------------------------\\u003cbr\\u003e \\u003cbr\\u003eGrab some pop corn, lean back, and let us show you how good web video can be.\\u003cbr\\u003e \\u003cbr\\u003eWhat reviewers are saying:\\u003cbr\\u003e \\u003cbr\\u003e\\u0026quot;Every Google TV owner should install Redux. I love how much content it offers, and I get to decide what I want to watch. Arguably better than cable.\\u0026quot;\\u003cbr\\u003e \\u003cbr\\u003e\\u0026quot;This is the future of TV. Beautiful interface, feels like TV. I spend hours everyday on Redux. It\\u0026#39;s better than cable. LOVE IT\\u0026quot;\\u003cbr\\u003e \\u003cbr\\u003e\\u0026quot;I know its kind of stupid to compare it to Netflix but let\\u0026#39;s be real. Netflix movies blow most the time. This offers refreshingly good short films. I love it and its not $8 a month.\\u0026quot;\\u003cp\\u003e\\u0026quot;Excellent app. No longer need cable between this, youtube and netflix.\\u0026quot;\\u003cp\\u003e\\u0026quot;Love this app between it and Youtube, you should probably just cancel your cable now.\\u0026quot;\\u003cbr\\u003e \\u003cbr\\u003e\\u0026quot;Awesome! Unlike anything else! better than TV!\\u0026quot;\\u003cbr\\u003e \\u003cbr\\u003eLike cars? Check out the Rides channel.\\u003cbr\\u003eGadget obsessed? The Tech channel\\u0026#39;s got you covered.\\u003cbr\\u003eEnjoy high-brow nature documentaries? Check out Nature\\u0026#39;s Imprint.\\u003cbr\\u003eFollow the latest in fashion? Flip to Dress Code.\\u003cbr\\u003eExtreme sports junkie? Your next fix is on the Adrenaline channel.\\u003cbr\\u003eTech insider? Jason\\u0026#39;s Hirschorn\\u0026#39;s Media Redefined channel\\u0026#39;s got you covered.\\u003cbr\\u003eMusic snob? Light your fire on the Music: Backstage channel.\\u003cbr\\u003e \\u003cbr\\u003eWe\\u0026#39;re adding new channels constantly, as well as partners with exclusive content like Thrillist, Storyful, and The Chicago Tribune. \\u003cp\\u003eOur family of curators regularly features the best available content from a variety of sources and subjects, including MotorTrend, Crackle, NBC, ABC, Bravo, Fox, FX, ESPN, The History Channel, CNBC, HBO, Showtime, Hulu, CBS, CNET, Animal Planet, YouTube, Vimeo, and IMDB. We\\u0026#39;ve even got rare blooper footage from baseball, basketball, football, poker, and international games, plus a host of other content you won\\u0026#39;t see on Comcast, Flixster, iTunes, DirecTV, YouTube, or even Classy Fireplace :]\42,null,[[4,0,null,null,\42http://lh5.ggpht.com/QxxgLuWpo4lABGsRLaMiNYJdQXovcsia0GlGrJLHB7GDfRr7yAam1adG5h3cMKdq2Bg\42,\42https://lh5.ggpht.com/QxxgLuWpo4lABGsRLaMiNYJdQXovcsia0GlGrJLHB7GDfRr7yAam1adG5h3cMKdq2Bg\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh6.ggpht.com/lRiHX3OFf5YY1Us8bO3IzashV2PLb41vBPfoJf58TSCyoI4p16I9dBYwyrtwcqFwtx3s\42,\42https://lh6.ggpht.com/lRiHX3OFf5YY1Us8bO3IzashV2PLb41vBPfoJf58TSCyoI4p16I9dBYwyrtwcqFwtx3s\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42http://lh4.ggpht.com/WteLSGjwnxcEEN7HtrzMUMbv8V5RsSPwSc-tH2WJqjL3nlaCDW6e1OPg9RfVVEf4bZcJ\42,\42https://lh4.ggpht.com/WteLSGjwnxcEEN7HtrzMUMbv8V5RsSPwSc-tH2WJqjL3nlaCDW6e1OPg9RfVVEf4bZcJ\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh5.ggpht.com/J6UG8Ht95phM0pNH9xuOIktngvmW8HlTU8ZZqdeQuUV1HiHN_cJvodsFx0OeZe8S_fo\42,\42https://lh5.ggpht.com/J6UG8Ht95phM0pNH9xuOIktngvmW8HlTU8ZZqdeQuUV1HiHN_cJvodsFx0OeZe8S_fo\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh5.ggpht.com/4duS6LwzzCrwofLSURytO0l9Ab6FIqaZv3xQE5lYKdT3d0VCE3bC5Tc7AFEAo1qmVw\42,\42https://lh5.ggpht.com/4duS6LwzzCrwofLSURytO0l9Ab6FIqaZv3xQE5lYKdT3d0VCE3bC5Tc7AFEAo1qmVw\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42http://lh4.ggpht.com/k8QdmaQV37siOAfrh5D-7ek6wTexzRA-GMjmECeZFwVeLhtNgpc7yfBzjUJU7PPGCg\42,\42https://lh4.ggpht.com/k8QdmaQV37siOAfrh5D-7ek6wTexzRA-GMjmECeZFwVeLhtNgpc7yfBzjUJU7PPGCg\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42http://lh5.ggpht.com/aIsTvXw-5t5dmBVkw1B0_kNZZHE--_Qzcy4gbi0EurYAe2R7HrepFc1QZXFkenUEbQ\42,\42https://lh5.ggpht.com/aIsTvXw-5t5dmBVkw1B0_kNZZHE--_Qzcy4gbi0EurYAe2R7HrepFc1QZXFkenUEbQ\42,\42\42,1,null,null,0,\42\42]\n,[0,0,null,null,\42https://lh6.ggpht.com/f-r-uislKSuBDtb5-Zwt23VBr5dwg7XvZO3GSdmqZN0LePv8BRnEhrGSkKbBInsoXhGj\42,\42https://lh6.ggpht.com/f-r-uislKSuBDtb5-Zwt23VBr5dwg7XvZO3GSdmqZN0LePv8BRnEhrGSkKbBInsoXhGj\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.redux.android.hg\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.redux.android.hg\\u0026rdid\\u003dcom.redux.android.hg\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,4.2,530,\42https://lh5.ggpht.com/QxxgLuWpo4lABGsRLaMiNYJdQXovcsia0GlGrJLHB7GDfRr7yAam1adG5h3cMKdq2Bg\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42http://lh4.ggpht.com/WteLSGjwnxcEEN7HtrzMUMbv8V5RsSPwSc-tH2WJqjL3nlaCDW6e1OPg9RfVVEf4bZcJ\42,\42https://lh4.ggpht.com/WteLSGjwnxcEEN7HtrzMUMbv8V5RsSPwSc-tH2WJqjL3nlaCDW6e1OPg9RfVVEf4bZcJ\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh5.ggpht.com/J6UG8Ht95phM0pNH9xuOIktngvmW8HlTU8ZZqdeQuUV1HiHN_cJvodsFx0OeZe8S_fo\42,\42https://lh5.ggpht.com/J6UG8Ht95phM0pNH9xuOIktngvmW8HlTU8ZZqdeQuUV1HiHN_cJvodsFx0OeZe8S_fo\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh5.ggpht.com/4duS6LwzzCrwofLSURytO0l9Ab6FIqaZv3xQE5lYKdT3d0VCE3bC5Tc7AFEAo1qmVw\42,\42https://lh5.ggpht.com/4duS6LwzzCrwofLSURytO0l9Ab6FIqaZv3xQE5lYKdT3d0VCE3bC5Tc7AFEAo1qmVw\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42http://lh4.ggpht.com/k8QdmaQV37siOAfrh5D-7ek6wTexzRA-GMjmECeZFwVeLhtNgpc7yfBzjUJU7PPGCg\42,\42https://lh4.ggpht.com/k8QdmaQV37siOAfrh5D-7ek6wTexzRA-GMjmECeZFwVeLhtNgpc7yfBzjUJU7PPGCg\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42http://lh5.ggpht.com/aIsTvXw-5t5dmBVkw1B0_kNZZHE--_Qzcy4gbi0EurYAe2R7HrepFc1QZXFkenUEbQ\42,\42https://lh5.ggpht.com/aIsTvXw-5t5dmBVkw1B0_kNZZHE--_Qzcy4gbi0EurYAe2R7HrepFc1QZXFkenUEbQ\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\042530\42,\0424.2\42,[[[\042341\42,\042100%\42]\n,[\4287\42,\04225%\42]\n,[\04228\42,\428%\42]\n,[\04215\42,\0424%\42]\n,[\04259\42,\04217%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Redux\42,\42/store/apps/developer?id\\u003dRedux\42]\n,[[[\42Network communication\42,[[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n,[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n]\n,[[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42December 17, 2012\42,3,\042262k\42,\042100,000\42,\042500,000\42,\0421.0\42,0,\0422.3\42,,[\0422/14/2012: Faster app startup\42,\04212/22/2011: Merged channel guide and video info screens\42,\04212/16/2011: New page in the channel guide, \\\42Accounts\\\42. Create a Redux account, or sign in to an existing account; the channels you add and videos you star will be synchronized between your GTV and redux.com.\42]\n,\42https://www.google.com/url?q\\u003dhttp://redux.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNGn_iWq4YY4RWUGm6NQ0nMBguIa3Q\42,,\42tv@redux.com\42]\n}]\n','[\42com.tvguidemobile\42,\42com.tvguidemobile\42,1,3,\42/store/apps/details?id\\u003dcom.tvguidemobile\42,\42/store/apps/details?id\\u003dcom.tvguidemobile\42,\42https://play.google.com/store/apps/details?id\\u003dcom.tvguidemobile\42,\42https://market.android.com/details?id\\u003dcom.tvguidemobile\42,\42TV Guide Mobile\42,\42TV Guide’s new official app for Android is your one-stop, 24/7 TV companion and our best listings guide ever. It makes TV simple again – anywhere, anytime. Your feedback was instrumental in the creation of many cool new features and we’re excited for you to see them. Please keep your feedback coming – what you love, what you don’t and what you want to see next. \\u003cbr\\u003e \\u003cbr\\u003eHighlights:\\u003cbr\\u003e• Watchlist - your super-personalized TV Guide: Organize your favorite shows, sports teams, movies, and actors and find where you can watch them – on TV, on demand, streaming and DVD.\\u003cbr\\u003e \\u003cbr\\u003e• Video: Link to watch TV and movies instantly on Crackle, The CW, HBO GO, Hulu Plus, and MAX GO. Watch now, anywhere, anytime.\\u003cp\\u003e• New Tonight: What\\u0026#39;s new in prime time with three handy filters:\\u003cbr\\u003e1. All new shows\\u003cbr\\u003e2. Trending – a social hot list based on what TV Guide users are watching\\u003cbr\\u003e3. Watchlist – only your favorite shows\\u003cp\\u003e• Listings: Detailed info about every airing with the ability to:\\u003cbr\\u003e1.\\tSet up alerts and never miss a live airing\\u003cbr\\u003e2.\\tEasily personalize your Watchlist\\u003cbr\\u003e3.\\tFilter by HD-only and favorite channels\\u003cbr\\u003e4.\\tCheck-in and share what you\\u0026#39;re watching with your friends on Facebook, Twitter and more\\u003cp\\u003e• Exclusive content: The best in breaking news, features, videos and photos, curated by TV Guide\\u0026#39;s editors\\u003cp\\u003e• News Watchlist filter: Get news customized just for you\\u003cp\\u003e• One account: TVGuide.com users can enjoy the convenience of one linked account for TVGuide.com and TV Guide for iPhone, iPad and iPod touch and Android. Set up individual accounts for every member of your family.\\u003cp\\u003eThe app is available for these Android versions only:\\u003cbr\\u003e• Ice Cream Sandwich (4.0.2+) \\u003cbr\\u003e• Jellybean (4.1+)\42,null,[[4,0,null,null,\42https://lh3.ggpht.com/qGtpeqk3IbteG0A-utaTTBgP_RO9UyaWwwRByNGLkiAcRMdTBXdAaRv-v9dHQaixzQ8\42,\42https://lh3.ggpht.com/qGtpeqk3IbteG0A-utaTTBgP_RO9UyaWwwRByNGLkiAcRMdTBXdAaRv-v9dHQaixzQ8\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh4.ggpht.com/aRtFCwHuJOBtg-mO-gqXo7-8kWfahQgeYLpmNSn4F8iPk-2DFSQE_38T1I6N5kmoDNzO\42,\42https://lh4.ggpht.com/aRtFCwHuJOBtg-mO-gqXo7-8kWfahQgeYLpmNSn4F8iPk-2DFSQE_38T1I6N5kmoDNzO\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh4.ggpht.com/4BwVLwRXJQKrBOjuzqniUG8GYudfWdO1xCpXZpQEhHL8_RcZZn5wS-GQeAXWkV6xea05\42,\42https://lh4.ggpht.com/4BwVLwRXJQKrBOjuzqniUG8GYudfWdO1xCpXZpQEhHL8_RcZZn5wS-GQeAXWkV6xea05\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh3.ggpht.com/KSzbPB4ctd4inioLLIO2beTwSASh_NH5rxrQqNzU6LdVZyVpRhjgxTQAbe8M-L38Isk\42,\42https://lh3.ggpht.com/KSzbPB4ctd4inioLLIO2beTwSASh_NH5rxrQqNzU6LdVZyVpRhjgxTQAbe8M-L38Isk\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/7KWjk1nw1ku3JL7xxygothVZCq5BeK_AArWp4qyq1Ehttroqp-Reau5mYy-Ohvn-jx3r\42,\42https://lh6.ggpht.com/7KWjk1nw1ku3JL7xxygothVZCq5BeK_AArWp4qyq1Ehttroqp-Reau5mYy-Ohvn-jx3r\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh6.ggpht.com/Gv0WiwZM_-pvQO-v_wQAtxrsVN7WHGFbqDl791wemR8hEkM7hGewkOkD0uh3sm2h5KI\42,\42https://lh6.ggpht.com/Gv0WiwZM_-pvQO-v_wQAtxrsVN7WHGFbqDl791wemR8hEkM7hGewkOkD0uh3sm2h5KI\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh5.ggpht.com/hhLWb2_RtZ846mWSLTtt5tfaYvgQZS1dNuyrukIg4SYx1gsx8SDAoBwBa6Tu-bErQx0\42,\42https://lh5.ggpht.com/hhLWb2_RtZ846mWSLTtt5tfaYvgQZS1dNuyrukIg4SYx1gsx8SDAoBwBa6Tu-bErQx0\42,\42\42,1,null,null,0,\42\42]\n,[0,0,null,null,\42https://lh6.ggpht.com/SrKyaKE2J0r9sffNr9DpPI6rZdzNbnWv3PrBQ1uFAW8g-7EV0-EvkSwT3MQu25s-dx0\42,\42https://lh6.ggpht.com/SrKyaKE2J0r9sffNr9DpPI6rZdzNbnWv3PrBQ1uFAW8g-7EV0-EvkSwT3MQu25s-dx0\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.tvguidemobile\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.tvguidemobile\\u0026rdid\\u003dcom.tvguidemobile\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,4.045293,1126,\42https://lh3.ggpht.com/qGtpeqk3IbteG0A-utaTTBgP_RO9UyaWwwRByNGLkiAcRMdTBXdAaRv-v9dHQaixzQ8\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh4.ggpht.com/aRtFCwHuJOBtg-mO-gqXo7-8kWfahQgeYLpmNSn4F8iPk-2DFSQE_38T1I6N5kmoDNzO\42,\42https://lh4.ggpht.com/aRtFCwHuJOBtg-mO-gqXo7-8kWfahQgeYLpmNSn4F8iPk-2DFSQE_38T1I6N5kmoDNzO\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh4.ggpht.com/4BwVLwRXJQKrBOjuzqniUG8GYudfWdO1xCpXZpQEhHL8_RcZZn5wS-GQeAXWkV6xea05\42,\42https://lh4.ggpht.com/4BwVLwRXJQKrBOjuzqniUG8GYudfWdO1xCpXZpQEhHL8_RcZZn5wS-GQeAXWkV6xea05\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh3.ggpht.com/KSzbPB4ctd4inioLLIO2beTwSASh_NH5rxrQqNzU6LdVZyVpRhjgxTQAbe8M-L38Isk\42,\42https://lh3.ggpht.com/KSzbPB4ctd4inioLLIO2beTwSASh_NH5rxrQqNzU6LdVZyVpRhjgxTQAbe8M-L38Isk\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/7KWjk1nw1ku3JL7xxygothVZCq5BeK_AArWp4qyq1Ehttroqp-Reau5mYy-Ohvn-jx3r\42,\42https://lh6.ggpht.com/7KWjk1nw1ku3JL7xxygothVZCq5BeK_AArWp4qyq1Ehttroqp-Reau5mYy-Ohvn-jx3r\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh6.ggpht.com/Gv0WiwZM_-pvQO-v_wQAtxrsVN7WHGFbqDl791wemR8hEkM7hGewkOkD0uh3sm2h5KI\42,\42https://lh6.ggpht.com/Gv0WiwZM_-pvQO-v_wQAtxrsVN7WHGFbqDl791wemR8hEkM7hGewkOkD0uh3sm2h5KI\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh5.ggpht.com/hhLWb2_RtZ846mWSLTtt5tfaYvgQZS1dNuyrukIg4SYx1gsx8SDAoBwBa6Tu-bErQx0\42,\42https://lh5.ggpht.com/hhLWb2_RtZ846mWSLTtt5tfaYvgQZS1dNuyrukIg4SYx1gsx8SDAoBwBa6Tu-bErQx0\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\0421,126\42,\0424.0\42,[[[\042616\42,\042100%\42]\n,[\042244\42,\04239%\42]\n,[\4293\42,\04215%\42]\n,[\04247\42,\0427%\42]\n,[\042126\42,\04220%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42TV Guide\42,\42/store/apps/developer?id\\u003dTV+Guide\42]\n,[[[\42Your location\42,[[\42precise location (GPS and network-based)\42,\42Allows the app to get your precise location using the Global Positioning System (GPS) or network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine where you are, and may consume additional battery power.\42,1]\n]\n]\n,[\42Network communication\42,[[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n,[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n]\n,[[\42Your accounts\42,[[\42find accounts on the device\42,\42Allows the app to get the list of accounts known by the device. This may include any accounts created by applications you have installed.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42July 10, 2013\42,2,\0422.8M\42,\042100,000\42,\042500,000\42,\0423.0.5\42,0,\0424.0\42,,[\42v3.0.5 (7/10/13)\42,\42- Feature: Edit Watchlist! Tap the menu button in the top right corner of the Watchlist section to edit it and remove items. Bonus tip: Hold down on any item in your Watchlist and you can quickly remove it.\42,\42- Fixed crashing when receiving alerts.\42,\42- Fixed inability to set alerts on programs in certain scenarios.\42,\42- Various other stability and performance improvements.\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.tvguide.com/services/help/mobile/\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNHEVX3fXCRXqxybjjtJ-VUu87y6Xg\42,\42https://www.google.com/url?q\\u003dhttp://www.tvguide.com/services/privacy.aspx\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNHyHBNovbcBB7BK0hISLWvLNJcb3A\42,\42TVGOLAndroidFeedback2@tvguide.com\42]\n}]\n','[\42linuspetren.com.huloid\42,\42linuspetren.com.huloid\42,1,3,\42/store/apps/details?id\\u003dlinuspetren.com.huloid\42,\42/store/apps/details?id\\u003dlinuspetren.com.huloid\42,\42https://play.google.com/store/apps/details?id\\u003dlinuspetren.com.huloid\42,\42https://market.android.com/details?id\\u003dlinuspetren.com.huloid\42,\42hulOID\42,\42hulOID 1.8\\u003cp\\u003eThis is an application where you can see information about all the content on hulu.com\\u003cp\\u003e*See most popular\\u003cbr\\u003e*Search for your favorite shows\\u003cbr\\u003e*Save your searches\\u003cbr\\u003e*Updated UI\\u003cbr\\u003e*Share your favorites to social networks\\u003cbr\\u003e*Go to the hulu page for the show\\u003cp\\u003eHulu does not allow watching their content from cell phones today!\42,null,[[1,0,null,null,\42http://lh4.ggpht.com/YJwOU59nTZBiB4spMeyFXGl11Zyhd6SEUAqXMsPPJ2w2OVefSJ_j9JELCq_WB4LUW4NX\42,\42https://lh4.ggpht.com/YJwOU59nTZBiB4spMeyFXGl11Zyhd6SEUAqXMsPPJ2w2OVefSJ_j9JELCq_WB4LUW4NX\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh4.ggpht.com/G1NL3ML9NgYNK958NUBk-HksMCaE5drTsY8I5DYSIq5bV6k7IH_PKlp7lyGU_Q8NbiQ\42,\42https://lh4.ggpht.com/G1NL3ML9NgYNK958NUBk-HksMCaE5drTsY8I5DYSIq5bV6k7IH_PKlp7lyGU_Q8NbiQ\42,\42\42,1,null,null,0,\42\42]\n,[0,0,null,null,\42http://lh5.ggpht.com/kOlamRxR3Kb-0VeOLDCjjN8NQ0z4ot2zg9yOdmR196715UT5m94uOoIYMKCRcYsgPDQ\42,\42https://lh5.ggpht.com/kOlamRxR3Kb-0VeOLDCjjN8NQ0z4ot2zg9yOdmR196715UT5m94uOoIYMKCRcYsgPDQ\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42linuspetren.com.huloid\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dlinuspetren.com.huloid\\u0026rdid\\u003dlinuspetren.com.huloid\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42SEK\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,2.5132074,530,\42https://lh5.ggpht.com/kOlamRxR3Kb-0VeOLDCjjN8NQ0z4ot2zg9yOdmR196715UT5m94uOoIYMKCRcYsgPDQ\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42http://lh4.ggpht.com/YJwOU59nTZBiB4spMeyFXGl11Zyhd6SEUAqXMsPPJ2w2OVefSJ_j9JELCq_WB4LUW4NX\42,\42https://lh4.ggpht.com/YJwOU59nTZBiB4spMeyFXGl11Zyhd6SEUAqXMsPPJ2w2OVefSJ_j9JELCq_WB4LUW4NX\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh4.ggpht.com/G1NL3ML9NgYNK958NUBk-HksMCaE5drTsY8I5DYSIq5bV6k7IH_PKlp7lyGU_Q8NbiQ\42,\42https://lh4.ggpht.com/G1NL3ML9NgYNK958NUBk-HksMCaE5drTsY8I5DYSIq5bV6k7IH_PKlp7lyGU_Q8NbiQ\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\042530\42,\0422.5\42,[[[\042160\42,\04256%\42]\n,[\04224\42,\428%\42]\n,[\04228\42,\429%\42]\n,[\04234\42,\04211%\42]\n,[\042284\42,\042100%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Linus Petren\42,\42/store/apps/developer?id\\u003dLinus+Petren\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n]\n]\n]\n,[]\n,[]\n]\n,\42November 14, 2010\42,0,\042331k\42,\042100,000\42,\042500,000\42,\0421.8\42,0,\0422.1\42,,[\42Updated UI\42]\n,\42https://www.google.com/url?q\\u003dhttp://linuspetren.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNE9KUFRpgBBKydIcFZWxNPkMgQ4Og\42,,\42huloid@hotmail.com\42]\n}]\n','[\42com.Rankarthai.TV.Online\42,\42com.Rankarthai.TV.Online\42,1,3,\42/store/apps/details?id\\u003dcom.Rankarthai.TV.Online\42,\42/store/apps/details?id\\u003dcom.Rankarthai.TV.Online\42,\42https://play.google.com/store/apps/details?id\\u003dcom.Rankarthai.TV.Online\42,\42https://market.android.com/details?id\\u003dcom.Rankarthai.TV.Online\42,\42TV Online\42,\42*** More than 500,000 downloads in two months.\\u003cbr\\u003eApplication TV Online Free. Collect entertainment is in your hands.You can watch TV online for 24 hours.Both in Thailand and abroad more than 160 channels.Such as TV,News,Star entertainment,Music,Sports and so on.\\u003cbr\\u003eYou can either use EDGE GPRS 2G and 3G Wifi. Have a good application for your mobile and you can get news anywhere and anytime.\\u003cbr\\u003e- Can be viewed on both Wi-Fi and 3G.If you do not see the link.For you to choose link2 or link3.\\u003cp\\u003eSpecial features.\\u003cbr\\u003e- No need to download an extra application.\\u003cbr\\u003e- Can be viewed on a smartphone and tablet.\\u003cbr\\u003e- Can chat and comment.\\u003cbr\\u003e- Easy to use.\\u003cbr\\u003e- Colorful patterns.\\u003cp\\u003eRecommendation\\u003cbr\\u003e- If an open applications with EDGE, GPRS \\u0026amp; 2G Image more slowly than usual. So the performance should be better with Wifi Internet.\\u003cp\\u003eApplication TV Online make you fun endless.\\u003cp\\u003e\\u003cbr\\u003etags:tv thai,thai,tv,Live tv thai , tv online,ทีวี,ทีวี ไทย,ทีวี ออนไลน์\\u003cp\\u003e\\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttps://www.facebook.com/rankarthai\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNH86_4KK20FP3zBYnCaB_cjPy7cTQ\\\42 target\\u003d\\\42_blank\\\42\\u003ehttps://www.facebook.com/rankarthai\\u003c/a\\u003e\\u003cbr\\u003eby rankarthai.com\42,null,[[4,0,null,null,\42https://lh5.ggpht.com/GhzQQ4BjEdrUu_JBn4ddo4jO0jiYezfUN06FaADco3F9Ocx_FnnpGKvN9PpGR3rjLQ\42,\42https://lh5.ggpht.com/GhzQQ4BjEdrUu_JBn4ddo4jO0jiYezfUN06FaADco3F9Ocx_FnnpGKvN9PpGR3rjLQ\42,\42\42,1,null,null,0,\42\42]\n,[3,0,null,null,\42https://www.youtube.com/embed/9Ib8VdNsJNg?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42https://www.youtube.com/embed/9Ib8VdNsJNg?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42\42,0,null,null,0,\42\42]\n,[13,0,null,null,\42http://i.ytimg.com/vi/9Ib8VdNsJNg/hqdefault.jpg\42,\42\42,\42\42,0,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh3.ggpht.com/ips_49oX_6hgqEUVG-G-qU5Qhje_xWPvgE73G7-v3bH3N2Sr8lxNzZLkt2Re3Eb1TA\42,\42https://lh3.ggpht.com/ips_49oX_6hgqEUVG-G-qU5Qhje_xWPvgE73G7-v3bH3N2Sr8lxNzZLkt2Re3Eb1TA\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh3.ggpht.com/Q-eCxSTJ5p2eGIfD3q5nzVZYSpIG1y6LAuf90K8VRztf2HB4_6rV538mRXYLWhRR8Ec\42,\42https://lh3.ggpht.com/Q-eCxSTJ5p2eGIfD3q5nzVZYSpIG1y6LAuf90K8VRztf2HB4_6rV538mRXYLWhRR8Ec\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh6.ggpht.com/j_v6Yawbbo16TUek0lwUww_EOAvu8N57xF1LJGivERW7Lk5aPg5g2FaCli38ivWgUA\42,\42https://lh6.ggpht.com/j_v6Yawbbo16TUek0lwUww_EOAvu8N57xF1LJGivERW7Lk5aPg5g2FaCli38ivWgUA\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh5.ggpht.com/Rdjtl402cXPIoSJLUN66Aw9lezGg4fkm4UtIyaD-cPpAjcY1naNEMl8wOs8p9vRoDSaP\42,\42https://lh5.ggpht.com/Rdjtl402cXPIoSJLUN66Aw9lezGg4fkm4UtIyaD-cPpAjcY1naNEMl8wOs8p9vRoDSaP\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh5.ggpht.com/EQvPDdjs05KAj-WijfC2QTjGIOtg171oyre8s7RdIoKc-CldpH0HM8KHlyory2pzEbiC\42,\42https://lh5.ggpht.com/EQvPDdjs05KAj-WijfC2QTjGIOtg171oyre8s7RdIoKc-CldpH0HM8KHlyory2pzEbiC\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh4.ggpht.com/NdGDEp975qyrTp9Vn-iKvz-GJtL9WO5YeL3tQ8X-AIBtwh8jtS4uZsyyov7lNCvp2fI\42,\42https://lh4.ggpht.com/NdGDEp975qyrTp9Vn-iKvz-GJtL9WO5YeL3tQ8X-AIBtwh8jtS4uZsyyov7lNCvp2fI\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/AzJaHZP2wl06qFgH5NrbHg75MO3mZ6StIUhiKVfB01SyOZDWKcOicC9OQNAv1u9WAAs\42,\42https://lh5.ggpht.com/AzJaHZP2wl06qFgH5NrbHg75MO3mZ6StIUhiKVfB01SyOZDWKcOicC9OQNAv1u9WAAs\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh6.ggpht.com/ciB-NyLxFzbI9eSTaf3FrujPyXB5MOQ1lhlDxaO74cVFWA4WODAOCNQFFavx5o82lpI\42,\42https://lh6.ggpht.com/ciB-NyLxFzbI9eSTaf3FrujPyXB5MOQ1lhlDxaO74cVFWA4WODAOCNQFFavx5o82lpI\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh4.ggpht.com/K-Aymo7AbUP2esZVthnvmgCPpFmQEmWhXXQVzT6j-9v-nu4SVmXniV2bQPHm_Voi5g\42,\42https://lh4.ggpht.com/K-Aymo7AbUP2esZVthnvmgCPpFmQEmWhXXQVzT6j-9v-nu4SVmXniV2bQPHm_Voi5g\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh4.ggpht.com/tiiJrkfsqQbJ0yHJef2Bn-HLZRLXZ-VqBBT0Dg_t9kkaPfL9dQK6nmi96-S0oOicGX0\42,\42https://lh4.ggpht.com/tiiJrkfsqQbJ0yHJef2Bn-HLZRLXZ-VqBBT0Dg_t9kkaPfL9dQK6nmi96-S0oOicGX0\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/jiq7i4hwtfUdSZj8u-O94xtcN1IN9lLm8WBpin_Z9QfPW5riTjBO-j4nxf3wng4DHnV5\42,\42https://lh4.ggpht.com/jiq7i4hwtfUdSZj8u-O94xtcN1IN9lLm8WBpin_Z9QfPW5riTjBO-j4nxf3wng4DHnV5\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/nAD_Ki-XJWu0OwnBQgGUAH82l3CgPgE2dfdOPWrd3sorr_7WE7vD6LWw9SirVPy48SM\42,\42https://lh3.ggpht.com/nAD_Ki-XJWu0OwnBQgGUAH82l3CgPgE2dfdOPWrd3sorr_7WE7vD6LWw9SirVPy48SM\42,\42\42,1,null,null,0,\42\42]\n,[1,12,null,null,\42https://lh4.ggpht.com/yhrmt301i8pYETR1d68FQ-zMlsmWFLkX1ouA2XaGNghIdwwxguGXxNBJ3CzxnCQlYtE\42,\42https://lh4.ggpht.com/yhrmt301i8pYETR1d68FQ-zMlsmWFLkX1ouA2XaGNghIdwwxguGXxNBJ3CzxnCQlYtE\42,\42\42,1,null,null,0,\42\42]\n,[1,13,null,null,\42https://lh6.ggpht.com/9KfqWrqs_Jq8qbgwzw2d0jcCTQ-hKsvVFEtNKEdk9rpbotaaiKa1PiHt4uhZZf8qOw\42,\42https://lh6.ggpht.com/9KfqWrqs_Jq8qbgwzw2d0jcCTQ-hKsvVFEtNKEdk9rpbotaaiKa1PiHt4uhZZf8qOw\42,\42\42,1,null,null,0,\42\42]\n,[1,14,null,null,\42https://lh3.ggpht.com/2i1XcbyNzdoSMNuc8rsAEylHifJH9UokUpIrWzeWXoyGVqlpd2ntqqSanYfd4WPqfLh6\42,\42https://lh3.ggpht.com/2i1XcbyNzdoSMNuc8rsAEylHifJH9UokUpIrWzeWXoyGVqlpd2ntqqSanYfd4WPqfLh6\42,\42\42,1,null,null,0,\42\42]\n,[1,15,null,null,\42https://lh3.ggpht.com/toFRVsafqH3uOe9URey0B1La21qx2ks8VLMYjtb8H0YLnW-RWFS75hSNjDzhP4VGovI\42,\42https://lh3.ggpht.com/toFRVsafqH3uOe9URey0B1La21qx2ks8VLMYjtb8H0YLnW-RWFS75hSNjDzhP4VGovI\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.Rankarthai.TV.Online\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.Rankarthai.TV.Online\\u0026rdid\\u003dcom.Rankarthai.TV.Online\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,4.3961425,2696,\42https://lh5.ggpht.com/GhzQQ4BjEdrUu_JBn4ddo4jO0jiYezfUN06FaADco3F9Ocx_FnnpGKvN9PpGR3rjLQ\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh3.ggpht.com/ips_49oX_6hgqEUVG-G-qU5Qhje_xWPvgE73G7-v3bH3N2Sr8lxNzZLkt2Re3Eb1TA\42,\42https://lh3.ggpht.com/ips_49oX_6hgqEUVG-G-qU5Qhje_xWPvgE73G7-v3bH3N2Sr8lxNzZLkt2Re3Eb1TA\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh3.ggpht.com/Q-eCxSTJ5p2eGIfD3q5nzVZYSpIG1y6LAuf90K8VRztf2HB4_6rV538mRXYLWhRR8Ec\42,\42https://lh3.ggpht.com/Q-eCxSTJ5p2eGIfD3q5nzVZYSpIG1y6LAuf90K8VRztf2HB4_6rV538mRXYLWhRR8Ec\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh6.ggpht.com/j_v6Yawbbo16TUek0lwUww_EOAvu8N57xF1LJGivERW7Lk5aPg5g2FaCli38ivWgUA\42,\42https://lh6.ggpht.com/j_v6Yawbbo16TUek0lwUww_EOAvu8N57xF1LJGivERW7Lk5aPg5g2FaCli38ivWgUA\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh5.ggpht.com/Rdjtl402cXPIoSJLUN66Aw9lezGg4fkm4UtIyaD-cPpAjcY1naNEMl8wOs8p9vRoDSaP\42,\42https://lh5.ggpht.com/Rdjtl402cXPIoSJLUN66Aw9lezGg4fkm4UtIyaD-cPpAjcY1naNEMl8wOs8p9vRoDSaP\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh5.ggpht.com/EQvPDdjs05KAj-WijfC2QTjGIOtg171oyre8s7RdIoKc-CldpH0HM8KHlyory2pzEbiC\42,\42https://lh5.ggpht.com/EQvPDdjs05KAj-WijfC2QTjGIOtg171oyre8s7RdIoKc-CldpH0HM8KHlyory2pzEbiC\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh4.ggpht.com/NdGDEp975qyrTp9Vn-iKvz-GJtL9WO5YeL3tQ8X-AIBtwh8jtS4uZsyyov7lNCvp2fI\42,\42https://lh4.ggpht.com/NdGDEp975qyrTp9Vn-iKvz-GJtL9WO5YeL3tQ8X-AIBtwh8jtS4uZsyyov7lNCvp2fI\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/AzJaHZP2wl06qFgH5NrbHg75MO3mZ6StIUhiKVfB01SyOZDWKcOicC9OQNAv1u9WAAs\42,\42https://lh5.ggpht.com/AzJaHZP2wl06qFgH5NrbHg75MO3mZ6StIUhiKVfB01SyOZDWKcOicC9OQNAv1u9WAAs\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh6.ggpht.com/ciB-NyLxFzbI9eSTaf3FrujPyXB5MOQ1lhlDxaO74cVFWA4WODAOCNQFFavx5o82lpI\42,\42https://lh6.ggpht.com/ciB-NyLxFzbI9eSTaf3FrujPyXB5MOQ1lhlDxaO74cVFWA4WODAOCNQFFavx5o82lpI\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh4.ggpht.com/K-Aymo7AbUP2esZVthnvmgCPpFmQEmWhXXQVzT6j-9v-nu4SVmXniV2bQPHm_Voi5g\42,\42https://lh4.ggpht.com/K-Aymo7AbUP2esZVthnvmgCPpFmQEmWhXXQVzT6j-9v-nu4SVmXniV2bQPHm_Voi5g\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh4.ggpht.com/tiiJrkfsqQbJ0yHJef2Bn-HLZRLXZ-VqBBT0Dg_t9kkaPfL9dQK6nmi96-S0oOicGX0\42,\42https://lh4.ggpht.com/tiiJrkfsqQbJ0yHJef2Bn-HLZRLXZ-VqBBT0Dg_t9kkaPfL9dQK6nmi96-S0oOicGX0\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/jiq7i4hwtfUdSZj8u-O94xtcN1IN9lLm8WBpin_Z9QfPW5riTjBO-j4nxf3wng4DHnV5\42,\42https://lh4.ggpht.com/jiq7i4hwtfUdSZj8u-O94xtcN1IN9lLm8WBpin_Z9QfPW5riTjBO-j4nxf3wng4DHnV5\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/nAD_Ki-XJWu0OwnBQgGUAH82l3CgPgE2dfdOPWrd3sorr_7WE7vD6LWw9SirVPy48SM\42,\42https://lh3.ggpht.com/nAD_Ki-XJWu0OwnBQgGUAH82l3CgPgE2dfdOPWrd3sorr_7WE7vD6LWw9SirVPy48SM\42,\42\42,1,null,null,0,\42\42]\n,[1,12,null,null,\42https://lh4.ggpht.com/yhrmt301i8pYETR1d68FQ-zMlsmWFLkX1ouA2XaGNghIdwwxguGXxNBJ3CzxnCQlYtE\42,\42https://lh4.ggpht.com/yhrmt301i8pYETR1d68FQ-zMlsmWFLkX1ouA2XaGNghIdwwxguGXxNBJ3CzxnCQlYtE\42,\42\42,1,null,null,0,\42\42]\n,[1,13,null,null,\42https://lh6.ggpht.com/9KfqWrqs_Jq8qbgwzw2d0jcCTQ-hKsvVFEtNKEdk9rpbotaaiKa1PiHt4uhZZf8qOw\42,\42https://lh6.ggpht.com/9KfqWrqs_Jq8qbgwzw2d0jcCTQ-hKsvVFEtNKEdk9rpbotaaiKa1PiHt4uhZZf8qOw\42,\42\42,1,null,null,0,\42\42]\n,[1,14,null,null,\42https://lh3.ggpht.com/2i1XcbyNzdoSMNuc8rsAEylHifJH9UokUpIrWzeWXoyGVqlpd2ntqqSanYfd4WPqfLh6\42,\42https://lh3.ggpht.com/2i1XcbyNzdoSMNuc8rsAEylHifJH9UokUpIrWzeWXoyGVqlpd2ntqqSanYfd4WPqfLh6\42,\42\42,1,null,null,0,\42\42]\n,[1,15,null,null,\42https://lh3.ggpht.com/toFRVsafqH3uOe9URey0B1La21qx2ks8VLMYjtb8H0YLnW-RWFS75hSNjDzhP4VGovI\42,\42https://lh3.ggpht.com/toFRVsafqH3uOe9URey0B1La21qx2ks8VLMYjtb8H0YLnW-RWFS75hSNjDzhP4VGovI\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\0422,696\42,\0424.4\42,[[[\0421,832\42,\042100%\42]\n,[\042482\42,\04226%\42]\n,[\042163\42,\428%\42]\n,[\04256\42,\0423%\42]\n,[\042163\42,\428%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Rankarthai\42,\42/store/apps/developer?id\\u003dRankarthai\42]\n,[[[\42Network communication\42,[[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n,[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n,[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n]\n,[[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42August 1, 2013\42,1,\042661k\42,\042500,000\42,\0421,000,000\42,\0421.0.15\42,0,\0423.0\42,,[\42New version 1.0.15\42,\42- Add system backup server.\42,\42- Design modifications for TV android box.\42,\42- Fix bugs.\42,\42Recommend: When viewed horizontally. To view full screen. slide left the store channel.\42]\n,\42https://www.google.com/url?q\\u003dhttp://android.rankathai.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNFtb1EOKfX35BIpSiZwkuRlGTsDAw\42,\42https://www.google.com/url?q\\u003dhttp://android.rankathai.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNFtb1EOKfX35BIpSiZwkuRlGTsDAw\42,\42support@rankathai.com\42]\n}]\n','[\42com.rhythmnewmedia.tvdotcom\42,\42com.rhythmnewmedia.tvdotcom\42,1,3,\42/store/apps/details?id\\u003dcom.rhythmnewmedia.tvdotcom\42,\42/store/apps/details?id\\u003dcom.rhythmnewmedia.tvdotcom\42,\42https://play.google.com/store/apps/details?id\\u003dcom.rhythmnewmedia.tvdotcom\42,\42https://market.android.com/details?id\\u003dcom.rhythmnewmedia.tvdotcom\42,\42TV.com\42,\42TV.com brings personal TV to your phone on WiFi and cellular networks. Access the videos you want anywhere you go including full episodes...and it’s free! Get video from CBS, The CW, CNET, ET, Showtime, CBS News, CBS Sports and much more! Watch your favorite shows anywhere, anytime on TV.com. No subscription fees apply.\42,null,[[4,0,null,null,\42http://lh3.ggpht.com/tvhSeCfKGen5s_Q27r9XwXDZKzLZyCwEnftU7g_EjiIok5DRPLSYRPT7yPilsvuW2dW3\42,\42https://lh3.ggpht.com/tvhSeCfKGen5s_Q27r9XwXDZKzLZyCwEnftU7g_EjiIok5DRPLSYRPT7yPilsvuW2dW3\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh3.ggpht.com/5Hj4nOzlq8MAmFL-B_9MYe-5Zoh933sQQpPHxDldUvQhsMan6UrGMZhxDIz1yRbIVw\42,\42https://lh3.ggpht.com/5Hj4nOzlq8MAmFL-B_9MYe-5Zoh933sQQpPHxDldUvQhsMan6UrGMZhxDIz1yRbIVw\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42http://lh5.ggpht.com/Q89VRyEloydQHo-jb9kf0cdlXenVdEaPMy0kuxpWbxpmq2W3ibRvcYqRbMSkcY5GwmU\42,\42https://lh5.ggpht.com/Q89VRyEloydQHo-jb9kf0cdlXenVdEaPMy0kuxpWbxpmq2W3ibRvcYqRbMSkcY5GwmU\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh3.ggpht.com/DJPCGhdGKOuZsShX3kSWxNF7wZRUtDF1Tq-2xqirWFBCwOmmRr-pn3eXEazh-sqX0wo\42,\42https://lh3.ggpht.com/DJPCGhdGKOuZsShX3kSWxNF7wZRUtDF1Tq-2xqirWFBCwOmmRr-pn3eXEazh-sqX0wo\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh4.ggpht.com/tAUX-QSaABJPWY2x7chD7qAEZq-3VWXJu1A1ZzRp0YP8QBWXnnpFOnvGbQdhmBVYqhrW\42,\42https://lh4.ggpht.com/tAUX-QSaABJPWY2x7chD7qAEZq-3VWXJu1A1ZzRp0YP8QBWXnnpFOnvGbQdhmBVYqhrW\42,\42\42,1,null,null,0,\42\42]\n,[0,0,null,null,\42http://lh3.ggpht.com/WS8yxae2d6IV4CL-BJMvuWMa-4E8vy5r7yoIfgnGrVJJUnq5r8_c-bakT8U4DfGGgQ\42,\42https://lh3.ggpht.com/WS8yxae2d6IV4CL-BJMvuWMa-4E8vy5r7yoIfgnGrVJJUnq5r8_c-bakT8U4DfGGgQ\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.rhythmnewmedia.tvdotcom\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.rhythmnewmedia.tvdotcom\\u0026rdid\\u003dcom.rhythmnewmedia.tvdotcom\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.7547603,51309,\42https://lh3.ggpht.com/tvhSeCfKGen5s_Q27r9XwXDZKzLZyCwEnftU7g_EjiIok5DRPLSYRPT7yPilsvuW2dW3\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42http://lh5.ggpht.com/Q89VRyEloydQHo-jb9kf0cdlXenVdEaPMy0kuxpWbxpmq2W3ibRvcYqRbMSkcY5GwmU\42,\42https://lh5.ggpht.com/Q89VRyEloydQHo-jb9kf0cdlXenVdEaPMy0kuxpWbxpmq2W3ibRvcYqRbMSkcY5GwmU\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh3.ggpht.com/DJPCGhdGKOuZsShX3kSWxNF7wZRUtDF1Tq-2xqirWFBCwOmmRr-pn3eXEazh-sqX0wo\42,\42https://lh3.ggpht.com/DJPCGhdGKOuZsShX3kSWxNF7wZRUtDF1Tq-2xqirWFBCwOmmRr-pn3eXEazh-sqX0wo\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh4.ggpht.com/tAUX-QSaABJPWY2x7chD7qAEZq-3VWXJu1A1ZzRp0YP8QBWXnnpFOnvGbQdhmBVYqhrW\42,\42https://lh4.ggpht.com/tAUX-QSaABJPWY2x7chD7qAEZq-3VWXJu1A1ZzRp0YP8QBWXnnpFOnvGbQdhmBVYqhrW\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\04251,309\42,\0423.8\42,[[[\04222,173\42,\042100%\42]\n,[\04211,839\42,\04253%\42]\n,[\0426,907\42,\04231%\42]\n,[\0423,321\42,\04214%\42]\n,[\0427,069\42,\04231%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42CBS Interactive, Inc.\42,\42/store/apps/developer?id\\u003dCBS+Interactive,+Inc.\42]\n,[[[\42Your location\42,[[\42precise location (GPS and network-based)\42,\42Allows the app to get your precise location using the Global Positioning System (GPS) or network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine where you are, and may consume additional battery power.\42,1]\n,[\42approximate location (network-based)\42,\42Allows the app to get your approximate location. This location is derived by location services using network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine approximately where you are.\42,1]\n]\n]\n,[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n,[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n]\n,[[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n,[\42control vibration\42,\42Allows the app to control the vibrator.\42,0]\n]\n]\n,[\42Your applications information\42,[[\42run at startup\42,\42Allows the app to have itself started as soon as the system has finished booting. This can make it take longer to start the device and allow the app to slow down the overall device by always running.\42,0]\n]\n]\n,[\42Audio Settings\42,[[\42change your audio settings\42,\42Allows the app to modify global audio settings such as volume and which speaker is used for output.\42,0]\n]\n]\n]\n,[]\n]\n,\42May 9, 2012\42,3,\0421.1M\42,\0425,000,000\42,\04210,000,000\42,\0421.9\42,0,\0421.6\42,,[\42Various Bug Fixes\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.cbs.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNHhk7mJXmpPBxZViB0BFO9uvdswkA\42,,\42tv.com-mobile@cbs.com\42]\n}]\n','[\42com.cisi.activities\42,\42com.cisi.activities\42,1,3,\42/store/apps/details?id\\u003dcom.cisi.activities\42,\42/store/apps/details?id\\u003dcom.cisi.activities\42,\42https://play.google.com/store/apps/details?id\\u003dcom.cisi.activities\42,\42https://market.android.com/details?id\\u003dcom.cisi.activities\42,\42Can I Stream It?\42,\42The fastest and most awesome way to find streaming **movies and tv shows** to rent or buy, across most major services. Never waste time checking each individual service again! \\u003cp\\u003e\\u0026quot;It\\u0026#39;s like Kayak for streaming services.\\u0026quot; - Roberto Baldwin, Gizmodo.com 11/01/2011 \\u003cp\\u003eCanIStream.it currently searches iTunes, Hulu, Netflix, Amazon Instant Video, VUDU, Crackle, EPIX, Streampix, Redbox, and XFinity premium channels; we are continually adding new services to the list, so remember to check back often. \\u003cp\\u003eIf the movie you are looking for is not available, you can: \\u003cbr\\u003e-Set up reminders, or \\u003cbr\\u003e-Push notifications \\u003cp\\u003eSimply select the movie and the service, and the moment it becomes available for your chosen method of viewing, we will inform you. \\u003cp\\u003eAnd the best part – it’s FREE!\\u003cp\\u003eServices currently searched:\\u003cbr\\u003e- Netflix (Instant and DVD)\\u003cbr\\u003e- Amazon (Prime Instant, Rental, Purchase, DVD, Bluray)\\u003cbr\\u003e- Hulu (including Plus)\\u003cbr\\u003e- YouTube (free / rental)\\u003cbr\\u003e- EPIX\\u003cbr\\u003e- Streampix\\u003cbr\\u003e- Vudu (rental / purchase)\\u003cbr\\u003e- Blockbuster (rental / purchase)\\u003cbr\\u003e- Android (rental)\\u003cbr\\u003e- Redbox (DVD rentals)\\u003cbr\\u003e- XFinity (HBO, Showtime, Encore, Starz, etc)\\u003cp\\u003eVisit us on the web at CanIStream.It\42,null,[[4,0,null,null,\42http://lh6.ggpht.com/Uv4xy2V5i4nslIWqd0aqWCsC519ylM-EbBz9OL_WMjm23I1_CEF2E2aRXzo8I0HANms\42,\42https://lh6.ggpht.com/Uv4xy2V5i4nslIWqd0aqWCsC519ylM-EbBz9OL_WMjm23I1_CEF2E2aRXzo8I0HANms\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh3.ggpht.com/nDs2RFseRKGlWVw1Y0LxThPKm5uxslgPQlo2UHcN_HQYkfJ5X-8c6xzlO4cmnWTJml4\42,\42https://lh3.ggpht.com/nDs2RFseRKGlWVw1Y0LxThPKm5uxslgPQlo2UHcN_HQYkfJ5X-8c6xzlO4cmnWTJml4\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42http://lh3.ggpht.com/mmgJVWBFDkhZfQv9o4N0baCNrC-BT7WWV2XuMXjUoKYHl3aPYnSpqQkmxmiotGfwLfmV\42,\42https://lh3.ggpht.com/mmgJVWBFDkhZfQv9o4N0baCNrC-BT7WWV2XuMXjUoKYHl3aPYnSpqQkmxmiotGfwLfmV\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh6.ggpht.com/Ju1qk-uk3ShSZUE_afQ8qZKgfcmPWIvkbdhNg4fDmwpDZt7sM275kQsSxInl4ktSfUoP\42,\42https://lh6.ggpht.com/Ju1qk-uk3ShSZUE_afQ8qZKgfcmPWIvkbdhNg4fDmwpDZt7sM275kQsSxInl4ktSfUoP\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh4.ggpht.com/v_TEioGZ12n1L0uBEOnUzsL6SgiP0Um_18z8EIp-9yzwRpoTyNaH9GQB8wwWN6S20es\42,\42https://lh4.ggpht.com/v_TEioGZ12n1L0uBEOnUzsL6SgiP0Um_18z8EIp-9yzwRpoTyNaH9GQB8wwWN6S20es\42,\42\42,1,null,null,0,\42\42]\n,[0,0,null,null,\42https://lh5.ggpht.com/cCURGs9oDfQW0NUqII-T-IZeTzxuLi-LkUW9dMQT9V3uxy41-SJcohHc1_vg2aYjlw\42,\42https://lh5.ggpht.com/cCURGs9oDfQW0NUqII-T-IZeTzxuLi-LkUW9dMQT9V3uxy41-SJcohHc1_vg2aYjlw\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.cisi.activities\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.cisi.activities\\u0026rdid\\u003dcom.cisi.activities\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.8755426,691,\42https://lh6.ggpht.com/Uv4xy2V5i4nslIWqd0aqWCsC519ylM-EbBz9OL_WMjm23I1_CEF2E2aRXzo8I0HANms\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42http://lh3.ggpht.com/mmgJVWBFDkhZfQv9o4N0baCNrC-BT7WWV2XuMXjUoKYHl3aPYnSpqQkmxmiotGfwLfmV\42,\42https://lh3.ggpht.com/mmgJVWBFDkhZfQv9o4N0baCNrC-BT7WWV2XuMXjUoKYHl3aPYnSpqQkmxmiotGfwLfmV\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh6.ggpht.com/Ju1qk-uk3ShSZUE_afQ8qZKgfcmPWIvkbdhNg4fDmwpDZt7sM275kQsSxInl4ktSfUoP\42,\42https://lh6.ggpht.com/Ju1qk-uk3ShSZUE_afQ8qZKgfcmPWIvkbdhNg4fDmwpDZt7sM275kQsSxInl4ktSfUoP\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh4.ggpht.com/v_TEioGZ12n1L0uBEOnUzsL6SgiP0Um_18z8EIp-9yzwRpoTyNaH9GQB8wwWN6S20es\42,\42https://lh4.ggpht.com/v_TEioGZ12n1L0uBEOnUzsL6SgiP0Um_18z8EIp-9yzwRpoTyNaH9GQB8wwWN6S20es\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\042691\42,\0423.9\42,[[[\042313\42,\042100%\42]\n,[\042192\42,\04261%\42]\n,[\04260\42,\04219%\42]\n,[\04239\42,\04212%\42]\n,[\4287\42,\04227%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Urban Pixels LLC\42,\42/store/apps/developer?id\\u003dUrban+Pixels+LLC\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n,[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n]\n,[[\42Your accounts\42,[[\42find accounts on the device\42,\42Allows the app to get the list of accounts known by the device. This may include any accounts created by applications you have installed.\42,0]\n]\n]\n,[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42control vibration\42,\42Allows the app to control the vibrator.\42,0]\n,[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42February 18, 2013\42,1,\0421.5M\42,\042100,000\42,\042500,000\42,\0422.2\42,0,\0422.2\42,,[\0422.1 Small update.\42,\42Bug and crash fixes.\42,\0422.0 Big Update!\42,\42Can I Stream It? now supports TV Shows! Search for a TV show name, browse through it\47s episodes, find availability for each episode. Set a reminder if an episode is not available and we\47ll send you an alert when it becomes available.\42,\42You can also browse Most Popular movies on Netflix, Hulu, Amazon, Google Play, and more.\42,\42For help, email support at: canistreamit@gmail.com\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.CanIStream.it/\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNH3BQuacWuj3y6EG7tNeDV7EKZcsg\42,\42https://www.google.com/url?q\\u003dhttp://www.canistream.it/pages/privacy\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNFS7q9iQpSsVlNYVI0stgMo1fk6sA\42,\42info@urbanpixels.com\42]\n}]\n','[\42com.viki.android\42,\42com.viki.android\42,1,3,\42/store/apps/details?id\\u003dcom.viki.android\42,\42/store/apps/details?id\\u003dcom.viki.android\42,\42https://play.google.com/store/apps/details?id\\u003dcom.viki.android\42,\42https://market.android.com/details?id\\u003dcom.viki.android\42,\42Viki: TV, Movie, Music, KDrama\42,\42GLOBAL TV POWERED BY FANS\\u003cp\\u003eWatch the best TV shows, movies, music videos, variety selection of Korean dramas, and other premium content in high quality, translated into more than 150 languages by a community of avid fans. Top titles include the hottest Korean dramas, Japanese anime, American cartoons, NBC Universal, BBC, History Channel, A\\u0026amp;E, Bravo and Bio TV shows, as well as movies from Bollywood and Latin America to Africa (note: not all content available for all regions). \\u003cp\\u003e- Discover great shows from around the world in \\u0026quot;Featured\\u0026quot; and \\u0026quot;Coming Soon\\u0026quot;\\u003cbr\\u003e- Watch in your language \\u003cbr\\u003e- Music videos from around the world, subbed in your language (K-pop, hip-hop and more!) \\u003cbr\\u003e- Auto Play recommended videos for TV, Music and News - watch uninterrupted! \\u003cbr\\u003e- Timed comments - watch the video with comments from the Viki community\\u003cbr\\u003e- Classic Japanese anime\\u003cbr\\u003e- Classic American cartoons\\u003cbr\\u003e- Popular Korean dramas\\u003cbr\\u003e- Facebook Connect, invite your friends, and publish videos to your timeline\\u003cbr\\u003e- Search by country and by genre\\u003cbr\\u003e- Share your favorites with friends via Facebook, Twitter, SMS and email \\u003cbr\\u003e- Stream videos anywhere and anytime with a WiFi or 3G connection\\u003cp\\u003eDownload Viki now!\\u003cp\\u003eFor questions, comments or suggestions, please email us at \\u003ca href\\u003d\\\42mailto:mobile@viki.com\\\42\\u003emobile@viki.com\\u003c/a\\u003e.\\u003cp\\u003eLearn more about Viki by visiting our website: \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://www.viki.com\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNH4ywGImHFAQ60-m7NjYX9Dwb6ONw\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://www.viki.com\\u003c/a\\u003e\\u003cp\\u003eGet access to even more content by becoming a Qualified Contributor. Learn more at www.viki.com/community. \\u003cp\\u003ePLEASE NOTE: Due to the nature of some licenses from content owners, videos may not be available in all regions.\42,null,[[4,0,null,null,\42http://lh6.ggpht.com/s3_8Et20lDhPWKgj03-TxKmBGrNYk0THrQCYPbiw7nI-b0kzVXmLGPjpzc-TjlDtdxg\42,\42https://lh6.ggpht.com/s3_8Et20lDhPWKgj03-TxKmBGrNYk0THrQCYPbiw7nI-b0kzVXmLGPjpzc-TjlDtdxg\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42https://lh4.ggpht.com/MeSCQS0yWUViR-JngEKU1HPN-4QNt6VP4WEP4DiXjoWbhyK08HK7P5t4jIMAU8jX3Wg\42,\42https://lh4.ggpht.com/MeSCQS0yWUViR-JngEKU1HPN-4QNt6VP4WEP4DiXjoWbhyK08HK7P5t4jIMAU8jX3Wg\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42http://lh3.ggpht.com/Rtb7dveMo8hSrPpvNK5NP52zEWSDmujntnq_3mDefvDNSqwfeXZEfo_wKnnQr4I0CmPh\42,\42https://lh3.ggpht.com/Rtb7dveMo8hSrPpvNK5NP52zEWSDmujntnq_3mDefvDNSqwfeXZEfo_wKnnQr4I0CmPh\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh6.ggpht.com/hbQzO6jpxjtZJAcasVh5BFtLzRMcs-q4VUsPPBecT7jDDw18dEub4AaMP3h-Fs30EA\42,\42https://lh6.ggpht.com/hbQzO6jpxjtZJAcasVh5BFtLzRMcs-q4VUsPPBecT7jDDw18dEub4AaMP3h-Fs30EA\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh5.ggpht.com/1HQex-bggBh2h3jASHoiLpqWMl5Dj8o4SJW_FIcZp7w4I5K9hQflGgvvUFQB0_yhHsk\42,\42https://lh5.ggpht.com/1HQex-bggBh2h3jASHoiLpqWMl5Dj8o4SJW_FIcZp7w4I5K9hQflGgvvUFQB0_yhHsk\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42http://lh6.ggpht.com/txua1UzpAZtxfQj9jVXloHHrWqjHouGtDIUc3lmvgS89VZbpnSEV-8fID9Ic5QMDZro\42,\42https://lh6.ggpht.com/txua1UzpAZtxfQj9jVXloHHrWqjHouGtDIUc3lmvgS89VZbpnSEV-8fID9Ic5QMDZro\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/Tf6Gytjb3kx1hFYevkXV6raZVV4D-jGhjGnWGxghzIgqAqBQAKNhQ_mTK9ZKzLYFGaM\42,\42https://lh4.ggpht.com/Tf6Gytjb3kx1hFYevkXV6raZVV4D-jGhjGnWGxghzIgqAqBQAKNhQ_mTK9ZKzLYFGaM\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh5.ggpht.com/vUFH39de8avyhxYyoz4ia8ophBaaQVdPwdGq38NGFSaYz2y1iaF1W6T6n-_SK_RytA\42,\42https://lh5.ggpht.com/vUFH39de8avyhxYyoz4ia8ophBaaQVdPwdGq38NGFSaYz2y1iaF1W6T6n-_SK_RytA\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/BK6BZKh0-WY0TLCQytefc6tcj-6qt3Z7I3IrECuWI5hu7dMakKTKHCRCcLrFTz1gI0f8\42,\42https://lh5.ggpht.com/BK6BZKh0-WY0TLCQytefc6tcj-6qt3Z7I3IrECuWI5hu7dMakKTKHCRCcLrFTz1gI0f8\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh6.ggpht.com/94tyife2iVMrzBBLg_MSrRBRl5cHBvt2vTksebHWjX54AQn6JJZTuMXHpRvS9xkNVqw\42,\42https://lh6.ggpht.com/94tyife2iVMrzBBLg_MSrRBRl5cHBvt2vTksebHWjX54AQn6JJZTuMXHpRvS9xkNVqw\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42http://lh4.ggpht.com/_dxd0cvvhGUFrJbH5JdHWoT3ss55dK8DyZf0Aip4MtwqMMbHSevahMQypAv-WxmjG7Q\42,\42https://lh4.ggpht.com/_dxd0cvvhGUFrJbH5JdHWoT3ss55dK8DyZf0Aip4MtwqMMbHSevahMQypAv-WxmjG7Q\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42http://lh4.ggpht.com/zhcBmKZi4T72fs4XhhafvEmrVAa9tC2uqwGOK9DSsmj8lF3FZuPq26zScdVpm-ULEWU\42,\42https://lh4.ggpht.com/zhcBmKZi4T72fs4XhhafvEmrVAa9tC2uqwGOK9DSsmj8lF3FZuPq26zScdVpm-ULEWU\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42http://lh6.ggpht.com/BKgTznDeMMSzQyr_cAagJi4rmBOI9TM8Ev7zJl3ElFiocoDRsg_iRkdR1pteDXv25s8Q\42,\42https://lh6.ggpht.com/BKgTznDeMMSzQyr_cAagJi4rmBOI9TM8Ev7zJl3ElFiocoDRsg_iRkdR1pteDXv25s8Q\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42http://lh4.ggpht.com/gJKv3ARvEDXLWbDm6s7bJxErNcTILVfbQzC99nsOfi_wuYgS-1clfPtSb744is3PjeyW\42,\42https://lh4.ggpht.com/gJKv3ARvEDXLWbDm6s7bJxErNcTILVfbQzC99nsOfi_wuYgS-1clfPtSb744is3PjeyW\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.viki.android\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.viki.android\\u0026rdid\\u003dcom.viki.android\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,4.416275,37468,\42https://lh6.ggpht.com/s3_8Et20lDhPWKgj03-TxKmBGrNYk0THrQCYPbiw7nI-b0kzVXmLGPjpzc-TjlDtdxg\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42http://lh3.ggpht.com/Rtb7dveMo8hSrPpvNK5NP52zEWSDmujntnq_3mDefvDNSqwfeXZEfo_wKnnQr4I0CmPh\42,\42https://lh3.ggpht.com/Rtb7dveMo8hSrPpvNK5NP52zEWSDmujntnq_3mDefvDNSqwfeXZEfo_wKnnQr4I0CmPh\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh6.ggpht.com/hbQzO6jpxjtZJAcasVh5BFtLzRMcs-q4VUsPPBecT7jDDw18dEub4AaMP3h-Fs30EA\42,\42https://lh6.ggpht.com/hbQzO6jpxjtZJAcasVh5BFtLzRMcs-q4VUsPPBecT7jDDw18dEub4AaMP3h-Fs30EA\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh5.ggpht.com/1HQex-bggBh2h3jASHoiLpqWMl5Dj8o4SJW_FIcZp7w4I5K9hQflGgvvUFQB0_yhHsk\42,\42https://lh5.ggpht.com/1HQex-bggBh2h3jASHoiLpqWMl5Dj8o4SJW_FIcZp7w4I5K9hQflGgvvUFQB0_yhHsk\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42http://lh6.ggpht.com/txua1UzpAZtxfQj9jVXloHHrWqjHouGtDIUc3lmvgS89VZbpnSEV-8fID9Ic5QMDZro\42,\42https://lh6.ggpht.com/txua1UzpAZtxfQj9jVXloHHrWqjHouGtDIUc3lmvgS89VZbpnSEV-8fID9Ic5QMDZro\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/Tf6Gytjb3kx1hFYevkXV6raZVV4D-jGhjGnWGxghzIgqAqBQAKNhQ_mTK9ZKzLYFGaM\42,\42https://lh4.ggpht.com/Tf6Gytjb3kx1hFYevkXV6raZVV4D-jGhjGnWGxghzIgqAqBQAKNhQ_mTK9ZKzLYFGaM\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh5.ggpht.com/vUFH39de8avyhxYyoz4ia8ophBaaQVdPwdGq38NGFSaYz2y1iaF1W6T6n-_SK_RytA\42,\42https://lh5.ggpht.com/vUFH39de8avyhxYyoz4ia8ophBaaQVdPwdGq38NGFSaYz2y1iaF1W6T6n-_SK_RytA\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/BK6BZKh0-WY0TLCQytefc6tcj-6qt3Z7I3IrECuWI5hu7dMakKTKHCRCcLrFTz1gI0f8\42,\42https://lh5.ggpht.com/BK6BZKh0-WY0TLCQytefc6tcj-6qt3Z7I3IrECuWI5hu7dMakKTKHCRCcLrFTz1gI0f8\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh6.ggpht.com/94tyife2iVMrzBBLg_MSrRBRl5cHBvt2vTksebHWjX54AQn6JJZTuMXHpRvS9xkNVqw\42,\42https://lh6.ggpht.com/94tyife2iVMrzBBLg_MSrRBRl5cHBvt2vTksebHWjX54AQn6JJZTuMXHpRvS9xkNVqw\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42http://lh4.ggpht.com/_dxd0cvvhGUFrJbH5JdHWoT3ss55dK8DyZf0Aip4MtwqMMbHSevahMQypAv-WxmjG7Q\42,\42https://lh4.ggpht.com/_dxd0cvvhGUFrJbH5JdHWoT3ss55dK8DyZf0Aip4MtwqMMbHSevahMQypAv-WxmjG7Q\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42http://lh4.ggpht.com/zhcBmKZi4T72fs4XhhafvEmrVAa9tC2uqwGOK9DSsmj8lF3FZuPq26zScdVpm-ULEWU\42,\42https://lh4.ggpht.com/zhcBmKZi4T72fs4XhhafvEmrVAa9tC2uqwGOK9DSsmj8lF3FZuPq26zScdVpm-ULEWU\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42http://lh6.ggpht.com/BKgTznDeMMSzQyr_cAagJi4rmBOI9TM8Ev7zJl3ElFiocoDRsg_iRkdR1pteDXv25s8Q\42,\42https://lh6.ggpht.com/BKgTznDeMMSzQyr_cAagJi4rmBOI9TM8Ev7zJl3ElFiocoDRsg_iRkdR1pteDXv25s8Q\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42http://lh4.ggpht.com/gJKv3ARvEDXLWbDm6s7bJxErNcTILVfbQzC99nsOfi_wuYgS-1clfPtSb744is3PjeyW\42,\42https://lh4.ggpht.com/gJKv3ARvEDXLWbDm6s7bJxErNcTILVfbQzC99nsOfi_wuYgS-1clfPtSb744is3PjeyW\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\04237,468\42,\0424.4\42,[[[\04225,549\42,\042100%\42]\n,[\0426,898\42,\04226%\42]\n,[\0422,193\42,\428%\42]\n,[\042725\42,\0422%\42]\n,[\0422,103\42,\428%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Viki, Inc\42,\42/store/apps/developer?id\\u003dViki,+Inc\42]\n,[[[\42Your location\42,[[\42approximate location (network-based)\42,\42Allows the app to get your approximate location. This location is derived by location services using network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine approximately where you are.\42,1]\n]\n]\n,[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n,[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n,[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n,[\42Your applications information\42,[[\42retrieve running apps\42,\42Allows the app to retrieve information about currently and recently running tasks. This may allow the app to discover information about which applications are used on the device.\42,1]\n]\n]\n]\n,[[\42Your accounts\42,[[\42find accounts on the device\42,\42Allows the app to get the list of accounts known by the device. This may include any accounts created by applications you have installed.\42,0]\n]\n]\n,[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42control vibration\42,\42Allows the app to control the vibrator.\42,0]\n,[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42July 22, 2013\42,2,\0426.6M\42,\0421,000,000\42,\0425,000,000\42,\0422.7.0\42,0,\0422.2\42,,[\42* New User Guide\42,\42* Notifications\42,\42* Bug fixes (eg can\47t connect to Facebook)\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.viki.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNH4ywGImHFAQ60-m7NjYX9Dwb6ONw\42,,\42mobile@viki.com\42]\n}]\n','[\42com.imdb.mobile\42,\42com.imdb.mobile\42,1,3,\42/store/apps/details?id\\u003dcom.imdb.mobile\42,\42/store/apps/details?id\\u003dcom.imdb.mobile\42,\42https://play.google.com/store/apps/details?id\\u003dcom.imdb.mobile\42,\42https://market.android.com/details?id\\u003dcom.imdb.mobile\42,\42IMDb Movies \\u0026 TV\42,\42Search the world\\u0026#39;s largest collection:\\u003cbr\\u003e· Over 2 million movie and TV titles\\u003cbr\\u003e· Over 4 million celebrities, actors, actresses, directors and other crew members\\u003cp\\u003eRate:\\u003cbr\\u003e· Rate movies and TV shows\\u003cbr\\u003e· Sign in with your IMDb account or your Facebook account\\u003cp\\u003eView:\\u003cbr\\u003e· Movie trailers\\u003cbr\\u003e· User reviews for movies and TV shows\\u003cbr\\u003e· Critics reviews for movies and TV shows\\u003cbr\\u003e· Quotes, trivia and goofs about movies and celebrities\\u003cbr\\u003e· Your browse and search history on IMDb\\u003cp\\u003eLook up:\\u003cbr\\u003e· Movie showtimes at local theaters near you\\u003cbr\\u003e· TV listings for your local time zone\\u003cbr\\u003e· Recaps of TV shows from previous night\\u003cbr\\u003e· Upcoming movies\\u003cbr\\u003e· Latest entertainment news from hundreds of media outlets\\u003cp\\u003eNotifications:\\u003cbr\\u003e· Choose \\u0026quot;notify me\\u0026quot; on titles and names you\\u0026#39;re interested in to be notified of trailers, photos, showtimes, and news.\\u003cp\\u003eExplore popular charts:\\u003cbr\\u003e· Best Picture - award winners\\u003cbr\\u003e· Top rated movies of all time (IMDb Top 250)\\u003cbr\\u003e· Most popular movies of the day on IMDb (MOVIEmeter)\\u003cbr\\u003e· Most popular celebrities of the day on IMDb (STARmeter)\\u003cbr\\u003e· Lowest rated movies of all time (IMDb Bottom 100)\\u003cbr\\u003e· Most popular TV shows\\u003cbr\\u003e· US Box office results\\u003cbr\\u003e· Celebrity birthdays\\u003cp\\u003eAvailability:\\u003cbr\\u003e· IMDb is available worldwide in English (US/UK), Spanish, German, French, Portuguese, Italian, Japanese, Korean and Chinese.\\u003cbr\\u003e \\u003cbr\\u003eWe hope your IMDb experience on your Android phone and Android tablet continues to be entertaining.\\u003cp\\u003eIf you have questions about why we require certain permissions, please see our Android app FAQ page: \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttp://imdb.com/androidfaq\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNFqixq_rajPdxxKjaWEop0l-B-BDA\\\42 target\\u003d\\\42_blank\\\42\\u003ehttp://imdb.com/androidfaq\\u003c/a\\u003e\\u003cp\\u003eGalaxy Note users, if you are having trouble please go to the phone settings, then select \\u0026quot;language and keyboard.\\u0026quot; The language setting will show English, but click to select it and you will see it is not English. Select English.\\u003cp\\u003eThank you\\u003cbr\\u003e-IMDb Android team\42,null,[[4,0,null,null,\42https://lh6.ggpht.com/BFD_zfFU4xN17xVdmkpqs05oyU2o0JT0gBZhyQD4xBAs0AaXbpZQBJIun95GHhwgC6U\42,\42https://lh6.ggpht.com/BFD_zfFU4xN17xVdmkpqs05oyU2o0JT0gBZhyQD4xBAs0AaXbpZQBJIun95GHhwgC6U\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh5.ggpht.com/VMcFlnu5rl11bqMXViAWNz1YywISN6aSFBhyC5JOmDqpyJY8NChqYi4GzSy-flsvs-m-\42,\42https://lh5.ggpht.com/VMcFlnu5rl11bqMXViAWNz1YywISN6aSFBhyC5JOmDqpyJY8NChqYi4GzSy-flsvs-m-\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh6.ggpht.com/mPmVBfxSmp2iAYTEFnUxz04T8d1ckNFvToUwzZeVvsg7Sia0bjF7PGkLErM0-U07rw\42,\42https://lh6.ggpht.com/mPmVBfxSmp2iAYTEFnUxz04T8d1ckNFvToUwzZeVvsg7Sia0bjF7PGkLErM0-U07rw\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/RTCScrIlpYRYjpkaPwReb34SHayLr415fNQlpyY1wVVtu1joQ_AhXpbDHpb7poG54w8\42,\42https://lh6.ggpht.com/RTCScrIlpYRYjpkaPwReb34SHayLr415fNQlpyY1wVVtu1joQ_AhXpbDHpb7poG54w8\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh5.ggpht.com/Eal9fqgqYsuKo6qcm7peQMdphGbLQcuw_sozdIqY4uYX7bF9rwBE_fF1qsK4iz9vWw\42,\42https://lh5.ggpht.com/Eal9fqgqYsuKo6qcm7peQMdphGbLQcuw_sozdIqY4uYX7bF9rwBE_fF1qsK4iz9vWw\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/CF1x9s0QojZmP8rw5djayW8IAsK27zTz3c5KYmQtGMsGjCeYRAChgC3qAu_dZEt4asU\42,\42https://lh6.ggpht.com/CF1x9s0QojZmP8rw5djayW8IAsK27zTz3c5KYmQtGMsGjCeYRAChgC3qAu_dZEt4asU\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/xcJhita2Hzy0WMyd7fLpOWX3sZRgfZt92268ynaj56oPmdWTiEFTeH6zDOThv4xO0FE\42,\42https://lh4.ggpht.com/xcJhita2Hzy0WMyd7fLpOWX3sZRgfZt92268ynaj56oPmdWTiEFTeH6zDOThv4xO0FE\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh4.ggpht.com/OOKCgNtQ_yQKR2Uio3o0aAtV3G_F5UYKFdz_pcGuDE-yTyjtBBc7g96YVqod_kXoNpw\42,\42https://lh4.ggpht.com/OOKCgNtQ_yQKR2Uio3o0aAtV3G_F5UYKFdz_pcGuDE-yTyjtBBc7g96YVqod_kXoNpw\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/nvjAE2HTy6S3U0V2KsRC92mOFAX6zun7I-LkLvjlfzs5FahjiXASzENxgFUBFkeZsQ\42,\42https://lh5.ggpht.com/nvjAE2HTy6S3U0V2KsRC92mOFAX6zun7I-LkLvjlfzs5FahjiXASzENxgFUBFkeZsQ\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh3.ggpht.com/TOGFxlLn2HqSXLIDI9qIKCO6mZSac80lsHUZLOx84AFrLW1-WLBCuSjXh2pnh8IIvA\42,\42https://lh3.ggpht.com/TOGFxlLn2HqSXLIDI9qIKCO6mZSac80lsHUZLOx84AFrLW1-WLBCuSjXh2pnh8IIvA\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh5.ggpht.com/5THyDtrQv39o_BMdiJqtfvATmPSVEbeAeK08-7pAC5WlZO5Q9zXUhH7gsKgxZDl5ww\42,\42https://lh5.ggpht.com/5THyDtrQv39o_BMdiJqtfvATmPSVEbeAeK08-7pAC5WlZO5Q9zXUhH7gsKgxZDl5ww\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh6.ggpht.com/Xs25rZLfOB0lF3OVNXMNMTUeSPBJQlLPJgF1srjIAfbpQi94dzhzLYNqd7XrRnOSwg\42,\42https://lh6.ggpht.com/Xs25rZLfOB0lF3OVNXMNMTUeSPBJQlLPJgF1srjIAfbpQi94dzhzLYNqd7XrRnOSwg\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh6.ggpht.com/zUlRzGEKZBfU32Y3bEmD8Rurwqt1A1F0kTPjIrfKKOFy7SbKYLYMJsbpi0Aaobf0RdM\42,\42https://lh6.ggpht.com/zUlRzGEKZBfU32Y3bEmD8Rurwqt1A1F0kTPjIrfKKOFy7SbKYLYMJsbpi0Aaobf0RdM\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/HIESqDa1AR3YS4_4SNh45Kt9d8-bYXp8KIuvbNUym4exM3MjPgQ1BnWat4XX8R7WcQs\42,\42https://lh3.ggpht.com/HIESqDa1AR3YS4_4SNh45Kt9d8-bYXp8KIuvbNUym4exM3MjPgQ1BnWat4XX8R7WcQs\42,\42\42,1,null,null,0,\42\42]\n,[1,12,null,null,\42https://lh5.ggpht.com/GJ16FWc5qQxPP0WOZI-cmq01OR1DqswSTaANMppZmwl98PUiaBsxdvvAdfOGMV89wfM\42,\42https://lh5.ggpht.com/GJ16FWc5qQxPP0WOZI-cmq01OR1DqswSTaANMppZmwl98PUiaBsxdvvAdfOGMV89wfM\42,\42\42,1,null,null,0,\42\42]\n,[1,13,null,null,\42https://lh5.ggpht.com/gnCv9rgfvTo-uu_DCbYU5nujNVXpiNrlFIJnbw8mCNBu8PJwyefpW4MRkAqHi060dQ\42,\42https://lh5.ggpht.com/gnCv9rgfvTo-uu_DCbYU5nujNVXpiNrlFIJnbw8mCNBu8PJwyefpW4MRkAqHi060dQ\42,\42\42,1,null,null,0,\42\42]\n,[1,14,null,null,\42https://lh6.ggpht.com/ESt74d2wjm-WV7WUyx44GMqbOjTsHNDMj2FKxTVFYUBVSrzSbwdbgitugFXURt0dGfA\42,\42https://lh6.ggpht.com/ESt74d2wjm-WV7WUyx44GMqbOjTsHNDMj2FKxTVFYUBVSrzSbwdbgitugFXURt0dGfA\42,\42\42,1,null,null,0,\42\42]\n,[1,15,null,null,\42https://lh6.ggpht.com/3X6bQPJMV-u7MGs5gFfVyFlXCym-h4GxVzyaWXBGPCkeWo0AXaSu-VzCxbg1CQPVEpk\42,\42https://lh6.ggpht.com/3X6bQPJMV-u7MGs5gFfVyFlXCym-h4GxVzyaWXBGPCkeWo0AXaSu-VzCxbg1CQPVEpk\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.imdb.mobile\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.imdb.mobile\\u0026rdid\\u003dcom.imdb.mobile\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,4.439109,142254,\42https://lh6.ggpht.com/BFD_zfFU4xN17xVdmkpqs05oyU2o0JT0gBZhyQD4xBAs0AaXbpZQBJIun95GHhwgC6U\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh6.ggpht.com/mPmVBfxSmp2iAYTEFnUxz04T8d1ckNFvToUwzZeVvsg7Sia0bjF7PGkLErM0-U07rw\42,\42https://lh6.ggpht.com/mPmVBfxSmp2iAYTEFnUxz04T8d1ckNFvToUwzZeVvsg7Sia0bjF7PGkLErM0-U07rw\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/RTCScrIlpYRYjpkaPwReb34SHayLr415fNQlpyY1wVVtu1joQ_AhXpbDHpb7poG54w8\42,\42https://lh6.ggpht.com/RTCScrIlpYRYjpkaPwReb34SHayLr415fNQlpyY1wVVtu1joQ_AhXpbDHpb7poG54w8\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh5.ggpht.com/Eal9fqgqYsuKo6qcm7peQMdphGbLQcuw_sozdIqY4uYX7bF9rwBE_fF1qsK4iz9vWw\42,\42https://lh5.ggpht.com/Eal9fqgqYsuKo6qcm7peQMdphGbLQcuw_sozdIqY4uYX7bF9rwBE_fF1qsK4iz9vWw\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/CF1x9s0QojZmP8rw5djayW8IAsK27zTz3c5KYmQtGMsGjCeYRAChgC3qAu_dZEt4asU\42,\42https://lh6.ggpht.com/CF1x9s0QojZmP8rw5djayW8IAsK27zTz3c5KYmQtGMsGjCeYRAChgC3qAu_dZEt4asU\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/xcJhita2Hzy0WMyd7fLpOWX3sZRgfZt92268ynaj56oPmdWTiEFTeH6zDOThv4xO0FE\42,\42https://lh4.ggpht.com/xcJhita2Hzy0WMyd7fLpOWX3sZRgfZt92268ynaj56oPmdWTiEFTeH6zDOThv4xO0FE\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh4.ggpht.com/OOKCgNtQ_yQKR2Uio3o0aAtV3G_F5UYKFdz_pcGuDE-yTyjtBBc7g96YVqod_kXoNpw\42,\42https://lh4.ggpht.com/OOKCgNtQ_yQKR2Uio3o0aAtV3G_F5UYKFdz_pcGuDE-yTyjtBBc7g96YVqod_kXoNpw\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/nvjAE2HTy6S3U0V2KsRC92mOFAX6zun7I-LkLvjlfzs5FahjiXASzENxgFUBFkeZsQ\42,\42https://lh5.ggpht.com/nvjAE2HTy6S3U0V2KsRC92mOFAX6zun7I-LkLvjlfzs5FahjiXASzENxgFUBFkeZsQ\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh3.ggpht.com/TOGFxlLn2HqSXLIDI9qIKCO6mZSac80lsHUZLOx84AFrLW1-WLBCuSjXh2pnh8IIvA\42,\42https://lh3.ggpht.com/TOGFxlLn2HqSXLIDI9qIKCO6mZSac80lsHUZLOx84AFrLW1-WLBCuSjXh2pnh8IIvA\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh5.ggpht.com/5THyDtrQv39o_BMdiJqtfvATmPSVEbeAeK08-7pAC5WlZO5Q9zXUhH7gsKgxZDl5ww\42,\42https://lh5.ggpht.com/5THyDtrQv39o_BMdiJqtfvATmPSVEbeAeK08-7pAC5WlZO5Q9zXUhH7gsKgxZDl5ww\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh6.ggpht.com/Xs25rZLfOB0lF3OVNXMNMTUeSPBJQlLPJgF1srjIAfbpQi94dzhzLYNqd7XrRnOSwg\42,\42https://lh6.ggpht.com/Xs25rZLfOB0lF3OVNXMNMTUeSPBJQlLPJgF1srjIAfbpQi94dzhzLYNqd7XrRnOSwg\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh6.ggpht.com/zUlRzGEKZBfU32Y3bEmD8Rurwqt1A1F0kTPjIrfKKOFy7SbKYLYMJsbpi0Aaobf0RdM\42,\42https://lh6.ggpht.com/zUlRzGEKZBfU32Y3bEmD8Rurwqt1A1F0kTPjIrfKKOFy7SbKYLYMJsbpi0Aaobf0RdM\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/HIESqDa1AR3YS4_4SNh45Kt9d8-bYXp8KIuvbNUym4exM3MjPgQ1BnWat4XX8R7WcQs\42,\42https://lh3.ggpht.com/HIESqDa1AR3YS4_4SNh45Kt9d8-bYXp8KIuvbNUym4exM3MjPgQ1BnWat4XX8R7WcQs\42,\42\42,1,null,null,0,\42\42]\n,[1,12,null,null,\42https://lh5.ggpht.com/GJ16FWc5qQxPP0WOZI-cmq01OR1DqswSTaANMppZmwl98PUiaBsxdvvAdfOGMV89wfM\42,\42https://lh5.ggpht.com/GJ16FWc5qQxPP0WOZI-cmq01OR1DqswSTaANMppZmwl98PUiaBsxdvvAdfOGMV89wfM\42,\42\42,1,null,null,0,\42\42]\n,[1,13,null,null,\42https://lh5.ggpht.com/gnCv9rgfvTo-uu_DCbYU5nujNVXpiNrlFIJnbw8mCNBu8PJwyefpW4MRkAqHi060dQ\42,\42https://lh5.ggpht.com/gnCv9rgfvTo-uu_DCbYU5nujNVXpiNrlFIJnbw8mCNBu8PJwyefpW4MRkAqHi060dQ\42,\42\42,1,null,null,0,\42\42]\n,[1,14,null,null,\42https://lh6.ggpht.com/ESt74d2wjm-WV7WUyx44GMqbOjTsHNDMj2FKxTVFYUBVSrzSbwdbgitugFXURt0dGfA\42,\42https://lh6.ggpht.com/ESt74d2wjm-WV7WUyx44GMqbOjTsHNDMj2FKxTVFYUBVSrzSbwdbgitugFXURt0dGfA\42,\42\42,1,null,null,0,\42\42]\n,[1,15,null,null,\42https://lh6.ggpht.com/3X6bQPJMV-u7MGs5gFfVyFlXCym-h4GxVzyaWXBGPCkeWo0AXaSu-VzCxbg1CQPVEpk\42,\42https://lh6.ggpht.com/3X6bQPJMV-u7MGs5gFfVyFlXCym-h4GxVzyaWXBGPCkeWo0AXaSu-VzCxbg1CQPVEpk\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\042142,254\42,\0424.4\42,[[[\4296,837\42,\042100%\42]\n,[\04227,410\42,\04228%\42]\n,[\428,371\42,\428%\42]\n,[\0422,907\42,\0423%\42]\n,[\0426,729\42,\0426%\42]\n]\n]\n,null,[[\42Top Developer\42,[[5,0,11,11,\42http://www.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42\42,0,null,null,0,\42\42]\n,[6,0,24,24,\42http://www.gstatic.com/android/market_images/badges/topdev_list.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_list.png\42,\42\42,0,null,null,0,\42\42]\n,[7,0,28,33,\42http://www.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42\42,0,null,null,0,\42\42]\n]\n,null,\42topDeveloperBadgeUrl\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42]\n]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42IMDb\42,\42/store/apps/developer?id\\u003dIMDb\42]\n,[[[\42Your location\42,[[\42approximate location (network-based)\42,\42Allows the app to get your approximate location. This location is derived by location services using network location sources such as cell towers and Wi-Fi. These location services must be turned on and available to your device for the app to use them. Apps may use this to determine approximately where you are.\42,1]\n]\n]\n,[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n,[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n]\n]\n]\n,[[\42Affects Battery\42,[[\42control vibration\42,\42Allows the app to control the vibrator.\42,0]\n,[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42July 23, 2013\42,2,,\04210,000,000\42,\04250,000,000\42,,1,\0421.6\42,,[\42·Movie tickets: You can now conveniently purchase movie tickets via the IMDb app. Currently available in the U.S. only.\42,\42·Your Watchlist: Now you can filter and sort the movies and TV shows on your Watchlist. Looking for horror movies currently in theaters, or comedies available on DVD/Blu-ray? Your Watchlist can help you zoom in on what you want to watch, where you want to watch it.\42,\42·We’ve made performance improvements to help pages scroll more smoothly and responsively, and fixed some bugs.\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.imdb.com\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNH0fn8IICIZWDbw7udwRTqRFM7JTA\42,\42https://www.google.com/url?q\\u003dhttp://www.imdb.com/privacy\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNHh_QNQt28aDs4Monm6gFqMhEoJSg\42,\42android@imdb.com\42]\n}]\n','[\42com.sm.SlingGuide.Dish\42,\42com.sm.SlingGuide.Dish\42,1,3,\42/store/apps/details?id\\u003dcom.sm.SlingGuide.Dish\42,\42/store/apps/details?id\\u003dcom.sm.SlingGuide.Dish\42,\42https://play.google.com/store/apps/details?id\\u003dcom.sm.SlingGuide.Dish\42,\42https://market.android.com/details?id\\u003dcom.sm.SlingGuide.Dish\42,\42DISH Anywhere\42,\42Take your TV with you. With the DISH Anywhere, you can watch the same TV you get at home on your Android device. Enjoy your favorite live or recorded programs anytime, anywhere. Also, manage your home television with a full-featured DVR manager and a searchable program guide. This is a must-have app for DISH Subscribers. \\u003cp\\u003eNow with thousands of On Demand movies and TV shows from HBO, Cinemax, Epix, and many more networks! \\u003cp\\u003eFeatures: \\u003cbr\\u003eWatch your TV* \\u003cbr\\u003eTake your TV with you- and enjoy watching all of your favorite sports, news, TV shows, and movies from your Hopper with Sling, Hopper, ViP™ 922 Slingloaded™ DVR or ViP™ 722 or 722k DVR with the Sling® Adapter accessory on your Android device. \\u003cbr\\u003e-Integrated user interface makes it fast and easy to find the shows and movies you want to watch. \\u003cp\\u003eSchedule DVR Recordings \\u003cbr\\u003e- Schedule DVR recordings from anywhere. \\u003cbr\\u003e- One-touch recording- simply choose to record one event, all events, or only new events. \\u003cp\\u003eBrowse and Search the Program Guide and On Demand Titles\\u003cbr\\u003e- Search the program guide up to 9 days in advance. \\u003cbr\\u003e- Search for shows by title, genre, network, keyword, or actor. \\u003cbr\\u003e- View graphics and posters of your favorite shows and movies. \\u003cp\\u003eManage your DVR Library** \\u003cbr\\u003e- Set recording priorities. \\u003cbr\\u003e- Manage recording conflicts. \\u003cbr\\u003e- Delete shows you’ve already watched. \\u003cbr\\u003e- View and adjust your recording schedule. \\u003cp\\u003eDISH Anywhere requires an online DISH account and is compatible with the following DISH Network receiver models: 512, 522, 625, 612, 622, 722, 722k, 922, Hopper, Hopper with Sling. \\u003cp\\u003e*Requires high-speed Internet connection to a ViP™ 922 Slingloaded™ DVR, or a ViP™ 722 or ViP722k or Hopper DVR with Sling Adapter accessory. \\u003cbr\\u003e**Requires high-speed Internet connection to one of the following receiver models: ViP612, ViP622, ViP 722, ViP722k, ViP 922, Hopper, Hopper with Sling.\42,null,[[4,0,null,null,\42https://lh5.ggpht.com/ddv92tewQBxVzMJlWdaq8msObi6E00h0FOxuaMmnTQxmWek9HtDjBJx1ZfP6l6vYfCAO\42,\42https://lh5.ggpht.com/ddv92tewQBxVzMJlWdaq8msObi6E00h0FOxuaMmnTQxmWek9HtDjBJx1ZfP6l6vYfCAO\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh4.ggpht.com/NLPV_rceu4NBvVc3oKB_eqZOyhh3iwkNgOxyyjtOmT1FMZHwfQJh9JWYwwnmbsSxO7rq\42,\42https://lh4.ggpht.com/NLPV_rceu4NBvVc3oKB_eqZOyhh3iwkNgOxyyjtOmT1FMZHwfQJh9JWYwwnmbsSxO7rq\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/bnoKuIhgZZCpq6l95JXna6zniy9Nis0Z7xNXkk3gBBLpzuLh7pEBk6SWETLudrsjNnw\42,\42https://lh6.ggpht.com/bnoKuIhgZZCpq6l95JXna6zniy9Nis0Z7xNXkk3gBBLpzuLh7pEBk6SWETLudrsjNnw\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/jxSRXXa_PtGaCeu51cTz-YO15lbNeFNBnPpH-yQOSN9MpXNbnME0YFujr6gwLTdViBI\42,\42https://lh4.ggpht.com/jxSRXXa_PtGaCeu51cTz-YO15lbNeFNBnPpH-yQOSN9MpXNbnME0YFujr6gwLTdViBI\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/8c3sZR6GtqDC9anXK_-_UjXjuUnex92a13Hp1-ZyfKKgBS7_xFB3Xti05nrh9MpUAQ\42,\42https://lh6.ggpht.com/8c3sZR6GtqDC9anXK_-_UjXjuUnex92a13Hp1-ZyfKKgBS7_xFB3Xti05nrh9MpUAQ\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/A8oneOmxVcNj_IzqDubBYxne4KidOh3YUGtnw4zPEk85n5wSwoRNV6ilOe-2IcDYYl4\42,\42https://lh4.ggpht.com/A8oneOmxVcNj_IzqDubBYxne4KidOh3YUGtnw4zPEk85n5wSwoRNV6ilOe-2IcDYYl4\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/2THNRBxoGYpQev8PN7B90wOTQEhMK8LEmXQeUlNov6_KXmIPfadN7S69HSS3gHzmyvs\42,\42https://lh3.ggpht.com/2THNRBxoGYpQev8PN7B90wOTQEhMK8LEmXQeUlNov6_KXmIPfadN7S69HSS3gHzmyvs\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/0Xj2rXKJyCzslLBkaWaaMu9HdB4fTSGmsooZ1jFzDqvdIESVKPh8na6AMeTLNdMJzZzM\42,\42https://lh5.ggpht.com/0Xj2rXKJyCzslLBkaWaaMu9HdB4fTSGmsooZ1jFzDqvdIESVKPh8na6AMeTLNdMJzZzM\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh5.ggpht.com/gx2chzE83AYPFqA9mxkEKWnOIkNT5WPH1XHsbFUBowstMKFVwPESnDlgl99nFscltQ\42,\42https://lh5.ggpht.com/gx2chzE83AYPFqA9mxkEKWnOIkNT5WPH1XHsbFUBowstMKFVwPESnDlgl99nFscltQ\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh5.ggpht.com/m_NXuJc2jmfiZHrsQjgLGIGtdTixrLydfDADEaHZTM28wtXqj9Y-2pVvd5Lc_Rhq5iag\42,\42https://lh5.ggpht.com/m_NXuJc2jmfiZHrsQjgLGIGtdTixrLydfDADEaHZTM28wtXqj9Y-2pVvd5Lc_Rhq5iag\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh3.ggpht.com/OE0JT4EWtqDn4m6-E4uqrRLGDlKIB_F_4ClQBLpavkAhktI6M-6-HfjefE8b2i8PjA\42,\42https://lh3.ggpht.com/OE0JT4EWtqDn4m6-E4uqrRLGDlKIB_F_4ClQBLpavkAhktI6M-6-HfjefE8b2i8PjA\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/82wyrqzysQeUqXaDa--GO28koxdESiNY6HkOK2O6ni0HhErvBqajaI-F7y4VaG88Cxg\42,\42https://lh4.ggpht.com/82wyrqzysQeUqXaDa--GO28koxdESiNY6HkOK2O6ni0HhErvBqajaI-F7y4VaG88Cxg\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/yndPKQeC6YXhbbwtmKiUeCVr7Y9orjTdUvN1loUtBqd5nDnkvK7CBHYIit8qyAD5794\42,\42https://lh3.ggpht.com/yndPKQeC6YXhbbwtmKiUeCVr7Y9orjTdUvN1loUtBqd5nDnkvK7CBHYIit8qyAD5794\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.sm.SlingGuide.Dish\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.sm.SlingGuide.Dish\\u0026rdid\\u003dcom.sm.SlingGuide.Dish\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,4.002997,15350,\42https://lh5.ggpht.com/ddv92tewQBxVzMJlWdaq8msObi6E00h0FOxuaMmnTQxmWek9HtDjBJx1ZfP6l6vYfCAO\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh4.ggpht.com/NLPV_rceu4NBvVc3oKB_eqZOyhh3iwkNgOxyyjtOmT1FMZHwfQJh9JWYwwnmbsSxO7rq\42,\42https://lh4.ggpht.com/NLPV_rceu4NBvVc3oKB_eqZOyhh3iwkNgOxyyjtOmT1FMZHwfQJh9JWYwwnmbsSxO7rq\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh6.ggpht.com/bnoKuIhgZZCpq6l95JXna6zniy9Nis0Z7xNXkk3gBBLpzuLh7pEBk6SWETLudrsjNnw\42,\42https://lh6.ggpht.com/bnoKuIhgZZCpq6l95JXna6zniy9Nis0Z7xNXkk3gBBLpzuLh7pEBk6SWETLudrsjNnw\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/jxSRXXa_PtGaCeu51cTz-YO15lbNeFNBnPpH-yQOSN9MpXNbnME0YFujr6gwLTdViBI\42,\42https://lh4.ggpht.com/jxSRXXa_PtGaCeu51cTz-YO15lbNeFNBnPpH-yQOSN9MpXNbnME0YFujr6gwLTdViBI\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh6.ggpht.com/8c3sZR6GtqDC9anXK_-_UjXjuUnex92a13Hp1-ZyfKKgBS7_xFB3Xti05nrh9MpUAQ\42,\42https://lh6.ggpht.com/8c3sZR6GtqDC9anXK_-_UjXjuUnex92a13Hp1-ZyfKKgBS7_xFB3Xti05nrh9MpUAQ\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/A8oneOmxVcNj_IzqDubBYxne4KidOh3YUGtnw4zPEk85n5wSwoRNV6ilOe-2IcDYYl4\42,\42https://lh4.ggpht.com/A8oneOmxVcNj_IzqDubBYxne4KidOh3YUGtnw4zPEk85n5wSwoRNV6ilOe-2IcDYYl4\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh3.ggpht.com/2THNRBxoGYpQev8PN7B90wOTQEhMK8LEmXQeUlNov6_KXmIPfadN7S69HSS3gHzmyvs\42,\42https://lh3.ggpht.com/2THNRBxoGYpQev8PN7B90wOTQEhMK8LEmXQeUlNov6_KXmIPfadN7S69HSS3gHzmyvs\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh5.ggpht.com/0Xj2rXKJyCzslLBkaWaaMu9HdB4fTSGmsooZ1jFzDqvdIESVKPh8na6AMeTLNdMJzZzM\42,\42https://lh5.ggpht.com/0Xj2rXKJyCzslLBkaWaaMu9HdB4fTSGmsooZ1jFzDqvdIESVKPh8na6AMeTLNdMJzZzM\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh5.ggpht.com/gx2chzE83AYPFqA9mxkEKWnOIkNT5WPH1XHsbFUBowstMKFVwPESnDlgl99nFscltQ\42,\42https://lh5.ggpht.com/gx2chzE83AYPFqA9mxkEKWnOIkNT5WPH1XHsbFUBowstMKFVwPESnDlgl99nFscltQ\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh5.ggpht.com/m_NXuJc2jmfiZHrsQjgLGIGtdTixrLydfDADEaHZTM28wtXqj9Y-2pVvd5Lc_Rhq5iag\42,\42https://lh5.ggpht.com/m_NXuJc2jmfiZHrsQjgLGIGtdTixrLydfDADEaHZTM28wtXqj9Y-2pVvd5Lc_Rhq5iag\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh3.ggpht.com/OE0JT4EWtqDn4m6-E4uqrRLGDlKIB_F_4ClQBLpavkAhktI6M-6-HfjefE8b2i8PjA\42,\42https://lh3.ggpht.com/OE0JT4EWtqDn4m6-E4uqrRLGDlKIB_F_4ClQBLpavkAhktI6M-6-HfjefE8b2i8PjA\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh4.ggpht.com/82wyrqzysQeUqXaDa--GO28koxdESiNY6HkOK2O6ni0HhErvBqajaI-F7y4VaG88Cxg\42,\42https://lh4.ggpht.com/82wyrqzysQeUqXaDa--GO28koxdESiNY6HkOK2O6ni0HhErvBqajaI-F7y4VaG88Cxg\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh3.ggpht.com/yndPKQeC6YXhbbwtmKiUeCVr7Y9orjTdUvN1loUtBqd5nDnkvK7CBHYIit8qyAD5794\42,\42https://lh3.ggpht.com/yndPKQeC6YXhbbwtmKiUeCVr7Y9orjTdUvN1loUtBqd5nDnkvK7CBHYIit8qyAD5794\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\04215,350\42,\0424.0\42,[[[\428,730\42,\042100%\42]\n,[\0422,726\42,\04231%\42]\n,[\0421,184\42,\04213%\42]\n,[\042630\42,\0427%\42]\n,[\0422,080\42,\04223%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42DISH Network LLC\42,\42/store/apps/developer?id\\u003dDISH+Network+LLC\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n,[\42Your applications information\42,[[\42retrieve running apps\42,\42Allows the app to retrieve information about currently and recently running tasks. This may allow the app to discover information about which applications are used on the device.\42,1]\n]\n]\n]\n,[[\42Development tools\42,[[\42read sensitive log data\42,\42Allows the app to read from the system\47s various log files. This allows it to discover general information about what you are doing with the device, potentially including personal or private information.\42,0]\n]\n]\n,[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n,[\42send sticky broadcast\42,\42Allows the app to send sticky broadcasts, which remain after the broadcast ends. Excessive use may make the device slow or unstable by causing it to use too much memory.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42May 20, 2013\42,3,,\0421,000,000\42,\0425,000,000\42,,1,\0422.3\42,,[\42New in 1.5.38\42,\42On Demand content\42,\42Share what you\47re watching on Facebook or Twitter\42,\42New in 2.0.0.47\42,\42Bug fixes\42,\42New in 2.0.0.46\42,\42On Demand content\42,\42Share what you\47re watching on Facebook or Twitter\42,\42New in 1.5.20\42,\42Bug fixes\42,\42New in 1.5.12\42,\42Support for large screen android phones like Droid DNA\42,\42New in 2.0.0.21: Fixes issue for tablet users who upgraded from the phone app and could not access the Settings screen\42,\42New in 2.0.0.20:\42,\42Native app for Android Tablets\42,\42Skinned remote for Tablets\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.dishnetwork.com/\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNGSL1KiBTCzEDpU8lp_zu9S52ZeGQ\42,,\42\42]\n}]\n','[\42tv.w3b.client.android\42,\42tv.w3b.client.android\42,1,3,\42/store/apps/details?id\\u003dtv.w3b.client.android\42,\42/store/apps/details?id\\u003dtv.w3b.client.android\42,\42https://play.google.com/store/apps/details?id\\u003dtv.w3b.client.android\42,\42https://market.android.com/details?id\\u003dtv.w3b.client.android\42,\42W3b Tv\42,\42Web Tv turns Android into a remote control for your computer, allowing you to start and control TV shows at a distance.\\u003cp\\u003eA huge number of television shows are currently available online. This app makes it easy to find the latest episodes of these shows and instantly start them on your computer using your Android phone. You can then control the playback by using the built-in touchpad and keyboard of Web Tv.\\u003cp\\u003eNote that you will need to install our free W3b Tv server on each computer you with to control. \\u003cp\\u003eFeatures\\u003cbr\\u003e* Use your phone to start a TV show on your computer\\u003cbr\\u003e* Huge list of available free TV shows\\u003cbr\\u003e* Remote touchpad feature allows you to control video players on different websites\\u003cbr\\u003e* Star your favorite shows for quick future access\\u003cbr\\u003e* Queue feature which gives you one click access to new episodes of your favorite TV shows and videos\\u003cp\\u003eSupports displaying shows from Hulu, Youtube, TED, CBS, The CW.\\u003cp\\u003eTV shows include: Family Guy, Bones, The Daily Show, The Office, Grey\\u0026#39;s Anatomy, Modern Family, The Big Bang Theory, Grimm and hundreds more!\\u003cp\\u003eSupports Windows, Mac and Linux.\\u003cp\\u003eKeywords: TV, Shows, Remote, videos, Remote Control, Touchpad, Keyboard, Tv Shows, Watch, youtube, rss, feeds, webtv, w3btv, hulu, tvguide, hulu.com, Web tv, nfl, superbowl, super bowl, Super Bowl XLVII\42,null,[[4,0,null,null,\42http://lh4.ggpht.com/LJkob-Tmge0RA-MIkicuezL7gFoMM2PdD6TAXMYXmZ2NPPnIWYLdEV-q70uqIJpSjYQ\42,\42https://lh4.ggpht.com/LJkob-Tmge0RA-MIkicuezL7gFoMM2PdD6TAXMYXmZ2NPPnIWYLdEV-q70uqIJpSjYQ\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42https://lh5.ggpht.com/9eW5AUvDNfKYG2aDCceOJx8lz7-U3hStt-9zI0rH_W31oAFYDhakG8wllmkjJDhy7WU\42,\42https://lh5.ggpht.com/9eW5AUvDNfKYG2aDCceOJx8lz7-U3hStt-9zI0rH_W31oAFYDhakG8wllmkjJDhy7WU\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42http://lh5.ggpht.com/m3DYBztyANimwxRdRoMXHQVXYe7T9uMlllgoUekHgodPkYgInZ2YGGsR9RAhYZbELaQ\42,\42https://lh5.ggpht.com/m3DYBztyANimwxRdRoMXHQVXYe7T9uMlllgoUekHgodPkYgInZ2YGGsR9RAhYZbELaQ\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh5.ggpht.com/M_UEZOE1_Hmzqp2NqP558DSragiqbkzWUpWtudw8fWz3_3EDfRJOTKJ7guyCs6nnHw\42,\42https://lh5.ggpht.com/M_UEZOE1_Hmzqp2NqP558DSragiqbkzWUpWtudw8fWz3_3EDfRJOTKJ7guyCs6nnHw\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh5.ggpht.com/omcJfr-apXALCBt2Gg6SnxrgsqqTQGdy_UehSXVIZ55g3G8aRyKKXXhC2FUXF7Hp5w\42,\42https://lh5.ggpht.com/omcJfr-apXALCBt2Gg6SnxrgsqqTQGdy_UehSXVIZ55g3G8aRyKKXXhC2FUXF7Hp5w\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/A6P64rpXEk64hXL-G0XWKJ2n_5OTY7MC02djdA1JFwfNSENMPuZ-52YSBVNQTHkw_g\42,\42https://lh3.ggpht.com/A6P64rpXEk64hXL-G0XWKJ2n_5OTY7MC02djdA1JFwfNSENMPuZ-52YSBVNQTHkw_g\42,\42\42,1,null,null,0,\42\42]\n,[0,0,null,null,\42https://lh3.ggpht.com/PNIBNUg1aFBiHUz-5-XyHMYApAy9nlijfdtgxYODhidNB1glMVWkbQfCEwrlFRqdDg\42,\42https://lh3.ggpht.com/PNIBNUg1aFBiHUz-5-XyHMYApAy9nlijfdtgxYODhidNB1glMVWkbQfCEwrlFRqdDg\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42tv.w3b.client.android\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dtv.w3b.client.android\\u0026rdid\\u003dtv.w3b.client.android\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.9538462,65,\42https://lh4.ggpht.com/LJkob-Tmge0RA-MIkicuezL7gFoMM2PdD6TAXMYXmZ2NPPnIWYLdEV-q70uqIJpSjYQ\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42http://lh5.ggpht.com/m3DYBztyANimwxRdRoMXHQVXYe7T9uMlllgoUekHgodPkYgInZ2YGGsR9RAhYZbELaQ\42,\42https://lh5.ggpht.com/m3DYBztyANimwxRdRoMXHQVXYe7T9uMlllgoUekHgodPkYgInZ2YGGsR9RAhYZbELaQ\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh5.ggpht.com/M_UEZOE1_Hmzqp2NqP558DSragiqbkzWUpWtudw8fWz3_3EDfRJOTKJ7guyCs6nnHw\42,\42https://lh5.ggpht.com/M_UEZOE1_Hmzqp2NqP558DSragiqbkzWUpWtudw8fWz3_3EDfRJOTKJ7guyCs6nnHw\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh5.ggpht.com/omcJfr-apXALCBt2Gg6SnxrgsqqTQGdy_UehSXVIZ55g3G8aRyKKXXhC2FUXF7Hp5w\42,\42https://lh5.ggpht.com/omcJfr-apXALCBt2Gg6SnxrgsqqTQGdy_UehSXVIZ55g3G8aRyKKXXhC2FUXF7Hp5w\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/A6P64rpXEk64hXL-G0XWKJ2n_5OTY7MC02djdA1JFwfNSENMPuZ-52YSBVNQTHkw_g\42,\42https://lh3.ggpht.com/A6P64rpXEk64hXL-G0XWKJ2n_5OTY7MC02djdA1JFwfNSENMPuZ-52YSBVNQTHkw_g\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\04265\42,\0424.0\42,[[[\04239\42,\042100%\42]\n,[\429\42,\04223%\42]\n,[\0424\42,\04210%\42]\n,[\0421\42,\0422%\42]\n,[\04212\42,\04230%\42]\n]\n]\n,null,[]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Marc Stogaitis \\u0026 Mimi Sun\42,\42/store/apps/developer?id\\u003dMarc+Stogaitis+%26+Mimi+Sun\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n]\n,[[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42February 9, 2013\42,1,\042625k\42,\04210,000\42,\04250,000\42,\0422.0.12\42,0,\0422.2\42,,[\42* Fixed a bug that could happen when starting a show for the first time on some devices.\42,\42* Start shows in full window by default\42,\42* Display all shows in queue, even if no new videos are available (click on the show title to see all episodes)\42,\42* Added a Queue feature which gives you one click access to new episodes of the Tv shows that you \47star\47\42,\42* Made it easier to keep track of which shows you\47ve seen by making un-viewed shows in bold\42,\42* Significant speed improvements when listing shows\42]\n,\42https://www.google.com/url?q\\u003dhttp://www.w3b.tv\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNGC7R6_mRNSxDQPhlvybT5hEOSuYg\42,,\42hello@w3b.tv\42]\n}]\n','[\42com.xfinity.playnow\42,\42com.xfinity.playnow\42,1,3,\42/store/apps/details?id\\u003dcom.xfinity.playnow\42,\42/store/apps/details?id\\u003dcom.xfinity.playnow\42,\42https://play.google.com/store/apps/details?id\\u003dcom.xfinity.playnow\42,\42https://market.android.com/details?id\\u003dcom.xfinity.playnow\42,\42XFINITY™ TV Player\42,\42Watch thousands of XFINITY On Demand™ TV Shows \\u0026amp; Movies anytime, anywhere.\\u003cp\\u003ePlus, now you can download thousands of hit shows \\u0026amp; movies from Showtime, Starz, Encore and more to your Android tablet or phone \\u0026amp; watch them anytime, anywhere -- even when you’re offline.\\u003cp\\u003eWith the XFINITY TV Player app, you can watch thousands of hours of TV shows and movies.\\u003cbr\\u003e• Watch content anytime, anywhere on any Wi-Fi connected Android Phone or Tablet\\u003cbr\\u003e• Stream TV Shows and movies from your favorite networks, including premium channels like HBO, Starz, Showtime, Cinemax and cable channels like TNT, TBS, Cartoon Network and BBC America.\\u003cbr\\u003e• Download TV shows \\u0026amp; movies from Showtime, Starz, Encore and MoviePlex and watch them when you’re offline.\\u003cbr\\u003e• Set parental controls, so you can enjoy your content with privacy and peace of mind.\\u003cp\\u003e\\u003cbr\\u003eREQUIREMENTS: \\u003cp\\u003e• Wi-Fi internet connection for streaming and download of video\\u003cbr\\u003e• Android phone or tablet running Android 2.3 and higher.\\u003cbr\\u003e• XFINITY TV or Comcast Digital Video service. You will also need a subscription to one or more eligible channels to play content. \\u003cbr\\u003e• Comcast ID or Comcast.net email address and password. \\u003cp\\u003eStreaming and downloading of video is not available internationally.\\u003cp\\u003eSUPPORT:\\u003cp\\u003eGet Help Signing-In!\\u003cp\\u003e• Create a Comcast ID --\\u0026gt; \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttps://login.comcast.net/myaccount/create-uid\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNGNXY5KMxx1CbYkwWIuMj6f0KNBWg\\\42 target\\u003d\\\42_blank\\\42\\u003ehttps://login.comcast.net/myaccount/create-uid\\u003c/a\\u003e\\u003cbr\\u003e• Look up your Comcast ID --\\u0026gt; \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttps://login.comcast.net/myaccount/lookup\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNGdScRqKxOzuauCTIKgSrbFgMqlNw\\\42 target\\u003d\\\42_blank\\\42\\u003ehttps://login.comcast.net/myaccount/lookup\\u003c/a\\u003e\\u003cbr\\u003e• Retrieve your Comcast ID Password --\\u0026gt; \\u003ca href\\u003d\\\42https://www.google.com/url?q\\u003dhttps://login.comcast.net/myaccount/reset\\u0026amp;sa\\u003dD\\u0026amp;usg\\u003dAFQjCNFSH6g41oy3e1yxXYcEnYU6YN8Isw\\\42 target\\u003d\\\42_blank\\\42\\u003ehttps://login.comcast.net/myaccount/reset\\u003c/a\\u003e\\u003cp\\u003e\\u003cp\\u003e*** Follow @XfinityTVApps on Twitter for tips and product information relating to all XFINITY mobile apps. \\u003cp\\u003e**** Having trouble with the XFINITY TV Player App? Contact our support team via email: \\u003ca href\\u003d\\\42mailto:xfinity_remote@cable.comcast.com\\\42\\u003exfinity_remote@cable.comcast.com\\u003c/a\\u003e. We cannot respond through the Android Market comment/ratings system but would love to hear from you.\\u003cp\\u003e**** Explanation of permissions requested:\\u003cbr\\u003e* permission.CALL_PHONE - Allows us to pass our support phone number to your dialer.\\u003cbr\\u003e* permission.INTERNET - Access the Internet.\\u003cbr\\u003e* permission.READ_PHONE_STATE - We use the ID of your phone to prevent playback abuse.\\u003cbr\\u003e* permission.ACCESS_WIFI_STATE - We tune playback if you are on WiFi.\\u003cbr\\u003e* permission.ACCESS_NETWORK_STATE - We detect connectivity before allowing playback.\\u003cbr\\u003e* permission.WRITE_EXTERNAL_STORAGE - We cache browse images to your sdcard to save your bandwidth.\\u003cbr\\u003e* permission.WAKE_LOCK - We prevent your device from sleeping during playback.\42,null,[[4,0,null,null,\42http://lh3.ggpht.com/zywoaJOEotXxcBTBz5tw8PWhDk-uBBUj9JWLUu1KJL51lHH6h7C97-I8R0r6xne86Ic\42,\42https://lh3.ggpht.com/zywoaJOEotXxcBTBz5tw8PWhDk-uBBUj9JWLUu1KJL51lHH6h7C97-I8R0r6xne86Ic\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh6.ggpht.com/LWpzW2xJinoZ0d5xl34Hng6HikeP4f11PPWA7ysNP9tYbKExEuP5rrqIOAdcY1uc_w4\42,\42https://lh6.ggpht.com/LWpzW2xJinoZ0d5xl34Hng6HikeP4f11PPWA7ysNP9tYbKExEuP5rrqIOAdcY1uc_w4\42,\42\42,1,null,null,0,\42\42]\n,[1,0,null,null,\42http://lh3.ggpht.com/hmFGiuU5JYvxl-i2qf4imqbnDz0f8ClEfCMEFfgPe9XAdZFHN4V1fTFWNjcDnY_1lA\42,\42https://lh3.ggpht.com/hmFGiuU5JYvxl-i2qf4imqbnDz0f8ClEfCMEFfgPe9XAdZFHN4V1fTFWNjcDnY_1lA\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh3.ggpht.com/4dHmoHj2P9qOPJSA-124Yw29RNygAlf7ePP0U76tIY5PYGvIbIOozGEHPTrp67Tu2f8\42,\42https://lh3.ggpht.com/4dHmoHj2P9qOPJSA-124Yw29RNygAlf7ePP0U76tIY5PYGvIbIOozGEHPTrp67Tu2f8\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh4.ggpht.com/DM9iFy8ePqjjKWcg2fcdppCgiFKVp8jXicsdfODSz4ogwZABZ2YfDj25qqYLvqLj-vU\42,\42https://lh4.ggpht.com/DM9iFy8ePqjjKWcg2fcdppCgiFKVp8jXicsdfODSz4ogwZABZ2YfDj25qqYLvqLj-vU\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/r_58MDqwFpC8o7F00rFG0izIMxLcgGY8DqKBgovxbPznVvinT6-axcgOMLzZC62bPYz8\42,\42https://lh3.ggpht.com/r_58MDqwFpC8o7F00rFG0izIMxLcgGY8DqKBgovxbPznVvinT6-axcgOMLzZC62bPYz8\42,\42\42,1,null,null,0,\42\42]\n,[0,0,null,null,\42https://lh5.ggpht.com/ph3H9FnA_oJn-PT1z7yUwBDq1AuksISCZ8HTF6G_1zqYtfnrk_b5BOfIGXY2-ThqGuM\42,\42https://lh5.ggpht.com/ph3H9FnA_oJn-PT1z7yUwBDq1AuksISCZ8HTF6G_1zqYtfnrk_b5BOfIGXY2-ThqGuM\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.xfinity.playnow\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.xfinity.playnow\\u0026rdid\\u003dcom.xfinity.playnow\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Entertainment\42,\42/store/apps/category/ENTERTAINMENT\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.3961947,5939,\42https://lh3.ggpht.com/zywoaJOEotXxcBTBz5tw8PWhDk-uBBUj9JWLUu1KJL51lHH6h7C97-I8R0r6xne86Ic\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42http://lh3.ggpht.com/hmFGiuU5JYvxl-i2qf4imqbnDz0f8ClEfCMEFfgPe9XAdZFHN4V1fTFWNjcDnY_1lA\42,\42https://lh3.ggpht.com/hmFGiuU5JYvxl-i2qf4imqbnDz0f8ClEfCMEFfgPe9XAdZFHN4V1fTFWNjcDnY_1lA\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42http://lh3.ggpht.com/4dHmoHj2P9qOPJSA-124Yw29RNygAlf7ePP0U76tIY5PYGvIbIOozGEHPTrp67Tu2f8\42,\42https://lh3.ggpht.com/4dHmoHj2P9qOPJSA-124Yw29RNygAlf7ePP0U76tIY5PYGvIbIOozGEHPTrp67Tu2f8\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42http://lh4.ggpht.com/DM9iFy8ePqjjKWcg2fcdppCgiFKVp8jXicsdfODSz4ogwZABZ2YfDj25qqYLvqLj-vU\42,\42https://lh4.ggpht.com/DM9iFy8ePqjjKWcg2fcdppCgiFKVp8jXicsdfODSz4ogwZABZ2YfDj25qqYLvqLj-vU\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh3.ggpht.com/r_58MDqwFpC8o7F00rFG0izIMxLcgGY8DqKBgovxbPznVvinT6-axcgOMLzZC62bPYz8\42,\42https://lh3.ggpht.com/r_58MDqwFpC8o7F00rFG0izIMxLcgGY8DqKBgovxbPznVvinT6-axcgOMLzZC62bPYz8\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\0425,939\42,\0423.4\42,[[[\0422,572\42,\042100%\42]\n,[\042791\42,\04230%\42]\n,[\042539\42,\04220%\42]\n,[\042492\42,\04219%\42]\n,[\0421,545\42,\04260%\42]\n]\n]\n,null,[[\42Top Developer\42,[[5,0,11,11,\42http://www.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42\42,0,null,null,0,\42\42]\n,[6,0,24,24,\42http://www.gstatic.com/android/market_images/badges/topdev_list.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_list.png\42,\42\42,0,null,null,0,\42\42]\n,[7,0,28,33,\42http://www.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42\42,0,null,null,0,\42\42]\n]\n,null,\42topDeveloperBadgeUrl\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42]\n]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Comcast Interactive Media\42,\42/store/apps/developer?id\\u003dComcast+Interactive+Media\42]\n,[[[\42Network communication\42,[[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n]\n,[[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n]\n,[]\n]\n,\42August 1, 2013\42,3,\04212M\42,\0421,000,000\42,\0425,000,000\42,\0421.2.3.001\42,1,\0422.3\42,,[\42This update contains stability improvements, bug fixes, and improvements to screen layouts on several devices.\42]\n,\42https://www.google.com/url?q\\u003dhttp://xfinity.comcast.net/learn/mobile-apps/\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNFqw5c0x_s6n9F5DdUr75GbUbTlSA\42,\42https://www.google.com/url?q\\u003dhttp://xfinity.comcast.net/privacy\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNFZQIgAeOf9hTGR0wDZuIqiET9vbA\42,\42xfinity_tvapp@comcast.com\42]\n}]\n','[\42com.google.android.videos\42,\42com.google.android.videos\42,1,3,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42/store/apps/details?id\\u003dcom.google.android.videos\42,\42https://play.google.com/store/apps/details?id\\u003dcom.google.android.videos\42,\42https://market.android.com/details?id\\u003dcom.google.android.videos\42,\42Google Play Movies \\u0026 TV\42,\42Google Play Movies \\u0026amp; TV allows you to watch movies and TV shows purchased on Google Play.\\u003cbr\\u003eYou can stream instantly on your Android phone or tablet, or download so you can watch from anywhere, even when you’re not connected. Also, get quick access to your personal video collection, including those taken on your phone or tablet.\\u003cbr\\u003eLearn more about Google Play Movies \\u0026amp; TV at http://play.google.com/about/movies\\u003cbr\\u003eNote: TV shows are currently available in the United States only.\42,null,[[4,0,null,null,\42http://lh5.ggpht.com/fFPQTALNNU4xflvbazvbwPL5o4X3a_CqYHUWIh4FXmfU78aSSuP1OMkGXhXouxXzWPov\42,\42https://lh5.ggpht.com/fFPQTALNNU4xflvbazvbwPL5o4X3a_CqYHUWIh4FXmfU78aSSuP1OMkGXhXouxXzWPov\42,\42\42,1,null,null,0,\42\42]\n,[2,0,null,null,\42http://lh3.ggpht.com/F_I5xG4OCyoVYz_DvQdM40TCEdUO6GTPe-22hgwe4C0HiXuP7gaM3eon9KkXW6zz0A\42,\42https://lh3.ggpht.com/F_I5xG4OCyoVYz_DvQdM40TCEdUO6GTPe-22hgwe4C0HiXuP7gaM3eon9KkXW6zz0A\42,\42\42,1,null,null,0,\42\42]\n,[3,0,null,null,\42https://www.youtube.com/embed/nt9KI6TxVCQ?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42https://www.youtube.com/embed/nt9KI6TxVCQ?ps\\u003dplay\\u0026vq\\u003dlarge\\u0026rel\\u003d0\\u0026autohide\\u003d1\\u0026showinfo\\u003d0\\u0026autoplay\\u003d1\42,\42\42,0,null,null,0,\42\42]\n,[13,0,null,null,\42http://i.ytimg.com/vi/nt9KI6TxVCQ/hqdefault.jpg\42,\42\42,\42\42,0,null,null,0,\42\42]\n,[1,0,null,null,\42https://lh6.ggpht.com/PTlsFzdQkqmOEEc4S4MvG60taxs3AFIeay4ITAPHtRKKnXz0RWDpWEnZA08eE0qDUw\42,\42https://lh6.ggpht.com/PTlsFzdQkqmOEEc4S4MvG60taxs3AFIeay4ITAPHtRKKnXz0RWDpWEnZA08eE0qDUw\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh3.ggpht.com/WioxhR4nOjYAvpZhacHQp689yh07853Jy_pqUHn9G7hKrTROS5KL9iex4Lj2r--s76k\42,\42https://lh3.ggpht.com/WioxhR4nOjYAvpZhacHQp689yh07853Jy_pqUHn9G7hKrTROS5KL9iex4Lj2r--s76k\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/p1dpRZKZis58-JIFsi_zxfiFxXJj2u2hnA--ACuyR7qx2bp8s7SPtmFyXMB5UZFSyzo\42,\42https://lh4.ggpht.com/p1dpRZKZis58-JIFsi_zxfiFxXJj2u2hnA--ACuyR7qx2bp8s7SPtmFyXMB5UZFSyzo\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh5.ggpht.com/6jPOsztKp3Js4v7RXfhsWx6wMRv7uK7Kyh5_3lHQiRRfcyi2ucQh_FY-o1AS7WSdFA\42,\42https://lh5.ggpht.com/6jPOsztKp3Js4v7RXfhsWx6wMRv7uK7Kyh5_3lHQiRRfcyi2ucQh_FY-o1AS7WSdFA\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/m4MUsotplfSzQjZB_d12Vko2I3QiYKIvEHtDIOhEKCFMyNU7BDXBNjvoC9cvzJvvDCWC\42,\42https://lh4.ggpht.com/m4MUsotplfSzQjZB_d12Vko2I3QiYKIvEHtDIOhEKCFMyNU7BDXBNjvoC9cvzJvvDCWC\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh6.ggpht.com/Cm0myJRsHEVDCaobgj95yN0Bnaoo4hUbb1qqqFXDYD2YehIWDBpwHmluSdXBqCcACRA\42,\42https://lh6.ggpht.com/Cm0myJRsHEVDCaobgj95yN0Bnaoo4hUbb1qqqFXDYD2YehIWDBpwHmluSdXBqCcACRA\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh4.ggpht.com/Ru78q2OFP4LL3l941UJwS_Ldz_CO3x3acNAAo9TS87PT6d1jZ38dd6jzr0aTrTtCAhI\42,\42https://lh4.ggpht.com/Ru78q2OFP4LL3l941UJwS_Ldz_CO3x3acNAAo9TS87PT6d1jZ38dd6jzr0aTrTtCAhI\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh3.ggpht.com/xfaH8U6dCO-vN_WtZUupFt43FDpIMnWWHP4x1R3sXrcW7GQHnuVyccSHf-Ad-je08p9y\42,\42https://lh3.ggpht.com/xfaH8U6dCO-vN_WtZUupFt43FDpIMnWWHP4x1R3sXrcW7GQHnuVyccSHf-Ad-je08p9y\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh4.ggpht.com/lw6mip_3lbeN9jbUY-DsWbLsNhV82uhurAIM8kAe51RzAoYGK1jjl-rLA7TT3pA1QSy5\42,\42https://lh4.ggpht.com/lw6mip_3lbeN9jbUY-DsWbLsNhV82uhurAIM8kAe51RzAoYGK1jjl-rLA7TT3pA1QSy5\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh4.ggpht.com/_He475mvnzbre-cc9oprUboU9LyPxZbA920QzFFNClzyZJ4gN72xehhbef6WvFdoZA\42,\42https://lh4.ggpht.com/_He475mvnzbre-cc9oprUboU9LyPxZbA920QzFFNClzyZJ4gN72xehhbef6WvFdoZA\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh3.ggpht.com/fswjR3cOrK9sM9gRdUOpOiNnpFmcbeOOQlbkLYrPHutgywB9FAU4RQWWsKbecSpbCXBQ\42,\42https://lh3.ggpht.com/fswjR3cOrK9sM9gRdUOpOiNnpFmcbeOOQlbkLYrPHutgywB9FAU4RQWWsKbecSpbCXBQ\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh4.ggpht.com/vXHX5g8zTHhyh2CFKfVHdmkfs6T5QZcmWB3ngivbOJf4ybqBKgwbnLRFkDHf5BKgQXTr\42,\42https://lh4.ggpht.com/vXHX5g8zTHhyh2CFKfVHdmkfs6T5QZcmWB3ngivbOJf4ybqBKgwbnLRFkDHf5BKgQXTr\42,\42\42,1,null,null,0,\42\42]\n]\n,null,[[\42com.google.android.videos\42,\42Free\42,\42\42,null,0,0,1,null,\42https://play.google.com/store/apps/details?id\\u003dcom.google.android.videos\\u0026rdid\\u003dcom.google.android.videos\\u0026rdot\\u003d1\\u0026feature\\u003dmd\42,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,\42Free\42,\42USD\42,\42Install\42,0]\n]\n,[[\42Media \\u0026 Video\42,\42/store/apps/category/MEDIA_AND_VIDEO\42]\n]\n,[0,0,0,0,0,0,0,null,0,0]\n,3.3373241,67155,\42https://lh5.ggpht.com/fFPQTALNNU4xflvbazvbwPL5o4X3a_CqYHUWIh4FXmfU78aSSuP1OMkGXhXouxXzWPov\\u003dw150-rw\42,\42apps\42,[[1,0,null,null,\42https://lh6.ggpht.com/PTlsFzdQkqmOEEc4S4MvG60taxs3AFIeay4ITAPHtRKKnXz0RWDpWEnZA08eE0qDUw\42,\42https://lh6.ggpht.com/PTlsFzdQkqmOEEc4S4MvG60taxs3AFIeay4ITAPHtRKKnXz0RWDpWEnZA08eE0qDUw\42,\42\42,1,null,null,0,\42\42]\n,[1,1,null,null,\42https://lh3.ggpht.com/WioxhR4nOjYAvpZhacHQp689yh07853Jy_pqUHn9G7hKrTROS5KL9iex4Lj2r--s76k\42,\42https://lh3.ggpht.com/WioxhR4nOjYAvpZhacHQp689yh07853Jy_pqUHn9G7hKrTROS5KL9iex4Lj2r--s76k\42,\42\42,1,null,null,0,\42\42]\n,[1,2,null,null,\42https://lh4.ggpht.com/p1dpRZKZis58-JIFsi_zxfiFxXJj2u2hnA--ACuyR7qx2bp8s7SPtmFyXMB5UZFSyzo\42,\42https://lh4.ggpht.com/p1dpRZKZis58-JIFsi_zxfiFxXJj2u2hnA--ACuyR7qx2bp8s7SPtmFyXMB5UZFSyzo\42,\42\42,1,null,null,0,\42\42]\n,[1,3,null,null,\42https://lh5.ggpht.com/6jPOsztKp3Js4v7RXfhsWx6wMRv7uK7Kyh5_3lHQiRRfcyi2ucQh_FY-o1AS7WSdFA\42,\42https://lh5.ggpht.com/6jPOsztKp3Js4v7RXfhsWx6wMRv7uK7Kyh5_3lHQiRRfcyi2ucQh_FY-o1AS7WSdFA\42,\42\42,1,null,null,0,\42\42]\n,[1,4,null,null,\42https://lh4.ggpht.com/m4MUsotplfSzQjZB_d12Vko2I3QiYKIvEHtDIOhEKCFMyNU7BDXBNjvoC9cvzJvvDCWC\42,\42https://lh4.ggpht.com/m4MUsotplfSzQjZB_d12Vko2I3QiYKIvEHtDIOhEKCFMyNU7BDXBNjvoC9cvzJvvDCWC\42,\42\42,1,null,null,0,\42\42]\n,[1,5,null,null,\42https://lh6.ggpht.com/Cm0myJRsHEVDCaobgj95yN0Bnaoo4hUbb1qqqFXDYD2YehIWDBpwHmluSdXBqCcACRA\42,\42https://lh6.ggpht.com/Cm0myJRsHEVDCaobgj95yN0Bnaoo4hUbb1qqqFXDYD2YehIWDBpwHmluSdXBqCcACRA\42,\42\42,1,null,null,0,\42\42]\n,[1,6,null,null,\42https://lh4.ggpht.com/Ru78q2OFP4LL3l941UJwS_Ldz_CO3x3acNAAo9TS87PT6d1jZ38dd6jzr0aTrTtCAhI\42,\42https://lh4.ggpht.com/Ru78q2OFP4LL3l941UJwS_Ldz_CO3x3acNAAo9TS87PT6d1jZ38dd6jzr0aTrTtCAhI\42,\42\42,1,null,null,0,\42\42]\n,[1,7,null,null,\42https://lh3.ggpht.com/xfaH8U6dCO-vN_WtZUupFt43FDpIMnWWHP4x1R3sXrcW7GQHnuVyccSHf-Ad-je08p9y\42,\42https://lh3.ggpht.com/xfaH8U6dCO-vN_WtZUupFt43FDpIMnWWHP4x1R3sXrcW7GQHnuVyccSHf-Ad-je08p9y\42,\42\42,1,null,null,0,\42\42]\n,[1,8,null,null,\42https://lh4.ggpht.com/lw6mip_3lbeN9jbUY-DsWbLsNhV82uhurAIM8kAe51RzAoYGK1jjl-rLA7TT3pA1QSy5\42,\42https://lh4.ggpht.com/lw6mip_3lbeN9jbUY-DsWbLsNhV82uhurAIM8kAe51RzAoYGK1jjl-rLA7TT3pA1QSy5\42,\42\42,1,null,null,0,\42\42]\n,[1,9,null,null,\42https://lh4.ggpht.com/_He475mvnzbre-cc9oprUboU9LyPxZbA920QzFFNClzyZJ4gN72xehhbef6WvFdoZA\42,\42https://lh4.ggpht.com/_He475mvnzbre-cc9oprUboU9LyPxZbA920QzFFNClzyZJ4gN72xehhbef6WvFdoZA\42,\42\42,1,null,null,0,\42\42]\n,[1,10,null,null,\42https://lh3.ggpht.com/fswjR3cOrK9sM9gRdUOpOiNnpFmcbeOOQlbkLYrPHutgywB9FAU4RQWWsKbecSpbCXBQ\42,\42https://lh3.ggpht.com/fswjR3cOrK9sM9gRdUOpOiNnpFmcbeOOQlbkLYrPHutgywB9FAU4RQWWsKbecSpbCXBQ\42,\42\42,1,null,null,0,\42\42]\n,[1,11,null,null,\42https://lh4.ggpht.com/vXHX5g8zTHhyh2CFKfVHdmkfs6T5QZcmWB3ngivbOJf4ybqBKgwbnLRFkDHf5BKgQXTr\42,\42https://lh4.ggpht.com/vXHX5g8zTHhyh2CFKfVHdmkfs6T5QZcmWB3ngivbOJf4ybqBKgwbnLRFkDHf5BKgQXTr\42,\42\42,1,null,null,0,\42\42]\n]\n,null,\04267,155\42,\0423.3\42,[[[\04230,035\42,\042100%\42]\n,[\0427,521\42,\04225%\42]\n,[\0425,772\42,\04219%\42]\n,[\0422,716\42,\429%\42]\n,[\04221,111\42,\04270%\42]\n]\n]\n,null,[[\42Top Developer\42,[[5,0,11,11,\42http://www.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42,\42\42,0,null,null,0,\42\42]\n,[6,0,24,24,\42http://www.gstatic.com/android/market_images/badges/topdev_list.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_list.png\42,\42\42,0,null,null,0,\42\42]\n,[7,0,28,33,\42http://www.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_hdr.png\42,\42\42,0,null,null,0,\42\42]\n]\n,null,\42topDeveloperBadgeUrl\42,\42https://ssl.gstatic.com/android/market_images/badges/topdev_ann.png\42]\n]\n,\42Free\42,[]\n,[]\n,null,null,null,null,null,null,[]\n,{\04242656262\42:[[\42Google Inc.\42,\42/store/apps/developer?id\\u003dGoogle+Inc.\42]\n,[[[\42Your accounts\42,[[\42use accounts on the device\42,\42Allows the app to request authentication tokens.\42,1]\n,[\42YouTube usernames\42,\42Allows apps to see the YouTube username(s) associated with the Google account(s) stored on this Android device.\42,1]\n,[\42find accounts on the device\42,\42Allows the app to get the list of accounts known by the device. This may include any accounts created by applications you have installed.\42,0]\n,[\42view configured accounts\42,\42Allows apps to see the usernames (email addresses) of the Google account(s) you have configured.\42,0]\n,[\42read Google service configuration\42,\42Allows this app to read Google service configuration data.\42,0]\n,[\42YouTube\42,\42Allows apps to sign in to YouTube using the account(s) stored on this Android device.\42,1]\n,[\42add or remove accounts\42,\42Allows the app to perform operations like adding and removing accounts, and deleting their password.\42,1]\n]\n]\n,[\42Network communication\42,[[\42control Near Field Communication\42,\42Allows the app to communicate with Near Field Communication (NFC) tags, cards, and readers.\42,1]\n,[\42view Wi-Fi connections\42,\42Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices.\42,0]\n,[\42receive data from Internet\42,\42Allows apps to accept cloud to device messages sent by the app\47s service. Using this service will incur data usage. Malicious apps could cause excess data usage.\42,0]\n,[\42full network access\42,\42Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.\42,1]\n,[\42view network connections\42,\42Allows the app to view information about network connections such as which networks exist and are connected.\42,0]\n]\n]\n,[\42Phone calls\42,[[\42read phone status and identity\42,\42Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.\42,1]\n]\n]\n,[\42Storage\42,[[\42modify or delete the contents of your USB storage\42,\42Allows the app to write to the USB storage.\42,1]\n]\n]\n,[\42Bluetooth\42,[[\42pair with Bluetooth devices\42,\42Allows the app to view the configuration of Bluetooth on the device, and to make and accept connections with paired devices.\42,1]\n]\n]\n]\n,[[\42System tools\42,[[\42test access to protected storage\42,\42Allows the app to test a permission for USB storage that will be available on future devices.\42,0]\n]\n]\n,[\42Affects Battery\42,[[\42prevent device from sleeping\42,\42Allows the app to prevent the device from going to sleep.\42,0]\n]\n]\n,[\42Your applications information\42,[[\42run at startup\42,\42Allows the app to have itself started as soon as the system has finished booting. This can make it take longer to start the device and allow the app to slow down the overall device by always running.\42,0]\n]\n]\n,[\42Sync Settings\42,[[\42toggle sync on and off\42,\42Allows an app to modify the sync settings for an account. For example, this can be used to enable sync of the People app with an account.\42,0]\n,[\42read sync settings\42,\42Allows the app to read the sync settings for an account. For example, this can determine whether the People app is synced with an account.\42,0]\n]\n]\n]\n,[]\n]\n,\42July 24, 2013\42,1,,\042100,000,000\42,\042500,000,000\42,,1,\0422.2\42,,[\42Send what you’re watching to your TV screen (when used with Chromecast).\42,\42Support for virtual surround sound on the new (2013) Nexus 7, and on the Nexus 10 running Android 4.3.\42,\42Watch Now sync enabled across devices.\42,\42Several bug fixes.\42]\n,\42https://www.google.com/url?q\\u003dhttp://support.google.com/googleplay\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNFpLSCgMaZkO-fYhPT1Sbz4Bn_47A\42,\42https://www.google.com/url?q\\u003dhttp://www.google.com/policies/privacy\\u0026sa\\u003dD\\u0026usg\\u003dAFQjCNE7y6nm7TcHvct7CDJRmWrYBHvMEQ\42,\42\42]\n}]\n'];var pt='';var ab='';var lmt='';var curl='https://play.google.com/store/apps/details?id\75com.hulu.plus\46hl\75en';var nbp='[]\n';var sc='CAESGQgFIhUSEwoNY29tLmh1bHUucGx1cxABGAM\075';if (sd){dcu(sd);}
133
+ if (pt){upt(pt);}
134
+ if (ab){uab(ab);}
135
+ if (lmt){ihc(lmt);}
136
+ if (nbp){snbp(nbp);}
137
+ if (curl){sglc(curl);}
138
+ usc(sc);})();</script> </div>
@@ -0,0 +1,391 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2
+ <html prefix="og: http://ogp.me/ns#" xmlns="http://www.apple.com/itms/" lang="en">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="keywords" content="Minecraft – Pocket Edition Lite, Mojang, Games, Simulation, ios apps, app, appstore, app store, iphone, ipad, ipod touch, itouch, itunes" /><meta name="description" content="Read reviews, get customer ratings, see screenshots, and learn more about Minecraft – Pocket Edition Lite on the App Store. Download Minecraft – Pocket Edition Lite and enjoy it on your iPhone, iPad, and iPod touch." /><meta content="Minecraft – Pocket Edition Lite" property="og:title" /><meta content="Get Minecraft – Pocket Edition Lite on the App Store. See screenshots and ratings, and read customer reviews." property="og:description" /><meta content="App Store" property="og:site_name" /><meta content="http://a4.mzstatic.com/us/r1000/087/Purple/99/2f/dd/mzl.erzwvjsi.png" property="og:image" /><meta content="image/png" property="og:image:type" />
5
+ <link rel="canonical" href="https://itunes.apple.com/us/app/minecraft-pocket-edition-lite/id479651754?mt=8" />
6
+ <title>Minecraft – Pocket Edition Lite for iPhone, iPod touch, and iPad on the iTunes App Store</title>
7
+ <script>
8
+ if (!window.its) {
9
+ window.its = {};
10
+ }
11
+ its.markupLoadStartTime = new Date().getTime();
12
+ if (!window.onerror) window.onerror = function(message, url, lineNumber) {
13
+ if (!window._earlyOnerrorException) {
14
+ window._earlyOnerrorException = {message: message,
15
+ url: url,
16
+ lineNumber: lineNumber};
17
+ }
18
+ };
19
+ </script>
20
+ <link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/htmlResources/F107/web-storefront-base.css" />
21
+ <link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/ht^mlResources/F107/web-storefront-preview.css" />
22
+ <script type="text/javascript" charset="utf-8" src="/htmlResources/F107/frameworks-primaryinit01.js"></script>
23
+ <script type="text/javascript" charset="utf-8">its.serverData={"pageData": {"BUY_PARAM_PRICETYPE": "STDQ","basePrice": 0,"isFree": true,"volumePrice": 0,"basePriceForDisplay": "Free","inflectionValue": 1,"productAdamId": "479651754","productType": "C","BUY_PRODUCT_URL": "https://itunes.apple.com/WebObjects/MZFinance.woa/wa/volumeBuyProduct?cc=us","jsonSearchUrl": "https://itunes.apple.com/us/search","jsonLookupUrl": "https://itunes.apple.com/us/lookup"},"constants": {"IXDisplayableKind": {"Song": {"id": 1,"cssClasses": ["song","music"]},"Album": {"id": 2,"cssClasses": ["album","music"]},"Book": {"id": 3,"cssClasses": ["audiobook"]},"Podcast": {"id": 4,"cssClasses": ["podcast"]},"MusicVideo": {"id": 5,"cssClasses": ["music-video","music","video"]},"TVEpisode": {"id": 6,"cssClasses": ["tv-episode","tv","video"]},"TVSeason": {"id": 7,"cssClasses": ["tv-season","tv","video"]},"ShortFilm": {"id": 8,"cssClasses": ["short-film","movie","video"]},"Movie": {"id": 9,"cssClasses": ["movie","video"]},"ClassicSoftware": {"id": 10,"cssClasses": ["ipod-game"]},"MobileSoftware": {"id": 11,"cssClasses": ["application"]},"MacSoftware": {"id": 30,"cssClasses": ["application","mac-application"]},"iTunesPass": {"id": 12,"cssClasses": ["itunes-pass","album","music"]},"Booklet": {"id": 13,"cssClasses": ["booklet","music"]},"Mix": {"id": 14,"cssClasses": ["mix","music"]},"PodcastEpisode": {"id": 15,"cssClasses": ["podcast-episode"]},"SoftwareAddOn": {"id": 16,"cssClasses": ["software-add-on","application"]},"iMix": {"id": 17,"cssClasses": ["imix","music"]},"ClassicSoftwarePackage": {"id": 18,"cssClasses": ["ipod-game"]},"WeMix": {"id": 19,"cssClasses": ["wemix","music"]},"Artist": {"id": 20,"cssClasses": []},"Ringtone": {"id": 21,"cssClasses": []},"RingtoneAlbum": {"id": 22,"cssClasses": []},"PreorderAlbum": {"id": 23,"cssClasses": ["album","music"]},"MovieBundle": {"id": 24,"cssClasses": ["bundle","movie","video"]},"EBook": {"id": 25,"cssClasses": ["ebook"]},"Concert": {"id": 26,"cssClasses": []},"RichPost": {"id": 29,"cssClasses": []},"SocialPerson": {"id": 27,"cssClasses": []},"SocialArtist": {"id": 28,"cssClasses": []},"Tone": {"id": 31,"cssClasses": []},"ToneAlbum": {"id": 32,"cssClasses": []},"TheyMix": {"id": 33,"cssClasses": []},"Course": {"id": 34,"cssClasses": ["course","itunes-u"]},"MetaEBook": {"id": 35,"cssClasses": ["ebook"]},"ApplePubEBook": {"id": 36,"cssClasses": ["ebook"]},"ApplePubTextbook": {"id": 37,"cssClasses": ["ebook"]}},"Urls": {"upgradeITunesUrl": "http://www.apple.com/itunes/download/","upgradeSafariUrl": "http://www.apple.com/safari/download/"},"MZMediaType": {"Music": {"id": 1},"Podcasts": {"id": 2},"Audiobooks": {"id": 3},"TVShows": {"id": 4},"MusicVideos": {"id": 5},"Movies": {"id": 6},"ClassicSoftware": {"id": 7},"MobileSoftware": {"id": 8},"Ringtones": {"id": 9},"iTunesU": {"id": 10},"EBooks": {"id": 11},"MacSoftware": {"id": 12}},"SFSortOrder": {"Name": {"id": 0},"Featured": {"id": 1},"ReleaseDate": {"id": 2},"Popularity": {"id": 3},"PurchaseDate": {"id": 4},"TopRated": {"id": 5},"ExpirationDate": {"id": 6},"Price": {"id": 7},"ArtistName": {"id": 8},"PlaylistName": {"id": 9},"Duration": {"id": 11},"DiscNumber": {"id": 12},"TrackNumber": {"id": 13},"CmcRecommended": {"id": 10},"AllTimeBestSellers": {"id": 14},"DateAdded": {"id": 15}},"SFCustomComponentCountryCode": "usa"},"properties": {"clientStatsLoadTimeGroup": "4000","MZHtmlResourcesUtil.allowDeferJsLoad": true,"countryCodeIso2a": "us","currencyFormat": "$#,##0.00;$#,##0.00;-$#,##0.00","currencySymbol": "$","currencyThousandSeparator": ",","currencyDecimalSeparator": ".","iTunesUEnrollLink": "","ITSServerEnvironment": "prod","ITSServerInstance": "2126056","ITSResourceRevNum": "F107","resourceUrlPrefix": "https://s.mzstatic.com","ITSLogger.ServerReportingProtocol": "https","ITSLogger.ServerReportingDomain": "metrics.mzstatic.com","ITSLogger.ServerReportingApp": "MZUserXP","ITSLogger.RecordStatsAction": "recordStats","ITSLogger.SenderName": "ITSClient","DynaLoader.allowDynaLoading": true,"itsLoggerQueueProcessingInterval": 10000,"cobaltBundleId": "com.apple.itunesu","getCobaltAppLink": "https://itunes.apple.com/us/app/id490217893","cobaltLearnMore": "https://itunes.apple.com/WebObjects/MZStore.woa/wa/learnMore?about=iTunesUUpgradePage&cc=us&type=2","isCobaltEnabled": true,"isCobaltJavascriptRedirectEnabled": true,"isCobaltUpsellPageEnabled": true,"personalizedButtonsEnabled": true,"SF6.Personalization.isCMAEnabled": true,"SF6.Personalization.isCMSEnabled": true,"SF6.StorePlatform.whitelistParams": ["caller","dsid","id","p"],"metrics": {"metricsUrl": "https://xp.apple.com/WebObjects/MZUserXP.woa/wa/recordMetrics","compoundSeparator": "_","tokenSeparator": "|","postFrequency": 60000,"disabled": false,"sendDisabled": false,"fieldsMap": {"single": {"targetId": ["id","adamId","type","fcId","station-hash"]},"multi": {},"custom": {"impressions": ["id","adamId","station-hash"],"location": ["id","adamId","dataSetId","name","fcKind","kindIds","type","station-hash","core-seed-name"]}},"metricsBase": {"storeFrontHeader": "","language": "1","platformId": "8","platformName": "ItunesPreview","storeFront": "143441","environmentCluster": "ST11","environmentType": "prod"}}}}</script>
24
+ <script type="text/javascript" charset="utf-8">
25
+ if(typeof(iTSLocalization) == "undefined") { iTSLocalization = new Object(); }
26
+ if(typeof(iTSLocalization._strings) == "undefined") { iTSLocalization._strings = new Object(); }
27
+ iTSLocalization._strings.base = {"_decimalSeparator":".", "_thousandsSeparator":",", "Js.iTunesStoreError.Message":"We could not complete your request.", "Js.iTunesStoreError.Explanation":"There was an error in the iTunes Store. Please try again later. (@@errorNum@@)", "Js.TextTruncation.More":"More", "More":"More", "Less":"Less", "Js.TextLimit.Remaining":"@@count@@ characters remaining", "Js.Showcase.Next":"Next Item", "Js.InlineReview.1":"hate it", "Js.InlineReview.2":"don't like it", "Js.InlineReview.3":"it's ok", "Js.InlineReview.4":"it's good", "Js.InlineReview.5":"it's great", "Js.CreateAccount":"Create Apple ID", "Js.InlineReview.SigninTitle":"Sign in to write a review.", "Js.InlineReview.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.InlineRating.SigninTitle":"Sign in to rate this item.", "Js.InlineRating.SigninMessage":"Sign in to continue.", "Js.ReportAConcern.SigninTitle":"Sign in to report a concern.", "Js.ReportAConcern.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.TellAFriend.SigninTitle":"Sign in to tell a friend.", "Js.TellAFriend.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.InlineReview.RateThis":"Rate this", "Js.InlineReview.ClickToRate":"Click to rate", "Js.InlineReview.Thanks":"Thanks!", "Js.InlineReview.Error":"Error", "Js.Pagination.PageNumber":"Page @@num@@", "Js.Pagination.PageNumberTitle":"page @@num@@", "Js.Pagination.PreviousPage":"Previous Page", "Js.Pagination.NextPage":"Next Page", "Js.Pagination.Next":"Next", "Js.Pagination.Back":"Back", "Js.Pagination.DisabledButtonText":"disabled @@button_text@@", "Js.QuickView.Unavailable.Title":"Quick View is currently unavailable for this item.", "Js.QuickView.Unavailable.Text":"Please try again later.", "Js.Search.HintsTitle":"Suggestions", "Js.Wishlist.RemoveTooltip":"Remove from Wish List", "Js.MyAlerts.ConfirmEmailSignUp.Message":"Are you sure you want to receive email alerts?", "Js.MyAlerts.ConfirmEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "Js.MyAlerts.CancelEmailSignUp.Message":"Are you sure you want to stop receiving email alerts?", "Js.MyAlerts.CancelEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "Js.MyAlerts.GeniusActivationNeeded.Message":"This requires Genius.", "Js.MyAlerts.GeniusActivationNeeded.Explanation":"Alerts based on your library content will not be enabled until you have turned on Genius. To learn more, click Go to Genius.", "Js.MyAlerts.GeniusActivationNeeded.Button":"Go to Genius", "Js.ManageArtistAlerts.UncheckAll.Artists":"Uncheck All Artists", "Js.ManageArtistAlerts.UncheckAll.Actors":"Uncheck All Actors", "Js.ManageArtistAlerts.UncheckAll":"Uncheck All", "Js.ManageArtistAlerts.CheckAll.Artists":"Check All Artists", "Js.ManageArtistAlerts.CheckAll.Actors":"Check All Actors", "Js.ManageArtistAlerts.CheckAll":"Check All", "Js.List.Item":"item", "Js.InlinePreview.PlayPreview":"Play preview of @@title@@", "Js.InlinePreview.StopPreview":"Stop preview of @@title@@", "Js.CNConnections.UserReview.YouLiked":"You Liked", "Js.CNConnections.PeoplePopupMore":"and @@count@@ other@@s@@...", "Js.CNConnections.Confirmed":"Confirmed", "Js.CNConnections.RequestSent":"Request sent", "Js.CNConnections.LoginRequired.Title":"Sign in to access Ping.",
28
+ "Js.CNConnections.LoginRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.CNConnections.OptInRequired.Title":"Ping",
29
+ "Js.CNConnections.OptInRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.CNConnections.Dialog.Cancel":"Cancel", "Js.CNConnections.Dialog.GetStarted":"Get Started", "CNConnections.Dialog.PrivateUser.IllegalAction.Title":"Private users may not perform this action.", "CNConnections.Dialog.PrivateUser.IllegalAction.Message":"If you would like to perform this action, please change your privacy settings.", "CNConnections.Dialog.PrivateUser.LeakyAction.Title":"Are you sure you want to perform this action?", "CNConnections.Dialog.PrivateUser.LeakyAction.Message":"This action will make your profile photo and name visible to others.", "CNConnections.Dialog.StopFollowing.Title":"Are you sure you want to stop following @@fullName@@?", "CNConnections.Dialog.StopFollowing.Message":"CNConnections.Dialog.StopFollowing.Message", "CNConnections.Dialog.Like.Review.SignIn.Title":"Sign in to like a review.", "CNConnections.Dialog.Like.Review.SignIn.Message":"Enter your Apple ID or AOL screen name and your password, then click Sign In.", "CNConnections.Dialog.Post.Review.SignIn.Title":"Sign in to post.", "CNConnections.Dialog.Post.Review.SignIn.Message":"Enter your Apple ID or AOL screen name and your password, then click Sign In.", "CNConnections.Dialog.OptIn.Title":"Ping Will No Longer Be Available as of September 30", "CNConnections.Dialog.OptIn.Message":"Liking a review requires Ping, and we are no longer accepting new members.", "CNConnections.Dialog.OptIn.ButtonSubmit":"Learn More", "CNConnections.Dialog.OptIn.ButtonCancel":"Cancel", "CNConnections.Dialog.OptIn.ButtonSignIn":"Sign In", "CNConnections.Upload.UploadErrorHeading":"There is a Problem With Your Upload", "CNConnections.Upload.UploadErrorMessage":"Sorry, there was an error during upload.", "CNConnections.Upload.MaxPhotosErrorMessage":"You can have no more than 20 photos in one post.", "JS.errors.requiredLite":"Please fill in all required fields."}
30
+ </script>
31
+ <script type="text/javascript" charset="utf-8" src="/htmlResources/F107/web-storefront-base.js"></script>
32
+ <script type="text/javascript" charset="utf-8" src="/htmlResources/F107/web-storefront-preview.js"></script>
33
+ <link charset="utf-8" href="https://ssl.apple.com/global/nav/styles/navigation.css" id="globalheader-stylesheet" rel="stylesheet" type="text/css" />
34
+ </head>
35
+ <body onload="detectAndOpenItunes();" class="software geo-us lang-en-us">
36
+ <script type="text/javascript">
37
+ var searchSection = 'ipoditunes';
38
+ var searchCountry = 'us';
39
+ var aiRequestsEnabled = true;
40
+ var aiDisplaySuggestions = true;
41
+ </script>
42
+ <script src="https://ssl.apple.com/global/nav/scripts/globalnav.js" type="text/javascript" charset="utf-8"></script>
43
+ <nav id="globalheader" class="itunes">
44
+ <!--googleoff: all-->
45
+ <ul id="globalnav" role="navigation">
46
+ <li id="gn-apple"><a href="http://www.apple.com/"><span>Apple</span></a></li>
47
+ <li id="gn-store"><a href="http://store.apple.com/"><span>Store</span></a></li>
48
+ <li id="gn-mac"><a href="http://www.apple.com/mac/"><span>Mac</span></a></li>
49
+ <li id="gn-ipod"><a href="http://www.apple.com/ipod/"><span>iPod</span></a></li>
50
+ <li id="gn-iphone"><a href="http://www.apple.com/iphone/"><span>iPhone</span></a></li>
51
+ <li id="gn-ipad"><a href="http://www.apple.com/ipad/"><span>iPad</span></a></li>
52
+ <li id="gn-itunes"><a href="http://www.apple.com/itunes/"><span>iTunes</span></a></li>
53
+ <li id="gn-support" class="gn-last"><a href="http://www.apple.com/support/"><span>Support</span></a></li>
54
+ </ul>
55
+ <!--googleon: all-->
56
+ <div id="globalsearch">
57
+ <form action="http://www.apple.com/search/" method="post" class="search" id="g-search"><div class="sp-label">
58
+ <label for="sp-searchtext">Search</label>
59
+ <input type="text" name="q" id="sp-searchtext" accesskey="s" />
60
+ </div></form>
61
+ <div id="sp-magnify"><div class="magnify-searchmode"></div><div class="magnify"></div></div>
62
+ <div id="sp-results"></div>
63
+ </div>
64
+ </nav>
65
+ <script type="text/javascript">
66
+ AC.GlobalNav.Instance = new AC.GlobalNav();
67
+ </script>
68
+ <div id="productheader" data-hires="true">
69
+ <h2><img src="http://ax.phobos.apple.com.edgesuite.net/images/web/itunes_preview/itunespreview_en.png" alt="iTunes" height="32" width="263"></h2>
70
+ <ul>
71
+ <li id="pn-whatsnew"><a href="http://www.apple.com/itunes/whats-new/">What’s New</a></li>
72
+ <li id="pn-whatis"><a href="http://www.apple.com/itunes/what-is/">What is iTunes</a></li>
73
+ <li id="pn-charts"><a href="http://www.apple.com/itunes/charts/">iTunes Charts</a></li>
74
+ </ul>
75
+ </div>
76
+ <div id="main">
77
+ <div id="itunes-detector">
78
+ <div id="launching-itunes">
79
+ <div id="status">
80
+ <div class="opening-itunes"><span>Opening the iTunes Store.</span><span>If iTunes doesn't open, click the iTunes application icon in your Dock or on your Windows desktop.</span><span class="spinner">Progress Indicator</span></div>
81
+ </div>
82
+ </div>
83
+ <div id="itunes-client-required">
84
+ <div class="callout">
85
+ <div class="left">iTunes</div>
86
+ <h2>iTunes is the world's easiest way to organize and add to your digital media collection.</h2>
87
+ <p preview-capable-text="We are unable to find iTunes on your computer. To download the free app Minecraft – Pocket Edition Lite by Mojang, get iTunes now." class="intro has-preview-capable-text">
88
+ We are unable to find iTunes on your computer. To download the free app Minecraft – Pocket Edition Lite by Mojang, get iTunes now.
89
+ </p>
90
+ <div class="download">
91
+ <p>Already have iTunes? Click I Have iTunes to open it now.</p>
92
+ <a class="i-have-itunes" onclick="its.detect.userOverrideSetItunesInstalled(); its.detect.openItunes(); return true;" href="#">
93
+ <img alt="I Have iTunes" src="/images/web/ihaveitunes.png" />
94
+ </a>
95
+ <a href="#" onclick="javascript:window.location='http://www.apple.com/itunes/affiliates/download/?id=479651754'; return true;"><img alt="Free Download" src="/images/web/freedownload.png" /></a>
96
+ </div>
97
+ <a class="macpc" href="#">iTunes for Mac + PC</a>
98
+ </div>
99
+ </div>
100
+ </div>
101
+ <script type="text/javascript">
102
+ deviceDetect();
103
+ </script>
104
+ <div id="desktopContentBlockId" class='platform-content-block display-block'>
105
+ <div id="content">
106
+ <div class="padder">
107
+ <div id="title" class="intro ">
108
+ <div class="left">
109
+ <h1>Minecraft – Pocket Edition Lite</h1>
110
+ <h2>By Mojang</h2>
111
+ </div>
112
+ <div class="right">
113
+ <a href="https://itunes.apple.com/us/artist/mojang/id479516146" class="view-more">View More By This Developer</a>
114
+ </div>
115
+ <p>Open iTunes to buy and download apps.</p>
116
+ </div>
117
+ <div class="center-stack">
118
+ <div more-text="More" metrics-loc="Titledbox_Description" class="product-review">
119
+ <h4>
120
+ Description
121
+ </h4>
122
+ <p>Imagine it, build it. Create worlds on the go with Minecraft - Pocket Edition<br /><br />This is the Lite version of Minecraft - Pocket Edition. Minecraft - Pocket Edition allows you to build on the go. Use blocks to create masterpieces as you travel, hangout with friends, sit at the park, the possibilities are endless. Move beyond the limits of your computer and play Minecraft everywhere you go.<br /><br />Limitations of the Lite version<br />* The world is not saved between sessions<br />* Multiplayer worlds can not be copied to your phone<br />* Only 18 of the 36 different blocks are available</p>
123
+ </div>
124
+ <div class="app-links"><a rel="nofollow" target="_blank" href="http://www.minecraft.net" class="see-all">Minecraft – Pocket Edition Lite Support</a></div>
125
+ <div more-text="More" metrics-loc="Titledbox_What&#39;s New in Version 0.2.1" class="product-review">
126
+ <h4>
127
+ What's New in Version 0.2.1
128
+ </h4>
129
+ <p>Minor version 0.2.1 (new controls!)<br />+ New optional control scheme; "split touch controls"<br />+ Added pigs to survival mode<br />+ Flying is changed; ascend/descend by sliding from the center button to the up/down button<br />+ More inventory selection slots<br />+ Bug fixes; dark tree trunk was impossible to pick up, invisible fences, resource items in the world were always bright, pixelated destruction feedback circle</p>
130
+ </div>
131
+ <div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large screenshots">
132
+ <div class="title">
133
+ <h2>Screenshots</h2>
134
+ <div class="pill">
135
+ <a metrics-loc="Pill_" metrics-leaf="1" href="#">iPhone</a>
136
+ <a metrics-loc="Pill_" metrics-leaf="1" href="#">iPad</a>
137
+ </div>
138
+ <a metrics-loc="Seeall" href="" class="see-all"><span></span></a>
139
+ </div>
140
+ <div class="toggle">
141
+ <div metrics-loc="iPhone" num-items="3" class="content iphone-screen-shots"><div><div class="lockup"><img alt="iPhone Screenshot 1" class="landscape" src="http://a2.mzstatic.com/us/r1000/065/Purple/66/56/d1/mzl.nlcdenrl.320x480-75.jpg" /></div><div class="lockup"><img alt="iPhone Screenshot 2" class="landscape" src="http://a2.mzstatic.com/us/r1000/089/Purple/90/4e/9f/mzl.nresztpb.320x480-75.jpg" /></div><div class="lockup"><img alt="iPhone Screenshot 3" class="landscape" src="http://a1.mzstatic.com/us/r1000/070/Purple/bb/dc/5c/mzl.ufuvkbwe.320x480-75.jpg" /></div></div></div><div metrics-loc="iPad" num-items="3" class="content ipad-screen-shots"><div><div class="lockup"><img alt="iPad Screenshot 1" class="landscape" src="http://a4.mzstatic.com/us/r1000/106/Purple/12/3d/d0/mzl.rzukvhhg.480x480-75.jpg" /></div><div class="lockup"><img alt="iPad Screenshot 2" class="landscape" src="http://a2.mzstatic.com/us/r1000/120/Purple/ca/ca/d7/mzl.itrqspav.480x480-75.jpg" /></div><div class="lockup"><img alt="iPad Screenshot 3" class="landscape" src="http://a5.mzstatic.com/us/r1000/118/Purple/49/2f/83/mzl.zkdizava.480x480-75.jpg" /></div></div></div>
142
+ </div>
143
+ </div>
144
+ <div class="customer-reviews">
145
+ <h4>Customer Reviews</h4>
146
+ <div more-text="More" class="customer-review">
147
+ <h5>
148
+ <span class="customerReviewTitle">Improving</span>
149
+ <div class='rating' role='img' tabindex='-1' aria-label='5 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span></div></div>
150
+ </h5>
151
+ <span class="user-info">by
152
+ Taitai76
153
+ </span>
154
+ <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
155
+ Pleas add:<br/>More enmays like creepers endermen and all<br/><br/>Let us craft so we make our own pickaxes wepons and tools it the whole reason its called mine CRAFT<br/><br/>and finally add more animles to tame and all.<br/><br/>Please update all these improvments
156
+ </p>
157
+ </div>
158
+ <div more-text="More" class="customer-review">
159
+ <h5>
160
+ <span class="customerReviewTitle">Cool!</span>
161
+ <div class='rating' role='img' tabindex='-1' aria-label='5 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span></div></div>
162
+ </h5>
163
+ <span class="user-info">by
164
+ Robertobobbym
165
+ </span>
166
+ <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
167
+ Can you believe it? It's minecraft for mobile phones! Slowly becoming just like the computer one, updates are being made, this is so awesome!<br/><br/>Also, did anyone notice the 3D sound system? I did, so cool :3<br/><br/>PIGS! :D
168
+ </p>
169
+ </div>
170
+ <div more-text="More" class="customer-review">
171
+ <h5>
172
+ <span class="customerReviewTitle">No crafting?</span>
173
+ <div class='rating' role='img' tabindex='-1' aria-label='4 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star ghost">&nbsp;</span></div></div>
174
+ </h5>
175
+ <span class="user-info">by
176
+ Kevin Luxon
177
+ </span>
178
+ <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
179
+ It's a great game but, what is minecraft where you cannot craft stuff? I am not happy without this feature.
180
+ </p>
181
+ </div>
182
+ </div>
183
+ <div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large">
184
+ <div class="title">
185
+ <h2>Customers Also Bought</h2>
186
+ </div>
187
+ <div num-items="5" class="content"><div>
188
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="425652036" preview-artist="Geek Beach" aria-label="Dune Rider" preview-title="Dune Rider" class="lockup small application">
189
+ <a href="https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Dune Rider" class="artwork" src="http://a1.mzstatic.com/us/r1000/117/Purple/v4/cd/91/bd/cd91bd60-1227-ce35-51fe-872d00b73b33/mzl.uthbtbmn.100x100-75.jpg" /><span class="mask"></span></div></a>
190
+ <div class="lockup-info">
191
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8" class="name">Dune Rider</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
192
+ </div>
193
+ </div>
194
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="408257810" preview-artist="Abraham Stolk" aria-label="the little crane that could" preview-title="the little crane that could" class="lockup small application">
195
+ <a href="https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="the little crane that could" class="artwork" src="http://a4.mzstatic.com/us/r1000/087/Purple/v4/c2/94/a1/c294a156-8e31-0da2-3dd1-c9e44fa92dd1/mzl.pjjplxbz.100x100-75.jpg" /><span class="mask"></span></div></a>
196
+ <div class="lockup-info">
197
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8" class="name">the little crane that could</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
198
+ </div>
199
+ </div>
200
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="390364604" preview-artist="Ratrod Studio Inc." aria-label="Drift Mania Championship Gold Lite" preview-title="Drift Mania Championship Gold Lite" class="lockup small application">
201
+ <a href="https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Drift Mania Championship Gold Lite" class="artwork" src="http://a5.mzstatic.com/us/r1000/077/Purple/v4/c4/1d/0c/c41d0cbc-662e-5dc4-a401-e053e5360cfc/mzl.qnqeudpa.100x100-75.jpg" /><span class="mask"></span></div></a>
202
+ <div class="lockup-info">
203
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8" class="name">Drift Mania Championship Gold Lite</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
204
+ </div>
205
+ </div>
206
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="294919686" preview-artist="Ezone.com" aria-label="Crazy Snowboard" preview-title="Crazy Snowboard" class="lockup small application">
207
+ <a href="https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Crazy Snowboard" class="artwork" src="http://a5.mzstatic.com/us/r1000/100/Purple2/v4/b8/a2/45/b8a24557-ac43-bff3-fb31-539112bcaa8b/mzl.jrptqkzr.100x100-75.jpg" /><span class="mask"></span></div></a>
208
+ <div class="lockup-info">
209
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8" class="name">Crazy Snowboard</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
210
+ </div>
211
+ </div>
212
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="389941080" preview-artist="Logik State" aria-label="Sand Slides" preview-title="Sand Slides" class="lockup small application">
213
+ <a href="https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Sand Slides" class="artwork" src="http://a5.mzstatic.com/us/r1000/055/Purple/v4/d4/fc/58/d4fc5869-4170-a47a-e6df-9891619b96a5/V4HttpAssetRepositoryClient-mzm.xqmhkley.png-1988064742115934236.100x100-75.jpg" /><span class="mask"></span></div></a>
214
+ <div class="lockup-info">
215
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8" class="name">Sand Slides</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
216
+ </div>
217
+ </div>
218
+ </div></div>
219
+ </div>
220
+ </div>
221
+ <div id="left-stack">
222
+ <div rating-software="100,itunes-games" parental-rating="1" class="lockup product application">
223
+ <a href="https://itunes.apple.com/us/app/minecraft-pocket-edition-lite/id479651754?mt=8"><div class="artwork"><img width="175" height="175" alt="Minecraft &amp;ndash; Pocket Edition Lite" class="artwork" src="http://a5.mzstatic.com/us/r1000/087/Purple/99/2f/dd/mzl.erzwvjsi.175x175-75.jpg" /><span class="mask"></span></div></a>
224
+ <a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/minecraft-pocket-edition-lite/id479651754?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a>
225
+ <div class="fat-binary-blurb"><span class="fat-binary-badge"></span><span>This app is designed for both iPhone and iPad</span></div><ul class="list"><li><div class="price">Free</div></li><li class="genre"><span class="label">Category: </span><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8">Games</a></li><li class="release-date"><span class="label">Updated: </span>Mar 14, 2012</li><li><span class="label">Version: </span>0.2.1</li><li><span class="label">Size: </span>4.5 MB</li><li class="language"><span class="label">Language: </span>English</li><li><span class="label">Seller: </span>Mojang AB</li><li class="copyright">© Mojang AB</li></ul><div class="app-rating"><a href="https://itunes.apple.com/WebObjects/MZStore.woa/wa/appRatings">Rated 4+</a></div><p><span class="app-requirements">Requirements: </span>Compatible with iPhone, iPod touch, and iPad. Requires iOS 4.3 or later.</p>
226
+ </div>
227
+ <div class='extra-list customer-ratings'>
228
+ <h4>Customer Ratings</h4>
229
+ <div>Current Version:</div>
230
+ <div class='rating' role='img' tabindex='-1' aria-label='4 stars, 38024 Ratings'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star ghost">&nbsp;</span></div><span class="rating-count">38024 Ratings</span>
231
+ </div>
232
+ <div>All Versions:</div>
233
+ <div class='rating' role='img' tabindex='-1' aria-label='4 stars, 44041 Ratings'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star ghost">&nbsp;</span></div><span class="rating-count">44041 Ratings</span>
234
+ </div>
235
+ </div>
236
+ <div metrics-loc="Titledbox_More by Mojang" class="extra-list more-by">
237
+ <h4>
238
+ More by Mojang
239
+ </h4>
240
+ <ul class="list"><li>
241
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="479516143" preview-artist="Mojang" aria-label="Minecraft &ndash; Pocket Edition" preview-title="Minecraft – Pocket Edition" class="lockup small application">
242
+ <a href="https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8" class="artwork-link"><div class="artwork"><img width="75" height="75" alt="Minecraft &#8211; Pocket Edition" class="artwork" src="http://a1.mzstatic.com/us/r1000/014/Purple6/v4/a0/7e/9f/a07e9fe1-497e-cb2a-641a-3851f700790e/V4HttpAssetRepositoryClient-mzl.rqatelgd.png-6330614865619861919.75x75-65.jpg" /><span class="mask"></span></div></a>
243
+ <div class="lockup-info">
244
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8" class="name">Minecraft – Pocket Edition</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
245
+ </div>
246
+ </div>
247
+ </li></ul>
248
+ </div>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ <object classID="CLSID:D719897A-B07A-4C0C-AEA9-9B663A28DFCB" width="1" height="1" id="iTunesDetectorIE" ></object>
255
+ <script type="text/javascript">itms.PageData.itunesDownloadUrl='http://www.apple.com/itunes/affiliates/download/?id=479651754';</script>
256
+ <div id="facebook">
257
+ <div class="fbfan">
258
+ <iframe src="https://www.facebook.com/plugins/likebox.php?id=100484820802&amp;width=230&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:230px; height:63px;" allowTransparency="true"></iframe>
259
+ </div>
260
+ <div class="fbfan last">
261
+ <iframe src="https://www.facebook.com/plugins/likebox.php?id=286893159420&amp;width=250&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:63px;" allowTransparency="true"></iframe>
262
+ </div>
263
+ <p>Become a fan of the iTunes and App Store pages on Facebook for exclusive offers, the inside scoop on new apps and more.</p>
264
+ </div>
265
+ <div id="globalfooter">
266
+ <div id="breadory">
267
+ <ol id="breadcrumbs">
268
+ <li class="home"><a href="http://www.apple.com/">Home</a></li>
269
+ <li>iTunes</li>
270
+ </ol>
271
+ <!--googleoff: all-->
272
+ <div id="directorynav" class="itunes">
273
+ <div id="dn-cola" class="column first">
274
+ <h3>iTunes</h3>
275
+ <ul>
276
+ <li><a href="http://www.apple.com/itunes/download/">Download iTunes</a></li>
277
+ <li><a href="http://www.apple.com/itunes/whats-new/">What’s New?</a></li>
278
+ <li><a href="http://www.apple.com/itunes/what-is/">What is iTunes?</a></li>
279
+ <li><a href="http://www.apple.com/itunes/charts/songs/">iTunes Charts</a></li>
280
+ </ul>
281
+ </div>
282
+ <div id="dn-colb" class="column">
283
+ <h3>More iTunes</h3>
284
+ <ul>
285
+ <li><a href="http://www.apple.com/itunes/digital-music-basics/">Digital Music Basics</a></li>
286
+ <li><a href="http://www.apple.com/itunes/gifts/">iTunes Gifts</a></li>
287
+ <li><a href="http://www.apple.com/education/itunes-u/">iTunes U</a></li>
288
+ <li><a href="http://www.apple.com/support/ipod/">iPod + iTunes Support</a></li>
289
+ <li><a href="http://www.apple.com/airplay/">AirPlay</a></li>
290
+ <li><a href="http://www.apple.com/accessibility/itunes/vision.html">Accessibility</a></li>
291
+ </ul>
292
+ </div>
293
+ <div id="dn-colc" class="column">
294
+ <h3>Working with iTunes</h3>
295
+ <ul>
296
+ <li><a href="http://www.apple.com/itunes/sellcontent/">Sell Your Content</a></li>
297
+ <li><a href="http://www.apple.com/itunes/content-providers/">Content Providers</a></li>
298
+ <li><a href="http://www.apple.com/itunes/companies/">Market with iTunes</a></li>
299
+ <li><a href="http://www.apple.com/itunes/affiliates/">Join the Affiliate Program</a></li>
300
+ <li><a href="http://www.apple.com/itunes/link/">Link to iTunes</a></li>
301
+ </ul>
302
+ </div>
303
+ <div id="dn-cold" class="column last">
304
+ <h3>iTunes Store</h3>
305
+ <ul>
306
+ <li><a href="http://itunes.apple.com/us/browse/">Browse iTunes Store</a></li>
307
+ <li><a href="http://itunes.apple.com/us/genre/mobile-software-applications/id36?mt=8">Browse App Store</a></li>
308
+ <li><a href="http://itunes.apple.com/us/store">Buy Music Now</a></li>
309
+ <li><a href="http://store.apple.com/us/browse/home/giftcards/itunes/gallery">Buy iTunes Gift Cards</a></li>
310
+ <li><a href="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/redeemLandingPage">Redeem iTunes Gift Cards</a></li>
311
+ <li><a href="http://www.apple.com/itunes/corporatesales/">iTunes Corporate Sales</a></li>
312
+ <li><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewFeature?id=365729306">Free Single of the Week</a></li>
313
+ <li><a href=" http://www.apple.com/itunes/inside-itunes/">Inside iTunes</a></li>
314
+ </ul>
315
+ </div>
316
+ <div class="capbottom"></div>
317
+ </div>
318
+ <!--googleon: all-->
319
+ </div><!--/breadory-->
320
+ <p class="gf-buy">Shop the <a href="http://store.apple.com/us">Apple Online Store</a> (1-800-MY-APPLE), visit an <a href="http://www.apple.com/retail/">Apple Retail Store</a>, or find a <a href="http://www.apple.com/buy/">reseller</a>.</p>
321
+ <ul class="gf-links piped">
322
+ <li><a href="http://www.apple.com/about/" class="first">Apple Info</a></li>
323
+ <li><a href="http://www.apple.com/sitemap/">Site Map</a></li>
324
+ <li><a href="http://www.apple.com/hotnews/">Hot News</a></li>
325
+ <li><a href="http://www.apple.com/rss/">RSS Feeds</a></li>
326
+ <li><a href="http://www.apple.com/contact/" class="contact_us">Contact Us</a></li>
327
+ <li><a href="http://www.apple.com/choose-your-country/" class="choose"><img src="http://images.apple.com/global/elements/flags/22x22/usa.png" alt="Choose your country or region" width="22" height="22" data-hires="true" /></a></li>
328
+ </ul>
329
+ <div class="gf-sosumi">
330
+ <p>Copyright &copy; 2013 Apple Inc. All rights reserved.</p>
331
+ <ul class="piped">
332
+ <li><a href="http://www.apple.com/legal/internet-services/terms/site.html" class="first">Terms of Use</a></li>
333
+ <li><a href="http://www.apple.com/privacy/">Privacy Policy</a></li>
334
+ </ul>
335
+ </div>
336
+ </div><!--/globalfooter-->
337
+ <script language="JavaScript" type="text/javascript"><!--
338
+ var iTSMetricsCallbackFunction = function() {
339
+ ITSMetrics.reportingSuite = "appleitmswww,appleitmsus";
340
+ ITSMetrics.omniture = ITSMetrics.createBaselineOmnitureObject();
341
+ ITSMetrics.isPageMetricsEnabled=true;
342
+ /* Page Metrics */
343
+ ITSMetrics.omniture.pageName="SEO-Software-US-Mojang-Minecraft \u2013 Pocket Edition Lite-479651754";
344
+ ITSMetrics.omniture.channel="SEO";
345
+ ITSMetrics.omniture.prop22="HTML";
346
+ ITSMetrics.omniture.eVar22="HTML";
347
+ ITSMetrics.omniture.products="Mojang-Minecraft \u2013 Pocket Edition Lite-479651754";
348
+ /* User Agent */
349
+ var userAgentForMetrics = ITSMetrics.userAgentForMetrics();
350
+ ITSMetrics.omniture.prop12 = userAgentForMetrics;
351
+ ITSMetrics.omniture.eVar12 = userAgentForMetrics;
352
+ // check if Game Center
353
+ var gcUserAgent = "GameCenter";
354
+ var isGameCenter = userAgentForMetrics.length >= gcUserAgent.length && userAgentForMetrics.substr(0, gcUserAgent.length) == gcUserAgent;
355
+ if (isGameCenter) {
356
+ // prepend "GameCenter" to page and channel name
357
+ if (ITSMetrics.omniture.pageName) ITSMetrics.omniture.pageName = "GameCenter-" + ITSMetrics.omniture.pageName;
358
+ if (ITSMetrics.omniture.channel) ITSMetrics.omniture.channel = "GameCenter-" + ITSMetrics.omniture.channel;
359
+ }
360
+ /* Browser Plugins */
361
+ ITSMetrics.shouldTrackBrowserPlugins = false;
362
+ /* Pass-thru query params */
363
+ ITSMetrics.processQueryParameterInfoInCurrentRequest(ITSMetrics.omniture);
364
+ if (ITSMetrics.isPageMetricsEnabled) {
365
+ ITSMetrics.emitPagePing = function() {
366
+ var s_code=ITSMetrics.omniture.t();
367
+ if (s_code) {
368
+ var containingDiv = document.createElement('div');
369
+ containingDiv.innerHTML = s_code;
370
+ document.body.appendChild(containingDiv);
371
+ }
372
+ };
373
+ its.x.addEventListener(window, 'load', function() { window.setTimeout(ITSMetrics.emitPagePing, 1) }, false );
374
+ }
375
+ };
376
+ if (!window["ITSMetrics"]){
377
+ iTSDefer.register(function() {
378
+ iTSMetricsCallbackFunction();
379
+ });
380
+ } else {
381
+ iTSMetricsCallbackFunction();
382
+ }
383
+ --></script>
384
+ <script>
385
+ if (!window.its) {
386
+ window.its = {};
387
+ }
388
+ window.its.markupLoadEndTime = new Date().getTime();
389
+ </script>
390
+ </body>
391
+ </html>