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,2593 @@
1
+ {
2
+ "description": "Tarot card interpretations, from Mark McElroy's _A Guide to Tarot Meanings_ (http://www.madebymark.com/a-guide-to-tarot-card-meanings/)",
3
+ "tarot_interpretations": [
4
+ {
5
+ "fortune_telling": [
6
+ "Watch for new projects and new beginnings",
7
+ "Prepare to take something on faith",
8
+ "Something new comes your way; go for it"
9
+ ],
10
+ "keywords": [
11
+ "freedom",
12
+ "faith",
13
+ "inexperience",
14
+ "innocence"
15
+ ],
16
+ "meanings": {
17
+ "light": [
18
+ "Freeing yourself from limitation",
19
+ "Expressing joy and youthful vigor",
20
+ "Being open-minded",
21
+ "Taking a leap of faith",
22
+ "Attuning yourself to your instincts",
23
+ "Being eager or curious",
24
+ "Exploring your potential",
25
+ "Embracing innovation and change"
26
+ ],
27
+ "shadow": [
28
+ "Being gullible and naive",
29
+ "Taking unnecessary risks",
30
+ "Failing to be serious when required",
31
+ "Being silly or distracted",
32
+ "Lacking experience",
33
+ "Failing to honor well-established traditions and limits",
34
+ "Behaving inappropriately"
35
+ ]
36
+ },
37
+ "name": "The Fool",
38
+ "rank": 0,
39
+ "suit": "major"
40
+ },
41
+ {
42
+ "fortune_telling": [
43
+ "A powerful man may play a role in your day",
44
+ "Your current situation must be seen as one element of a much larger plan"
45
+ ],
46
+ "keywords": [
47
+ "capability",
48
+ "empowerment",
49
+ "activity"
50
+ ],
51
+ "meanings": {
52
+ "light": [
53
+ "Taking appropriate action",
54
+ "Receiving guidance from a higher power",
55
+ "Becoming a channel of divine will",
56
+ "Expressing masculine energy in appropriate and constructive ways",
57
+ "Being yourself in every way"
58
+ ],
59
+ "shadow": [
60
+ "Inflating your own ego",
61
+ "Abusing talents",
62
+ "Manipulating or deceiving others",
63
+ "Being too aggressive",
64
+ "Using cheap illusions to dazzle others",
65
+ "Refusing to invest the time and effort needed to master your craft",
66
+ "Taking shortcuts"
67
+ ]
68
+ },
69
+ "name": "The Magician",
70
+ "rank": 1,
71
+ "suit": "major"
72
+ },
73
+ {
74
+ "fortune_telling": [
75
+ "A mysterious woman arrives",
76
+ "A sexual secret may surface",
77
+ "Someone knows more than he or she will reveal"
78
+ ],
79
+ "keywords": [
80
+ "intuition",
81
+ "reflection",
82
+ "purity",
83
+ "initiation"
84
+ ],
85
+ "meanings": {
86
+ "light": [
87
+ "Listening to your feelings and intuitions",
88
+ "Exploring unconventional spirituality",
89
+ "Keeping secrets",
90
+ "Being receptive",
91
+ "Reflecting instead of acting",
92
+ "Observing others",
93
+ "Preserving purity"
94
+ ],
95
+ "shadow": [
96
+ "Being aloof",
97
+ "Obsessing on secrets and conspiracies",
98
+ "Rejecting guidance from spirit or intuition",
99
+ "Revealing all",
100
+ "Ignoring gut feelings",
101
+ "Refusing to become involved, even when involvement is appropriate"
102
+ ]
103
+ },
104
+ "name": "The Papess/High Priestess",
105
+ "rank": 2,
106
+ "suit": "major"
107
+ },
108
+ {
109
+ "fortune_telling": [
110
+ "Pregnancy is in the cards",
111
+ "An opportunity to be involved in luxurious sexuality is coming",
112
+ "Beware a tendency toward addiction"
113
+ ],
114
+ "keywords": [
115
+ "fertility",
116
+ "productivity",
117
+ "ripeness",
118
+ "nurturing"
119
+ ],
120
+ "meanings": {
121
+ "light": [
122
+ "Nurturing yourself and others",
123
+ "Bearing fruit",
124
+ "Celebrating your body",
125
+ "Bearing (literal or figurative) children",
126
+ "Reveling in luxury",
127
+ "Mothering those around you in positive ways",
128
+ "Enjoying your sexuality",
129
+ "Getting things done"
130
+ ],
131
+ "shadow": [
132
+ "Overindulging",
133
+ "Being greedy",
134
+ "Smothering someone with attention",
135
+ "Debilitating someone by being overprotective",
136
+ "Inhibiting productivity by obsessing on productivity",
137
+ "Being overcome by addictive behavior"
138
+ ]
139
+ },
140
+ "name": "The Empress",
141
+ "rank": 3,
142
+ "suit": "major"
143
+ },
144
+ {
145
+ "fortune_telling": [
146
+ "A father figure arrives",
147
+ "A new employer or authority figure will give you orders",
148
+ "Expect discipline or correction in the near future"
149
+ ],
150
+ "keywords": [
151
+ "authority",
152
+ "regulation",
153
+ "direction",
154
+ "structure"
155
+ ],
156
+ "meanings": {
157
+ "light": [
158
+ "Exercising authority",
159
+ "Defining limits",
160
+ "Directing the flow of work",
161
+ "Communicating clear guidelines",
162
+ "Being in control of yourself and others",
163
+ "Tempering aggressive masculinity with wisdom and experience"
164
+ ],
165
+ "shadow": [
166
+ "Micromanaging",
167
+ "Crushing the creativity of others with a rigid, iron-fisted approach",
168
+ "Insisting on getting your own way",
169
+ "Assuming a dictatorial mindset",
170
+ "Using overt force to achieve your goals and maintain order"
171
+ ]
172
+ },
173
+ "name": "The Emperor",
174
+ "rank": 4,
175
+ "suit": "major"
176
+ },
177
+ {
178
+ "fortune_telling": [
179
+ "Expect to be caught in a misdeed and punished accordingly",
180
+ "Pray for forgiveness and confess wrongdoings",
181
+ "A more experienced man, spiritual leader, or father figure will come into your life"
182
+ ],
183
+ "keywords": [
184
+ "guidance",
185
+ "knowledge",
186
+ "revelation",
187
+ "belief"
188
+ ],
189
+ "meanings": {
190
+ "light": [
191
+ "Teaching or guiding others",
192
+ "Searching for the truth",
193
+ "Asking for guidance from a higher power",
194
+ "Acknowledging the wisdom and experience of others",
195
+ "Taking vows",
196
+ "Engaging in heartfelt rituals",
197
+ "Volunteering"
198
+ ],
199
+ "shadow": [
200
+ "Using experience as a means of manipulating or misguiding others",
201
+ "Being dogmatic",
202
+ "Favoring tradition over what is expedient or necessary",
203
+ "Going through the motions of empty rituals",
204
+ "Concealing wisdom",
205
+ "Restricting access to spiritual truths or the gods"
206
+ ]
207
+ },
208
+ "name": "The Pope/Hierophant",
209
+ "rank": 5,
210
+ "suit": "major"
211
+ },
212
+ {
213
+ "fortune_telling": [
214
+ "A new personal or professional relationship blossoms",
215
+ "Sexual opportunities abound",
216
+ "Unexpectedly, a friend becomes a lover"
217
+ ],
218
+ "keywords": [
219
+ "love",
220
+ "passion",
221
+ "unity",
222
+ "choice"
223
+ ],
224
+ "meanings": {
225
+ "light": [
226
+ "Being in love",
227
+ "Showing your love to others",
228
+ "Expressing passion or romantic feelings",
229
+ "Aligning yourself with groups or like-minded others",
230
+ "Bringing people together",
231
+ "Making well-informed decisions"
232
+ ],
233
+ "shadow": [
234
+ "Debilitating passion",
235
+ "Allowing an unhealthy desire for love to motivate destructive behavior",
236
+ "Disrupting unity",
237
+ "Working against the best interests of those who care about you",
238
+ "Ill-informed decisions"
239
+ ]
240
+ },
241
+ "name": "The Lovers",
242
+ "rank": 6,
243
+ "suit": "major"
244
+ },
245
+ {
246
+ "fortune_telling": [
247
+ "Victory is a certainty",
248
+ "Move ahead with all plans",
249
+ "Beware the jealousy of others"
250
+ ],
251
+ "keywords": [
252
+ "advancement",
253
+ "victory",
254
+ "triumph",
255
+ "success"
256
+ ],
257
+ "meanings": {
258
+ "light": [
259
+ "Breaking through barriers",
260
+ "Moving forward with confidence and authority",
261
+ "Reaching the pinnacle of success",
262
+ "Basking in the glory of achievement",
263
+ "Guiding an effort to total victory",
264
+ "Establishing yourself as a worthy leader"
265
+ ],
266
+ "shadow": [
267
+ "Resting on laurels",
268
+ "Riding roughshod over the feelings or expectations of others",
269
+ "Focusing more on past successes than future opportunities",
270
+ "Failing to rein in impulsive behavior"
271
+ ]
272
+ },
273
+ "name": "The Chariot",
274
+ "rank": 7,
275
+ "suit": "major"
276
+ },
277
+ {
278
+ "fortune_telling": [
279
+ "Your self-control will be tested",
280
+ "A woman will seek to change her partner or lover",
281
+ "You are a strong, capable person"
282
+ ],
283
+ "keywords": [
284
+ "discipline",
285
+ "boldness",
286
+ "self-discipline",
287
+ "power",
288
+ "vitality"
289
+ ],
290
+ "meanings": {
291
+ "light": [
292
+ "Imposing restrictions on yourself for your own benefit",
293
+ "Bringing your passions under the control of reason",
294
+ "Resisting impulses that work against your best interests",
295
+ "Taking bold action"
296
+ ],
297
+ "shadow": [
298
+ "Indulging weakness, even when you know it will damage your health and happiness",
299
+ "Languishing in addiction",
300
+ "Allowing your instincts to tame and conquer you",
301
+ "Failing to take a stand when necessary"
302
+ ]
303
+ },
304
+ "name": "Strength",
305
+ "rank": 8,
306
+ "suit": "major"
307
+ },
308
+ {
309
+ "fortune_telling": [
310
+ "A period of loneliness begins",
311
+ "One partner in a relationship departs",
312
+ "A search for love or money proves fruitless"
313
+ ],
314
+ "keywords": [
315
+ "solitude",
316
+ "experience",
317
+ "stillness",
318
+ "withdrawal"
319
+ ],
320
+ "meanings": {
321
+ "light": [
322
+ "Becoming or seeking out a guru",
323
+ "Going on a retreat",
324
+ "Recharging spiritual or creative batteries",
325
+ "Lighting the way for those with less experience",
326
+ "Stepping back to gain perspective"
327
+ ],
328
+ "shadow": [
329
+ "Being a loner",
330
+ "Fearing contact with others",
331
+ "Becoming a know-it-all",
332
+ "Inflating claims of expertise",
333
+ "Hiding your skills and talents out of fear of unworthiness"
334
+ ]
335
+ },
336
+ "name": "The Hermit",
337
+ "rank": 9,
338
+ "suit": "major"
339
+ },
340
+ {
341
+ "fortune_telling": [
342
+ "Some events are in the hands of heaven",
343
+ "You've lived through this before",
344
+ "What happened then?"
345
+ ],
346
+ "keywords": [
347
+ "luck",
348
+ "randomness",
349
+ "cycles",
350
+ "karma",
351
+ "fate",
352
+ "revolution"
353
+ ],
354
+ "meanings": {
355
+ "light": [
356
+ "Allowing events to unfold",
357
+ "Seeing the larger pattern in everyday events",
358
+ "Trusting your luck",
359
+ "Watching for cycles",
360
+ "Believing that \"what goes around, comes around\""
361
+ ],
362
+ "shadow": [
363
+ "Losing money gambling",
364
+ "Refusing to do your part to bring a plan to fruition",
365
+ "Taking a fatalistic approach to life",
366
+ "Fighting the natural course of events"
367
+ ]
368
+ },
369
+ "name": "The Wheel",
370
+ "rank": 10,
371
+ "suit": "major"
372
+ },
373
+ {
374
+ "fortune_telling": [
375
+ "A legal verdict will be rendered soon",
376
+ "Someone is making a decision",
377
+ "You need to get the facts"
378
+ ],
379
+ "keywords": [
380
+ "balance",
381
+ "law",
382
+ "fairness",
383
+ "objectivity"
384
+ ],
385
+ "meanings": {
386
+ "light": [
387
+ "Making an objective decision",
388
+ "Weighing an issue carefully before taking action",
389
+ "Appropriately scaling your reaction to a situation",
390
+ "Getting all the facts",
391
+ "Considering evidence",
392
+ "Deliberating"
393
+ ],
394
+ "shadow": [
395
+ "Delivering harsh criticism",
396
+ "Obsessing on rules and regulations",
397
+ "Playing by the book even when it is destructive or counterproductive to do so",
398
+ "Confusing snap decisions with timely action",
399
+ "Playing favorites"
400
+ ]
401
+ },
402
+ "name": "Justice",
403
+ "rank": 11,
404
+ "suit": "major"
405
+ },
406
+ {
407
+ "fortune_telling": [
408
+ "A traitor is revealed",
409
+ "One of your friends is working against you",
410
+ "Change your ways or suffer the consequences"
411
+ ],
412
+ "keywords": [
413
+ "enlightenment",
414
+ "sacrifice",
415
+ "perspective",
416
+ "suspension",
417
+ "reversals"
418
+ ],
419
+ "meanings": {
420
+ "light": [
421
+ "Seeing growth opportunities in unpleasant events",
422
+ "Experiencing a dramatic change in personal perspective",
423
+ "Making the best of an unforeseen change in your life or work",
424
+ "Suspending disbelief",
425
+ "Making sacrifices"
426
+ ],
427
+ "shadow": [
428
+ "Being untrue to yourself and your values",
429
+ "Refusing to make sacrifices when appropriate",
430
+ "Refusing to adapt to new situations",
431
+ "Blaming others",
432
+ "Profiting at the expense of others"
433
+ ]
434
+ },
435
+ "name": "The Hanged Man",
436
+ "rank": 12,
437
+ "suit": "major"
438
+ },
439
+ {
440
+ "fortune_telling": [
441
+ "A relationship or illness ends suddenly",
442
+ "Limit travel and risk-taking",
443
+ "General gloom and doom"
444
+ ],
445
+ "keywords": [
446
+ "ending",
447
+ "conclusion",
448
+ "transition",
449
+ "passage",
450
+ "departure"
451
+ ],
452
+ "meanings": {
453
+ "light": [
454
+ "Bringing an unpleasant phase of life to an end",
455
+ "Recognizing and celebrating the conclusion of something",
456
+ "Putting bad habits to rest",
457
+ "Becoming a new person",
458
+ "Leaving one person, place, or thing for another",
459
+ "Letting go"
460
+ ],
461
+ "shadow": [
462
+ "Obsessing on death and dying",
463
+ "Refusing to give up old habits or unhealthy relationships",
464
+ "Insisting that everything and everyone should stay the same forever",
465
+ "Failing to take good care of yourself"
466
+ ]
467
+ },
468
+ "name": "Death",
469
+ "rank": 13,
470
+ "suit": "major"
471
+ },
472
+ {
473
+ "fortune_telling": [
474
+ "Someone's using drugs or alcohol to excess",
475
+ "It's time to get back on that diet"
476
+ ],
477
+ "keywords": [
478
+ "blending",
479
+ "synthesis",
480
+ "mediation",
481
+ "combination",
482
+ "harmony"
483
+ ],
484
+ "meanings": {
485
+ "light": [
486
+ "Bringing opposites together",
487
+ "Moderating your actions or emotions",
488
+ "Finding middle ground",
489
+ "Reaching compromises",
490
+ "Synthesizing solutions that please everyone involved",
491
+ "Using the old to make something new"
492
+ ],
493
+ "shadow": [
494
+ "Going to extremes",
495
+ "Disrupting group efforts",
496
+ "Ignoring healthy approaches to life",
497
+ "Becoming an addict",
498
+ "Practicing gluttony",
499
+ "Tearing something or someone apart",
500
+ "Breaking alliances"
501
+ ]
502
+ },
503
+ "name": "Temperance",
504
+ "rank": 14,
505
+ "suit": "major"
506
+ },
507
+ {
508
+ "fortune_telling": [
509
+ "Adultery and unfaithfulness",
510
+ "A string of extremely bad luck is coming your way",
511
+ "Beware evil influences and wolves in sheep's clothing"
512
+ ],
513
+ "keywords": [
514
+ "shadow",
515
+ "materialism",
516
+ "bondage",
517
+ "delusion"
518
+ ],
519
+ "meanings": {
520
+ "light": [
521
+ "Appreciating the luxuries that life has to offer",
522
+ "Being comfortable in your own skin",
523
+ "Enjoying your sexuality",
524
+ "Splurging on an expensive personal item",
525
+ "Embracing the fact that everyone has a darker side",
526
+ "Dealing with unhealthy impulses in healthy ways"
527
+ ],
528
+ "shadow": [
529
+ "Putting excessive emphasis on appearances",
530
+ "Always wanting more",
531
+ "Valuing possessions more than people or relationships",
532
+ "Allowing base instincts to govern your life",
533
+ "Being selfish",
534
+ "Attributing your own dark impulses to outside forces or other people"
535
+ ]
536
+ },
537
+ "name": "The Devil",
538
+ "rank": 15,
539
+ "suit": "major"
540
+ },
541
+ {
542
+ "fortune_telling": [
543
+ "Impending disaster",
544
+ "Cancel plans and reverse decisions",
545
+ "Someone wants to take you down a notch or two",
546
+ "Don't hold back; say what you really mean"
547
+ ],
548
+ "keywords": [
549
+ "demolition",
550
+ "upheaval",
551
+ "deconstruction",
552
+ "disaster",
553
+ "destruction"
554
+ ],
555
+ "meanings": {
556
+ "light": [
557
+ "Breaking out of old, confining habits and mindsets",
558
+ "Clearing the way for new growth",
559
+ "Dispelling the influence of an inflated ego",
560
+ "Getting back to basics",
561
+ "Stripping away harmful illusions",
562
+ "Receiving sudden insight"
563
+ ],
564
+ "shadow": [
565
+ "Clinging to traditions that repress growth",
566
+ "Engaging in willful blindness",
567
+ "Rejecting evidence that change is needed",
568
+ "Ignoring guidance from a higher power",
569
+ "Maliciously engaging in destructive behavior"
570
+ ]
571
+ },
572
+ "name": "The Tower",
573
+ "rank": 16,
574
+ "suit": "major"
575
+ },
576
+ {
577
+ "fortune_telling": [
578
+ "Get an astrology chart drawn up",
579
+ "Someone is a little too starstruck",
580
+ "What's happening now has long been fore-ordained"
581
+ ],
582
+ "keywords": [
583
+ "hope",
584
+ "optimism",
585
+ "openness",
586
+ "certainty",
587
+ "faith",
588
+ "longing",
589
+ "truth"
590
+ ],
591
+ "meanings": {
592
+ "light": [
593
+ "Hoping for the best",
594
+ "Believing good things happen to good people",
595
+ "Seeing events in the best possible light",
596
+ "Adopting a generous spirit",
597
+ "Seeking guidance from above",
598
+ "Embracing possibility over probability"
599
+ ],
600
+ "shadow": [
601
+ "Denying unpleasant truths",
602
+ "Denying personal accountability and saying, \"Things just happen!\"",
603
+ "Ignoring signs and omens",
604
+ "Preferring illusion to reality",
605
+ "Spreading pessimism and stinginess of spirit"
606
+ ]
607
+ },
608
+ "name": "The Star",
609
+ "rank": 17,
610
+ "suit": "major"
611
+ },
612
+ {
613
+ "fortune_telling": [
614
+ "Watch for problems at the end of the month",
615
+ "Someone you know needs to howl at the moon more often",
616
+ "Someone is about to change his or her mind about an important decision"
617
+ ],
618
+ "keywords": [
619
+ "mystery",
620
+ "fantasy",
621
+ "imagination",
622
+ "dreams",
623
+ "uncertainty"
624
+ ],
625
+ "meanings": {
626
+ "light": [
627
+ "Enjoying healthy fantasies and daydreams",
628
+ "Using your imagination",
629
+ "Practicing magic or celebrating the magic of everyday life",
630
+ "Attuning yourself to the cycles of nature",
631
+ "Embracing the unknown"
632
+ ],
633
+ "shadow": [
634
+ "Becoming unable to separate fantasy from reality",
635
+ "Suffering from delusions",
636
+ "Losing your appreciation for the fantastic or magical",
637
+ "Adopting a ruthlessly logical mindset",
638
+ "Failing to appreciate life's mysteries"
639
+ ]
640
+ },
641
+ "name": "The Moon",
642
+ "rank": 18,
643
+ "suit": "major"
644
+ },
645
+ {
646
+ "fortune_telling": [
647
+ "Everything's coming up roses (or sunflowers, whatever the case may be)",
648
+ "Whatever's on your mind, go for it because you can't lose today"
649
+ ],
650
+ "keywords": [
651
+ "joy",
652
+ "brilliance",
653
+ "validation",
654
+ "attention",
655
+ "energy"
656
+ ],
657
+ "meanings": {
658
+ "light": [
659
+ "Seeing things clearly",
660
+ "Experiencing intense joy",
661
+ "Celebrating your own successes",
662
+ "Knowing you're good at what you do",
663
+ "Gaining recognition for your personal genius"
664
+ ],
665
+ "shadow": [
666
+ "Being dazzled by your own accomplishments",
667
+ "Becoming absorbed in your own self-image",
668
+ "Feeling rushed and distracted",
669
+ "Exerting yourself to the point of exhaustion",
670
+ "Overstating your abilities or misrepresenting your achievements"
671
+ ]
672
+ },
673
+ "name": "The Sun",
674
+ "rank": 19,
675
+ "suit": "major"
676
+ },
677
+ {
678
+ "fortune_telling": [
679
+ "An old issue you thought was over will come up again today",
680
+ "Get ready for huge changes: break-ups, sudden calls from old friends, and unexpected setbacks",
681
+ "God's trying to get your attention"
682
+ ],
683
+ "keywords": [
684
+ "revival",
685
+ "renewal",
686
+ "resurrection",
687
+ "evaluation",
688
+ "invitation"
689
+ ],
690
+ "meanings": {
691
+ "light": [
692
+ "Receiving a wake-up call",
693
+ "Discovering a new purpose in life",
694
+ "Becoming totally and completely yourself",
695
+ "Receiving a well-deserved reward",
696
+ "Passing an evaluation or examination",
697
+ "Welcoming the start of a new phase of life"
698
+ ],
699
+ "shadow": [
700
+ "Being weighed in the balances and found wanting",
701
+ "Failing to measure up to a well-defined standard",
702
+ "Being caught goofing off or misbehaving",
703
+ "Failing to prepare for an examination you know is coming",
704
+ "Rejecting an opportunity to reinvent yourself"
705
+ ]
706
+ },
707
+ "name": "Judgement",
708
+ "rank": 20,
709
+ "suit": "major"
710
+ },
711
+ {
712
+ "fortune_telling": [
713
+ "Winning the lottery",
714
+ "Getting your heart's desire",
715
+ "Having everything you ever imagined having"
716
+ ],
717
+ "keywords": [
718
+ "wholeness",
719
+ "integration",
720
+ "totality",
721
+ "completeness",
722
+ "fullness"
723
+ ],
724
+ "meanings": {
725
+ "light": [
726
+ "Having it all",
727
+ "Knowing and loving yourself as completely as possible",
728
+ "Seeing the interconnection of all things and people",
729
+ "Enhancing your perspective",
730
+ "Living life to its fullest",
731
+ "Understanding the meaning of life"
732
+ ],
733
+ "shadow": [
734
+ "Allowing greed and envy to prevent you from enjoying what you do possess",
735
+ "Failing to see the larger design in ordinary events",
736
+ "Believing that everything that exists can be touched, counted, or measured",
737
+ "Failing to see the divine reflected in those around you"
738
+ ]
739
+ },
740
+ "name": "The World",
741
+ "rank": 21,
742
+ "suit": "major"
743
+ },
744
+ {
745
+ "fortune_telling": [
746
+ "Someone has the \"hots\" for you",
747
+ "A new job offer is coming your way",
748
+ "Walk softly, and carry a big stick"
749
+ ],
750
+ "keywords": [
751
+ "desire",
752
+ "inspiration",
753
+ "vision",
754
+ "creation",
755
+ "invention"
756
+ ],
757
+ "meanings": {
758
+ "light": [
759
+ "Being inspired",
760
+ "Identifying an important goal",
761
+ "Being given the opportunity to do whatever you want to do",
762
+ "Giving or receiving direction",
763
+ "Seeing a solution",
764
+ "Creating something new",
765
+ "Being aroused, sexually or creatively"
766
+ ],
767
+ "shadow": [
768
+ "Failing to take advantage of a great opportunity",
769
+ "Being ineffectual or lazy",
770
+ "Making an inadequate effort",
771
+ "Working toward a goal, but lacking the resources or initiative to achieve success",
772
+ "Setting inappropriate goals",
773
+ "Failing to take a stand"
774
+ ]
775
+ },
776
+ "name": "ace of wands",
777
+ "rank": 1,
778
+ "suit": "wands"
779
+ },
780
+ {
781
+ "fortune_telling": [
782
+ "Beware false friends",
783
+ "Don't be mealy-mouthed; say what you think and do what you want to do"
784
+ ],
785
+ "keywords": [
786
+ "conflict",
787
+ "decision",
788
+ "option",
789
+ "individuality"
790
+ ],
791
+ "meanings": {
792
+ "light": [
793
+ "Having a choice",
794
+ "Offering or being offered an option",
795
+ "Seeing the value of another person's approach",
796
+ "Understanding there's more than one way to \"skin a cat\"",
797
+ "Successfully doing more than one thing at a time",
798
+ "Being empowered to make a choice"
799
+ ],
800
+ "shadow": [
801
+ "Misrepresenting your intentions",
802
+ "Doing one thing while desiring another",
803
+ "Changing course mid-stream for no good reason",
804
+ "Refusing to change your goal even when pursuing it no longer makes sense",
805
+ "Disregarding the input of others"
806
+ ]
807
+ },
808
+ "name": "two of wands",
809
+ "rank": 2,
810
+ "suit": "wands"
811
+ },
812
+ {
813
+ "fortune_telling": [
814
+ "You'll be planning a trip soon",
815
+ "Be on the lookout: your ship is coming in"
816
+ ],
817
+ "keywords": [
818
+ "implementation",
819
+ "action",
820
+ "exploration"
821
+ ],
822
+ "meanings": {
823
+ "light": [
824
+ "Putting a plan into motion",
825
+ "Taking that critical first step",
826
+ "Making good things happen",
827
+ "Going beyond your limits",
828
+ "Blazing new trails",
829
+ "Hitting the ground running",
830
+ "Seeing your plans come to fruition"
831
+ ],
832
+ "shadow": [
833
+ "Procrastinating",
834
+ "Knowing what to do, but refusing to do it",
835
+ "Launching a project without a clear definition of who should do what",
836
+ "Rejecting an opportunity to try something new",
837
+ "Failing to finish what you start"
838
+ ]
839
+ },
840
+ "name": "three of wands",
841
+ "rank": 3,
842
+ "suit": "wands"
843
+ },
844
+ {
845
+ "fortune_telling": [
846
+ "Someone is watching and evaluating your work",
847
+ "You may get a wedding invitation soon"
848
+ ],
849
+ "keywords": [
850
+ "celebration",
851
+ "jubilation",
852
+ "community",
853
+ "teamwork",
854
+ "completion"
855
+ ],
856
+ "meanings": {
857
+ "light": [
858
+ "Sharing in a great celebration",
859
+ "Sharing in a communal sense of achievement and success",
860
+ "Preparing for a party",
861
+ "Working together toward a common goal",
862
+ "Giving or winning awards"
863
+ ],
864
+ "shadow": [
865
+ "Keeping your nose to the grindstone",
866
+ "Recognizing good work by demanding more work",
867
+ "Failing to share in a group celebration",
868
+ "Allowing sour grapes to poison your moment in the sun",
869
+ "Refusing to do your part"
870
+ ]
871
+ },
872
+ "name": "four of wands",
873
+ "rank": 4,
874
+ "suit": "wands"
875
+ },
876
+ {
877
+ "fortune_telling": [
878
+ "Prepare for a fight with your best friend",
879
+ "Remember: once you let words loose, you can't take them back"
880
+ ],
881
+ "keywords": [
882
+ "confrontation",
883
+ "disruption",
884
+ "distinction",
885
+ "objection",
886
+ "strife"
887
+ ],
888
+ "meanings": {
889
+ "light": [
890
+ "Calmly expressing a dissenting opinion",
891
+ "Allowing someone to use his or her own methods to get a job done",
892
+ "Opening the floor for discussion or debate",
893
+ "Comparing progress made so far to standards set earlier"
894
+ ],
895
+ "shadow": [
896
+ "Berating others for their ridiculous opinions",
897
+ "Picking fights",
898
+ "Offering destructive criticism",
899
+ "Baiting people with barbed remarks",
900
+ "Disrupting progress with an endless stream of pointless objections"
901
+ ]
902
+ },
903
+ "name": "five of wands",
904
+ "rank": 5,
905
+ "suit": "wands"
906
+ },
907
+ {
908
+ "fortune_telling": [
909
+ "Someone is planning a party for you, but not everyone feels so good about your recent success",
910
+ "Watch out for envious friends"
911
+ ],
912
+ "keywords": [
913
+ "victory",
914
+ "achievement",
915
+ "success",
916
+ "triumph"
917
+ ],
918
+ "meanings": {
919
+ "light": [
920
+ "Outperforming your peers",
921
+ "Winning a competition",
922
+ "Being recognized as a capable person",
923
+ "Having your \"moment in the spotlight\"",
924
+ "Being cheered on by the crowd",
925
+ "Getting an award",
926
+ "Earning the admiration of others",
927
+ "Telling someone, \"Good job!\""
928
+ ],
929
+ "shadow": [
930
+ "Being a bad winner",
931
+ "Allowing your achievements to inflate your ego",
932
+ "Looking down on people who seem less capable",
933
+ "Craving to be the center of attention",
934
+ "Giving or receiving insincere praise",
935
+ "Envying the achievements of others"
936
+ ]
937
+ },
938
+ "name": "six of wands",
939
+ "rank": 6,
940
+ "suit": "wands"
941
+ },
942
+ {
943
+ "fortune_telling": [
944
+ "Don't be surprised by a personal attack",
945
+ "Prepare to defend yourself or someone you love"
946
+ ],
947
+ "keywords": [
948
+ "bravery",
949
+ "resolve",
950
+ "determination"
951
+ ],
952
+ "meanings": {
953
+ "light": [
954
+ "Refusing to be silenced through fear or intimidation",
955
+ "Continuing a fight against all odds",
956
+ "Being fierce",
957
+ "Defending yourself against physical and emotional attacks",
958
+ "Refusing to put up with abuse",
959
+ "Clinging to your values despite all pressure to abandon them"
960
+ ],
961
+ "shadow": [
962
+ "Having a chip on your shoulder",
963
+ "Taking unnecessary risks as a means of proving your fearlessness",
964
+ "Looking for an opportunity to take offense",
965
+ "Responding to constructive criticism with defensiveness",
966
+ "Refusing to stand up for yourself and your beliefs"
967
+ ]
968
+ },
969
+ "name": "seven of wands",
970
+ "rank": 7,
971
+ "suit": "wands"
972
+ },
973
+ {
974
+ "fortune_telling": [
975
+ "Watch for a surprising letter in the mail",
976
+ "Your whole world is about to be turned on its ear"
977
+ ],
978
+ "keywords": [
979
+ "speed",
980
+ "swiftness",
981
+ "responsiveness",
982
+ "change"
983
+ ],
984
+ "meanings": {
985
+ "light": [
986
+ "Taking swift action",
987
+ "Moving forward with a plan as quickly as possible",
988
+ "Energizing yourself",
989
+ "Adapting to sudden changes",
990
+ "Taking setbacks in stride",
991
+ "Embracing the idea that nothing stays the same forever",
992
+ "Reacting quickly and appropriately to unforeseen problems"
993
+ ],
994
+ "shadow": [
995
+ "Giving in to panic",
996
+ "Running in circles and screaming",
997
+ "Insisting things must always stay the same",
998
+ "Stirring the pot just to see what will happen",
999
+ "Rushing others",
1000
+ "Refusing to re-evaluate a schedule or program, even when it's clearly no longer appropriate"
1001
+ ]
1002
+ },
1003
+ "name": "eight of wands",
1004
+ "rank": 8,
1005
+ "suit": "wands"
1006
+ },
1007
+ {
1008
+ "fortune_telling": [
1009
+ "Don't relax yet; there's more to come",
1010
+ "The test you're facing now is happening for one reason: to show you who your real friends are"
1011
+ ],
1012
+ "keywords": [
1013
+ "toughness",
1014
+ "persistence",
1015
+ "stamina",
1016
+ "loyalty",
1017
+ "release"
1018
+ ],
1019
+ "meanings": {
1020
+ "light": [
1021
+ "Sticking with it for the duration",
1022
+ "Fulfilling your promises and obligations",
1023
+ "Bearing up under incredible duress",
1024
+ "Dragging yourself across the finish line",
1025
+ "Picking yourself up by your own bootstraps",
1026
+ "Refusing to quit",
1027
+ "Going as far as you can go and being satisfied with your performance"
1028
+ ],
1029
+ "shadow": [
1030
+ "Making yourself a martyr",
1031
+ "Abandoning your post",
1032
+ "Giving up at the first sign of opposition",
1033
+ "Being prevented from fulfilling an obligation",
1034
+ "Failing to be dependable",
1035
+ "Refusing to let something go that needs to be released",
1036
+ "Beating a dead horse"
1037
+ ]
1038
+ },
1039
+ "name": "nine of wands",
1040
+ "rank": 9,
1041
+ "suit": "wands"
1042
+ },
1043
+ {
1044
+ "fortune_telling": [
1045
+ "You're worn out",
1046
+ "Back off, take a time out, and let someone else handle things for a while"
1047
+ ],
1048
+ "keywords": [
1049
+ "exhaustion",
1050
+ "resistance",
1051
+ "burden",
1052
+ "oppression"
1053
+ ],
1054
+ "meanings": {
1055
+ "light": [
1056
+ "Holding your own in extreme circumstances",
1057
+ "Helping others carry their burdens",
1058
+ "Coming to the aid of the oppressed",
1059
+ "Knowing and being honest about your own limits",
1060
+ "Recognizing when you are not well-suited for a particular task"
1061
+ ],
1062
+ "shadow": [
1063
+ "Taking on more work than you know you can handle",
1064
+ "Refusing to say \"No\" when you're already overloaded",
1065
+ "Making a habit of working overtime",
1066
+ "Shielding others from facing the consequences of their own poor judgment",
1067
+ "Over-extending yourself on a regular basis"
1068
+ ]
1069
+ },
1070
+ "name": "ten of wands",
1071
+ "rank": 10,
1072
+ "suit": "wands"
1073
+ },
1074
+ {
1075
+ "fortune_telling": [
1076
+ "This card represents a young man or woman with a fiery, enthusiastic demeanor, likely born a Cancer, Leo, or Virgo, who wants to start a new relationship with you"
1077
+ ],
1078
+ "keywords": [
1079
+ "enthusiasm",
1080
+ "eagerness",
1081
+ "confidence",
1082
+ "validation",
1083
+ "affirmation"
1084
+ ],
1085
+ "meanings": {
1086
+ "light": [
1087
+ "Leaping at a new opportunity",
1088
+ "Being a cheerleader or ardent advocate for your cause",
1089
+ "Being a True Believer",
1090
+ "Taking first steps toward independence",
1091
+ "Trusting in your own abilities",
1092
+ "Asking for feedback"
1093
+ ],
1094
+ "shadow": [
1095
+ "Basing your entire self-image on what others think",
1096
+ "Seizing every new idea that comes your way without question",
1097
+ "Habitually discounting input or feedback from others",
1098
+ "Being so eager to \"do it yourself\" that you hinder your own progress"
1099
+ ]
1100
+ },
1101
+ "name": "page of wands",
1102
+ "rank": "page",
1103
+ "suit": "wands"
1104
+ },
1105
+ {
1106
+ "fortune_telling": [
1107
+ "This card represents a man with a bold, passionate personality, likely born between July 12th and August 11th, who wants to sweep you off your feet"
1108
+ ],
1109
+ "keywords": [
1110
+ "boldness",
1111
+ "bravado",
1112
+ "passion",
1113
+ "persuasion",
1114
+ "advocacy"
1115
+ ],
1116
+ "meanings": {
1117
+ "light": [
1118
+ "Charging ahead",
1119
+ "Making rapid progress",
1120
+ "Refusing limits",
1121
+ "Dazzling those around you with your wit and charm",
1122
+ "Convincing others of your right to leadership",
1123
+ "Convincing others to follow you",
1124
+ "Being a catalyst for change"
1125
+ ],
1126
+ "shadow": [
1127
+ "Blundering forward with inadequate skill or information",
1128
+ "Running roughshod over the feelings of others",
1129
+ "Using sex appeal to manipulate others",
1130
+ "Forcing your leadership or ideology on others",
1131
+ "Beginning many projects without finishing any"
1132
+ ]
1133
+ },
1134
+ "name": "knight of wands",
1135
+ "rank": "knight",
1136
+ "suit": "wands"
1137
+ },
1138
+ {
1139
+ "fortune_telling": [
1140
+ "This card represents a woman with an attractive, appealing personality, likely born between March 11th and April 20th, who wants to charm you into doing things her way"
1141
+ ],
1142
+ "keywords": [
1143
+ "attention",
1144
+ "attraction",
1145
+ "unification",
1146
+ "collaboration"
1147
+ ],
1148
+ "meanings": {
1149
+ "light": [
1150
+ "Paying close attention",
1151
+ "Helping others focus on the issue at hand",
1152
+ "Getting everyone to work together",
1153
+ "Identifying common ground",
1154
+ "Bringing people together, despite their differences",
1155
+ "Using reverse psychology"
1156
+ ],
1157
+ "shadow": [
1158
+ "Being distracted, or using your charms or skills to distract others from the goal",
1159
+ "Calling attention to yourself with negative or unhealthy behaviors",
1160
+ "Disrupting group activities as a means of feeding your own ego"
1161
+ ]
1162
+ },
1163
+ "name": "queen of wands",
1164
+ "rank": "queen",
1165
+ "suit": "wands"
1166
+ },
1167
+ {
1168
+ "fortune_telling": [
1169
+ "This card represents an older man with a commanding, charismatic personality, likely born between November 13th and December 12th, who prefers to give directions and have them followed"
1170
+ ],
1171
+ "keywords": [
1172
+ "creativity",
1173
+ "ingenuity",
1174
+ "achievement",
1175
+ "direction"
1176
+ ],
1177
+ "meanings": {
1178
+ "light": [
1179
+ "Putting old things together in new and exciting ways",
1180
+ "Coming up with unexpected solutions",
1181
+ "Using your experience to solve puzzles and problems",
1182
+ "Doing what you set out to do",
1183
+ "Directing the efforts of others"
1184
+ ],
1185
+ "shadow": [
1186
+ "Using your creativity to get out of honest work",
1187
+ "Investing great energy in avoiding responsibility",
1188
+ "Boasting about achievements without putting your expertise to practical use",
1189
+ "Lording it over others"
1190
+ ]
1191
+ },
1192
+ "name": "king of wands",
1193
+ "rank": "king",
1194
+ "suit": "wands"
1195
+ },
1196
+ {
1197
+ "fortune_telling": [
1198
+ "Romance is in the cards",
1199
+ "A new relationship or marriage is just around the corner",
1200
+ "Prayers are answered"
1201
+ ],
1202
+ "keywords": [
1203
+ "intuition",
1204
+ "spirituality",
1205
+ "affection",
1206
+ "motivation"
1207
+ ],
1208
+ "meanings": {
1209
+ "light": [
1210
+ "Trusting your feelings",
1211
+ "Opening yourself to spirit",
1212
+ "Accepting and returning affection",
1213
+ "Getting in touch with what motivates you",
1214
+ "Taking advantage of an opportunity to express love to others",
1215
+ "Listening to the still, small voice"
1216
+ ],
1217
+ "shadow": [
1218
+ "Hiding your feelings",
1219
+ "Spurning an opportunity to love or be loved",
1220
+ "Numbing yourself to spiritual yearnings",
1221
+ "Rejecting the counsel of your heart",
1222
+ "Becoming a puppet of your own emotions",
1223
+ "Indulging in hysteria or obsession"
1224
+ ]
1225
+ },
1226
+ "name": "ace of cups",
1227
+ "rank": 1,
1228
+ "suit": "cups"
1229
+ },
1230
+ {
1231
+ "fortune_telling": [
1232
+ "Someone has a secret crush on you",
1233
+ "Relationships should be mutual; get rid of a leech"
1234
+ ],
1235
+ "keywords": [
1236
+ "union",
1237
+ "attraction",
1238
+ "combination",
1239
+ "affection"
1240
+ ],
1241
+ "meanings": {
1242
+ "light": [
1243
+ "Being drawn to someone",
1244
+ "Longing for someone or something",
1245
+ "Acting on your desires",
1246
+ "Discovering a feeling is mutual",
1247
+ "Doing what makes you feel good",
1248
+ "Merging",
1249
+ "Healing broken ties",
1250
+ "Admitting two people feel differently about each other and moving on"
1251
+ ],
1252
+ "shadow": [
1253
+ "Burning bridges",
1254
+ "Becoming caught up in unhealthy codependency",
1255
+ "Shutting out anyone but your chosen few",
1256
+ "Obsessing on someone who does not return your affections",
1257
+ "Despairing over finding \"The One\"",
1258
+ "Deceiving yourself about your true orientation"
1259
+ ]
1260
+ },
1261
+ "name": "two of cups",
1262
+ "rank": 2,
1263
+ "suit": "cups"
1264
+ },
1265
+ {
1266
+ "fortune_telling": [
1267
+ "Unconventional romance is coming your way: a love affair with someone you've always dismissed"
1268
+ ],
1269
+ "keywords": [
1270
+ "celebration",
1271
+ "expression",
1272
+ "community",
1273
+ "friendliness"
1274
+ ],
1275
+ "meanings": {
1276
+ "light": [
1277
+ "Celebrating your feelings or connections with others",
1278
+ "Expressing joy through song, dance, or physical affection",
1279
+ "Working together with others who share your feelings",
1280
+ "Performing acts of service as a way of saying, \"I love you\"",
1281
+ "Embracing unconventional romantic arrangements"
1282
+ ],
1283
+ "shadow": [
1284
+ "Mistaking giddiness for true affection",
1285
+ "Being dominated by manic emotions",
1286
+ "Expecting everyone to always feel the same way you do",
1287
+ "Demanding unreasonable support from friends or family",
1288
+ "Partying to a dangerous or unhealthy extent"
1289
+ ]
1290
+ },
1291
+ "name": "three of cups",
1292
+ "rank": 3,
1293
+ "suit": "cups"
1294
+ },
1295
+ {
1296
+ "fortune_telling": [
1297
+ "A lover is getting restless",
1298
+ "Find out what he or she needs, or new opportunities may lure your partner away"
1299
+ ],
1300
+ "keywords": [
1301
+ "boredom",
1302
+ "listlessness",
1303
+ "lethargy",
1304
+ "stability",
1305
+ "ingratitude"
1306
+ ],
1307
+ "meanings": {
1308
+ "light": [
1309
+ "Maintaining your emotional stability",
1310
+ "Refusing to give in to overwhelming emotions",
1311
+ "Appreciating what you have and refusing to take it for granted",
1312
+ "Seeing the value of long-term commitments"
1313
+ ],
1314
+ "shadow": [
1315
+ "Being bored",
1316
+ "Daydreaming at the expense of your work",
1317
+ "Refusing to be engaged by opportunity",
1318
+ "Taking people and relationships for granted",
1319
+ "Ignoring romantic or spiritual opportunities",
1320
+ "Spurning inspiration",
1321
+ "Feeling everything should stay \"just like it is\""
1322
+ ]
1323
+ },
1324
+ "name": "four of cups",
1325
+ "rank": 4,
1326
+ "suit": "cups"
1327
+ },
1328
+ {
1329
+ "fortune_telling": [
1330
+ "A breakup looms",
1331
+ "Don't cry over spilt milk",
1332
+ "Take your lumps and get back in the saddle"
1333
+ ],
1334
+ "keywords": [
1335
+ "loss",
1336
+ "despair",
1337
+ "re-evaluation",
1338
+ "regret",
1339
+ "uncertainty",
1340
+ "repentance"
1341
+ ],
1342
+ "meanings": {
1343
+ "light": [
1344
+ "Acknowledging loss and moving on",
1345
+ "Focusing on how the glass remains \"half-full\"",
1346
+ "Finding the silver lining in a dark cloud",
1347
+ "Recognizing that loss is a natural part of life",
1348
+ "Embracing healthy grief",
1349
+ "Learning lessons from harsh consequences"
1350
+ ],
1351
+ "shadow": [
1352
+ "Wallowing in unhealthy grief or self-pity",
1353
+ "Refusing to move on and let go",
1354
+ "Clinging to the past",
1355
+ "Obsessing on past lives and past loves",
1356
+ "Failing to live in the present",
1357
+ "Beating yourself up over past mistakes",
1358
+ "Allowing fear of failure to limit your efforts"
1359
+ ]
1360
+ },
1361
+ "name": "five of cups",
1362
+ "rank": 5,
1363
+ "suit": "cups"
1364
+ },
1365
+ {
1366
+ "fortune_telling": [
1367
+ "A stingy spirit is strangling your enjoyment of life",
1368
+ "Loosen up and think of others for once, why don't you?"
1369
+ ],
1370
+ "keywords": [
1371
+ "charity",
1372
+ "sharing",
1373
+ "sacrifice",
1374
+ "cooperation",
1375
+ "fairness"
1376
+ ],
1377
+ "meanings": {
1378
+ "light": [
1379
+ "Donating your time and talents to others",
1380
+ "Taking satisfaction in knowing how your efforts will aid others",
1381
+ "Creating a \"win-win\" scenario",
1382
+ "Giving even when you know repayment is not possible",
1383
+ "Being motivated to do a good deed"
1384
+ ],
1385
+ "shadow": [
1386
+ "Linking your sense of self-worth to the appraisals of others",
1387
+ "Striving to appear more needy than you really are",
1388
+ "Taking undeserved or unmerited charity",
1389
+ "Bragging about your charitable efforts",
1390
+ "Profiteering in times of distress",
1391
+ "Refusing to share a burden"
1392
+ ]
1393
+ },
1394
+ "name": "six of cups",
1395
+ "rank": 6,
1396
+ "suit": "cups"
1397
+ },
1398
+ {
1399
+ "fortune_telling": [
1400
+ "You're being fed a line",
1401
+ "Rather than be dazzled by fancy words and promises, demand something real"
1402
+ ],
1403
+ "keywords": [
1404
+ "imagination",
1405
+ "dreams",
1406
+ "illusions",
1407
+ "goals"
1408
+ ],
1409
+ "meanings": {
1410
+ "light": [
1411
+ "Motivating yourself with images of future success",
1412
+ "Using visualization to encourage progress",
1413
+ "Taking an imaginative or creative approach to problem solving",
1414
+ "Making dreams come true",
1415
+ "Gleaning insight from personal visions"
1416
+ ],
1417
+ "shadow": [
1418
+ "Obsessing on imaginary fears or uncertain consequences",
1419
+ "Giving in to emotional or political terrorism",
1420
+ "Spending more time dreaming than working",
1421
+ "Failing to envision the possible repercussions of your choices",
1422
+ "Being controlled by fear"
1423
+ ]
1424
+ },
1425
+ "name": "seven of cups",
1426
+ "rank": 7,
1427
+ "suit": "cups"
1428
+ },
1429
+ {
1430
+ "fortune_telling": [
1431
+ "Someone's \"stepping out\" on you, now or in the near future",
1432
+ "Maybe it's time to quit talking about the problem and just move on"
1433
+ ],
1434
+ "keywords": [
1435
+ "longing",
1436
+ "dissatisfaction",
1437
+ "quest",
1438
+ "departure",
1439
+ "withdrawal"
1440
+ ],
1441
+ "meanings": {
1442
+ "light": [
1443
+ "Wanting something better",
1444
+ "Blazing your own trail",
1445
+ "Realizing there must be more to life",
1446
+ "Leaving an unhealthy situation behind",
1447
+ "Starting your own business",
1448
+ "Going on a retreat",
1449
+ "Seeking the \"still, small voice\""
1450
+ ],
1451
+ "shadow": [
1452
+ "Being implacable",
1453
+ "Finding fault",
1454
+ "Nitpicking",
1455
+ "Refusing to settle down",
1456
+ "Running away from problems or confrontations",
1457
+ "Saying, \"It's my way or the highway!\"",
1458
+ "Harping on past mistakes and disappointments",
1459
+ "Threatening to quit as a strategy to get your way"
1460
+ ]
1461
+ },
1462
+ "name": "eight of cups",
1463
+ "rank": 8,
1464
+ "suit": "cups"
1465
+ },
1466
+ {
1467
+ "fortune_telling": [
1468
+ "Whatever you want, you'll get it"
1469
+ ],
1470
+ "keywords": [
1471
+ "satisfaction",
1472
+ "sensuality",
1473
+ "luxury",
1474
+ "pleasure"
1475
+ ],
1476
+ "meanings": {
1477
+ "light": [
1478
+ "Being delighted with your own achievements",
1479
+ "Recognizing your own talents and abilities",
1480
+ "Reveling in the good things life has to offer",
1481
+ "Indulging yourself",
1482
+ "Relaxing and unwinding",
1483
+ "Having everything you need in order to feel complete"
1484
+ ],
1485
+ "shadow": [
1486
+ "Being smug",
1487
+ "Satisfying yourself at the expense of others",
1488
+ "Being selfish",
1489
+ "Over-indulging",
1490
+ "Avoiding work that needs to be done",
1491
+ "Claiming achievements or skills you do not possess",
1492
+ "Never being satisfied, no matter how much you have"
1493
+ ]
1494
+ },
1495
+ "name": "nine of cups",
1496
+ "rank": 9,
1497
+ "suit": "cups"
1498
+ },
1499
+ {
1500
+ "fortune_telling": [
1501
+ "Marriage and family are in the cards",
1502
+ "Expect a friendship to blossom into a romance"
1503
+ ],
1504
+ "keywords": [
1505
+ "joy",
1506
+ "fulfillment",
1507
+ "overwhelming emotion",
1508
+ "giddiness"
1509
+ ],
1510
+ "meanings": {
1511
+ "light": [
1512
+ "Having more than you ever dreamed",
1513
+ "Being deeply thankful for all you've been given",
1514
+ "Recognizing the Hand of God in the gifts the Universe brings your way",
1515
+ "Experiencing transcendent joy",
1516
+ "Achieving domestic bliss"
1517
+ ],
1518
+ "shadow": [
1519
+ "Comparing your achievements or relationships to unrealistic fantasy standards",
1520
+ "Experiencing emotions so intense they blunt your ability to cope with reality",
1521
+ "Feeling overwhelmed",
1522
+ "Envying the achievements and happiness of others"
1523
+ ]
1524
+ },
1525
+ "name": "ten of cups",
1526
+ "rank": 10,
1527
+ "suit": "cups"
1528
+ },
1529
+ {
1530
+ "fortune_telling": [
1531
+ "This card represents a young man or woman with a watery, dreamy demeanor, likely born a Libra, Scorpio, or Sagittarius, who wants to start a new relationship with you"
1532
+ ],
1533
+ "keywords": [
1534
+ "enthusiasm",
1535
+ "first impressions",
1536
+ "romanticism",
1537
+ "superficiality"
1538
+ ],
1539
+ "meanings": {
1540
+ "light": [
1541
+ "Showing your emotions freely",
1542
+ "Throwing yourself into romance",
1543
+ "Nursing a secret crush",
1544
+ "Indulging in romantic fantasy",
1545
+ "Starting a new relationship",
1546
+ "Recalling your first love",
1547
+ "Experiencing love for the first time",
1548
+ "Converting to a new religion"
1549
+ ],
1550
+ "shadow": [
1551
+ "Mistaking a crush for true love",
1552
+ "Reading romantic intention into innocent action",
1553
+ "Frantically trying to impress others",
1554
+ "Indulging in overly-sweet sentimentality",
1555
+ "Pretending to more romantic or spiritual experience than you possess"
1556
+ ]
1557
+ },
1558
+ "name": "page of cups",
1559
+ "rank": "page",
1560
+ "suit": "cups"
1561
+ },
1562
+ {
1563
+ "fortune_telling": [
1564
+ "This card represents a man with an emotional, sensitive personality, likely born between October 13th and November 11th, who wants you to rally around his latest passionate cause"
1565
+ ],
1566
+ "keywords": [
1567
+ "fervor",
1568
+ "zeal",
1569
+ "moodiness",
1570
+ "illumination"
1571
+ ],
1572
+ "meanings": {
1573
+ "light": [
1574
+ "Being deeply committed to a cause",
1575
+ "Giving in to strong emotions, from excitement to depression",
1576
+ "Acting on intuition alone",
1577
+ "Solving problems intuitively",
1578
+ "Believing in and basing decisions on ideals instead of realities",
1579
+ "Bringing intuition or passion to the table"
1580
+ ],
1581
+ "shadow": [
1582
+ "Becoming a fanatic",
1583
+ "Rejecting information that suggests your intuitions are misguided",
1584
+ "Allowing your emotions to control you",
1585
+ "Giving in to jealousy, confrontation, and peer pressure",
1586
+ "Hiding or ignoring intuitive insights"
1587
+ ]
1588
+ },
1589
+ "name": "knight of cups",
1590
+ "rank": "knight",
1591
+ "suit": "cups"
1592
+ },
1593
+ {
1594
+ "fortune_telling": [
1595
+ "This card represents a woman with an emotional, deeply spiritual nature, likely born between June 11th and July 11th, who uses emotional and spiritual appeals to sway others to her point of view"
1596
+ ],
1597
+ "keywords": [
1598
+ "insightfulness",
1599
+ "spirituality",
1600
+ "compassion",
1601
+ "empathy",
1602
+ "instinct"
1603
+ ],
1604
+ "meanings": {
1605
+ "light": [
1606
+ "Allowing yourself to be moved by the plight of others",
1607
+ "Feeling strong emotions",
1608
+ "Possessing unusual sympathy or empathy",
1609
+ "Trusting your feelings to guide you",
1610
+ "Calling on psychic abilities",
1611
+ "Achieving unity with Spirit"
1612
+ ],
1613
+ "shadow": [
1614
+ "Becoming so caught up in matters of Spirit, you become detached from the world",
1615
+ "Allowing empathy to disable you (instead of inspire action)",
1616
+ "Using psychic abilities to wield covert influence",
1617
+ "Wallowing in emotionalism, sentiment, or self-pity"
1618
+ ]
1619
+ },
1620
+ "name": "queen of cups",
1621
+ "rank": "queen",
1622
+ "suit": "cups"
1623
+ },
1624
+ {
1625
+ "fortune_telling": [
1626
+ "This card represents an older man with a gentle, sensitive presence, likely born between February 9th and March 10th, who is known for his fairness and tolerance"
1627
+ ],
1628
+ "keywords": [
1629
+ "wisdom",
1630
+ "diplomacy",
1631
+ "restraint",
1632
+ "composure"
1633
+ ],
1634
+ "meanings": {
1635
+ "light": [
1636
+ "Keeping a stiff upper lip",
1637
+ "Being brave and clear in the face of adverse circumstances",
1638
+ "Sharing experience as a way of comforting others",
1639
+ "Making fair and empathetic decisions",
1640
+ "Honoring the spirit, not just the letter, of the law"
1641
+ ],
1642
+ "shadow": [
1643
+ "Allowing yourself to become rigid and unemotional",
1644
+ "Making unfair decisions based on a hidden agenda",
1645
+ "Making decisions without regard for their emotional impact on others",
1646
+ "Abusing spiritual authority",
1647
+ "Using emotional or spiritual leverage to exercise unhealthy control over others"
1648
+ ]
1649
+ },
1650
+ "name": "king of cups",
1651
+ "rank": "king",
1652
+ "suit": "cups"
1653
+ },
1654
+ {
1655
+ "fortune_telling": [
1656
+ "The time to make a choice is now",
1657
+ "Stop wavering and do what you know is best"
1658
+ ],
1659
+ "keywords": [
1660
+ "logic",
1661
+ "objectivity",
1662
+ "intellect",
1663
+ "choice"
1664
+ ],
1665
+ "meanings": {
1666
+ "light": [
1667
+ "Making objective decisions",
1668
+ "Applying logic",
1669
+ "Reasoning your way out of a difficult situation",
1670
+ "Solving puzzles",
1671
+ "Thinking things through",
1672
+ "Emphasizing the facts",
1673
+ "Clearing your mind",
1674
+ "Seeking clarity"
1675
+ ],
1676
+ "shadow": [
1677
+ "Applying ruthless or twisted logic",
1678
+ "Gloating over your own superior intellect",
1679
+ "Using quick thinking to deceive or confuse others",
1680
+ "Confusing snap judgments with quick thinking",
1681
+ "Making decisions without thinking through consequences"
1682
+ ]
1683
+ },
1684
+ "name": "ace of swords",
1685
+ "rank": 1,
1686
+ "suit": "swords"
1687
+ },
1688
+ {
1689
+ "fortune_telling": [
1690
+ "Sometimes, the only way to win is to refuse to fight",
1691
+ "You're stuck for now; let time pass before taking action"
1692
+ ],
1693
+ "keywords": [
1694
+ "denial",
1695
+ "debate",
1696
+ "impasse",
1697
+ "truce"
1698
+ ],
1699
+ "meanings": {
1700
+ "light": [
1701
+ "Refusing to make a decision without getting the facts",
1702
+ "Exploring both sides of an argument",
1703
+ "Arguing passionately for what you believe in",
1704
+ "Weighing the issues",
1705
+ "Encouraging the open exchange of ideas",
1706
+ "Discussing political or religious issues without getting \"hot under the collar\""
1707
+ ],
1708
+ "shadow": [
1709
+ "Rejecting evidence that conflicts with dearly-held beliefs",
1710
+ "Arguing with others just for the sake of doing so",
1711
+ "Nit-picking",
1712
+ "Putting off a decision because you're afraid to face the consequences",
1713
+ "Preventing others from getting the information they need to make good decisions"
1714
+ ]
1715
+ },
1716
+ "name": "two of swords",
1717
+ "rank": 2,
1718
+ "suit": "swords"
1719
+ },
1720
+ {
1721
+ "fortune_telling": [
1722
+ "Breakups and infidelity abound",
1723
+ "What hurts now, though, will turn out to be good for you later on"
1724
+ ],
1725
+ "keywords": [
1726
+ "variance",
1727
+ "difference",
1728
+ "dissatisfaction",
1729
+ "heartache",
1730
+ "rejection"
1731
+ ],
1732
+ "meanings": {
1733
+ "light": [
1734
+ "Being brave enough to see things as they really are",
1735
+ "Exercising your critical eye",
1736
+ "Being your own best critic",
1737
+ "Acknowledging that things don't always turn out as planned",
1738
+ "Moving past heartbreak to embrace a painful truth"
1739
+ ],
1740
+ "shadow": [
1741
+ "Wallowing in despair",
1742
+ "Allowing yourself to be completely crushed by the thoughts, words, or deeds of another",
1743
+ "Judging yourself too harshly",
1744
+ "Holding yourself to an unrealistic standard of excellence",
1745
+ "Wearing your heart on your sleeve while carrying a chip on your shoulder"
1746
+ ]
1747
+ },
1748
+ "name": "three of swords",
1749
+ "rank": 3,
1750
+ "suit": "swords"
1751
+ },
1752
+ {
1753
+ "fortune_telling": [
1754
+ "Don't make any decision now",
1755
+ "Wait, and you'll be glad you did"
1756
+ ],
1757
+ "keywords": [
1758
+ "meditation",
1759
+ "contemplation",
1760
+ "perspective",
1761
+ "mindset"
1762
+ ],
1763
+ "meanings": {
1764
+ "light": [
1765
+ "Thinking over your plans before putting them into action",
1766
+ "Pausing to meditate or clear your mind",
1767
+ "Taking time to understand someone or something before criticizing it",
1768
+ "Resting",
1769
+ "Occupying your thoughts with a healthy distraction"
1770
+ ],
1771
+ "shadow": [
1772
+ "Failing to think things through",
1773
+ "Mistaking procrastination for thoughtfulness",
1774
+ "Adopting a point of view and refusing to reconsider your conclusions, even when presented with refuting evidence",
1775
+ "Allowing chaos and whimsy to dominate your thoughts"
1776
+ ]
1777
+ },
1778
+ "name": "four of swords",
1779
+ "rank": 4,
1780
+ "suit": "swords"
1781
+ },
1782
+ {
1783
+ "fortune_telling": [
1784
+ "Someone is stealing from you, financially or romantically",
1785
+ "Be wary of friends who talk behind your back"
1786
+ ],
1787
+ "keywords": [
1788
+ "selfishness",
1789
+ "hostility",
1790
+ "irrationality",
1791
+ "self-preservation"
1792
+ ],
1793
+ "meanings": {
1794
+ "light": [
1795
+ "Acting in your own best interest",
1796
+ "Choosing to stand up for yourself",
1797
+ "Not backing down from disagreement and discord",
1798
+ "Taking a stand",
1799
+ "Refusing to go along with an unethical plan",
1800
+ "Knowing when to bend the rules"
1801
+ ],
1802
+ "shadow": [
1803
+ "Taking advantage of others",
1804
+ "Intimidating others",
1805
+ "Acting in an unethical manner",
1806
+ "Picking fights",
1807
+ "Using words to goad others into violence and irrationality",
1808
+ "Ignoring rules you've agreed to abide by",
1809
+ "Looking out for yourself while allowing harm to come to others",
1810
+ "Gloating over victory"
1811
+ ]
1812
+ },
1813
+ "name": "five of swords",
1814
+ "rank": 5,
1815
+ "suit": "swords"
1816
+ },
1817
+ {
1818
+ "fortune_telling": [
1819
+ "You'll soon go on a long journey over water",
1820
+ "Actions have unexpected consequences, so be prepared"
1821
+ ],
1822
+ "keywords": [
1823
+ "adaptation",
1824
+ "adjustments",
1825
+ "science",
1826
+ "travel"
1827
+ ],
1828
+ "meanings": {
1829
+ "light": [
1830
+ "Making the best of a bad situation",
1831
+ "Recovering from defeat",
1832
+ "Resetting expectations",
1833
+ "Making allowances for unexpected circumstances",
1834
+ "Helping others who find themselves in dire circumstances",
1835
+ "Changing the way you see the world",
1836
+ "Broadening your perspective through study or travel"
1837
+ ],
1838
+ "shadow": [
1839
+ "Refusing to accept that things have changed",
1840
+ "Playing the victim",
1841
+ "Rejecting the idea that your actions have consequences",
1842
+ "Applying scientific criteria to matters of faith, or confusing faith with science",
1843
+ "Believing the whole world should be like your small corner of it"
1844
+ ]
1845
+ },
1846
+ "name": "six of swords",
1847
+ "rank": 6,
1848
+ "suit": "swords"
1849
+ },
1850
+ {
1851
+ "fortune_telling": [
1852
+ "Don't assume people around you are worthy of your trust",
1853
+ "Ask for an accounting of where people have been, and what they've been doing"
1854
+ ],
1855
+ "keywords": [
1856
+ "dishonesty",
1857
+ "presumption",
1858
+ "sneakiness",
1859
+ "assumptions"
1860
+ ],
1861
+ "meanings": {
1862
+ "light": [
1863
+ "Refusing to do something dishonest, even when there's no chance of ever being caught",
1864
+ "Handling a difficult situation with finesse",
1865
+ "Pointing out assumptions",
1866
+ "Acting ethically in public and in private",
1867
+ "Living a life that is beyond reproach"
1868
+ ],
1869
+ "shadow": [
1870
+ "Stealing or lying",
1871
+ "Doing whatever you can get away with, simply because you can",
1872
+ "Looking for a way around consequences",
1873
+ "Justifying wicked behavior by focusing on the wickedness of others",
1874
+ "Failing to examine your own motives and prejudices"
1875
+ ]
1876
+ },
1877
+ "name": "seven of swords",
1878
+ "rank": 7,
1879
+ "suit": "swords"
1880
+ },
1881
+ {
1882
+ "fortune_telling": [
1883
+ "Get over playing the victim",
1884
+ "Once you realize you are your own biggest obstacle, nothing can hold you back"
1885
+ ],
1886
+ "keywords": [
1887
+ "restriction",
1888
+ "limitation",
1889
+ "confinement",
1890
+ "helplessness"
1891
+ ],
1892
+ "meanings": {
1893
+ "light": [
1894
+ "Honoring limits",
1895
+ "Respecting the rules",
1896
+ "Deciding to go on a diet for your health's sake",
1897
+ "Recognizing you cannot always be in control",
1898
+ "Identifying obstacles to further progress",
1899
+ "Refusing to think about unhealthy or unethical options",
1900
+ "Asking for assistance"
1901
+ ],
1902
+ "shadow": [
1903
+ "Feeling trapped",
1904
+ "Being lost in a maze of rules and regulations",
1905
+ "Giving in to despair",
1906
+ "Playing the victim",
1907
+ "Allowing others to dictate what you can and cannot do",
1908
+ "Being rendered helpless",
1909
+ "Having very few options",
1910
+ "Failing to look for a way out"
1911
+ ]
1912
+ },
1913
+ "name": "eight of swords",
1914
+ "rank": 8,
1915
+ "suit": "swords"
1916
+ },
1917
+ {
1918
+ "fortune_telling": [
1919
+ "If you take the action you're considering now, you'll be sorry in the future"
1920
+ ],
1921
+ "keywords": [
1922
+ "remorse",
1923
+ "worry",
1924
+ "distraught",
1925
+ "conclusion"
1926
+ ],
1927
+ "meanings": {
1928
+ "light": [
1929
+ "Refusing to worry about what you cannot control",
1930
+ "Rejecting anxiety",
1931
+ "Judging your own performance with kindness and gentleness",
1932
+ "Using meditation to quiet a troubled mind",
1933
+ "Confronting nightmares and fears",
1934
+ "Drawing a conclusion and putting an issue out of your mind"
1935
+ ],
1936
+ "shadow": [
1937
+ "Torturing yourself with regrets",
1938
+ "Second-guessing your every move",
1939
+ "Beating yourself up for your mistakes",
1940
+ "Depression",
1941
+ "Obsessing on errors and overlooked details",
1942
+ "Refusing to handle stress in healthy ways",
1943
+ "Ruining your ability to appreciate the present by dwelling on the past",
1944
+ "Debating irreversible decisions"
1945
+ ]
1946
+ },
1947
+ "name": "nine of swords",
1948
+ "rank": 9,
1949
+ "suit": "swords"
1950
+ },
1951
+ {
1952
+ "fortune_telling": [
1953
+ "Disaster",
1954
+ "Put off plans and do not take action until omens are better"
1955
+ ],
1956
+ "keywords": [
1957
+ "exhaustion",
1958
+ "ruin",
1959
+ "disaster",
1960
+ "stamina",
1961
+ "obsession"
1962
+ ],
1963
+ "meanings": {
1964
+ "light": [
1965
+ "Seeing the signs that you've reached your limits",
1966
+ "Paying attention to what your body is trying to tell you",
1967
+ "Giving in to the need for rest and renewal",
1968
+ "Acknowledging that you've hit bottom",
1969
+ "Committing to a turnaround",
1970
+ "Knowing the worst is over"
1971
+ ],
1972
+ "shadow": [
1973
+ "Accepting defeat prematurely",
1974
+ "Driving yourself to total exhaustion, especially mentally",
1975
+ "Experiencing a mental breakdown",
1976
+ "Obsessing on a problem to the breaking point",
1977
+ "Giving up",
1978
+ "Refusing to move from thought to action",
1979
+ "Deeply unhealthy thoughts"
1980
+ ]
1981
+ },
1982
+ "name": "ten of swords",
1983
+ "rank": 10,
1984
+ "suit": "swords"
1985
+ },
1986
+ {
1987
+ "fortune_telling": [
1988
+ "This card represents a young man or woman with an airy, intellectual demeanor, likely born a Capricorn, Aquarius, or Pisces, who wants to learn something new from you or have a discussion with you"
1989
+ ],
1990
+ "keywords": [
1991
+ "student",
1992
+ "apprentice",
1993
+ "scholarship",
1994
+ "information"
1995
+ ],
1996
+ "meanings": {
1997
+ "light": [
1998
+ "Pursuing a course of study",
1999
+ "Asking good questions",
2000
+ "Investing time in study and practice",
2001
+ "Doing research",
2002
+ "Making a habit of learning new things",
2003
+ "Starting an investigation",
2004
+ "Outlining what you need to know",
2005
+ "Finding a mentor or teacher"
2006
+ ],
2007
+ "shadow": [
2008
+ "Pretending to knowledge or sophistication you do not possess",
2009
+ "Cheating on an exam",
2010
+ "Feigning interest as a way of gaining favor",
2011
+ "Considering only the evidence that supports conclusions you've already drawn",
2012
+ "Rejecting the wise counsel of experienced teachers"
2013
+ ]
2014
+ },
2015
+ "name": "page of swords",
2016
+ "rank": "page",
2017
+ "suit": "swords"
2018
+ },
2019
+ {
2020
+ "fortune_telling": [
2021
+ "A blunder leads someone to say something he or she regrets",
2022
+ "If this was you, be prepared to apologize and move on"
2023
+ ],
2024
+ "keywords": [
2025
+ "bluntness",
2026
+ "intelligence",
2027
+ "incisiveness",
2028
+ "investigation"
2029
+ ],
2030
+ "meanings": {
2031
+ "light": [
2032
+ "Speaking your mind",
2033
+ "Making your opinions known",
2034
+ "Offering constructive criticism",
2035
+ "Sharing your knowledge",
2036
+ "Making insightful observations",
2037
+ "Pinpointing the problem",
2038
+ "Clarifying what others have said",
2039
+ "Giving clear direction to others",
2040
+ "Uncovering the truth"
2041
+ ],
2042
+ "shadow": [
2043
+ "Stating your opinions as fact",
2044
+ "Picking fights",
2045
+ "Starting arguments",
2046
+ "Using clever insults to undermine the confidence of others",
2047
+ "Tossing reason out the window",
2048
+ "Speaking without taking the feelings of others into account",
2049
+ "Going on a witch hunt",
2050
+ "Distorting evidence"
2051
+ ]
2052
+ },
2053
+ "name": "knight of swords",
2054
+ "rank": "knight",
2055
+ "suit": "swords"
2056
+ },
2057
+ {
2058
+ "fortune_telling": [
2059
+ "This card represents a woman with an artistic, intellectual nature, likely born between September 12th and October 12th, who uses clever, positive communication to sway others to her point of view"
2060
+ ],
2061
+ "keywords": [
2062
+ "grace",
2063
+ "skill",
2064
+ "wit",
2065
+ "charm",
2066
+ "aptitude"
2067
+ ],
2068
+ "meanings": {
2069
+ "light": [
2070
+ "Exercising tact or using diplomacy",
2071
+ "Defusing a tense situation",
2072
+ "Knowing what to say and how to say it",
2073
+ "Making others feel comfortable and confident",
2074
+ "Bringing out the best in everyone",
2075
+ "Having a way with words",
2076
+ "Telling jokes",
2077
+ "Possessing a knack for music, math, art, or science"
2078
+ ],
2079
+ "shadow": [
2080
+ "Knowing exactly what to say to destroy another person",
2081
+ "Withholding critical information",
2082
+ "Using a barbed tongue to upset others",
2083
+ "Employing sarcasm",
2084
+ "Mimicking others unkindly",
2085
+ "Making light of the less fortunate",
2086
+ "Being disrespectful",
2087
+ "Failing to use the talent you've been given"
2088
+ ]
2089
+ },
2090
+ "name": "queen of swords",
2091
+ "rank": "queen",
2092
+ "suit": "swords"
2093
+ },
2094
+ {
2095
+ "fortune_telling": [
2096
+ "This card represents an older man with an insightful, deliberate spirit, likely born between May 11th and June 10th, who is known for his integrity and sharp decision-making ability"
2097
+ ],
2098
+ "keywords": [
2099
+ "genius",
2100
+ "expertise",
2101
+ "decision",
2102
+ "verdict"
2103
+ ],
2104
+ "meanings": {
2105
+ "light": [
2106
+ "Expressing yourself with firmness and authority",
2107
+ "Rendering a final decision",
2108
+ "Consulting an expert",
2109
+ "Calling in advisors and consultants",
2110
+ "Coming to a final conclusion",
2111
+ "Reaching a beneficial agreement based on sound information"
2112
+ ],
2113
+ "shadow": [
2114
+ "Insisting on having the last word",
2115
+ "Flaunting your intellectual capability",
2116
+ "Talking \"over the heads\" of others",
2117
+ "Waffling on an important decision",
2118
+ "Constantly changing your mind",
2119
+ "Refusing to make choices that are in your own best interest",
2120
+ "Wishing in vain you could take back what's been said"
2121
+ ]
2122
+ },
2123
+ "name": "king of swords",
2124
+ "rank": "king",
2125
+ "suit": "swords"
2126
+ },
2127
+ {
2128
+ "fortune_telling": [
2129
+ "Your health will improve",
2130
+ "The check you're looking for really is in the mail"
2131
+ ],
2132
+ "keywords": [
2133
+ "health",
2134
+ "wealth",
2135
+ "practicality",
2136
+ "receiving"
2137
+ ],
2138
+ "meanings": {
2139
+ "light": [
2140
+ "Outlining a plan for achieving prosperity",
2141
+ "Becoming aware of opportunities to improve income or health",
2142
+ "Realizing you have everything you need",
2143
+ "Appreciating everything the Universe has given you",
2144
+ "Receiving the perfect gift at the perfect time"
2145
+ ],
2146
+ "shadow": [
2147
+ "Indulging in relentless consumerism",
2148
+ "Wanting more, no matter how much you have",
2149
+ "Obsessing on your account balance",
2150
+ "Suffering from hypochondria",
2151
+ "Consuming blessings without expressing gratitude",
2152
+ "Taking what you want without concern for the needs of others"
2153
+ ]
2154
+ },
2155
+ "name": "ace of coins",
2156
+ "rank": 1,
2157
+ "suit": "coins"
2158
+ },
2159
+ {
2160
+ "fortune_telling": [
2161
+ "It's time to balance the budget",
2162
+ "Avoid the temptation to spend critical funds on frivolous goods"
2163
+ ],
2164
+ "keywords": [
2165
+ "evaluation",
2166
+ "decision",
2167
+ "budgeting",
2168
+ "diagnosis"
2169
+ ],
2170
+ "meanings": {
2171
+ "light": [
2172
+ "Weighing options",
2173
+ "Comparing prices",
2174
+ "Determining the value of one option over another",
2175
+ "Juggling resources to make ends meet",
2176
+ "Making difficult choices based on what's best for your body or your bankbook",
2177
+ "Looking at the bottom line",
2178
+ "Asking for a second opinion on health issues"
2179
+ ],
2180
+ "shadow": [
2181
+ "Engaging in endless price comparison",
2182
+ "Putting off a buying decision for fear of finding a slightly better value later on",
2183
+ "Buying something without regard for value",
2184
+ "Breaking your budget with unnecessary expenses",
2185
+ "Engaging in behavior with no regard for how your body or bankbook will be impacted"
2186
+ ]
2187
+ },
2188
+ "name": "two of coins",
2189
+ "rank": 2,
2190
+ "suit": "coins"
2191
+ },
2192
+ {
2193
+ "fortune_telling": [
2194
+ "A high-dollar contract is in your future",
2195
+ "If you work hard, you'll succeed"
2196
+ ],
2197
+ "keywords": [
2198
+ "expression",
2199
+ "production",
2200
+ "work",
2201
+ "contribution"
2202
+ ],
2203
+ "meanings": {
2204
+ "light": [
2205
+ "Finishing a project",
2206
+ "Setting and meeting standards",
2207
+ "Performing according to specifications",
2208
+ "Making something others value",
2209
+ "Creating something new",
2210
+ "Doing your part in a group project",
2211
+ "Delivering exactly what others have asked for"
2212
+ ],
2213
+ "shadow": [
2214
+ "Pandering to the tastes of others",
2215
+ "Failing to deliver what you've promised",
2216
+ "Not delivering your best work unless closely supervised",
2217
+ "Ignoring or breaking agreements with those who have invested in you",
2218
+ "Refusing to do your part",
2219
+ "Failing to abide by a clearly-outlined agreement with yourself or others"
2220
+ ]
2221
+ },
2222
+ "name": "three of coins",
2223
+ "rank": 3,
2224
+ "suit": "coins"
2225
+ },
2226
+ {
2227
+ "fortune_telling": [
2228
+ "A rainy day is coming\u2014it's time to save"
2229
+ ],
2230
+ "keywords": [
2231
+ "protection",
2232
+ "conservation",
2233
+ "preservation",
2234
+ "safety"
2235
+ ],
2236
+ "meanings": {
2237
+ "light": [
2238
+ "Saving for a rainy day",
2239
+ "Fasting as part of a spiritual practice",
2240
+ "Dieting in an effort to improve your body",
2241
+ "Abstaining from sex as a way of honoring a spiritual tradition or personal promise",
2242
+ "Being financially conservative",
2243
+ "Establishing a trust fund",
2244
+ "Opening a savings account"
2245
+ ],
2246
+ "shadow": [
2247
+ "Being stingy",
2248
+ "Refusing to spend money that needs to be spent",
2249
+ "Withholding sex from your partner",
2250
+ "Taking care of your own needs exclusively, without regard for the needs of others",
2251
+ "Spending a dollar to save a penny",
2252
+ "Failing to be a good manager of the blessings you've been given"
2253
+ ]
2254
+ },
2255
+ "name": "four of coins",
2256
+ "rank": 4,
2257
+ "suit": "coins"
2258
+ },
2259
+ {
2260
+ "fortune_telling": [
2261
+ "Finances are getting tighter",
2262
+ "Prepare for a setback"
2263
+ ],
2264
+ "keywords": [
2265
+ "poverty",
2266
+ "destitution",
2267
+ "need",
2268
+ "crisis"
2269
+ ],
2270
+ "meanings": {
2271
+ "light": [
2272
+ "Recognizing your needs and taking action to fulfill them",
2273
+ "Doing as much as you can do with what little you have",
2274
+ "Admitting you need help",
2275
+ "Embracing the aid that comes your way",
2276
+ "Focusing on what you have versus what you don't",
2277
+ "Looking for the light at the end of the tunnel"
2278
+ ],
2279
+ "shadow": [
2280
+ "Exaggerating your financial or physical needs",
2281
+ "Adopting a poverty mentality",
2282
+ "Refusing to support yourself",
2283
+ "Refusing offers of support",
2284
+ "Playing the martyr",
2285
+ "Turning down opportunities to improve your health or finances",
2286
+ "Wallowing in misery"
2287
+ ]
2288
+ },
2289
+ "name": "five of coins",
2290
+ "rank": 5,
2291
+ "suit": "coins"
2292
+ },
2293
+ {
2294
+ "fortune_telling": [
2295
+ "When you need help, ask for it",
2296
+ "Remember, though: what you receive may be limited by what you've given to others in the past"
2297
+ ],
2298
+ "keywords": [
2299
+ "charity",
2300
+ "fairness",
2301
+ "cooperation",
2302
+ "sharing"
2303
+ ],
2304
+ "meanings": {
2305
+ "light": [
2306
+ "Giving time, money, or effort to a charity",
2307
+ "Taking part in a group effort",
2308
+ "Lending your resources to others without expecting anything in return",
2309
+ "Making sure everyone is treated equally",
2310
+ "Working together toward a common goal",
2311
+ "Redistributing wealth, time, or attention",
2312
+ "Tithing",
2313
+ "Sharing credit for your success"
2314
+ ],
2315
+ "shadow": [
2316
+ "Making a loan as a means of gaining control over someone",
2317
+ "Using charitable acts to draw attention to yourself",
2318
+ "Dividing work or resources unfairly",
2319
+ "Failing to do your part in a group effort",
2320
+ "Ignoring obligations and commitments"
2321
+ ]
2322
+ },
2323
+ "name": "six of coins",
2324
+ "rank": 6,
2325
+ "suit": "coins"
2326
+ },
2327
+ {
2328
+ "fortune_telling": [
2329
+ "Things won't work out as expected",
2330
+ "Pick up the pieces and prepare to move on"
2331
+ ],
2332
+ "keywords": [
2333
+ "assessment",
2334
+ "evaluation",
2335
+ "re-evaluation",
2336
+ "reflection"
2337
+ ],
2338
+ "meanings": {
2339
+ "light": [
2340
+ "Measuring progress toward your goal",
2341
+ "Looking at results with an eye toward improving performance",
2342
+ "Asking, \"How happy am I?\"",
2343
+ "Coming up with ideas for improving your health or prosperity",
2344
+ "Deciding it's time for a change",
2345
+ "Expressing an honest opinion"
2346
+ ],
2347
+ "shadow": [
2348
+ "Becoming distracted by melancholy thoughts",
2349
+ "Longing for \"the good old days\"",
2350
+ "Beating yourself up over lost opportunities",
2351
+ "Judging your own work harshly",
2352
+ "Holding others to inappropriate standards",
2353
+ "Refusing to take part in a project, then whining about the quality of the outcome"
2354
+ ]
2355
+ },
2356
+ "name": "seven of coins",
2357
+ "rank": 7,
2358
+ "suit": "coins"
2359
+ },
2360
+ {
2361
+ "fortune_telling": [
2362
+ "Stop over-analyzing, researching, and outlining",
2363
+ "Buckle down and get the work done"
2364
+ ],
2365
+ "keywords": [
2366
+ "effort",
2367
+ "work diligence",
2368
+ "skill"
2369
+ ],
2370
+ "meanings": {
2371
+ "light": [
2372
+ "Doing your best",
2373
+ "Bringing enthusiasm and zeal to your work",
2374
+ "Making an effort to be the best you can be",
2375
+ "Finding the work that is right for you",
2376
+ "Taking care of the small details",
2377
+ "Becoming a finely skilled craftsperson",
2378
+ "Building something with your hands",
2379
+ "Making a handmade gift"
2380
+ ],
2381
+ "shadow": [
2382
+ "Working yourself to death",
2383
+ "Doing a half-hearted or sloppy job",
2384
+ "Continuing in a job you hate",
2385
+ "Buying thoughtless gifts",
2386
+ "Producing work with shoddy craftsmanship",
2387
+ "Rushing through your work",
2388
+ "Rejecting opportunities to learn more about your craft"
2389
+ ]
2390
+ },
2391
+ "name": "eight of coins",
2392
+ "rank": 8,
2393
+ "suit": "coins"
2394
+ },
2395
+ {
2396
+ "fortune_telling": [
2397
+ "Until you appreciate what you have, you won't have any luck getting more"
2398
+ ],
2399
+ "keywords": [
2400
+ "training",
2401
+ "discipline",
2402
+ "confidence",
2403
+ "enough"
2404
+ ],
2405
+ "meanings": {
2406
+ "light": [
2407
+ "Investing time in learning or teaching a difficult task",
2408
+ "Restraining yourself from physical or financial extremes",
2409
+ "Making sacrifices as a way of achieving larger goals",
2410
+ "Breaking a complex task down into simple steps",
2411
+ "Wanting what you have",
2412
+ "Knowing the difference between needs and wants"
2413
+ ],
2414
+ "shadow": [
2415
+ "Being assigned to a task without being trained to perform it",
2416
+ "Pursuing a position for which you are not qualified",
2417
+ "Disregarding requirements",
2418
+ "Refusing to dedicate adequate time or attention when learning about something or someone new",
2419
+ "Always craving more"
2420
+ ]
2421
+ },
2422
+ "name": "nine of coins",
2423
+ "rank": 9,
2424
+ "suit": "coins"
2425
+ },
2426
+ {
2427
+ "fortune_telling": [
2428
+ "Big money is in the near future",
2429
+ "Expect a powerful blessing to come your way"
2430
+ ],
2431
+ "keywords": [
2432
+ "wealth",
2433
+ "abundance",
2434
+ "acquisition",
2435
+ "greed"
2436
+ ],
2437
+ "meanings": {
2438
+ "light": [
2439
+ "Celebrating your physical and financial blessings",
2440
+ "Realizing how lucky or how blessed you are",
2441
+ "Being satisfied with your physical and financial achievements",
2442
+ "Taking best advantage of \"times of plenty\"",
2443
+ "Enjoying a feast",
2444
+ "Showering friends or family with gifts"
2445
+ ],
2446
+ "shadow": [
2447
+ "Spending all of your money on extravagant gifts and possessions",
2448
+ "Trying too hard to impress others with your wealth or physique",
2449
+ "Giving an inappropriately expensive gift as a means of currying favor",
2450
+ "Obsessing on matters of weight, health, or finance",
2451
+ "Always asking, \"What's in it for me?\""
2452
+ ]
2453
+ },
2454
+ "name": "ten of coins",
2455
+ "rank": 10,
2456
+ "suit": "coins"
2457
+ },
2458
+ {
2459
+ "fortune_telling": [
2460
+ "This card represents a young man or woman with an earthy, practical demeanor, likely born an Aries, Taurus, or Gemini, who playfully encourages you to take financial or sexual risks"
2461
+ ],
2462
+ "keywords": [
2463
+ "practicality",
2464
+ "prosperity",
2465
+ "learning",
2466
+ "growth",
2467
+ "adolescence"
2468
+ ],
2469
+ "meanings": {
2470
+ "light": [
2471
+ "Learning the value of a dollar",
2472
+ "Starting a savings plan",
2473
+ "Taking the first steps toward getting out of debt",
2474
+ "Learning new physical tasks",
2475
+ "Discovering your sexuality",
2476
+ "Launching a diet, a weight-lifting program, or a health-related effort",
2477
+ "Learning by doing"
2478
+ ],
2479
+ "shadow": [
2480
+ "Trying to appear healthier or wealthier than you really are",
2481
+ "Spending money carelessly",
2482
+ "Living strictly for today, with no thought of tomorrow",
2483
+ "Possessing immature attitudes toward sex and sexuality",
2484
+ "Using wealth or beauty as an excuse for not having to learn and grow"
2485
+ ]
2486
+ },
2487
+ "name": "page of coins",
2488
+ "rank": "page",
2489
+ "suit": "coins"
2490
+ },
2491
+ {
2492
+ "fortune_telling": [
2493
+ "A stingy person may chide you for spending money",
2494
+ "Be prepared to defend an economic or sexual decision"
2495
+ ],
2496
+ "keywords": [
2497
+ "caution",
2498
+ "focus",
2499
+ "realism",
2500
+ "invention"
2501
+ ],
2502
+ "meanings": {
2503
+ "light": [
2504
+ "Spending money wisely",
2505
+ "Saving for a rainy day",
2506
+ "Paying close attention to physical or financial details",
2507
+ "Knowing where every dollar goes",
2508
+ "Having safe sex",
2509
+ "Preferring facts to \"good feelings\"",
2510
+ "Finding creative ways to \"make do\" with resources on hand",
2511
+ "Completing a new invention"
2512
+ ],
2513
+ "shadow": [
2514
+ "Throwing caution to the four winds",
2515
+ "Spending without regard for consequence",
2516
+ "Spending on luxury when necessities are lacking",
2517
+ "Escaping stress by spending money",
2518
+ "Obsessing on tiny physical or financial details",
2519
+ "Perpetually chasing after some new bauble",
2520
+ "Copying another's work and claiming it as your own"
2521
+ ]
2522
+ },
2523
+ "name": "knight of coins",
2524
+ "rank": "knight",
2525
+ "suit": "coins"
2526
+ },
2527
+ {
2528
+ "fortune_telling": [
2529
+ "This card represents a woman with an expansive, sensual nature, likely born between December 13th and 31st, who uses sensual appeal and the promise of reward to sway others to her point of view"
2530
+ ],
2531
+ "keywords": [
2532
+ "luxury",
2533
+ "comfort",
2534
+ "resourcefulness",
2535
+ "generosity",
2536
+ "prosperity"
2537
+ ],
2538
+ "meanings": {
2539
+ "light": [
2540
+ "Appreciating fine food, fine wine, beautiful art, beautiful bodies, or any of the better things in life",
2541
+ "Reveling in healthy sexuality",
2542
+ "Treating yourself",
2543
+ "Splurging on the occasional \"nice to have\" item",
2544
+ "Rewarding someone with compensation above and beyond expectations",
2545
+ "Having it all"
2546
+ ],
2547
+ "shadow": [
2548
+ "Indulging in gluttony or greediness",
2549
+ "Becoming insatiable",
2550
+ "Blunting the impact of treats by indulging in them too often",
2551
+ "Providing physical comfort without providing for emotional needs",
2552
+ "Allowing a feeling of entitlement to distort your gratitude for what you're given"
2553
+ ]
2554
+ },
2555
+ "name": "queen of coins",
2556
+ "rank": "queen",
2557
+ "suit": "coins"
2558
+ },
2559
+ {
2560
+ "fortune_telling": [
2561
+ "This card represents an older man with a financially, socially, and politically conservative spirit, likely born between August 12th and September 11th, who is known for putting his money where his mouth is"
2562
+ ],
2563
+ "keywords": [
2564
+ "stability",
2565
+ "dependability",
2566
+ "confidence",
2567
+ "intervention"
2568
+ ],
2569
+ "meanings": {
2570
+ "light": [
2571
+ "Becoming debt-free",
2572
+ "Having more than enough to get by",
2573
+ "Making contributions to a savings plan",
2574
+ "Taking a new job with an eye toward advancing your career",
2575
+ "Buying life or health insurance",
2576
+ "Being confident in the bedroom",
2577
+ "Taking on the role of enforcer when called upon to do so"
2578
+ ],
2579
+ "shadow": [
2580
+ "Becoming so conservative you resist all change on principle alone",
2581
+ "Ignoring innovations in the name of preserving tradition",
2582
+ "Being smug or cocky",
2583
+ "Becoming ruthlessly dedicated to profit or pleasure",
2584
+ "Being sexually selfish",
2585
+ "Bossing others around, especially when you're not empowered to do so"
2586
+ ]
2587
+ },
2588
+ "name": "king of coins",
2589
+ "rank": "king",
2590
+ "suit": "coins"
2591
+ }
2592
+ ]
2593
+ }