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,339 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
4
+ <head>
5
+ <title>Watch The Awesomes | Pilot, Part 1 online | Free | Hulu</title>
6
+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml?v=Aug27" title="Hulu"/>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
9
+ <link rel="shortcut icon" href="/fat-favicon.ico" />
10
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
11
+ <meta name="application-name" content="Hulu"/>
12
+ <meta name="msapplication-tooltip" content="Start Hulu with Internet Explorer enhancements."/>
13
+ <meta name="msapplication-starturl" content="/" />
14
+ <meta name="description" content="Watch Pilot, Part 1 free online. Stream The Awesomes season 1, episode 1 instantly."/><meta name="keywords" content="tv, television, movie, trailer, video, free, watch, share, entertainment"/>
15
+ <link rel="media:video" href="http://www.hulu.com/embed.html?eid=0-us7uHJgevua5TeiGwCxQ" /><link rel="media:thumbnail" href="http://ib3.huluim.com/video/60245466?region=US&size=220x124" /><link rel="image_src" href="http://ib3.huluim.com/video/60245466?region=US&size=220x124" />
16
+
17
+ <meta property="og:title" content="The Awesomes: Pilot, Part 1"/>
18
+ <meta property="og:type" content="video.episode"/>
19
+ <meta property="og:image" content="http://ib3.huluim.com/video/60245466?region=US&size=600x400"/>
20
+ <meta property="og:site_name" content="Hulu"/>
21
+ <meta property="og:description" content="After Mr. Awesome decides to retire and disband The Awesomes, his son Prock steps in to keep the team going. Meanwhile, Dr. Malocchio decides it’s time to come out of super-villain retirement."/>
22
+
23
+ <meta property="og:video:width" content="640"/>
24
+ <meta property="og:video:height" content="360"/>
25
+
26
+ <meta property="og:video" content="https://secure.hulu.com/embed/0-us7uHJgevua5TeiGwCxQ"/>
27
+ <meta property="og:url" content="http://www.hulu.com/watch/515146"/>
28
+ <meta property="og:video:type" content="application/x-shockwave-flash"/>
29
+
30
+ <meta property="video:series" content="http://www.hulu.com/the-awesomes"/>
31
+
32
+ <meta name="twitter:card" value="summary">
33
+ <meta name="twitter:site" value="@Hulu"/>
34
+ <meta name="twitter:title" value="The Awesomes: Pilot, Part 1"/>
35
+ <meta name="twitter:image" value="http://ib3.huluim.com/video/60245466?region=US&size=600x400"/>
36
+ <meta name="twitter:description" value="After Mr. Awesome decides to retire and disband The Awesomes, his son Prock steps in to keep the team going. Meanwhile, Dr. Malocchio decides it’s time to come out of super-villain retirement."/>
37
+ <meta name="twitter:url" value="http://www.hulu.com/watch/515146"/>
38
+
39
+
40
+ <meta property="fb:app_id" content="40582213222"/>
41
+ <meta property="twitter:account_id" content="15033883"/>
42
+ <meta name="msApplication-ID" content="App" />
43
+ <meta name="msApplication-PackageFamilyName" content="HuluLLC.HuluPlus_fphbd361v8tya" />
44
+ <meta name="msapplication-TileImage" content="/icon-win8-tile.png"/>
45
+ <meta name="msapplication-TileColor" content="#ffffff"/>
46
+
47
+ <script type='text/javascript'>
48
+
49
+ (function (d, w) {
50
+ w.HuluPerfStart = new Date();
51
+ w.errorCode = '';
52
+ w.errorLogSampleRate = {"sampleRate":0.05,"lastUpdate":1345778273};
53
+ w.jsLoaded = {frameworkloadedCallbacks: [], frameworkOnLoad: function(){}};
54
+ w.donutAllocations = {"flight_name_lookup_table":{"1":"web","2":"reco","3":"cct","6":"player","7":"web_guid_only","8":"search"},"assignments":{"8":{"10-49":"fe128bab776e7c920e151668561dfdb2","0-9":"f4b3b581d42389890243436e776a8370"},"1":{"2-3":"93261dd75650a2db32982a0467c8c867","18-19":"133a1c1b7f0b9af21b9f4c49d6464b0c","4-5":"5e4274d5736e7d9f58550e37504a0383","8-15":"5abc1f4d3bdf54bce727b412d88b8b0f","16-17":"3d2338190bb069c0f6c2e86b6d733290","6-7":"aea28f4cfd96addb93850d8c36e56142","0-1":"5abc1f4d3bdf54bce727b412d88b8b0f"},"2":{"20-29":"e2aac6ac832eaa57e222487ffffebb5f","0-19":"21271f5770f5e2bf305879ae4298a633","70-79":"e2aac6ac832eaa57e222487ffffebb5f"}},"flight_guid_only_lookup_table":{"1":0,"2":0,"3":0,"6":0,"7":1,"8":0},"assignment_lookup_table":{"93261dd75650a2db32982a0467c8c867":{"treatment_id":56,"flight_id":1,"treatment_name":"control","experiment_name":"masthead-redesign","experiment_id":7,"flight_name":"web"},"21271f5770f5e2bf305879ae4298a633":{"treatment_id":183,"flight_id":2,"treatment_name":"ptray_non_p13n","experiment_name":"p13n_tray","experiment_id":24,"flight_name":"reco"},"f4b3b581d42389890243436e776a8370":{"treatment_id":187,"flight_id":8,"treatment_name":"8_1_control_treatment","experiment_name":"8_1_control_experiment","experiment_id":27,"flight_name":"search"},"e2aac6ac832eaa57e222487ffffebb5f":{"treatment_id":185,"flight_id":2,"treatment_name":"ptray_p13n","experiment_name":"p13n_tray","experiment_id":24,"flight_name":"reco"},"fe128bab776e7c920e151668561dfdb2":{"treatment_id":189,"flight_id":8,"treatment_name":"new_related_search","experiment_name":"related_search_experiment","experiment_id":29,"flight_name":"search"},"3d2338190bb069c0f6c2e86b6d733290":{"treatment_id":125,"flight_id":1,"treatment_name":"masthead-exp-ctrl","experiment_name":"masthead-redesign","experiment_id":7,"flight_name":"web"},"aea28f4cfd96addb93850d8c36e56142":{"treatment_id":62,"flight_id":1,"treatment_name":"control","experiment_name":"masthead-redesign","experiment_id":7,"flight_name":"web"},"133a1c1b7f0b9af21b9f4c49d6464b0c":{"treatment_id":134,"flight_id":1,"treatment_name":"control","experiment_name":"masthead-redesign","experiment_id":7,"flight_name":"web"},"5abc1f4d3bdf54bce727b412d88b8b0f":{"treatment_id":-11,"flight_id":1,"treatment_name":"control","experiment_name":"1_1_control_experiment","experiment_id":12,"flight_name":"web"},"5e4274d5736e7d9f58550e37504a0383":{"treatment_id":132,"flight_id":1,"treatment_name":"control","experiment_name":"masthead-redesign","experiment_id":7,"flight_name":"web"}},"flight_id_lookup_table":{"web":1,"web_guid_only":7,"reco":2,"cct":3,"search":8,"player":6},"treatment_overrides":[],"salt":"jawehflawhefkljawehfkljawhef"};
55
+
56
+ w.API_DONUT = 'N8C1yCzdirk8Ad1HHISQxYkh8pM=RTnPQNE5b279cca2fd891aa93e1a2c6b62fcaf03830516c4da1ef7daec53a56d758e3ebb417069b606a305eefdd7da79cd865be1';
57
+ w.PLAYER_DONUT = '5iqegb5xAuquCPcCG7tNiUoJiM4=hKNy6y8E3d4396d7338bf98c61b5986c44bbb3ffeaa4774063bf130226132ad8d8d157ab150b67632f5a9afc67c97fa5acf383be';
58
+ w.MOBILE_DONUT = 'ipNXQEx5mmRGc8Fis5nIkX8I888=I9q8yxzE5f6138d0185219312d27ae30c75d8f2935a974440b1572f74df519c7e6da02e8649b98d9a1d37daa4b25e7f2bad13c9d';
59
+
60
+ d.write("\n <link href=\"http://static.huluim.com/huluguru/fonts-1c82c659a3e86ad3acd40bdf052b3941.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n <!--[if lt IE 9]>\n <link href=\"http://static.huluim.com/huluguru/ie_hacker-b36cca279ee32eeb2b56b0a985ef0b58.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n <![endif]-->\n\n <script src=\"http://static.huluim.com/huluguru/i18n/en-us/translations-85ff23876467c3b07e8db388fbe442cb.js\" type=\"text/javascript\"><\/script>\n <script src=\"http://static.huluim.com/huluguru/application_core-914ab081569b1c51d0d1eea0c6583cdd.js\" type=\"text/javascript\"><\/script>\n <script src=\"http://static.huluim.com/huluguru/application_framework-12feec29dc51f8aadce6827c888db847.js\" type=\"text/javascript\"><\/script>\n <script type='text/javascript'>\n window.jsLoaded.frameworkloadedCallbacks.push(function(){\n window._preloadedFastStartVideo = {\"id\": 515146, \"eid\": \"0-us7uHJgevua5TeiGwCxQ\", \"title\": \"Pilot, Part 1\", \"video_type\": \"episode\", \"content_id\": \"60245466\", \"categories\": \"Episodes\", \"original_premiere_date\": \"2013-08-01T00:00:00Z\", \"is_subscriber_only\": false, \"is_web_only\": false, \"is_auth_valid\": false, \"is_html5_enabled\": true, \"description\": \"After Mr. Awesome decides to retire and disband The Awesomes, his son Prock steps in to keep the team going. Meanwhile, Dr. Malocchio decides it\\u2019s time to come out of super-villain retirement.\", \"copyright\": \"Copyright \\u00a9 2013 Broadway Video Entertainment, Inc. All Rights Reserved.\", \"season_number\": 1, \"episode_number\": 1, \"programming_type\": \"Full Episode\", \"poster_url\": null, \"rating\": 0.0, \"duration\": 1358.06, \"has_captions\": true, \"released_at\": \"2013-07-26T03:38:13Z\", \"content_rating\": \"TV-14\", \"studio\": null, \"available_at\": \"2013-08-01T04:00:00Z\", \"expires_at\": null, \"auth_name\": null, \"tune_in_information\": null, \"embed_permitted\": true, \"show_id\": 12901, \"show\": {\"id\": 12901, \"name\": \"The Awesomes\", \"canonical_name\": \"the-awesomes\", \"rating\": 4.501084593572779, \"link_description\": null, \"seasons_count\": 1, \"episodes_count\": 2, \"games_count\": 0, \"clips_count\": 14, \"film_clips_count\": 0, \"feature_films_count\": 0, \"is_movie\": false, \"is_subscriber_only\": false, \"genre\": \"Action and Adventure\", \"genres\": \"Action and Adventure|Animation and Cartoons|Comedy\", \"videos_count\": 16, \"art_copyright\": null, \"description\": \"From the comedic minds of Seth Meyers (Saturday Night Live) and Mike Shoemaker (Late Night with Jimmy Fallon) comes THE AWESOMES, a new animated show for adults about the greatest superhero team ever after all the good members quit. Showcasing the voice talents of current and past SNL stars, THE AWESOMES introduces a group of not-so-super heroes who just might find a way to save the world.\"}, \"company\": {\"id\": 492, \"name\": \"Hulu Original Series\", \"canonical_name\": \"hulu-original-series\", \"key_art_url\": \"http://ib1.huluim.com/company_key_art/492?size=1600x600&region=US\",</linkwork_logo_url\": null}, \"cr_directors\": [], \"cr_countries\": [], \"video_game_id\": null, \"video_game\": null}\n try {\n Hulu.Mobile.currentVideo = window._preloadedFastStartVideo;\n } catch(e) {}\n });\n <\/script>\n \n <script type='text/javascript'>\n window.jsLoaded.frameworkloadedCallbacks.push(function(){\n $.ajaxSetup({cache: true});\n\n Hulu.bootstrapInit();\n\n Hulu.Configuration.initialize({\n language: 'en',\n content_pgid: \"195\",\n version: '4ee4adc5f502b88bf3d528bb0923905049182cb9',\n tempo_version: '9c23724f2bb2eee5f3ac4da9202655394a9402fa'\n });\n \n if(!Hulu.Mobile.isMobile){\n Hulu.DataPreloader.init();\n } else {\n API_DONUT = MOBILE_DONUT;\n }\n });\n\n window.jsLoaded.frameworkOnLoad = function() {\n for (var i = 0; i < window.jsLoaded.frameworkloadedCallbacks.length; ++i) {\n window.jsLoaded.frameworkloadedCallbacks[i]();\n }\n };\n if (window.jsLoaded.applicationFrameWork) {\n window.jsLoaded.frameworkOnLoad();\n }\n <\/script>\n ");
61
+ if(true && /(ipad|itouch|ipod|iphone|Android|Windows Phone|GoogleTV|Boxee|Skyfire|Playbook|Blackberry|Silk|BNTV250|Xbox|PLAYSTATION 3|Nintendo WiiU)/i.test(navigator.userAgent)) {
62
+ d.write("\n <script src=\"/site-player/html5/js/app_v2.js\" type=\"text/javascript\"><\/script>\n ");
63
+
64
+ d.write("\n <link rel='stylesheet' type='text/css' href=\"/site-player/html5/css/base_v2.css\">\n <link href=\"http://static.huluim.com/huluguru/mobile/application_mobile-c1f5834d2670a3784f676dba522dc21b.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n <script src=\"http://static.huluim.com/huluguru/application_mobile-7e4e0432a441e8e56a2444a547e688b0.js\" type=\"text/javascript\"><\/script>\n ");
65
+ } else {
66
+ d.write("\n <link href=\"http://static.huluim.com/huluguru/en-us/application-473f760cf9e3d2b0ceab71aca9fbb264.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n <script src=\"http://static.huluim.com/huluguru/i18n/en-us/application-f0ac212990fb772b92fecb49361e723e.js\" type=\"text/javascript\"><\/script>\n <script src=\"/site-player/load_player_h2o_v4.js\" type=\"text/javascript\"><\/script>\n ");
67
+ }
68
+ }(document, window));
69
+ </script>
70
+
71
+
72
+
73
+
74
+
75
+ <script type="text/javascript">
76
+ //<![CDATA[
77
+
78
+ var _gaq = _gaq || [];
79
+ _gaq.push(['_setAccount', 'UA-1384159-3']);
80
+ _gaq.push(['_setDomainName', '.hulu.com']);
81
+ var segStatus = Hulu.Behaviors.isLoggedIn() ?
82
+ (Hulu.Behaviors.isSubscriber() ? "plus" : "loggedin") : "anonymous";
83
+
84
+ var removePrefix = /^.*\.(.*)/.exec(Cookies.getCookieByKey("GA_SEGMENT"));
85
+ if (removePrefix && removePrefix[1]) {
86
+ if (removePrefix[1] != segStatus) {
87
+ _gaq.push(['_setVar', segStatus]);
88
+ }
89
+ } else {
90
+ _gaq.push(['_setVar', segStatus]);
91
+ }
92
+
93
+ var treatmentName = Hulu.Donut.getExperimentAndAssignmentByFlight(Hulu.Constants.H2O_FLIGHT);
94
+ _gaq.push(['_setCustomVar', 6, 'DonutTreatment', treatmentName || 'Control', 1]);
95
+
96
+ _gaq.push(['_setSessionCookieTimeout', 2 * 60 * 60 * 1000]); // 2 Hours
97
+
98
+ (function() {
99
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
100
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
101
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
102
+ })();
103
+
104
+ //]]>
105
+ </script>
106
+
107
+ <script type='text/javascript'>
108
+ (function($) {
109
+
110
+ $(document).ready(function() {
111
+ if (top.location != location && !(/^https?:\/\/[^\/#\?]*\.hulu(qa)?\.com(:[0-9]+)?($|#|\?|\/)/).test(document.referrer)) {
112
+ top.location.href = document.location.href;
113
+ }
114
+
115
+ var loaded = (window.jsLoaded.applicationFrameWork && window.jsLoaded.application && window.jsLoaded.applicationCore && window.JST);
116
+ if(!Hulu.Mobile.isMobile){
117
+ loaded = loaded && window.LoadPlayer;
118
+ }
119
+ if (!loaded) {
120
+ var url = "http://t2.hulu.com/v3/sitetracking/error";
121
+
122
+ var isBingCrawler = false;
123
+ if (window.navigator && navigator.userAgent) {
124
+ var userAgent = navigator.userAgent.toString();
125
+ isBingCrawler = !!($.client.os.toLowerCase() == "windows" && userAgent.search(/BingPreview/gi) >= 0);
126
+ }
127
+
128
+ var guid = "";
129
+ if (typeof(document.cookie) != 'undefined') {
130
+ $.each(document.cookie.split(';'), function(i, v) {
131
+ var kv = v.split('=');
132
+ if (kv.length > 1 && "guid" == kv[0].replace(/^\s+|\s+$/g,"")) {
133
+ guid = kv[1];
134
+ }
135
+ });
136
+ }
137
+
138
+ var params = {
139
+ datatype: 'jsloaderror',
140
+ computerguid: guid,
141
+ isbingcrawler: isBingCrawler,
142
+ os: [$.client.os, $.client.osVersion].join(' '),
143
+ client: [$.client.browser, $.client.version].join(' '),
144
+ frameworkloaded: window.jsLoaded.applicationFrameWork ? true : false,
145
+ applicationloaded: window.jsLoaded.application ? true : false,
146
+ templatesloaded: window.JST ? true : false,
147
+ playerloaded: window.LoadPlayer ? true : false
148
+ };
149
+
150
+ $.ajax(url, {data: params}).fail(function(){});
151
+ }
152
+
153
+ Hulu.init();
154
+
155
+
156
+ if(Hulu.Mobile.isMobile) {
157
+ Hulu.PageInfo.PageConfigStore.saveFromRawConfig('/mobile_web', {"type":"page","id":"mobile_web","metadata":{"page_title":"Watch TV. Watch Movies. | Online | Free | Hulu","meta_tags":{"description":"Watch TV shows and movies free online. Stream episodes of The Office, Glee, Family Guy, SNL and many more hit shows."},"cache_time":"2013-08-02T04:18:01+00:00"},"collections":[{"collection":{"type":"collection","id":"mobile_editorial_trending","metadata":{"display_text":"trending now"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1678","robust_path":"/editorial/1678","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1678","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_editorial_late-night","metadata":{"display_text":"late night"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1679","robust_path":"/editorial/1679","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1679","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_editorial_performances","metadata":{"display_text":"performances"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1680","robust_path":"/editorial/1680","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1680","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_editorial_comedy","metadata":{"display_text":"comedy"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1681","robust_path":"/editorial/1681","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1681","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_editorial_celebrity","metadata":{"display_text":"celebrity"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1682","robust_path":"/editorial/1682","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1682","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_editorial_news","metadata":{"display_text":"news"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1683","robust_path":"/editorial/1683","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1683","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_editorial_trailers","metadata":{"display_text":"trailers"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1685","robust_path":"/editorial/1685","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1685","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_editorial_latino","metadata":{"display_text":"latino"},"datasource":{"type":"mozart","path":"/v1.h2o/editorial/1684","robust_path":"/editorial/1684","options":{"url_options":{"asset_scope":"all","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_MOBILE","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":3},"hash":"mozart/editorial/1684","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_recommended_videos","metadata":{"display_text":"Related Clips"},"datasource":{"type":"mozart","path":"/v1.h2o/recommended/upnext","robust_path":"/recommended/upnext","options":{"url_options":{"dp_identifier":"hulu","mode":"default","html5_only":"1"}}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_STANDARD","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{"hide_count":4},"hash":"mozart/recommended/upnext","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_show_clips","metadata":{"data_attributes":{"video_type":"clip"}},"datasource":{"type":"mozart","path":"/v1.h2o/shows/{show_id}/clips","robust_path":"/shows/{show_id}/clips","options":{"url_options":{"sort":"release_with_popularity","html5_only":"1"},"definitive":["sort"]}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_STANDARD","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{},"hash":"mozart/shows/{show_id}/clips~sort=release_with_popularity","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}},{"collection":{"type":"collection","id":"mobile_show_episodes","metadata":{"data_attributes":{"video_type":"episode"}},"datasource":{"type":"mozart","path":"/v1.h2o/shows/{show_id}/episodes","robust_path":"/shows/{show_id}/episodes","options":{"url_options":{"sort":"seasons_and_release","html5_only":"1"},"definitive":["sort"]}},"layout":{"class":"Grid","attributes":{"template_type":"TYPE_STANDARD","tile_type":"TYPE_MOBILE_PLAYER"}},"actions":{},"hash":"mozart/shows/{show_id}/episodes~sort=seasons_and_release","behaviors":[],"config":{"personalizable":"0","is_pinned":"0"}}}],"version":"9c23724f2bb2eee5f3ac4da9202655394a9402fa","latest_version":"9c23724f2bb2eee5f3ac4da9202655394a9402fa","personalized":false}, Hulu.PageInfo.SOURCE_LIST.TEMPO);
158
+ }
159
+
160
+ });
161
+
162
+ })(jQuery);
163
+ </script>
164
+
165
+ <script type='text/javascript'>
166
+ Hulu.Context.save('VIDEO', new Hulu.Models.Video(window._preloadedFastStartVideo));
167
+ </script>
168
+
169
+
170
+ <script type='text/javascript'>
171
+ $(document).ready(function() {
172
+ Hulu.run();
173
+ });
174
+
175
+ Hulu.Utils.secureCookiePostfix = "; secure";
176
+ Hulu.Utils.secureHost = "secure.hulu.com";
177
+ </script>
178
+ </head>
179
+
180
+ <body>
181
+ <div id="fb-root"></div>
182
+ <script type="text/javascript" charset="utf-8">
183
+ (function($) {
184
+
185
+
186
+ if (Hulu.Utils.Env.isDeprecatingBrowser()) {
187
+ document.write("<script src=\"http://static.huluim.com/huluguru/lib/browser_upgrader-705ea0ec614e6b9c831e353dc015e982.js\" type=\"text/javascript\"><\/script>");
188
+ }
189
+
190
+ window.fbAsyncInit = function() {
191
+ Hulu.Utils.runAfterInit(function(){
192
+ FB.init({
193
+ appId: '40582213222',
194
+ status: true,
195
+ cookie: true,
196
+ xfbml: true,
197
+ channelUrl: 'http://www.hulu.com/fb_channel_en_US.html'});
198
+ Hulu.Social.attachFacebookEventHandlers();
199
+ Hulu.Dispatcher.trigger(Hulu.Events.Common.FB_INIT);
200
+ });
201
+ };
202
+ if(!Hulu.Mobile.isMobile){
203
+ (function(d){
204
+ var ref = d.getElementsByTagName('script')[0];
205
+ var scripts = {
206
+ "facebook-jssdk": "//connect.facebook.net/en_US/all.js"
207
+ };
208
+ for(var id in scripts){
209
+ var script = scripts[id];
210
+ if (d.getElementById(id)) {continue;}
211
+ var js = d.createElement('script');
212
+ js.id = id;
213
+ js.async = true;
214
+ js.src = script;
215
+ ref.parentNode.insertBefore(js, ref);
216
+ }
217
+ $.getScript("//platform.twitter.com/widgets.js").done(function(script, textStatus) {
218
+ Hulu.Utils.runAfterInit(function() {
219
+ Hulu.Dispatcher.trigger(Hulu.Events.Common.TWITTR_INIT);
220
+ });
221
+ });
222
+ }(document));
223
+ }
224
+ $(document).ready(function() {
225
+ if ($.client.msie) {
226
+ if (parseInt($.client.version, 10) > 8) {
227
+ var ie9 = new PinnedSite();
228
+ ie9.SetupGA();
229
+ ie9.Initialize();
230
+ }
231
+ }
232
+ });
233
+ if(!Hulu.Mobile.isMobile){
234
+ cram.load();
235
+ $(document).ready(function() {
236
+ setTimeout(function() {
237
+ var so = new SWFObject("/fap.swf?v2", "fap", "1", "1", "10.1");
238
+ so.addParam("bgcolor", "#000000");
239
+ so.addParam("wmode", "transparent");
240
+ so.write("fap-container");
241
+ }, 30000);
242
+ });
243
+ }
244
+
245
+
246
+ if(Hulu.Mobile.isMobile){
247
+ Hulu.Utils.Mobile.scrollToTop();
248
+ }
249
+
250
+ })(jQuery);
251
+ </script>
252
+
253
+ <div id='wrap'>
254
+ <div id='page-left-shadow' class='z-index-layer-1'></div>
255
+ <div id='page-right-shadow' class='z-index-layer-1'></div>
256
+ <div id='background' class='z-index-layer-1'></div>
257
+ <div id="inner-wrap" class="ad-root">
258
+ <div id='banner-wrapper' class='z-index-layer-3'></div>
259
+ <div id="video-player-section" class='z-index-layer-2'>
260
+ <div style="position: fixed; left: -100000px; visibility: visible; width: 0px; height: 0px;">
261
+ <div class="video-player-root">
262
+ <div>
263
+ <div class="above-player desc-left player-width">
264
+ <div id='above-player-ad' class='above-player-ad'></div>
265
+ <div class="player-logo"></div>
266
+ </div>
267
+ <div id="player-container" class="with-background"></div>
268
+ <div id="video-description" class="player-width">
269
+ <div class="video-description-container"></div>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ <div class="player-tray"></div>
274
+ <div id="skin-top-nav-image"></div>
275
+ </div>
276
+ </div>
277
+ <div id='masthead-container'></div>
278
+ <div id='content'>
279
+
280
+
281
+
282
+ <div id='main'>
283
+ </div>
284
+
285
+ <div id="seo-placeholder">
286
+
287
+ </div>
288
+ <script type='text/javascript'>
289
+ $('#seo-placeholder').remove();
290
+ </script>
291
+
292
+ </div>
293
+ </div>
294
+ </div>
295
+ <script type="text/javascript">
296
+ if(!Hulu.Mobile.isMobile) {
297
+ Hulu.Views.VideoPlayer.loadPlayer();
298
+ }
299
+ </script>
300
+ <div id='header-bg-canvas' class='z-index-layer-4'></div>
301
+ <div id='body-login-section' class='z-index-layer-5' style='position:relative;'></div>
302
+ <div id="search-offsite-popup-box" class="z-index-layer-5" style="display:none"></div>
303
+ <div id="search-advanced-option-box" class="z-index-layer-5" style="display:none"></div>
304
+ <div id='hover-box' class='z-index-layer-6' beacon-attr-regionname="hoverbox"></div>
305
+ <div id='popup-section' class='iframe-hacker-container z-index-layer-6' style="display:none"></div>
306
+
307
+ <noscript>
308
+ <div id="noscript-section" class="z-index-layer-5">
309
+ To enjoy Hulu.com, you'll need to enable JavaScript in your web browser. Please <a href="http://enable-javascript.com/" target="_blank">click here</a> to learn how.
310
+ <br/>
311
+ <center>
312
+ <div id="noscript-logo"></div>
313
+ </center>
314
+ </div>
315
+ </noscript>
316
+
317
+ <div id="failscript-section" class="z-index-layer-4" style="display: none">
318
+ Watch TV shows and movies free online. Stream episodes of The Office, Glee, Family Guy, SNL and many more hit shows.
319
+ <br/>
320
+ <br/>
321
+ It appears that software on your computer is blocking JavaScript. To enjoy Hulu.com, you'll need to enable JavaScript in your web browser. Please configure your security software or browser plugins to allow Hulu.com to load JavaScript.
322
+ <br/>
323
+ <br/>
324
+ If you require assistance, please contact <a href="mailto:support@hulu.com">customer support</a>.
325
+ <br/>
326
+ <center>
327
+ <div id="failscript-logo"></div>
328
+ </center>
329
+ </div>
330
+ <script type="text/javascript">
331
+ //<![CDATA[
332
+ document.getElementById('failscript-section').style.display = 'block'; Hulu.Utils.hideElement(document.getElementById('failscript-section'));
333
+ //]]>
334
+ </script>
335
+ <div id="fap-container"></div>
336
+ <div id="footer" class='z-index-layer-2' style="display:none">
337
+ </div>
338
+ <div id="gdn-container" style="display:none"></div>
339
+ </body></html>
Binary file
@@ -0,0 +1,892 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title> Do she got a booty? - Imgur
5
+ </title>
6
+ <meta http-equiv="content-type" content="text/html;charset=utf-8" />
7
+ <meta name="robots" content="follow,index" />
8
+ <meta name="keywords" content="images, funny pictures, image host, image upload, image sharing, image resize" />
9
+ <meta name="description" content="Imgur is used to share photos with social networks and online communities, and has the funniest pictures from all over the Internet." />
10
+ <meta http-equiv="X-UA-Compatible" content="IE=Edge;" />
11
+ <link rel="alternate" type="application/rss+xml" title="Imgur Gallery" href="http://feeds.feedburner.com/ImgurGallery?format=xml" />
12
+ <link rel="stylesheet" type="text/css" href="http://s.imgur.com/min/global.css?1375395668" />
13
+ <meta name="medium" content="image"/>
14
+ <link rel="stylesheet" href="http://s.imgur.com/min/gallery.css?1375395668"/>
15
+ <meta name="twitter:card" value="photo"/>
16
+ <meta name="twitter:site" value="@imgur"/>
17
+ <meta name="twitter:url" value="http://imgur.com/gallery/jPFkb"/>
18
+ <meta name="twitter:title" value="Do she got a booty?"/>
19
+ <link rel="image_src" href="http://i.imgur.com/18ZQ1aL.jpg"/>
20
+ <meta name="twitter:image" value="http://i.imgur.com/18ZQ1aL.jpg"/>
21
+
22
+ <!--[if IE 9]><link rel="stylesheet" href="http://s.imgur.com/include/css/ie-sucks.css?0" type="text/css" /><![endif]-->
23
+
24
+
25
+ <script type='text/javascript'>
26
+ var googletag = googletag || { };
27
+ googletag.cmd = googletag.cmd || [];
28
+ (function() {
29
+ var gads = document.createElement('script');
30
+ gads.async = true;
31
+ gads.type = 'text/javascript';
32
+ var useSSL = 'https:' == document.location.protocol;
33
+ gads.src = (useSSL ? 'https:' : 'http:') +
34
+ '//www.googletagservices.com/tag/js/gpt.js';
35
+ var node = document.getElementsByTagName('script')[0];
36
+ node.parentNode.insertBefore(gads, node);
37
+ })();
38
+ </script>
39
+
40
+ <script type='text/javascript'>
41
+ var dfp_adslot = undefined;
42
+
43
+ googletag.cmd.push(function() {
44
+ dfp_adslot = googletag.defineSlot('/4761660/H_I_300x250', [300, 250], 'div-gpt-ad-1345436847476-0').addService(googletag.pubads());
45
+ googletag.pubads().enableSingleRequest();
46
+ googletag.enableServices();
47
+ });
48
+ </script>
49
+ </head>
50
+ <body>
51
+ <div id="topbar" >
52
+ <div class="header-center">
53
+ <div id="header-logo">
54
+ <a href="//imgur.com"></a>
55
+ </div>
56
+
57
+
58
+
59
+ <div id="main-nav">
60
+ <ul>
61
+
62
+ <li class="random-button title-n " title="random mode"><span class="button-outline"><a href="http://imgur.com/random"><span class="random-icon"></span></a></span></li>
63
+ <li class="upload-button disabled title-n" title="upload images"><div id="upload-global-top-bar-mini-progress"></div><span class="button-outline"><a href="javascript:void(0);"><span class="upload-icon"></span><span class="upload-queue-length">23</span></a></span></li>
64
+ </ul>
65
+ </div>
66
+
67
+ <div id="secondary-nav">
68
+ <ul class="user-nav">
69
+ <li class="signin-link"><a class="" href="https://imgur.com/signin"><span class="dot"></span>sign in</a>
70
+ <div class="signin-dropdown">
71
+ <form method="post" action="https://imgur.com/signin" id="dropdown-signin-form">
72
+ <span class='tiptext'>Use an Imgur account</span>
73
+ <div>
74
+ <input type="text" tabindex="11" name="username" maxlength="255" id="dd-username" title="username or email address" class="placeholder-onkeydown required" value="">
75
+ </div>
76
+
77
+ <div>
78
+ <div class="recover">
79
+ <a class="forgot" href="http://imgur.com/signin/forgotpassword">
80
+ forgot?
81
+ </a>
82
+ </div>
83
+ <div class="clear"></div>
84
+ <input type="password" tabindex="12" name="password" title="password" maxlength="255" id="dd-password" placeholder="password" class="placeholder required" value="">
85
+ </div>
86
+
87
+ <div class="remember-box">
88
+ <input type="checkbox" tabindex="13" name="remember" id="dd-remember" value="remember" checked="checked">
89
+ <label for="dd-remember"> Stay signed in on this computer</label>
90
+ </div>
91
+
92
+ <div class="signin-button">
93
+ <input type="submit" class="button-medium" name="submit_form" value="Sign in" id="dd-submit" tabindex="14">
94
+ <label class="imgur signin-icon" for="dd-submit"></label>
95
+ </div>
96
+ </form>
97
+
98
+ <div class="other-accounts">
99
+ <span class='tiptext'>Use another account</span>
100
+
101
+ <ul>
102
+ <li>
103
+ <a href="https://imgur.com/signin/google">
104
+ Google
105
+ <span class="signin-icon google"></span>
106
+ </a>
107
+ </li>
108
+ <li><a href="https://imgur.com/signin/facebook">
109
+ Facebook
110
+ <span class="signin-icon facebook"></span>
111
+ </a>
112
+ </li>
113
+ <li>
114
+ <a href="https://imgur.com/signin/twitter">
115
+ Twitter
116
+ <span class="signin-icon twitter"></span>
117
+ </a>
118
+ </li>
119
+ <li>
120
+ <a href="https://imgur.com/signin/yahoo">
121
+ Yahoo
122
+ <span class="signin-icon yahoo"></span>
123
+ </a>
124
+ </li>
125
+ </ul>
126
+ </div>
127
+ </div>
128
+ </li>
129
+ <li><a href="https://imgur.com/register">register</a></li>
130
+ </ul>
131
+
132
+ </div>
133
+
134
+ </div>
135
+
136
+ </div>
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+ <a href="javascript:;" id="upload-global-album-tipsy" class="title-nw nodisplay" title="You can't create an album with just one image"></a>
145
+
146
+ <div id="upload-global" class="popup">
147
+ <form method="post" id="upload-global-form" enctype="multipart/form-data" action="http://imgur.com/upload">
148
+ <h1>
149
+ <span id="upload-global-title">Upload images</span>
150
+
151
+ </h1>
152
+
153
+ <div id="upload-global-buttons">
154
+ <div id="upload-global-upload-loader" class="textbox">
155
+ Loading...
156
+ </div>
157
+
158
+ <div id="upload-global-file-wrapper">
159
+ <span class="computerIcon"></span>
160
+ <span class="green">browse</span> your computer
161
+
162
+ <input type="file" name="Filedata" multiple="multiple" id="upload-global-file">
163
+ </div>
164
+
165
+ <div class="left">
166
+ <div id="upload-global-url">
167
+ <span class="webIcon"></span>
168
+ <textarea id="upload-global-link-input" class="placeholder-onkeydown" title="enter URLs to upload from web" placeholder="enter URLs to upload from web" rows="1"></textarea>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="clear"></div>
173
+
174
+ <div id="upload-global-dragdrop">
175
+ <span class="dragdropIcon"></span>
176
+ <span class="green">drag and drop</span> here
177
+ </div>
178
+
179
+ <div class="left">
180
+ <div id="upload-global-clipboard">
181
+ <div style="text-align: center"><span class="clipboardIcons">Ctrl + V</span></div>
182
+ <span class="green">paste</span> from your clipboard
183
+ </div>
184
+ </div>
185
+
186
+ <div class="clear"></div>
187
+ </div>
188
+
189
+ <div class="textbox center" id="upload-global-instructions"></div>
190
+
191
+ <!-- gallery submit vars -->
192
+ <input type="hidden" name="current_upload" value="0"/>
193
+ <input type="hidden" name="total_uploads" value="0"/>
194
+ <input type="hidden" name="terms" value="0"/>
195
+ <input type="hidden" name="gallery_type" value=""/>
196
+
197
+
198
+ <div id="upload-global-errors" class="textbox error" style="display: none;"></div>
199
+
200
+ <div id="upload-global-queue-description" class="textbox nodisplay"></div>
201
+
202
+ <div id="upload-global-start-upload">
203
+ <div class="panel">
204
+ <div>
205
+
206
+ <table id="upload-global-actions">
207
+ <tbody>
208
+ <tr>
209
+
210
+ <td width="50.1%">
211
+
212
+ <div id="upload-global-album-checkbox-div">
213
+ <input type="hidden" name="gallery_submit" value="0"/>
214
+
215
+ <button id="upload-global-gallery-checkbox" type="button">
216
+ <span class="gallery-icon"></span>add to gallery
217
+ </button>
218
+
219
+ <div id="upload-global-gallery-checkbox-overlay"></div>
220
+
221
+ <input type="hidden" name="create_album" value="0"/>
222
+
223
+ <button id="upload-global-album-checkbox" type="button">
224
+ <span class="createAlbum-icon"></span>create album
225
+ </button>
226
+
227
+ </div>
228
+
229
+ </td>
230
+ <td width="49.9%">
231
+ <button type="button" id="upload-global-start-button" class="button-big green" type="submit">
232
+ <span class="start-btn-icon"></span>
233
+ Start Upload
234
+ </button>
235
+ </td>
236
+ </tr>
237
+ </tbody>
238
+ </table>
239
+
240
+ </div>
241
+
242
+ <div id="upload-global-album-options">
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+ <table id="upload-global-album-layout">
254
+ <tr>
255
+ <td id="upload-global-album-td">
256
+ <input name="album_title" type="text" title="Optional Album Title" class="placeholder-onkeydown" id="upload-global-album-title" maxlength="55" />
257
+ </td>
258
+
259
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-blog.png&#039; style=&#039;padding-right: 2px;&#039;/&gt;</td><td>&lt;h1&gt;Blog Layout&lt;/h1&gt;Shows all the images on one page in a blog post style layout. Best for albums with a small to medium amount of images.</td></tr></table>">
260
+ <input id="blog" type="radio" name="layout" value="b" checked="checked"/>
261
+ <label for="blog">Blog</label>
262
+ </td>
263
+
264
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-vertical.png&#039; style=&#039;padding-right: 6px;&#039;/&gt;</td><td>&lt;h1&gt;Vertical Layout&lt;/h1&gt;Shows one image at a time in a traditional style, with thumbnails to the right. Good for almost any album.</td></tr></table>">
265
+ <input id="vertical" type="radio" name="layout" value="v"/>
266
+ <label for="vertical">Vertical</label>
267
+ </td>
268
+
269
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-horizontal.png&#039; style=&#039;padding-right: 6px;&#039;/&gt;</td><td>&lt;h1&gt;Horizontal Layout&lt;/h1&gt;Shows one image at a time in a traditional style, with thumbnails on top. Best for albums that have high resolution photos.</td></tr></table>">
270
+ <input id="horizontal" type="radio" name="layout" value="h"/>
271
+ <label for="horizontal">Horizontal</label>
272
+ </td>
273
+
274
+ <td class="center title" title="<table><tr><td style='vertical-align: middle'>&lt;img src=&#039;http://s.imgur.com/images/album-layout-grid.png&#039; style=&#039;padding-right: 6px;&#039;/&gt;</td><td>&lt;h1&gt;Grid Layout&lt;/h1&gt;Shows all the images on one page as thumbnails that expand when clicked on. Best for albums with lots of images.</td></tr></table>">
275
+ <input id="grid" type="radio" name="layout" value="g"/>
276
+ <label for="grid">Grid</label>
277
+ </td>
278
+
279
+ <td width="15"></td>
280
+ </tr>
281
+ </table>
282
+
283
+ </div>
284
+ <div id="upload-global-image-options">
285
+ <table id="upload-global-submission-title">
286
+ <tr>
287
+ <td>
288
+ <input name="gallery_title" type="text" class="placeholder-onkeydown" title="Gallery submission title (required)" id="upload-global-gallery-submission-title" maxlength="255" />
289
+ </td>
290
+ </tr>
291
+ </table>
292
+ </div>
293
+
294
+ <div class="textbox list">
295
+ <table id="upload-global-file-list-header">
296
+ <tr class="top-tr">
297
+ <td width="40"></td>
298
+ <td><h2>Images <span class="upload-queue-length">(0)</span></h2></td>
299
+ <td width="45" class="edit-td"><h2>Edit</h2></td>
300
+ </tr>
301
+ </table>
302
+
303
+ <table id="upload-global-file-list">
304
+ </table>
305
+ <div class="agreement-notice">By uploading, you agree to our <a href="//imgur.com/tos" target="_blank">terms of service</a></div>
306
+
307
+ </div>
308
+ </div>
309
+ </div>
310
+
311
+ <div id="upload-global-progress-wrapper">
312
+ <div id="upload-global-progressbar">
313
+ <div class="progressBarBG">
314
+ <div class="progressBar"></div>
315
+ </div>
316
+ </div>
317
+ <div id="upload-global-upload-queue"></div>
318
+ </div>
319
+ </form>
320
+ </div>
321
+
322
+ <div id="upload-global-FF-paste-box"></div>
323
+
324
+ <div id="hiddenDropZone" class="nodisplay"></div>
325
+
326
+ <div class="nodisplay">
327
+ <div id="upload-global-image-formats">
328
+ That file type is not supported!
329
+
330
+ <div class="textbox supported-formats">
331
+ Supported formats: JPEG, GIF, PNG, APNG, TIFF, BMP, PDF, XCF
332
+ </div>
333
+ </div>
334
+ </div>
335
+
336
+ <div id="upload-global-flash-container" title="upload images from your computer">
337
+ <div id="upload-global-flash-browse"></div>
338
+ </div>
339
+
340
+
341
+
342
+ <div class="nodisplay">
343
+ Imgur is used to share photos with social networks and online
344
+ communities, and has the funniest pictures from all over the Internet.
345
+ </div>
346
+
347
+
348
+
349
+
350
+ <div id="content" class="two-column">
351
+ <div class="left main-image">
352
+ <div class="panel">
353
+ <h2 id='image-title'>Do she got a booty?</h2>
354
+
355
+
356
+
357
+ <div id="image" class="">
358
+
359
+
360
+ <h2 style="display:none" class='album-title'></h2>
361
+ <div class="album-image">
362
+ <div class="image textbox zoom">
363
+ <a href="http://i.imgur.com/18ZQ1aL.jpg">
364
+ <img src="http://i.imgur.com/18ZQ1aL.jpg" alt="" />
365
+ </a>
366
+ </div>
367
+
368
+ </div>
369
+ <h2 style="display:none" class='album-title'></h2>
370
+ <div class="album-image">
371
+ <div class="image textbox zoom">
372
+ <a href="http://i.imgur.com/a1ekxVs.jpg">
373
+ <img src="http://i.imgur.com/a1ekxVs.jpg" alt="" />
374
+ </a>
375
+ </div>
376
+
377
+ </div>
378
+ <h2 style="display:none" class='album-title'></h2>
379
+ <div class="album-image">
380
+ <div class="image textbox zoom">
381
+ <a href="http://i.imgur.com/kqDRdnW.png">
382
+ <img src="http://i.imgur.com/kqDRdnW.png" alt="" />
383
+ </a>
384
+ </div>
385
+ <div class="description textbox">all credit for photos goes to Aethersong via reddit :-) </div>
386
+
387
+ </div>
388
+
389
+
390
+ <img class="nodisplay" src="http://i.imgur.com/albumview.gif?a=jPFkb" alt=""/>
391
+
392
+
393
+
394
+ </div>
395
+
396
+ <div id="under-image">
397
+
398
+
399
+ <div>
400
+ <div class="textbox image-arrows nospace"><span id="mainUpArrow" class="arrow up title" data="jPFkb" type="image" title="Like"></span><span id="mainDownArrow" class="arrow down title" data="jPFkb" type="image" title="Dislike"></span></div>
401
+
402
+ <div class="favorite-icon inline" >
403
+ <div id="favorite-image" title="Favorite" class="title " href="javascript:;"></div>
404
+ </div>
405
+
406
+ <div class="info textbox">
407
+ <div class="left">
408
+ <span class="points-jPFkb">3,452</span>
409
+ <span class="points-text-jPFkb">points</span>
410
+
411
+ </div>
412
+
413
+
414
+
415
+ <div class="sparkbar">
416
+
417
+ <div class="title positive " title="3510 likes" style="width: 98.374439461883%"></div>
418
+ <div class="title negative " title="58 dislikes" style="width: 1.6255605381166%"></div>
419
+ </div>
420
+
421
+
422
+
423
+ </div>
424
+
425
+
426
+
427
+ <div class="report-icon inline" >
428
+ <div id="report-image" title="Report Image" class="title " href="javascript:;"></div>
429
+ <div id="delete-image" title="Remove this image from the gallery" class="title nodisplay" href="javascript:;"></div>
430
+ </div>
431
+
432
+ <div id="social" class="social">
433
+ <ul>
434
+ <li class="title" title="Share on Twitter">
435
+ <span class="twitter_custom"></span>
436
+ </li>
437
+ <li class="title" title="Share on Facebook">
438
+ <span class="facebook_custom"></span>
439
+ </li>
440
+ <li class="title" title="Share on Reddit">
441
+ <span class="reddit_custom"></span>
442
+ </li>
443
+ <li class="title" title="Share on Tumblr">
444
+ <span class="tumblr_custom"></span>
445
+ </li>
446
+ <li class="title" title="Share on Stumble Upon">
447
+ <span class="stumbleupon_custom"></span>
448
+ </li>
449
+ <li class="title email-button-hide" title="Share over email">
450
+ <a href="javascript:;" class="addthis_button_email"><span class="st_email_custom"></span></a>
451
+ </li>
452
+ <li class="title" title="More sharing options">
453
+ <span class="addthis_button st_sharethis_custom"><span></span></span>
454
+ </li>
455
+ </ul>
456
+ </div>
457
+
458
+
459
+ <div class="clear"></div>
460
+ </div>
461
+
462
+ <div id="sponsored-image-caption">
463
+
464
+ </div>
465
+
466
+ <div id="submit-caption">
467
+ <textarea name="2dc94994c2573c96c140e2d27be447fc" id="caption_textarea">Submit a comment</textarea>
468
+ <input type="button" name="save" class="submit submit-caption-button button-medium right" value="save" />
469
+
470
+ <span class="counter left"></span>
471
+ <div id="save-caption-loader"></div>
472
+ <div class="clear"></div>
473
+ </div>
474
+
475
+ <div id="caption-error" class="error textbox"></div>
476
+ <div class="clear"></div>
477
+
478
+ <div class="small textbox comments-info">
479
+ <div class="left">
480
+ <div class="inline"><span id="comment-count">- comments</span> sorted by&nbsp;</div>
481
+
482
+ <div id="comment-sort" class="left combobox inline" title="sort comments by" name="comment-sort">
483
+ <div class="selection green"></div>
484
+ <div class="triangle"></div>
485
+ <div class="options">
486
+ <div class="item center selected" value="best">best</div>
487
+ <div class="item center " value="new">new</div>
488
+ <div class="item center " value="top">top</div>
489
+ </div>
490
+ </div>
491
+ </div>
492
+ <div class="right small">
493
+ <a href="javascript:;" data="collapsed" id="expand-comments">expand all</a>
494
+
495
+ </div>
496
+ <div class="clear"></div>
497
+ </div>
498
+
499
+ <div id="captions">
500
+ <noscript>
501
+ <div class="textbox small-margin-top line-height-normal">
502
+ Javascript is required to view comments normally. Please either enable javascript or click <a href="?no-script=true">here</a> to view comments without javascript.
503
+ </div>
504
+ </noscript>
505
+
506
+ </div>
507
+ </div>
508
+ </div>
509
+
510
+ <div id="footer">
511
+ <div id="copyright">© 2013 Imgur, LLC.</div>
512
+
513
+
514
+ <div id="footer-links">
515
+ <a href="http://store.imgur.com" class="title green" title="the official imgur store">store</a>
516
+ <a href="http://imgur.com/blog" class="title" title="the simple imgur blog">blog</a>
517
+ <a href="http://imgur.com/help" class="title" title="answers to your questions">help</a>
518
+ <a href="http://imgur.com/apps" class="title" title="uploading apps">apps</a>
519
+ <a href="http://imgur.com/removalrequest" class="title" title="submit an image removal request">request deletion</a>
520
+ <a href="http://imgur.com/tos" class="title" title="terms of service">terms</a>
521
+ <a href="http://imgur.com/register/upgrade" class="title" title="imgur pro">go pro</a>
522
+
523
+ <a href="http://api.imgur.com" class="title" title="the imgur API">api</a>
524
+ </div>
525
+
526
+ <div class="clear"></div>
527
+
528
+ </div>
529
+ </div>
530
+
531
+ <div id="right-content" class="right">
532
+ <div class="panel navigation-thumbs">
533
+ <div class="next-prev">
534
+
535
+
536
+ <div class="left">
537
+ <a id="navPrev" href="/gallery/S9HOBPu">
538
+ <input type="button" class="button-medium" id="navPrev" value="&laquo; prev"/>
539
+ </a>
540
+
541
+ <a id="navNext" href="/gallery/Ibdg3xK">
542
+ <input type="button" class="button-medium" value="next &raquo;"/>
543
+ </a>
544
+
545
+ </div>
546
+
547
+ <div class="right">
548
+ <a href="/" class="browse" >
549
+ <input type="button" class="button-medium" value="browse" onclick="javascript:window.location='/hot/viral/';" />
550
+ </a>
551
+
552
+ </div>
553
+
554
+ <div class="clear"></div>
555
+ </div>
556
+
557
+ <div class='thumbs-carousel'>
558
+ <div class="carousel-button prev">
559
+ <div></div>
560
+ </div>
561
+
562
+ <div class="left">
563
+ <div id="thumbs-top" class="jcarousel">
564
+ <ul>
565
+
566
+ <li><a href="/gallery/Ibdg3xK">
567
+ <img class='thumb-title' hash='Ibdg3xK' src="http://i.imgur.com/Ibdg3xKb.jpg" title="&amp;quot;You&amp;#039;ll never take me alive!!&amp;quot; BLAM BLAM BLAM!!<p>1,888 points : 14 views</p>" />
568
+ </a></li>
569
+
570
+
571
+ <li><a href="/gallery/6uTPE">
572
+ <img class='thumb-title' hash='6uTPE' src="http://i.imgur.com/qrKDYyBb.jpg" title="Gru and I are much alike<p>2,499 points : 18 views</p>" />
573
+ </a></li>
574
+
575
+
576
+ <li><a href="/gallery/73sYxzL">
577
+ <img class='thumb-title' hash='73sYxzL' src="http://i.imgur.com/73sYxzLb.jpg" title="FB find: Kids on a leash. Dogs running free!<p>1,360 points : 157 views</p>" />
578
+ </a></li>
579
+
580
+
581
+
582
+
583
+
584
+
585
+
586
+
587
+
588
+ </ul>
589
+ </div>
590
+ <div id="thumbs-bottom" class="jcarousel">
591
+ <ul>
592
+
593
+
594
+
595
+
596
+
597
+
598
+
599
+ <li><a href="/gallery/PHVwov5">
600
+ <img class='thumb-title' hash='PHVwov5' src="http://i.imgur.com/PHVwov5b.jpg" title="My goofy nephew is carpenter who saves his money, then travels without telling anybody. Last I heard he was building a deck, but this pic showed up on my Facebook<p>1,632 points : 148 views</p>" />
601
+ </a></li>
602
+
603
+
604
+ <li><a href="/gallery/Vhdlx">
605
+ <img class='thumb-title' hash='Vhdlx' src="http://i.imgur.com/E0u8kNFb.jpg" title="Comments<p>2,052 points : 18 views</p>" />
606
+ </a></li>
607
+
608
+
609
+ <li><a href="/gallery/t4KT5q8">
610
+ <img class='thumb-title' hash='t4KT5q8' src="http://i.imgur.com/t4KT5q8b.jpg" title="Hurry - crush these leaves... no time to explain.<p>1,858 points : 169 views</p>" />
611
+ </a></li>
612
+
613
+
614
+
615
+ </ul>
616
+ </div>
617
+ </div>
618
+ <div class="carousel-button next">
619
+ <div></div>
620
+ </div>
621
+
622
+ <div class="clear"></div>
623
+ </div>
624
+ </div>
625
+
626
+
627
+
628
+ <div id="statsbox" class="panel" style="display:block">
629
+ <div class="stats textbox">
630
+ <div id="stats-submit-date" style="float:left" title="Thursday, August 1, 2013 at 18:29:43 GMT">
631
+ Submitted
632
+ 10 hours ago
633
+ </div>
634
+
635
+ <div id="stats-submit-source-reddit" class="right small"></div>
636
+
637
+ <div class="clear"></div>
638
+
639
+ <div class="by">
640
+ <div id="stats-submit-source"><div class='inline'>by&nbsp;</div><a class='url-truncated' href="/user/alevel50cat">alevel50cat</a></div>
641
+ </div>
642
+
643
+ <div class="">
644
+ <span id="stats-views" class="stat">16</span> views
645
+ <span id="bandwidth-div" class="nodisplay"> &middot; <span id="stats-bandwidth" class="stat"></span> bandwidth</span>
646
+ </div>
647
+
648
+ <div id="original-source" class="nodisplay">
649
+ <span class="title" title="This images original location on the web">from:</span> <span class="domain"><a href=""></a></span>
650
+ </div>
651
+
652
+ <div class="small margin-top">
653
+ <div class="left .embed-codes">
654
+ <a target="_blank" id="stats-embed-codes" href="/a/jPFkb?gallery">View album page</a>
655
+
656
+ </div>
657
+ <div class="right">
658
+ <a href="/download/jPFkb/Do+she+got+a+booty%3F" id='stats-download'>Download</a>
659
+ <img id="download-loader" class="nodisplay" src="http://s.imgur.com/images/index-loader.gif">
660
+ </div>
661
+ <div class="clear"></div>
662
+ </div>
663
+
664
+ <div class="clear"></div>
665
+
666
+ </div>
667
+ </div>
668
+
669
+ <div class="advertisement">
670
+ <div class="panel-ad">
671
+ <div id='div-gpt-ad-1345436847476-0' style='width:300px; height:250px;'>
672
+ <script type='text/javascript'>
673
+ googletag.cmd.push(function() { googletag.display('div-gpt-ad-1345436847476-0'); });
674
+ </script>
675
+ </div>
676
+
677
+
678
+
679
+ </div>
680
+
681
+ <div class="ad-text">
682
+ Advertisement: <a href="/register/upgrade">pro users don't see ads</a>
683
+ </div>
684
+ </div>
685
+
686
+
687
+
688
+ </div>
689
+
690
+ <div class="clear"></div>
691
+ </div>
692
+
693
+ <input id="sid" type="hidden" value="2dc94994c2573c96c140e2d27be447fc" />
694
+
695
+ <div class="nodisplay">
696
+ <div id="colorbox-confirm" class="popup">
697
+ <h1 id="colorbox-confirm-title"></h1>
698
+
699
+ <div class="textbox" id="colorbox-confirm-message"></div>
700
+
701
+ <div class="margin-top">
702
+ <div class="left">
703
+ <a href="javascript:;" class="colorbox-no-confirm" id="colorbox-confirm-no">No way!</a>
704
+ </div>
705
+
706
+ <div class="right">
707
+ <div class="small-loader"></div>
708
+ <a href="javascript:;" class="colorbox-confirm" id="colorbox-confirm-yes">I'm sure</a>
709
+ </div>
710
+
711
+ <div class="clear"></div>
712
+ </div>
713
+ </div>
714
+ </div>
715
+
716
+ <div class="nodisplay">
717
+ <div id="download-album-form" class="popup">
718
+ <h1>Download this album</h1>
719
+
720
+ <div class="textbox">
721
+ This album is really big! It's going to take us a bit to get your download ready for you. Enter your email and we will notify you when it's ready.
722
+ </div>
723
+ <form id="download-form" onsubmit="return false;">
724
+
725
+ <div>
726
+ <div><input id="email" type="text" class="placeholder-onkeydown placeholder" title="Email" value="" class="required email" /></div>
727
+ <div id="message" class="right"></div>
728
+ <div class="left">
729
+ <input name="zip-album-submit-2dc94994c2573c96c140e2d27be447fc" type="submit" class="button-medium" value="Save" id="save">
730
+ </div>
731
+ <div class="clear"></div>
732
+ </div>
733
+ </form>
734
+ </div>
735
+ </div>
736
+
737
+
738
+
739
+
740
+
741
+
742
+
743
+
744
+
745
+ <script type="text/javascript">
746
+ (function() {
747
+ var roll = Math.random();
748
+ if(roll < 0.05) {
749
+
750
+ (function(_,e,rr,s){
751
+ _errs=[s];var c=_.onerror;_.onerror=function(){var a=arguments;_errs.push(a);
752
+ c&&c.apply(this,a)};var b=function(){var c=e.createElement(rr),b=e.getElementsByTagName(rr)[0];
753
+ c.src="//beacon.errorception.com/"+s+".js";c.async=!0;b.parentNode.insertBefore(c,b)};
754
+ _.addEventListener?_.addEventListener("load",b,!1):_.attachEvent("onload",b)
755
+ })(window,document,"script","51d1e360b05ccb10310000d2");
756
+
757
+ }
758
+ })();
759
+ </script>
760
+
761
+ <script type="text/javascript" src="http://s.imgur.com/min/global.js?1375395668"></script>
762
+ <script type="text/javascript">
763
+ var imgur = Imgur.getInstance();
764
+ imgur.init({
765
+
766
+ isDev : 0,
767
+ host : 'imgur.com',
768
+ cdnUrl : 'http://i.imgur.com',
769
+ signed : false
770
+ });
771
+
772
+ imgur.generalInit();
773
+ </script>
774
+
775
+
776
+ <iframe id="zedo" src="http://imgur.com/include/zedoinviewstub1621.html?n=1621;c=1;s=0;w=160;h=600;sz=7;li=false;ns=true;" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" allowTransparency="true" width="1" height="1"></iframe>
777
+
778
+
779
+ <script type="text/javascript" src="http://s.imgur.com/min/gallery.js?1375410633"></script>
780
+ <script type="text/javascript">
781
+ var gallery = Imgur.Gallery.getInstance({
782
+ sid : '2dc94994c2573c96c140e2d27be447fc',
783
+ cdnUrl : 'http://i.imgur.com',
784
+ account_url : 'alevel50cat',
785
+ signed : false,
786
+ sort : 'viral',
787
+ section : 'hot',
788
+ window : 'day',
789
+ isHotImage : '1',
790
+ prevHash : 'S9HOBPu',
791
+ nextHash : 'Ibdg3xK',
792
+ hash : 'jPFkb',
793
+ baseURL : '/gallery',
794
+ page : '0',
795
+ galleryTitle : 'imgur: the simple image sharer',
796
+ commentName : 'comment',
797
+ isPro : false,
798
+ searchQuery : '',
799
+ debugTLDR : false,
800
+ isRandom : false,
801
+ comment_sort : 'best',
802
+ comment_id : '',
803
+
804
+ image : {"hash":"jPFkb","account_id":"4922919","account_url":"alevel50cat","title":"Do she got a booty?","score":3452,"starting_score":0,"virality":1815.5776930093,"size":0,"views":16,"is_hot":true,"is_album":true,"album_cover":"18ZQ1aL","mimetype":null,"ext":".jpg","width":0,"height":0,"animated":false,"ups":3510,"downs":58,"points":3452,"reddit":"\/r\/funny\/comments\/1jj4w5\/do_she_got_a_booty\/","bandwidth":null,"timestamp":"2013-08-01 18:29:43","hot_datetime":"2013-08-01 22:30:19","nsfw":false,"section":"funny","album_privacy":"0","album_description":null,"album_layout":"b","album_images":{"count":3,"images":[{"hash":"18ZQ1aL","title":"","description":"","width":960,"height":636,"size":81398,"ext":".jpg","animated":0,"datetime":"2013-08-01 18:25:18","ip":"1262529912"},{"hash":"a1ekxVs","title":"","description":"","width":2956,"height":1958,"size":331604,"ext":".jpg","animated":0,"datetime":"2013-08-01 18:25:20","ip":"1262529912"},{"hash":"kqDRdnW","title":"","description":"all credit for photos goes to Aethersong via reddit :-) ","width":720,"height":477,"size":413816,"ext":".png","animated":0,"datetime":"2013-08-01 18:25:22","ip":"1262529912"}]}},
805
+ gallery_type : null,
806
+ usingCache : false,
807
+ captionsCacheTime : 30,
808
+ captionsCacheCookie : 'm_force_cache_miss',
809
+ subgallery_name : null,
810
+ subgalleryUpload : true,
811
+ tldrAds : true
812
+ });
813
+
814
+ gallery.insideInit();
815
+ gallery.initTldr();
816
+
817
+ $(document).ready(function(){
818
+ var imgurFavorite = Imgur.Favorite.getInstance({
819
+ method: null
820
+ });
821
+
822
+ imgurFavorite._init();
823
+ });
824
+ </script>
825
+
826
+
827
+
828
+ <script type="text/javascript">
829
+ var _gaq = _gaq || [];
830
+ _gaq.push(['_setAccount', 'UA-6671908-2']);
831
+ _gaq.push(['_setDomainName', 'none']);
832
+ _gaq.push(['_trackPageview']);
833
+ _gaq.push(['_trackPageLoadTime']);
834
+
835
+ _gaq.push(['_setCustomVar', 1, 'Gallery', 'Inside', 3]);
836
+
837
+ (function() {
838
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
839
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : '//www') + '.google-analytics.com/ga.js';
840
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
841
+ })();
842
+ </script>
843
+
844
+ <script type='text/javascript'>
845
+ var _qevents = _qevents || [];
846
+ (function() {
847
+ var elem = document.createElement('script');
848
+ elem.src = (document.location.protocol == "https:" ? "https://secure" : "//edge") + ".quantserve.com/quant.js";
849
+ elem.async = true;
850
+ elem.type = "text/javascript";
851
+ var scpt = document.getElementsByTagName('script')[0];
852
+ scpt.parentNode.insertBefore(elem, scpt);
853
+ })();
854
+
855
+ _qevents.push({
856
+ qacct:"p-f8oruOqDFlMeI"
857
+ });
858
+ </script>
859
+
860
+ <noscript>
861
+ <div class="nodisplay">
862
+ <img src="//pixel.quantserve.com/pixel/p-f8oruOqDFlMeI.gif" border="0" height="1" width="1" alt="Quantcast"/>
863
+ </div>
864
+ </noscript>
865
+
866
+
867
+
868
+ <script type="text/javascript" src="http://tap-cdn.rubiconproject.com/partner/scripts/rubicon/alice.js?pc=8526/13802"></script>
869
+ <script type='text/javascript' src='http://static.fmpub.net/site/imgur'></script>
870
+
871
+
872
+
873
+ <script type='text/javascript'>
874
+ //<![CDATA[
875
+ var _stippleq = _stippleq || [];
876
+ (function() {
877
+ var s = document.createElement('script');
878
+ s.type = 'text/javascript';
879
+ s.async = true;
880
+ s.src = location.protocol === 'https:' ? 'https://stippleit.com/stipple.js' : 'http://stipple.cachefly.net/production/stipple.js';
881
+ var x = document.getElementsByTagName('script')[0];
882
+ x.parentNode.insertBefore(s, x);
883
+ })();
884
+ //]]>
885
+ </script>
886
+ <script type='text/javascript'>
887
+ //<![CDATA[
888
+ _stippleq.push(['load', '31Mn39', {}]);
889
+ //]]>
890
+ </script>
891
+ </body>
892
+ </html>