mnemorandom 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,1005 @@
1
+ {
2
+ "description": "1000 entries from the list of TV shows at http://en.wikipedia.org/wiki/List_of_television_programs_by_name",
3
+ "tv_shows":
4
+ [
5
+ "20/20",
6
+ "21 Jump Street",
7
+ "24",
8
+ "2DTV",
9
+ "30 Rock",
10
+ "31 Minutes",
11
+ "50 Cent: The Money and the Power",
12
+ "50/50",
13
+ "64 Zoo Lane",
14
+ "6teen",
15
+ "704 Hauser",
16
+ "8 Simple Rules",
17
+ "8th & Ocean",
18
+ "A Class by Himself",
19
+ "A Pup Named Scooby-Doo",
20
+ "ANT Farm",
21
+ "Access Hollywood",
22
+ "According to Jim",
23
+ "Ace Lightning",
24
+ "Acme Hour",
25
+ "Action",
26
+ "Active Kids",
27
+ "Adam's Rib",
28
+ "Adventures in Paradise",
29
+ "Airwolf",
30
+ "Alcatraz",
31
+ "Alfred J. Kwak",
32
+ "Alias Smith and Jones",
33
+ "Aliens in America",
34
+ "All Is Forgiven",
35
+ "Almost Human (TV series)",
36
+ "Amazing Stories",
37
+ "Amen",
38
+ "America's Funniest Home Videos",
39
+ "America's Funniest People",
40
+ "American Chopper",
41
+ "American Dragon: Jake Long",
42
+ "American High",
43
+ "American Pickers",
44
+ "An Idiot Abroad",
45
+ "Andromeda",
46
+ "Andy Richter Controls the Universe",
47
+ "Angel",
48
+ "Anger Management",
49
+ "Angry Beavers",
50
+ "Animaniacs",
51
+ "Animorphs",
52
+ "Another World",
53
+ "Any Dream Will Do",
54
+ "Anything You Can Do",
55
+ "Archie's Weird Mysteries",
56
+ "Are You Smarter Than a 5th Grader?",
57
+ "Ark II",
58
+ "Arnie",
59
+ "Arrow",
60
+ "Arthur Godfrey and His Friends",
61
+ "As Told By Ginger",
62
+ "Australia's Next Top Model",
63
+ "Awkward",
64
+ "Baa Baa Black Sheep",
65
+ "Babestation",
66
+ "Baby Daddy",
67
+ "Bachelor Father",
68
+ "Bagpuss",
69
+ "Banshee",
70
+ "Barefoot in the Park",
71
+ "Baretta",
72
+ "Barnaby Jones",
73
+ "Basil Brush",
74
+ "Batfink",
75
+ "Bayly (TV series)",
76
+ "Baywatch Nights",
77
+ "Beadle's About",
78
+ "Beat The Chef",
79
+ "Beating Heart",
80
+ "Beetlejuice",
81
+ "Behind the Music",
82
+ "Being Human",
83
+ "Belle and Sebastian (TV series)",
84
+ "Bem-Vindos a Beirais",
85
+ "Ben 10",
86
+ "Ben 10: Ultimate Alien",
87
+ "Benson",
88
+ "Besame Tonto",
89
+ "Beverly Hills, 90210",
90
+ "Bewitched",
91
+ "Big Arvo",
92
+ "Big Town",
93
+ "Billy",
94
+ "Bionic Woman",
95
+ "Birds of Prey",
96
+ "Black Books",
97
+ "Blake's 7",
98
+ "Bless This House",
99
+ "Blockbusters",
100
+ "Blonde Charity Mafia",
101
+ "Blue Heelers",
102
+ "Blue Mountain State",
103
+ "Blue Peter",
104
+ "Boardwalk Empire",
105
+ "Bob Hope Presents the Chrysler Theatre",
106
+ "Bob Patterson",
107
+ "BodyShaping",
108
+ "Bones",
109
+ "Boot Camp",
110
+ "Borgia",
111
+ "Boston Public",
112
+ "Boy Meets World",
113
+ "Branded",
114
+ "Brat Camp",
115
+ "Breaking Bad",
116
+ "Breakout Kings",
117
+ "Britain's Missing Top Model",
118
+ "Brooke Knows Best",
119
+ "Brotherly Love",
120
+ "Brothers & Sisters",
121
+ "Bubble Guppies",
122
+ "Buck Rogers in the 25th Century",
123
+ "Buck Rogers",
124
+ "Bug Juice",
125
+ "Bullseye",
126
+ "Busting Loose",
127
+ "C.O.P.S.",
128
+ "C.P.O. Sharkey",
129
+ "CI5: The New Professionals",
130
+ "Cade's County",
131
+ "Caesar's Hour",
132
+ "Caillou",
133
+ "Caitlin's Way",
134
+ "Cake Boss",
135
+ "Californication",
136
+ "Camp Lazlo",
137
+ "Camp Runamuck",
138
+ "Camp",
139
+ "Canadian Idol",
140
+ "Cannon",
141
+ "Cannonball",
142
+ "Canterbury's Law",
143
+ "Caprica",
144
+ "Captain Caveman and the Teen Angels",
145
+ "Captain Kangaroo",
146
+ "Captain Planet and the Planeteers",
147
+ "Captain Power",
148
+ "Caribe",
149
+ "Cash Cab",
150
+ "CatDog",
151
+ "Catalyst",
152
+ "Catwalk",
153
+ "Celebrity Rehab with Dr. Drew",
154
+ "Centennial",
155
+ "Chain Reaction",
156
+ "ChalkZone",
157
+ "Charlie Chalk",
158
+ "Charlie Jade",
159
+ "Charlie Rose",
160
+ "Cheez TV",
161
+ "Cheyenne",
162
+ "Chicago Hope",
163
+ "Child's Play",
164
+ "China Beach",
165
+ "Chopped",
166
+ "Ciao Darwin",
167
+ "City Lights",
168
+ "Clangers",
169
+ "Class of '74",
170
+ "Clerks: The Animated Series",
171
+ "Clone High",
172
+ "Club Mario",
173
+ "Clueless",
174
+ "Co-Ed Fever",
175
+ "Code Lyoko",
176
+ "Codename: Kids Next Door",
177
+ "Cold Case",
178
+ "Cold Feet",
179
+ "Colditz",
180
+ "Columbo",
181
+ "Commander in Chief",
182
+ "Contraption",
183
+ "Coronet Blue",
184
+ "Cory in the House",
185
+ "Cosmetic Surgery Live",
186
+ "Countdown",
187
+ "Country Style",
188
+ "Countrytime (1960)",
189
+ "Countrytime (1970)",
190
+ "Cousin Skeeter",
191
+ "Cover Up",
192
+ "Cracking Up",
193
+ "Criminal Minds",
194
+ "Crossbow",
195
+ "Crusade",
196
+ "Cupcake Wars",
197
+ "Curb Your Enthusiasm",
198
+ "Da Ali G Show",
199
+ "DaVinci's Inquest",
200
+ "Dad's Army",
201
+ "Damages",
202
+ "Dan August",
203
+ "Dance Academy",
204
+ "Danger 5",
205
+ "Danger Man",
206
+ "Danny Phantom",
207
+ "Darkwing Duck",
208
+ "Dave Allen",
209
+ "Dead of NIght",
210
+ "Dear Sister",
211
+ "Decisiones",
212
+ "Demons",
213
+ "Denkigai no Honya-san",
214
+ "Desperate Housewives",
215
+ "Dharma and Greg",
216
+ "Dirty Sally",
217
+ "Doctors (soap opera)",
218
+ "Dog Bites Man",
219
+ "Don't Forget Your Toothbrush",
220
+ "Donny & Marie",
221
+ "Doogie Howser, M.D.",
222
+ "Double Trouble",
223
+ "Dr. Finlay's Casebook",
224
+ "Dr. Kildare",
225
+ "Dr. Quinn, Medicine Woman",
226
+ "Dragon Ball",
227
+ "Duck Dynasty",
228
+ "Due South",
229
+ "E Street",
230
+ "E/R",
231
+ "ECW on Syfy",
232
+ "ECW on TNN",
233
+ "EZ Streets",
234
+ "Earth 2",
235
+ "Earth Revealed: Introductory Geology",
236
+ "EastEnders",
237
+ "Eastbound & Down",
238
+ "Eastwick",
239
+ "Ed, Edd, and Eddy",
240
+ "Eddy Arnold Time",
241
+ "Eerie, Indiana",
242
+ "Eight is Enough",
243
+ "Electra Woman and Dyna Girl",
244
+ "Elementary",
245
+ "Eleventh Hour",
246
+ "Eli Stone",
247
+ "Elizabeth R",
248
+ "Emmerdale",
249
+ "Engine Sentai Go-Onger",
250
+ "Entourage",
251
+ "Eric Sykes",
252
+ "Eternal Law",
253
+ "Eureka",
254
+ "Everwood",
255
+ "Extreme Dodgeball",
256
+ "Extreme Makeover: Home Edition",
257
+ "Eyewitness",
258
+ "F Troop",
259
+ "Falcon Crest",
260
+ "Falling Skies",
261
+ "Family Challenge",
262
+ "Family Fortunes",
263
+ "Family Guy",
264
+ "Family Ties",
265
+ "Family",
266
+ "Farscape",
267
+ "Fashion House",
268
+ "Fast Money",
269
+ "Fat Albert and the Cosby Kids",
270
+ "Fat Guy Stuck in Internet",
271
+ "Father Murphy",
272
+ "Felicity",
273
+ "Firefly",
274
+ "Five Fingers",
275
+ "Flamingo Road",
276
+ "Flash Forward",
277
+ "FlashForward",
278
+ "Flashpoint",
279
+ "Flavor Of Love",
280
+ "Flight 29 Down",
281
+ "Flight of the Conchords",
282
+ "Flikken",
283
+ "Flower Pot Men",
284
+ "Flying Rhino Junior High",
285
+ "Food Network Challenge",
286
+ "Football Superstar",
287
+ "Forgive or Forget",
288
+ "Foster's Home for Imaginary Friends",
289
+ "Fraggle Rock",
290
+ "Franklin",
291
+ "FreakyLinks",
292
+ "Freewheelers",
293
+ "Fresh Meat",
294
+ "Friday Night Lights",
295
+ "Fridays",
296
+ "Friend or Foe?",
297
+ "Friends",
298
+ "Friendzone",
299
+ "Fringe",
300
+ "Frontier Justice",
301
+ "Frontier",
302
+ "Full House",
303
+ "Futurama",
304
+ "Future Weapons",
305
+ "G-Saviour",
306
+ "Gadget Boy & Heather",
307
+ "Gal Circle",
308
+ "Galactica 1980",
309
+ "Gamezville",
310
+ "Garfield and Friends",
311
+ "Gargoyles",
312
+ "General Hospital",
313
+ "Gentle Touch",
314
+ "George Lopez",
315
+ "George Shrinks",
316
+ "Get Smart",
317
+ "Ghost Story",
318
+ "Ghost Trackers",
319
+ "Ghostwriter",
320
+ "Gilligan's Island",
321
+ "Glee",
322
+ "Glenn Beck",
323
+ "Going Places",
324
+ "Gomer Pyle, U.S.M.C.",
325
+ "Good Luck Charlie",
326
+ "Good Morning, Mickey!",
327
+ "Gravity Falls",
328
+ "Grim & Evil",
329
+ "Grim Adventures of Billy and Mandy",
330
+ "Grimm",
331
+ "Gunslinger Girl",
332
+ "Half & Half",
333
+ "Happy Endings",
334
+ "Happy Tree Friends",
335
+ "Hardcastle and McCormick",
336
+ "Harper's Island",
337
+ "Hart of Dixie",
338
+ "Hart to Hart",
339
+ "Harvey Birdman, Attorney at Law",
340
+ "Have Gun - Will Travel",
341
+ "Haven",
342
+ "Hawaii Five-0",
343
+ "Hawkins",
344
+ "He-Man and the Masters of the Universe",
345
+ "Hell's Kitchen (U.S. TV series)",
346
+ "Here We Go Again",
347
+ "Hergé's Adventures of Tintin",
348
+ "Heston's Feasts",
349
+ "Hey Vern, It's Ernest!",
350
+ "Hi Hi Puffy AmiYumi",
351
+ "Hitchhikers Guide To The Galaxy",
352
+ "Hollywood Heights",
353
+ "Home Improvement",
354
+ "Hope & Faith",
355
+ "Hot L Baltimore",
356
+ "Hotel",
357
+ "House of Cards",
358
+ "House of Lies",
359
+ "How It's Made",
360
+ "Huff",
361
+ "Human Target",
362
+ "Hunter",
363
+ "Hustle",
364
+ "I Pity the Fool",
365
+ "I'm In The Band",
366
+ "In Living Color",
367
+ "Inquizition",
368
+ "Inspector Gadget",
369
+ "Intervention",
370
+ "Iron Chef America",
371
+ "Iron Chef",
372
+ "Ironside",
373
+ "It Takes a Thief",
374
+ "It's Garry Shandling's Show",
375
+ "It's a Miracle",
376
+ "Ivanhoe",
377
+ "JONAS",
378
+ "Jack of All Trades (TV series)",
379
+ "Jackie Chan Adventures",
380
+ "Jake and the Never Land Pirates",
381
+ "Jason King",
382
+ "Jem (TV series)",
383
+ "Jep!",
384
+ "Jeremiah",
385
+ "Jersey Shore",
386
+ "Jerseylicious",
387
+ "Jimmy Kimmel Live!",
388
+ "Joe Millionaire",
389
+ "John Adams",
390
+ "Johnny Bravo",
391
+ "Joking Apart",
392
+ "Josie and the Pussycats",
393
+ "Jubilee USA",
394
+ "Judge Joe Brown",
395
+ "Juke Box Jury",
396
+ "Juken Sentai Gekiranger",
397
+ "Julia",
398
+ "Julie",
399
+ "Just Jordan",
400
+ "Just Shoot Me!",
401
+ "Justice League",
402
+ "Kablam!",
403
+ "Kaiketsu Zorro",
404
+ "Kaiki Renai Sakusen",
405
+ "Karen",
406
+ "Kathy",
407
+ "Keeping Up Appearances",
408
+ "Keeping Up with the Kardashians",
409
+ "Kenan & Kel",
410
+ "Kickin' It",
411
+ "Kids Incorporated",
412
+ "Killer Instinct",
413
+ "Kimba the White Lion",
414
+ "Kitchen Confidential",
415
+ "Knightmare",
416
+ "Knowing Me, Knowing You",
417
+ "Kolchak: The Night Stalker",
418
+ "Kourtney and Khloé Take Miami",
419
+ "Kraft Television Theatre",
420
+ "Krypto the Superdog",
421
+ "Kung Fu Panda",
422
+ "Kyle XY",
423
+ "L.A. Law",
424
+ "Lab Rats",
425
+ "Land of the Giants",
426
+ "Land of the Lost",
427
+ "Larry King Live",
428
+ "Lassie",
429
+ "Last Man Standing",
430
+ "Late Night with Conan O'Brien",
431
+ "Later with Bob Costas",
432
+ "Law & Order: Trial by Jury",
433
+ "Legend of the Seeker",
434
+ "Lidsville",
435
+ "Life Goes On",
436
+ "Life Is Wild",
437
+ "Life on Mars",
438
+ "Life with Boys",
439
+ "Life with Derek",
440
+ "Life with Lucy",
441
+ "Lifestyles of the Rich and Famous",
442
+ "Lightning Point",
443
+ "Lingo",
444
+ "Little Einsteins",
445
+ "Little People, Big World",
446
+ "Live with Regis and Kathie Lee",
447
+ "Live with Regis and Kelly",
448
+ "Living Single",
449
+ "Lizzie McGuire",
450
+ "Location, Location, Location",
451
+ "Loft Story",
452
+ "Logan's Run",
453
+ "Longstreet",
454
+ "Lost",
455
+ "Love & War",
456
+ "Love Connection",
457
+ "Love of Life",
458
+ "Love, Sidney",
459
+ "Lucky Louie",
460
+ "Lunch with Soupy Sales",
461
+ "MANswers",
462
+ "Mad Men",
463
+ "Made",
464
+ "Maggie",
465
+ "Make Room for Daddy",
466
+ "Making Fiends",
467
+ "Man About the House",
468
+ "Man from Atlantis",
469
+ "Man in a Suitcase",
470
+ "Manhunt",
471
+ "Manimal",
472
+ "Mark Twain",
473
+ "Married by America",
474
+ "Marshall Law",
475
+ "Martha Speaks",
476
+ "Martial Law",
477
+ "Martin Kane, Private Eye",
478
+ "Mary Kay and Johnny",
479
+ "Mary",
480
+ "Masterpiece Theatre",
481
+ "Maury",
482
+ "Mayberry R.F.D.",
483
+ "McCloud",
484
+ "McHale's Navy",
485
+ "McMorris & McMorris",
486
+ "Me and My Monsters",
487
+ "Meet Millie",
488
+ "Meet the Browns",
489
+ "Melody Rules",
490
+ "Men Behaving Badly",
491
+ "Men, Women & Dogs",
492
+ "Metal Mickey",
493
+ "Mickey Mouse Club",
494
+ "Midnight Caller",
495
+ "Mighty Max",
496
+ "Mighty Morphin Power Rangers",
497
+ "Ministry Of Mayhem",
498
+ "Miss Fisher's Murder Mysteries",
499
+ "Miss Marple",
500
+ "Miss Match",
501
+ "Mister Ed",
502
+ "Mobile Suit Gundam 0083: Stardust Memory",
503
+ "Monkey",
504
+ "Monsters",
505
+ "Moonlighting",
506
+ "Mortal Kombat: Conquest",
507
+ "Mr. & Mrs. Smith",
508
+ "Mr. Adams and Eve",
509
+ "Mr. Meaty",
510
+ "Mr. Novak",
511
+ "Mr. Peepers",
512
+ "Mr. Sunshine",
513
+ "Mr. Young",
514
+ "Muktha",
515
+ "Murder, She Wrote",
516
+ "Must Love Kids",
517
+ "Mutant X",
518
+ "My Big Fat Obnoxious Boss",
519
+ "My Boys",
520
+ "My Family's Got GUTS",
521
+ "My Favorite Martian",
522
+ "My Kitchen Rules",
523
+ "My Little Pony",
524
+ "My Little Pony: Friendship Is Magic",
525
+ "My Name Is Earl",
526
+ "My Secret Identity",
527
+ "My Wife and Kids",
528
+ "My World and Welcome to It",
529
+ "Mysterious Ways",
530
+ "N.Y.P.D.",
531
+ "NCIS",
532
+ "NCIS: Los Angeles",
533
+ "NYPD Blue",
534
+ "Name That Tune",
535
+ "National Bingo Night",
536
+ "Ned and Stacey",
537
+ "Needles and Pins",
538
+ "Next",
539
+ "Nine to Five",
540
+ "North Shore",
541
+ "Northern Exposure",
542
+ "Not the Nine O'Clock News",
543
+ "Nothing Sacred",
544
+ "Noticentro 4",
545
+ "Nowhere Man",
546
+ "Number Please",
547
+ "Nurse Jackie",
548
+ "Nurses",
549
+ "O2Be",
550
+ "Ocean Girl",
551
+ "Oddville, MTV",
552
+ "Oggy and the Cockroaches",
553
+ "Omnibus",
554
+ "On the Rocks",
555
+ "Once Upon a Time in Wonderland",
556
+ "Once and Again",
557
+ "One Day at a Time",
558
+ "One Foot in the Grave",
559
+ "One Tree Hill",
560
+ "Online Nation",
561
+ "Oobi",
562
+ "Opposite Sex",
563
+ "Our Friends in the North",
564
+ "Our Miss Brooks",
565
+ "Over There",
566
+ "Ozark Jubilee",
567
+ "Packed to the Rafters",
568
+ "Pair of Kings",
569
+ "Pan Am",
570
+ "Panorama",
571
+ "Parker Lewis Can't Lose",
572
+ "Pass the Buck",
573
+ "Password Plus",
574
+ "Password",
575
+ "Perfect Couples",
576
+ "Perfect Hair Forever",
577
+ "Pet Alien",
578
+ "Peter Gunn",
579
+ "Petticoat Junction",
580
+ "Phil of the Future",
581
+ "Pinky and the Brain",
582
+ "Play the Percentages",
583
+ "Please Don't Eat the Daisies",
584
+ "Plonsters",
585
+ "Pocoyo",
586
+ "Pole Position (TV series)",
587
+ "Police Ten 7",
588
+ "Police Women of Maricopa County",
589
+ "Politically Incorrect",
590
+ "Pop! Goes the Country",
591
+ "Pororo the Little Penguin",
592
+ "Power Rangers Dino Thunder",
593
+ "Power Rangers Jungle Fury",
594
+ "Power Rangers Lost Galaxy",
595
+ "Power Rangers Operation Overdrive",
596
+ "Power Rangers S.P.D.",
597
+ "Power Rangers Time Force",
598
+ "Power Rangers in Space",
599
+ "Prank Patrol",
600
+ "Pranked",
601
+ "Pretty Wild",
602
+ "Prison Break",
603
+ "Prisoners of Gravity",
604
+ "Project G.e.e.K.e.R.",
605
+ "Protagonistas De La Musica",
606
+ "Puberty Blues",
607
+ "Punk'd",
608
+ "Punky Brewster",
609
+ "Pushing Daisies",
610
+ "Pussycat Dolls Present",
611
+ "QI",
612
+ "Quantum Leap",
613
+ "Quatermass",
614
+ "Que Locura",
615
+ "Queen of Swords",
616
+ "Queer Eye for the Straight Guy",
617
+ "Quick Before They Catch Us",
618
+ "Quintuplets",
619
+ "Ramar of the Jungle",
620
+ "Rawhide",
621
+ "Real People",
622
+ "Real Time with Bill Maher",
623
+ "Real World/Road Rules Challenge",
624
+ "Reaper",
625
+ "Reba",
626
+ "Rebelde Way",
627
+ "Reborn!",
628
+ "Rebound",
629
+ "Red Dwarf",
630
+ "Regular Show",
631
+ "Relic Hunter",
632
+ "Ren & Stimpy \"Adult Party Cartoon\"",
633
+ "Rentaghost",
634
+ "Rescue 8",
635
+ "Return to Peyton Place",
636
+ "Reunion",
637
+ "Revenge",
638
+ "Revolution",
639
+ "Rhoda",
640
+ "Riptide",
641
+ "Rob & Big",
642
+ "Rob Dyrdek's Fantasy Factory",
643
+ "Robin Hood",
644
+ "Rocket Robin Hood",
645
+ "Roots: The Next Generations",
646
+ "Ros na Rún",
647
+ "Roseanne",
648
+ "Route 66",
649
+ "Rowan & Martin's Laugh-In",
650
+ "Rubik the Amazing Cube",
651
+ "Run Joe Run",
652
+ "Run for Your Life",
653
+ "Rurouni Kenshin",
654
+ "Ryan",
655
+ "Ryan's Hope",
656
+ "S.W.A.T.",
657
+ "SWAT Kats: The Radical Squadron",
658
+ "Sabrina, The Animated Series",
659
+ "Sadie J",
660
+ "Sally",
661
+ "Salute Your Shorts",
662
+ "Sam",
663
+ "Sanctuary",
664
+ "Sanford and Son",
665
+ "Saturday Night Live",
666
+ "Saved by the Bell",
667
+ "Saved by the Bell: The New Class",
668
+ "Scandal",
669
+ "Scarecrow and Mrs. King",
670
+ "Scaredy Squirrel",
671
+ "Schoolhouse Rock!",
672
+ "Science Fiction Theatre",
673
+ "Scooby-Doo, Where Are You!",
674
+ "Scoop and Doozie",
675
+ "Scrabble",
676
+ "Sea Hunt",
677
+ "SeaQuest DSV",
678
+ "Secret Agent",
679
+ "See It Now",
680
+ "Seeing Things",
681
+ "She-Ra: Princess of Power",
682
+ "Sherlock",
683
+ "Silver Spoons",
684
+ "Simon & Simon",
685
+ "Sing Along with Mitch",
686
+ "Sir Francis Drake",
687
+ "Sister, Sister",
688
+ "Sisters",
689
+ "Sleeper Cell",
690
+ "So Little Time",
691
+ "So Random",
692
+ "Soap",
693
+ "Sofia the First",
694
+ "Solid Gold",
695
+ "Something So Right",
696
+ "Sonny with a Chance",
697
+ "Sons of Anarchy",
698
+ "South Park",
699
+ "South of Nowhere",
700
+ "Southland",
701
+ "Space Patrol",
702
+ "Space: 1999",
703
+ "Spaced",
704
+ "Spartakus and the Sun Beneath the Sea",
705
+ "Speed Racer",
706
+ "Spenser: For Hire",
707
+ "Spider-Man: The New Animated Series",
708
+ "SportsCenter",
709
+ "Square Pegs",
710
+ "St. Elsewhere",
711
+ "Standoff",
712
+ "Star Trek: Phase II",
713
+ "Star Wars: Droids",
714
+ "Stargate SG-1",
715
+ "Starsky and Hutch",
716
+ "Stingray",
717
+ "Strangers with Candy",
718
+ "Strike It Rich",
719
+ "Strömsö",
720
+ "Super Friends",
721
+ "Super Greed",
722
+ "Super Jeopardy!",
723
+ "Supercar",
724
+ "Supernatural",
725
+ "Swamp Thing",
726
+ "Switch",
727
+ "T. J. Hooker",
728
+ "TV Funhouse",
729
+ "TV's Bloopers & Practical Jokes",
730
+ "Take the High Road",
731
+ "Takin' Over the Asylum",
732
+ "TaleSpin",
733
+ "Tallship Chronicles",
734
+ "Team Umizoomi",
735
+ "Teen Mom 2",
736
+ "Teen Mom",
737
+ "Teen Titans",
738
+ "Terminator: The Sarah Connor Chronicles",
739
+ "Terra Nova",
740
+ "Terry and June",
741
+ "Texaco Star Theater",
742
+ "Texas Country Reporter",
743
+ "That '80s Show",
744
+ "That's My Mama",
745
+ "That's the Question",
746
+ "The 4400",
747
+ "The Adventures of Jimmy Neutron: Boy Genius",
748
+ "The Adventures of Pete & Pete",
749
+ "The Adventures of Wild Bill Hickok",
750
+ "The Adventures of William Tell",
751
+ "The Alan Young Show",
752
+ "The American Embassy",
753
+ "The Avengers",
754
+ "The Backyardigans",
755
+ "The Barbara Stanwyck Show",
756
+ "The Baron",
757
+ "The Beachcombers",
758
+ "The Benny Hill Show",
759
+ "The Big Gig",
760
+ "The Bionic Woman",
761
+ "The Black Donnellys",
762
+ "The Blacklist",
763
+ "The Block",
764
+ "The Bold and the Beautiful",
765
+ "The Boondocks",
766
+ "The Borgias",
767
+ "The Brady Brides",
768
+ "The Brothers",
769
+ "The Bugaloos",
770
+ "The Bugs Bunny Show",
771
+ "The Buzz on Maggie",
772
+ "The Cape",
773
+ "The Carol Burnett Show",
774
+ "The Catherine Tate Show",
775
+ "The Celebrity Apprentice",
776
+ "The Champions",
777
+ "The Colbert Report",
778
+ "The Colony",
779
+ "The Cowboys",
780
+ "The Crew",
781
+ "The Crocodile Hunter",
782
+ "The Curse of Oak Island",
783
+ "The D.A.",
784
+ "The Daily Show",
785
+ "The Dr. Oz Show",
786
+ "The Duck Factory",
787
+ "The Dukes of Hazzard",
788
+ "The Electric Company",
789
+ "The Ellen DeGeneres Show",
790
+ "The Ellen Show",
791
+ "The Emperor's New School",
792
+ "The Equalizer",
793
+ "The F.B.I.",
794
+ "The Face Is Familiar",
795
+ "The Fast Show",
796
+ "The Forgotten",
797
+ "The Fosters",
798
+ "The Four Just Men",
799
+ "The Gene Autry Show",
800
+ "The Generations Project",
801
+ "The Ghost & Mrs. Muir",
802
+ "The Good Guys",
803
+ "The Governor and J.J.",
804
+ "The Great Space Coaster",
805
+ "The Heartland Series",
806
+ "The Islanders",
807
+ "The Jamie Foxx Show",
808
+ "The Jay Leno Show",
809
+ "The Jerry Springer Show",
810
+ "The Jetsons",
811
+ "The Jim Nabors Hour",
812
+ "The Jimmy Dean Show",
813
+ "The Joe Schmo Show",
814
+ "The Joker's Wild",
815
+ "The Kids in the Hall",
816
+ "The Kids in the Hall: Death Comes to Town",
817
+ "The King of Queens",
818
+ "The League of Gentlemen",
819
+ "The Letter People",
820
+ "The Living Century",
821
+ "The Lone Ranger",
822
+ "The Loner",
823
+ "The Loretta Young Show",
824
+ "The Lost Room",
825
+ "The Magic Hour",
826
+ "The Magician",
827
+ "The Magnificent Seven",
828
+ "The Man Show",
829
+ "The Man from U.N.C.L.E.",
830
+ "The Mary Tyler Moore Hour",
831
+ "The Merv Griffin Show",
832
+ "The Middleman",
833
+ "The Midnight Special",
834
+ "The Mighty B!",
835
+ "The Millionaire",
836
+ "The Milton Berle Show",
837
+ "The Mod Squad",
838
+ "The Mole",
839
+ "The Monroes",
840
+ "The Munsters",
841
+ "The Muppet Show",
842
+ "The NBC Mystery Movie",
843
+ "The New Adventures of Pinocchio",
844
+ "The New Adventures of Zorro",
845
+ "The New Dick Van Dyke Show",
846
+ "The New Perry Mason",
847
+ "The Newlywed Game",
848
+ "The Nurses",
849
+ "The O.C.",
850
+ "The O'Reilly Factor",
851
+ "The Odd Couple",
852
+ "The Osbournes",
853
+ "The PJs",
854
+ "The Paradise",
855
+ "The Parent 'Hood",
856
+ "The Persuaders!",
857
+ "The Phil Silvers Show",
858
+ "The Price Is Right",
859
+ "The Protectors",
860
+ "The Psychiatrist",
861
+ "The Quatermass Experiment",
862
+ "The Rat Patrol",
863
+ "The Real Adventures of Jonny Quest",
864
+ "The Real Housewives of Beverly Hills",
865
+ "The Real Housewives of D.C.",
866
+ "The Rebel Billionaire: Branson's Quest for the Best",
867
+ "The Ren & Stimpy Show",
868
+ "The Restaurant",
869
+ "The Restless Years",
870
+ "The Rich List",
871
+ "The Riches",
872
+ "The Rifleman",
873
+ "The Saddle Club",
874
+ "The Sentimental Agent",
875
+ "The Six Million Dollar Man",
876
+ "The Smothers Brothers Comedy Hour",
877
+ "The Spectacular Spider-Man",
878
+ "The Sunday Comics",
879
+ "The Super Mario Bros. Super Show!",
880
+ "The Super",
881
+ "The Surreal Life",
882
+ "The Sword in the Stone",
883
+ "The Tick",
884
+ "The Tony Danza Show",
885
+ "The Tortellis",
886
+ "The Venture Bros.",
887
+ "The Wallace and Ladmo Show",
888
+ "The Walter Winchell Show",
889
+ "The War at Home",
890
+ "The Weakest Link",
891
+ "The Wild Wild West",
892
+ "The Wizard",
893
+ "The Woodlanders",
894
+ "The X Factor",
895
+ "The Zoo Gang",
896
+ "The_Librarians_(2014_TV_series)",
897
+ "They Came from Outer Space",
898
+ "Thicker than Water",
899
+ "This Hour Has 22 Minutes",
900
+ "Three Rivers",
901
+ "Three's Company",
902
+ "Threshold",
903
+ "Thriller",
904
+ "Thunderbirds",
905
+ "Thundercats",
906
+ "Tic-Tac-Dough",
907
+ "Tim and Eric Nite Live!",
908
+ "Tiny Toon Adventures",
909
+ "Tiswas",
910
+ "Titus",
911
+ "Today on the Farm",
912
+ "Today's Special",
913
+ "Top Of The Pops",
914
+ "Tosh.0",
915
+ "Total Drama Action",
916
+ "Total Drama: Revenge of the Island",
917
+ "Totally Spies",
918
+ "Touching Evil",
919
+ "Tough Crowd with Colin Quinn",
920
+ "Tour of Duty",
921
+ "Tower Prep",
922
+ "Trapper John, M.D.",
923
+ "Trinity Blood",
924
+ "Trivia Track",
925
+ "TruTV Presents: World's Dumbest...",
926
+ "True Blood",
927
+ "True Jackson: VP",
928
+ "Twenty One",
929
+ "Twenty Questions",
930
+ "Two Pints of Lager and a Packet of Crisps",
931
+ "Two for the Money",
932
+ "Ultimate Force",
933
+ "Ultraman",
934
+ "Ulysses 31",
935
+ "Under the Dome",
936
+ "United States of Tara",
937
+ "Until Tomorrow",
938
+ "Utopia",
939
+ "V",
940
+ "V: The Final Battle",
941
+ "Van Der Valk",
942
+ "Veep",
943
+ "Veronica Mars",
944
+ "Victorious",
945
+ "Vikings",
946
+ "Voltron: Defender of the Universe",
947
+ "Walker, Texas Ranger",
948
+ "Wanted: Dead or Alive",
949
+ "Warehouse 13",
950
+ "Wayside",
951
+ "Webster",
952
+ "Weeds",
953
+ "West Point Story",
954
+ "Whammy! The All-New Press Your Luck",
955
+ "What the Papers Say",
956
+ "What's Happening!!",
957
+ "Whatever Happened to Robot Jones?",
958
+ "Wheel of Fortune 2000",
959
+ "Wheel of Fortune",
960
+ "When Games Attack",
961
+ "Whiplash",
962
+ "Who Wants to Be a Millionaire?",
963
+ "Who Wants to Be a Superhero?",
964
+ "Who Wants to Marry My Dad?",
965
+ "Who's the Boss?",
966
+ "Wife Swap",
967
+ "Wild On!",
968
+ "Win, Lose or Draw",
969
+ "Winning Streak",
970
+ "Wire in the Blood",
971
+ "With This Ring",
972
+ "Wizards of Waverly Place",
973
+ "Women's Murder Club",
974
+ "Wonder Showzen",
975
+ "Wonderfalls",
976
+ "Workaholics",
977
+ "Working Girl",
978
+ "World Blackjack Tour",
979
+ "World's Most Amazing Videos",
980
+ "World's Wildest Police Videos",
981
+ "Yancy Derringer",
982
+ "Yes Minister",
983
+ "Yin Yang Yo!",
984
+ "Yogi's Gang",
985
+ "You Asked For It",
986
+ "You Bet Your Life",
987
+ "You Can't Do That on Television",
988
+ "Your Hit Parade",
989
+ "Yu-Gi-Oh! 5D's",
990
+ "Yu-Gi-Oh! Arc V",
991
+ "Yu-Gi-Oh! GX",
992
+ "ZOOM",
993
+ "Zoids",
994
+ "Zoobilee Zoo",
995
+ "Zooboomafoo",
996
+ "Zorro and Son",
997
+ "Zorro",
998
+ "Zorro: Generation Z",
999
+ "Zorro: La Espada y la Rosa",
1000
+ "Zumbo",
1001
+ "'Allo 'Allo!",
1002
+ "'Til Death",
1003
+ "Óli á Hrauni"
1004
+ ]
1005
+ }