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,267 @@
1
+ {
2
+ "Arceusism": "worshippers of Arceus, the creator of all Pokémon. See also Giratinism",
3
+ "The Babarambaba Cult": "worshippers of Mother Nature, personified in a head of lettuce named Ralph — \"Rerun Sees the Light\" episode of What's Happening!!",
4
+ "Bajoran religion": "Star Trek: Deep Space Nine",
5
+ "Bandosianism": "RuneScape's war religion",
6
+ "Banjoism": "Elan's religion in The Order of the Stick",
7
+ "Beism": "Giles Goat-Boy, John Barth",
8
+ "Beliar": "Gothic (video game), god of darkness, death and chaos and lord of lightning and earth.",
9
+ "Bene Gesserit": "Dune series",
10
+ "Bilphism": "The Beautiful and Damned by F. Scott Fitzgerald",
11
+ "Blainetology": "\"Super Best Friends\" episode of South Park",
12
+ "Bokononism": "Cat's Cradle by Kurt Vonnegut",
13
+ "Boni Maroni": "National Lampoon's Doon (parody of Dune's Bene Gesserit)",
14
+ "Brogmoidism": "Zork",
15
+ "Brotherhood of Nod": "Command & Conquer",
16
+ "Brotherhood of the Yellow Sign": "Cthulhu Mythos",
17
+ "Brotherhood of Steel": "a secular religion from the Fallout video game series",
18
+ "Buddislam": "Dune series",
19
+ "Burns Religion": "The Simpsons episode, \"The Joy of Sect\"",
20
+ "Cainite Heresy": "Vampire: The Dark Ages",
21
+ "Carpathianism": "Left Behind series",
22
+ "Cartoon Religions, ltd": "Religion in a Monty Python sketch",
23
+ "Chantry": "From Dragon Age: Origins; Dragon Age: Origins Awakening; Dragon Age II",
24
+ "Chaos (Warhammer)": "Warhammer, Warhammer 40,000",
25
+ "Chemicalology": "Rex the Runt",
26
+ "Children of Atom": "Fallout 3",
27
+ "Children of the Cathedral": "Fallout",
28
+ "Children of the Son": "\"Bread and Circuses\" episode of Star Trek: The Original Series",
29
+ "Children of the Mind of Christ": "The Enderverse of Orson Scott Card",
30
+ "Chrislam": "The Hammer of God by Arthur C. Clarke",
31
+ "Church of Abel": "Anima: Beyond Fantasy",
32
+ "Church of All Worlds": "Stranger in a Strange Land by Robert A. Heinlein (inspired a non-fictional religious group of the same name)",
33
+ "Church of American Secular Humanism (C.A.S.H.)": "The Real Frank Zappa Book by Frank Zappa",
34
+ "Church of Appropriate Humility": "CivilWarLand in Bad Decline by George Saunders",
35
+ "The Church of Aram": "The Elder Gods",
36
+ "Church of Artificial Intelligence": "Otherworld",
37
+ "Church of Altana": "Final Fantasy XI",
38
+ "Church of the Atheists": "Metalocalypse",
39
+ "Church of Atom": "Fallout 3",
40
+ "Church of Avacyn": "Practiced by the humans of Innistrad, a world in the Magic: the Gathering universe",
41
+ "The Church of Awes": "The Redemption of Althalus",
42
+ "Church of the Final Atonement aka Church of the Shrike": "Hyperion Cantos by Dan Simmons",
43
+ "Church of The Fonz": "Family Guy",
44
+ "The Church of Gaming": "Ctrl+Alt+Del by Tim Buckley[citation needed]",
45
+ "The Church of God the Utterly Indifferent": "The Sirens of Titan by Kurt Vonnegut",
46
+ "The Church of the God Who Makes No Difference": "Permutation City by Greg Egan",
47
+ "Church of the New Epoch": "Syndicate Wars",
48
+ "The Church of Gort": "Church for the worship of androids, cyborgs and A.I.'s in Wildstorm comics",
49
+ "Church of Jesus Christ the Kidnapped": "Slapstick by Kurt Vonnegut",
50
+ "Church of Martel": "Tales of Symphonia",
51
+ "Church of the New Revelation (Fosterite)": "Stranger in a Strange Land by Robert A. Heinlein",
52
+ "Church of Practicology": "Defined as the religion founded by the alien king living inside Stan Lee on 30 Rock, a parody of Scientology",
53
+ "The Church of Ralph": "Night Court",
54
+ "Church of the Savior Emperor": "Warhammer 40,000, also known as the Imperial Cult.",
55
+ "Church of Scientific Spiritualism": "The Profit, a parody of the Church of Scientology",
56
+ "Church of the Second Chance": "Riverworld",
57
+ "Church of the Second Coming of the Great Prophet Zarquon": "The Restaurant at the End of the Universe by Douglas Adams",
58
+ "Church of the Survivor": "A religion practiced on the world Scadrial created by author Brandon Sanderson.",
59
+ "Church of Trek": "Futurama (Religion in Futurama)",
60
+ "Church of What's Happening Now!": "Flip Wilson routine",
61
+ "Church Without Christ": "Wise Blood (novel) by Flannery O'Connor",
62
+ "Chutengodianism": "Godless by Pete Hautman",
63
+ "Cola Cult": "Chip 'n Dale Rescue Rangers",
64
+ "Colonial polytheistic religion": "Battlestar Galactica",
65
+ "Contolism": "From the Gundam universe, a religion that preaches humanity's destiny is to migrate from Earth into space.",
66
+ "Crackpot Religions Ltd": "bogus religion in a Monty Python sketch.",
67
+ "Creedish Death Cult": "Chuck Palahniuk's novel Survivor",
68
+ "Cthulhu Mythos cults": "Cthulhu Mythos",
69
+ "Cult of Demnos": "a cult in the Doctor Who story \"The Masque of Mandragora\".",
70
+ "Cult of Gaea": "The religion of the CHAOS alignment in the Megami Tensei series.",
71
+ "Cult of Rammenoth": "A religion in the comicbook series Young Lovecraft (by José Oliver and Bart Torres), who worships an Elder God like the ones that H.P. Lovecraft created",
72
+ "Cult of Skaro": "Supreme Daleks Doctor Who",
73
+ "Cult of Sigmar": "The Empire's primary religion in Games Workshop's Warhammer Fantasy world.",
74
+ "Cult of Sirius": "A cult believing the alien invaders are in fact godly messengers coming to punish mankind for their sinful behavior in X-COM Interceptor and X-Com Apocalypse",
75
+ "The Covenant Religion, also known as \"The Great Journey\"": "Halo",
76
+ "Cult Mechanicus": "Warhammer 40,000",
77
+ "Cybertao": "from the Century Next Door series by John Barnes",
78
+ "Cylon monotheistic religion": "Battlestar Galactica",
79
+ "Drowned God": "The Drowned God is a sea deity worshiped solely by the Ironborn in Westeros in A Song of Ice and Fire. The religion of the Drowned God is old, dating back to before the Andal Invasion. The Andal invaders of the Iron Islands converted to the local religion rather than supplant it with the Seven as they did in the south of Westeros. The Drowned God religion supports the ironmen's naval, pirate culture.",
80
+ "D'ni Religion": "as seen in the Myst series.",
81
+ "Duism": "From the science-fiction stories of Stanislaw Lem.",
82
+ "Daedra Worship": "The Elder Scrolls series",
83
+ "Dark Day Fatalism": "\"Small Minded Giants\" by Oisín McGann.",
84
+ "Divine Order of His Shadow": "Lexx TV series",
85
+ "Dave's cult": "Is in Postal 2 & Postal 3, loosely based on Branch Davidians.",
86
+ "The Dragon Cult": "The Elder Scrolls series.",
87
+ "Earthseed": "Parable of the Sower and its sequel, Parable of the Talents, see Octavia Butler",
88
+ "Einhasad": "Lineage II",
89
+ "Elder God": "Legacy of Kain series",
90
+ "Elune": "Warcraft Universe",
91
+ "Elvii": "collective term for Elvis Presley worshippers who view him as a divine avatar in Jack Womack's Dryco Quartet, most notably in Elvissey",
92
+ "Enigma Babylon One World Faith": "Left Behind series",
93
+ "The Epsilon Program": "Grand Theft Auto: San Andreas[1] and Grand Theft Auto V.",
94
+ "Esoteric Order of Dagon": "Cthulhu Mythos",
95
+ "Eternal Fire": "A belief that is being promoted by Grandmaster Jacques de Aldersburg and his Order of the Flaming Rose. The Witcher (video game)",
96
+ "Ethos": "Xenogears",
97
+ "Evans Church": "Breath of Fire II",
98
+ "Eternal Alchemy": "Guild Wars",
99
+ "Faith of the Many-Faced God": "A religion based around the worship of Death in A Song of Ice and Fire",
100
+ "Faith of The Seven": "A Song of Ice and Fire by George R. R. Martin",
101
+ "FARGO": "Moon.",
102
+ "Feeders of Vaal": "\"The Apple\" episode of Star Trek: The Original Series",
103
+ "Festivus": "Seinfeld",
104
+ "First Amalgamated Church": "Futurama (Religion in Futurama)",
105
+ "The First Church of the Flaming Sword, Las Vegas": "Waiting for God",
106
+ "Fosterites": "Stranger in a Strange Land",
107
+ "Foundationism": "Babylon 5",
108
+ "First Church of the Fonz": "\"The Father, the Son, and the Holy Fonz\" episode of Family Guy",
109
+ "First Church of the Gooey Death and Discount House of Worship": "Imus in the Morning radio show",
110
+ "First Church of LeChuck, Orthodox": "Escape From Monkey Island computer game",
111
+ "First House of Polyester Worship and Horizontal Throbbing Teenage Desire Our Lady of the White Go-Go Boot Lord of the 40-Watt Undulating Bubbling Lava Lamp Apocalyptic No Pizza Take-out After 12 Achey-Breaky Love Tabernacle in Nashville, Tenn.": "Church membership claimed by jazz-blues pianist/parodist Rev. Billy C. Wirtz",
112
+ "Fishers of Men (Cult)": "Leaving Fishers by Margaret Peterson Haddix",
113
+ "Followers of the Apocalypse": "New California Republic in Fallout and Fallout: New Vegas",
114
+ "Forceism": "Star Wars",
115
+ "Fordism": "Brave New World",
116
+ "Free the soul": "From Virtue's Last Reward. A religious organization with the agenda to \"purify the unclean\" and create an uncorrupted world by any means possible. They are behind the world-wide viral pandemic which caused the collapse of the human race.",
117
+ "Friends Of Humanity (FOH)": "Marvel Comics",
118
+ "Frisbeetarianism": "\"The belief that when you die, your soul goes up on the roof and gets stuck there.\" (George Carlin)",
119
+ "Furude Shrine": "from Higurashi no Naku Koro ni. A Shinto style folk religion that worships Oyashiro-sama, a deity who conciliate humans and demons.",
120
+ "Galactophasic Determinism": "The religion of the Orange Catholic Bible in the Dune series",
121
+ "Giratinism": "The religion based on the Dark Lord, Giratina of the Pokemon Universe who betrayed Lord Arceus's orders",
122
+ "Global Standard Deity": "Thursday Next books by Jasper Fforde",
123
+ "Goa'uld religion": "Most Goa'uld pose as gods to control slave armies. \"Goa'uld\" means \"God\" in the Goa'uld language from the television series Stargate SG-1.",
124
+ "The Great Chain": "Belief in self-interest and free markets that unite the people. This is more of a philosophy than a religion, as it is a belief promoted by Andrew Ryan, who is a staunch atheist.",
125
+ "The Great Green Arklseizure": "A religion from the TV series \"The Hitchhiker's Guide to the Galaxy (TV series)\" by Douglas Adams",
126
+ "Guthixianism": "RuneScape's balance-sided religion",
127
+ "Great Pumpkin": "Peanuts",
128
+ "Gozer Worshippers": "Ghostbusters mentioned only.",
129
+ "Happy-Happyism": "from the video game EarthBound",
130
+ "Hammerites (The Order of the Hammer)": "from the Thief (series) of computer games",
131
+ "Handdara": "A religion loosely resembling Hindu, Taoist and Zen beliefs featured in The Left Hand of Darkness",
132
+ "Haruhiism": "worship of the title character from the series The Melancholy of Haruhi Suzumiya, in which some characters believe that she is a god",
133
+ "Haydn Sikhs": "mentioned in National Lampoon's Doon",
134
+ "Helixism": "created by the players of Twitch Plays Pokemon",
135
+ "Hitlerism": "founded and created by Eric Cartman (South Park)",
136
+ "Holy Light": "Warcraft Universe",
137
+ "Hubology": "from the video game Fallout 2",
138
+ "Hylian Religion, which worships the three Goddesses who created the world of Hyrule": "in the Legend of Zelda video game series",
139
+ "IBM": "from the \"Deities\" episode of the Max Headroom TV series",
140
+ "The Imperial Creed": "From Warhammer 40,000. Also called the Imperial Cult",
141
+ "The Imperial Cult": "The Elder Scrolls. The faith of The Empire of Tamriel that follows the Nine Divines; Akatosh, Stendarr, Mara, Dibella, Julianos, Zenithar, Kynareth, Arkay and Talos, the apotheosized founder of the Empire Tiber Septim.",
142
+ "Iridescent Tones": "A religion practiced on the world Nalthis created by author Brandon Sanderson.",
143
+ "Ishbalan": "Fullmetal Alchemist",
144
+ "Innos": "Gothic God of Fire and Light, lord of the Order.",
145
+ "Jediism": "Star Wars",
146
+ "Jemima's Witness": "Mentioned in an episode of Family Guy",
147
+ "Jenova's Witness": "in the webcomic VG Cats (a pun on Jehovah's Witnesses and Jenova from the Final Fantasy VII)",
148
+ "Jesuit Jews for Jesus": "the Purim sketch, Saturday Night Live",
149
+ "Jiu-Jitsus for Jesus": "mentioned in National Lampoon's Doon",
150
+ "Junkism": "founded by Fred Sanford in Sanford and Son as a means for paying no taxes.",
151
+ "Kelx": "Kelx is a religion that appears in Neal Stephenson's Anathem. The followers of Kelx believe that the whole world is in the mind of a man condemned to die. The \"Condemned Man\" is on trial in the \"Magistrate's\" court for the murder of the \"Innocent\" and her family. The Condemned Man argues that whole worlds can be created by any soul and therefore no one should be put to death. Each day the Condemned Man tells a story from the world in his mind, and the Magistrate judges the people in that story. The Condemned Man's life and therefore the very existence of the world hang on the Magistrate's judgment of each story.",
152
+ "Khala": "StarCraft",
153
+ "Kinda": "Doctor Who",
154
+ "Klingon religion": "Star Trek",
155
+ "Konja Kyūsei Subarakikō": "Key the Metal Idol",
156
+ "Lapine Theism": "Original Lapine belief in one sun god, Frith, and rabbit prophet. Includes other minor deities/angels including Prince Rainbow who orders the world on behalf of Frith but is neither omnipotent nor infallible (and may represent humanity as seen by rabbits), and the Black Rabbit of Inlé (Inlé-Rah) who is the personification of Death. Also includes supposedly mortal folk heroes such as El-ahrairah (who may have taken up a quasi-religious role after death).",
157
+ "Lapine Christianity": "Parody religion",
158
+ "The Light": "Main religion of the Dwarves, Draenei and Humans in World of Warcraft.",
159
+ "The Lords of Kobol": "While the official name of the religion is not known, the religion featured in Battlestar Galactica follows a belief in these beings and religious practices surrounding them.",
160
+ "Los Illuminado": "Resident Evil 4",
161
+ "Laser Lotus Buddhist": "Community",
162
+ "Manduism": "Is a Sealab version of Hinduism.",
163
+ "McMahonism": "",
164
+ "Manifold": "One of two human religions in Stan Nicholls' Orcs series.",
165
+ "Mechanists": "(Order of the Gear)",
166
+ "Mechanoid religion": "Red Dwarf, advocates life after deactivation in Silicon Heaven",
167
+ "Mercerism": "Do Androids Dream of Electric Sheep? by Philip K. Dick",
168
+ "MindHead": "Steve Martin movie Bowfinger",
169
+ "Movementarianism": "\"The Joy of Sect\" episode of The Simpsons",
170
+ "Mycogenian Religion": "\"Prelude to Foundation\" by Isaac Asimov",
171
+ "The Necromonger Way": "The Chronicles of Riddick",
172
+ "NeoAquarian Temple": "Snow Crash",
173
+ "New Yevon": "Final Fantasy X-2 (More of a political party than an actual religion)",
174
+ "Nisanism": "Xenogears",
175
+ "Nugganism": "Terry Pratchett's Discworld",
176
+ "Neptuanism": "SpongeBob SquarePants",
177
+ "Notchism": "minecraft",
178
+ "Old Gods": "The Old Gods of the children of the forest, are nameless deities of stone and earth and tree, which were named so by the followers of the Seven (\"New Gods\") that replaced them in all but North of Westeros, where it's still practiced strongly by Northmen, Crannogmen and Free Folk from Beyond the wall. \"A Song of Ice and Fire By George R.R. Martin\"",
179
+ "Omega House (Religion)": "a Bitheistic religious cult disguised as a sorority group. - King of the Hill episode Fun with Jane and Jane",
180
+ "Omnianism": "Terry Pratchett's Discworld",
181
+ "Oprahism": "Futurama (Religion in Futurama)",
182
+ "Religions that contributed to the Orange Catholic Bible": "",
183
+ "The Order": "A world religion that combined all of the major religions is a concept in the popular game Deus Ex: Invisible War",
184
+ "Order of Aurelius": "an elite sect of vampires in the Buffyverse.",
185
+ "Order of the Binary Singularity": "Is a monotheistic robot religion on Chapek 9 that teaches binary unity and to embrace one's pre-programmed nature and to not be discouraged by it as it represents robot magnificence and as well worships a human goddesses \"Mom\" put as named \"creatrix\" by followers and also she creates the religion. - Futurama episode Free Will Hunting",
186
+ "The Order of Messiah": "The religion of the LAW alignment in the Megami Tensei series.",
187
+ "The Order of the Serpentine": "a brotherhood created to help market Axe deodorants",
188
+ "Order of Wen the Eternally Surprised": "Discworld",
189
+ "Origin": "The religion of the Ori race in the television series Stargate SG-1.",
190
+ "Ormus": "Xenosaga",
191
+ "Panarii": "the main religion in the computer game Arcanum: Of Steamworks and Magick Obscura",
192
+ "Pathism": "A religion practiced on the world Scadrial created by author Brandon Sanderson.",
193
+ "Perfectly Frank Church of Christ of the Saturday Saints": "mentioned in National Lampoon's Doon",
194
+ "Potatoism": "a short-lived religion in Dinosaurs dedicated to the worship of the Great Potato",
195
+ "Praysbyterian": "from Drake and Josh a parody of the Presbyterian Church.",
196
+ "Prismatology": "Sam & Max: Season One",
197
+ "Puss'n Buddhists": "mentioned in National Lampoon's Doon",
198
+ "Practicology": "the religion founded by the alien living inside Stan Lee, practiced by Devon Banks in 30 Rock. The religion was also mentioned when Tracy Jordan was looking for a religion and the church turned him down; despite the fact that the church \"Love movie stars\".",
199
+ "Quantum Presbyterian": "Kang's and Kodos' religion in The Simpsons",
200
+ "Quaichist movement": "A cult central to the plot in Alastair Reynolds' story Absolution Gap, the fourth novel in the Revelation Space series.",
201
+ "Quintarianism": "The Curse of Chalion and sequels by Lois McMaster Bujold",
202
+ "Raifuku Shrine": "from Kamichu!. A syncretism of Shinto and the original (fictional) folk religion. The latter worships a living god Yurie Hitotsubashi, a protagonist of the anime. Called Yashima Shrine in the original manga.",
203
+ "Rao (comics) worship": "Superman mythos. Rao refers to the red sun that Krypton orbited before its destruction, and a related sun god deity.",
204
+ "The Rapture Family": "Everyone owes each other a sense of unity and brotherhood. This is the most recent cult to have appeared in Rapture, having been created and promoted by Sofia Lamb and Simon Wales.",
205
+ "Reformed Neo-Buddhism": "Community",
206
+ "Rescenism (The Sacred Rhythm)": "Orion's Arm",
207
+ "Reverend Wayne's Pearly Gates (Cult of Asherah)": "Snow Crash",
208
+ "Robotology": "Futurama (Religion in Futurama)",
209
+ "Saradominism&": "RuneScape's order-sided religion",
210
+ "The Saturnine Cult": "Elements of paganism (majority Neo-Hellenic/Roman) and nature worship. According to Julie Langford, worshipers of this cult drink human blood as well as cups full of Plasmids (most likely raw ADAM). They also believe they have been \"touched\" by the ancient gods.",
211
+ "Scientific People": "The Stars My Destination",
212
+ "Scientism (Foundation)": "the bogus religion established by Salvor Hardin in Isaac Asimov's Foundation.",
213
+ "Scratch": "Cowboy Bebop",
214
+ "Second Islam": "Dune series",
215
+ "Secret Israel": "Dune series",
216
+ "Selfosophy": "\"Jose Chung's Doomsday Defense\" episode of Millennium.",
217
+ "Seventh Day Advent Hoppists": "Arnold Rimmer's parents' religion due to a typing error in their Bible Red Dwarf",
218
+ "Shu-Korath": "A religion practiced on the world Sel created by author Brandon Sanderson.",
219
+ "Shu-Dereth": "A religion practiced on the world Sel created by author Brandon Sanderson.",
220
+ "the Silence": "Doctor Who religious order who infiltrate the minds of their enemies Doctor Who",
221
+ "Sith": "Star Wars",
222
+ "Sky Haussman cult": "a cult that developed an indoctrinal virus that alters the infected's perceptions, from the Revelation Space series.",
223
+ "Snakedance": "Doctor Who",
224
+ "Soldiers of the One": "radical monotheistic group usually associated with terrorism on the planet \"Caprica\"",
225
+ "Sorrows": "a tribe whose beliefs are based on Christianity",
226
+ "Space Catholicism": "Futurama (Religion in Futurama)",
227
+ "Speaker for the Dead": "Based on the fictional books The Hive Queen and The Hegemon written by Andrew \"Ender\" Wiggin a.k.a. The Speaker for the Dead, from The Enderverse by Orson Scott Card (Not officially a religion, it is known as a Humanist movement)",
228
+ "Spode": "Spore",
229
+ "Starclanism": "religion from the Warrior Cats series",
230
+ "Starry Wisdom": "H. P. Lovecraft's short story The Haunter of the Dark",
231
+ "Starveling Cult": "The Algebraist by Iain M. Banks.",
232
+ "Six Human Gods": "Guild Wars",
233
+ "Super Adventure Club": "cult from South Park",
234
+ "Spirits of the Wild": "Guild Wars",
235
+ "Sunbird": "created by players of Yu-Gi-Oh!",
236
+ "Syrinx": "religion mentioned in the song \"2112\" by Rush.",
237
+ "Teleological Pantheism": "The Starrigger series by John DeChancie",
238
+ "Third Islam": "Dune series",
239
+ "Tribunal Temple": "Cult of the three living gods known as Vivec, Almalexia and Sotha Sil who are worshipped by the Dunmer, or Dark Elves of Morrowind.",
240
+ "Trigonate Church": "A worship of three principle gods, and several minor ones, in Tad Williams' Shadowmarch series.",
241
+ "Tritheism": "alluded to but not described in \"Prelude to Foundation\" by Isaac Asimov",
242
+ "The Truth": "A religion based on the belief that all apparent reality is actually a computer simulation",
243
+ "Universal Church of Truth": "Marvel Comics",
244
+ "Unity": "One of two human religions in Stan Nicholls' Orcs series.",
245
+ "Unitology": "Dead Space (video game)",
246
+ "Vulcan religion": "Star Trek",
247
+ "Vodarac": "Eureka Seven",
248
+ "Vorinism": "A religion practiced on the world Roshar created by author Brandon Sanderson.",
249
+ "The Vu-Age Church": "from the \"Deities\" episode of the Max Headroom TV series",
250
+ "Verdukianism": "Is a religion that has a fictional holiday \"Merlinpeen\" (Secret Santa (30 Rock))",
251
+ "The Warrior Monks of Phum": "Michael Moorcock's Elric of Melniboné novels",
252
+ "Wayism": "Andromeda",
253
+ "The Western Branch of American Reform Presbylutheranism": "the denomination of Reverend Lovejoy in The Simpsons",
254
+ "Yen Buddhism": "Discworld. Yen Buddhists believe that money poisons the soul, so they collect as much as possible, to protect others from it. Basically a play on Zen/Yen.",
255
+ "Yevonism": "Final Fantasy X",
256
+ "Yomeshta": "the religion of the Orgota people in The Left Hand of Darkness who follow the teachings of a messianic figure called Yomesh",
257
+ "Young Men's Reformed Cultists of the Ichor God Bel-Shamaroth Association": "religious organisation in Terry Pratchett's Discworld",
258
+ "Young Moneyism": "worshipers of young money",
259
+ "Zakarum": "Religion based on Diablo universe",
260
+ "Zamorakianism": "RuneScape's chaos-sided religion",
261
+ "Zarosianism": "Ancient RuneScape religion",
262
+ "Zen Gnosticism": "Hyperion series",
263
+ "Zenshia": "Legends of Dune series",
264
+ "Zensufi": "Dune series",
265
+ "Zensunni": "Dune series",
266
+ "Zumanism": "\"Holy Sheep\" episode of Andy Richter Controls the Universe"
267
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "Eventualism": "A satire on Scientology-like religions which appeared in the movie Schizopolis",
3
+ "Invisible Pink Unicorn": "A parody of theist definitions of God. It also highlights the arbitrary and unfalsifiable nature of religious belief, in a similar way to Russell's teapot.",
4
+ "Kibology": "A humorous Usenet-based satire of religion",
5
+ "Landover Baptist Church": "A satiric parody of Fundamentalist Christianity.",
6
+ "Last Thursdayism": "A joke version of omphalism that argues that the universe was created last Thursday, created to demonstrate problems with unfalsifiable beliefs, and the variant Next Wednesdayism inspired by John Landis's running movie gag See You Next Wednesday.",
7
+ "Pastafarianism, or the Church of the Flying Spaghetti Monster": "A parody of intelligent design, Creationism, and religion in general, as a modern version of Russell's teapot.",
8
+ "Tarvuism": "A spoof religion that British comedians Peter Serafinowicz and Robert Popper invented for the television show, Look Around You, that parodied instructional religious videos such as those of Scientologists and Christians.",
9
+ "First Church of the Last Laugh": "The spoof religion behind the annual Saint Stupid's Day Parade in San Francisco.",
10
+ "Pastafarianism": "A religion which claims to follow the Flying Spaghetti Monster, a deity composed entirely of spaghetti. It parodies Catholic councils with its First Council of Olive Garden, and Catholic saints with its scripture \"TheLooseCanon\", supposedly written by John the Blasphemer. Its name is a parody of Rastafarianism.",
11
+ "Bokononism": "A fictional religion from Kurt Vonnegut's novel Cat's Cradle, which promotes harmless comforting lies called foma. Its principal text, The Books of Bokonon, is a parody of the New Testament. See also the Church of God the Utterly Indifferent in Kurt Vonnegut's The Sirens of Titan.",
12
+ "Church of the SubGenius": "Founded in 1979. Often regarded as a parody of religion in general, with elements of fundamentalist Christianity, Zen, Scientology, new-age cults, pop-psychology, and motivational sales techniques amongst others, it has become a movement in its own right, inspiring several books, art exhibits, rock albums, conventions, and novelty items.",
13
+ "Dudeism": "A religion based on the 1998 film, The Big Lebowski, in which the titular character, also known as \"theDude\", is revered as a guru. The adherents consider the religion a modern form of Taoism.",
14
+ "Discordianism": "It is based on the book 1965 Principia Discordia. Its principal deity is the goddess of chaos Discordia (Greek Eris).",
15
+ "Iglesia Maradoniana (\"ChurchofMaradona\")": "It was formed by an Argentinian group of fans of the association football player Diego Armando Maradona. The adherents baptize themselves by slapping a football, which is a reference to the 1986 \"HandofGod\" goal.",
16
+ "Jediism": "In 2001 following an Internet campaign, the fictional Star Wars \"religion\" of the Jedis became a parody religion in several Commonwealth countries as 1.5% of the New Zealand, 0.37% of the Australia and 0.7% of the UK population stated their religion as Jedi in the official census (see Jedi census).",
17
+ "Kopimism": "It is based on the belief that file sharing is a sacred virtue which must remain protected. It was given recognition by the Sweden government in January 2012. It was founded by a philosophy student, Isak Gerson.",
18
+ "Matrixism, or The Path of the One": "A new religious movement inspired by the 1999 movie The Matrix. It appeared online in 2004. The adherents claim belief in a multilayered subjective reality and await the return of their prophet, the One.",
19
+ "Church of Euthanasia": "The Church of Euthanasia is a \"non-profiteducationalfoundationdevotedtorestoringbalancebetweenHumansandtheremainingspeciesonEarth.\" The Church uses sermons, music, culture jamming, publicity stunts and direct action to highlight Earth's unsustainable population. The Church is notorious for its conflicts with Pro-life Christian activists."
20
+ }