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,3656 @@
1
+ {
2
+ "description": "Venues organized by category.",
3
+ "source": "https://developer.foursquare.com/categorytree",
4
+ "categories": [
5
+ {
6
+ "name": "arts & entertainment",
7
+ "pluralName": "arts & entertainment",
8
+ "shortName": "arts & entertainment",
9
+ "categories": [
10
+ {
11
+ "name": "aquarium",
12
+ "pluralName": "aquariums",
13
+ "shortName": "aquarium"
14
+ },
15
+ {
16
+ "name": "arcade",
17
+ "pluralName": "arcades",
18
+ "shortName": "arcade"
19
+ },
20
+ {
21
+ "name": "art gallery",
22
+ "pluralName": "art galleries",
23
+ "shortName": "art gallery"
24
+ },
25
+ {
26
+ "name": "bowling alley",
27
+ "pluralName": "bowling alleys",
28
+ "shortName": "bowling alley"
29
+ },
30
+ {
31
+ "name": "casino",
32
+ "pluralName": "casinos",
33
+ "shortName": "casino"
34
+ },
35
+ {
36
+ "name": "circus",
37
+ "pluralName": "circuses",
38
+ "shortName": "circus"
39
+ },
40
+ {
41
+ "name": "comedy club",
42
+ "pluralName": "comedy clubs",
43
+ "shortName": "comedy club"
44
+ },
45
+ {
46
+ "name": "concert hall",
47
+ "pluralName": "concert halls",
48
+ "shortName": "concert hall"
49
+ },
50
+ {
51
+ "name": "country dance club",
52
+ "pluralName": "country dance clubs",
53
+ "shortName": "country dance club"
54
+ },
55
+ {
56
+ "name": "disc golf",
57
+ "pluralName": "disc golf courses",
58
+ "shortName": "disc golf"
59
+ },
60
+ {
61
+ "name": "general entertainment",
62
+ "pluralName": "general entertainment",
63
+ "shortName": "entertainment"
64
+ },
65
+ {
66
+ "name": "go kart track",
67
+ "pluralName": "go kart tracks",
68
+ "shortName": "go kart"
69
+ },
70
+ {
71
+ "name": "historic site",
72
+ "pluralName": "historic sites",
73
+ "shortName": "historic site"
74
+ },
75
+ {
76
+ "name": "laser tag",
77
+ "pluralName": "laser tag places",
78
+ "shortName": "laser tag"
79
+ },
80
+ {
81
+ "name": "mini golf",
82
+ "pluralName": "mini golf courses",
83
+ "shortName": "mini golf"
84
+ },
85
+ {
86
+ "name": "movie theater",
87
+ "pluralName": "movie theaters",
88
+ "shortName": "movie theater",
89
+ "categories": [
90
+ {
91
+ "name": "indie movie theater",
92
+ "pluralName": "indie movie theaters",
93
+ "shortName": "indie theater"
94
+ },
95
+ {
96
+ "name": "multiplex",
97
+ "pluralName": "multiplexes",
98
+ "shortName": "cineplex"
99
+ }
100
+ ]
101
+ },
102
+ {
103
+ "name": "museum",
104
+ "pluralName": "museums",
105
+ "shortName": "museum",
106
+ "categories": [
107
+ {
108
+ "name": "art museum",
109
+ "pluralName": "art museums",
110
+ "shortName": "art museum"
111
+ },
112
+ {
113
+ "name": "history museum",
114
+ "pluralName": "history museums",
115
+ "shortName": "history museum"
116
+ },
117
+ {
118
+ "name": "planetarium",
119
+ "pluralName": "planetariums",
120
+ "shortName": "planetarium"
121
+ },
122
+ {
123
+ "name": "science museum",
124
+ "pluralName": "science museums",
125
+ "shortName": "science museum"
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "name": "music venue",
131
+ "pluralName": "music venues",
132
+ "shortName": "music venue",
133
+ "categories": [
134
+ {
135
+ "name": "jazz club",
136
+ "pluralName": "jazz clubs",
137
+ "shortName": "jazz club"
138
+ },
139
+ {
140
+ "name": "piano bar",
141
+ "pluralName": "piano bars",
142
+ "shortName": "piano bar"
143
+ },
144
+ {
145
+ "name": "rock club",
146
+ "pluralName": "rock clubs",
147
+ "shortName": "rock club"
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "name": "outdoor sculpture",
153
+ "pluralName": "outdoor sculptures",
154
+ "shortName": "outdoor sculpture"
155
+ },
156
+ {
157
+ "name": "performing arts venue",
158
+ "pluralName": "performing arts venues",
159
+ "shortName": "performing arts",
160
+ "categories": [
161
+ {
162
+ "name": "dance studio",
163
+ "pluralName": "dance studios",
164
+ "shortName": "dance studio"
165
+ },
166
+ {
167
+ "name": "indie theater",
168
+ "pluralName": "indie theaters",
169
+ "shortName": "indie"
170
+ },
171
+ {
172
+ "name": "opera house",
173
+ "pluralName": "opera houses",
174
+ "shortName": "opera house"
175
+ },
176
+ {
177
+ "name": "theater",
178
+ "pluralName": "theaters",
179
+ "shortName": "theater"
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "name": "pool hall",
185
+ "pluralName": "pool halls",
186
+ "shortName": "billiards"
187
+ },
188
+ {
189
+ "name": "public art",
190
+ "pluralName": "public art",
191
+ "shortName": "public art"
192
+ },
193
+ {
194
+ "name": "racetrack",
195
+ "pluralName": "racetracks",
196
+ "shortName": "racetrack"
197
+ },
198
+ {
199
+ "name": "roller rink",
200
+ "pluralName": "roller rinks",
201
+ "shortName": "roller rink"
202
+ },
203
+ {
204
+ "name": "salsa club",
205
+ "pluralName": "salsa clubs",
206
+ "shortName": "salsa club"
207
+ },
208
+ {
209
+ "name": "stadium",
210
+ "pluralName": "stadiums",
211
+ "shortName": "stadium",
212
+ "categories": [
213
+ {
214
+ "name": "baseball stadium",
215
+ "pluralName": "baseball stadiums",
216
+ "shortName": "baseball"
217
+ },
218
+ {
219
+ "name": "basketball stadium",
220
+ "pluralName": "basketball stadiums",
221
+ "shortName": "basketball"
222
+ },
223
+ {
224
+ "name": "cricket ground",
225
+ "pluralName": "cricket grounds",
226
+ "shortName": "cricket"
227
+ },
228
+ {
229
+ "name": "football stadium",
230
+ "pluralName": "football stadiums",
231
+ "shortName": "football"
232
+ },
233
+ {
234
+ "name": "hockey arena",
235
+ "pluralName": "hockey arenas",
236
+ "shortName": "hockey"
237
+ },
238
+ {
239
+ "name": "soccer stadium",
240
+ "pluralName": "soccer stadiums",
241
+ "shortName": "soccer"
242
+ },
243
+ {
244
+ "name": "tennis",
245
+ "pluralName": "tennis stadiums",
246
+ "shortName": "tennis"
247
+ },
248
+ {
249
+ "name": "track stadium",
250
+ "pluralName": "track stadiums",
251
+ "shortName": "track"
252
+ }
253
+ ]
254
+ },
255
+ {
256
+ "name": "street art",
257
+ "pluralName": "street art installations",
258
+ "shortName": "street art"
259
+ },
260
+ {
261
+ "name": "theme park",
262
+ "pluralName": "theme parks",
263
+ "shortName": "theme park",
264
+ "categories": [
265
+ {
266
+ "name": "theme park ride / attraction",
267
+ "pluralName": "theme park rides/attractions",
268
+ "shortName": "theme park"
269
+ }
270
+ ]
271
+ },
272
+ {
273
+ "name": "water park",
274
+ "pluralName": "water parks",
275
+ "shortName": "water park"
276
+ },
277
+ {
278
+ "name": "zoo",
279
+ "pluralName": "zoos",
280
+ "shortName": "zoo"
281
+ }
282
+ ]
283
+ },
284
+ {
285
+ "name": "college & university",
286
+ "pluralName": "colleges & universities",
287
+ "shortName": "college & education",
288
+ "categories": [
289
+ {
290
+ "name": "college academic building",
291
+ "pluralName": "college academic buildings",
292
+ "shortName": "academic building",
293
+ "categories": [
294
+ {
295
+ "name": "college arts building",
296
+ "pluralName": "college arts buildings",
297
+ "shortName": "arts"
298
+ },
299
+ {
300
+ "name": "college communications building",
301
+ "pluralName": "college communications buildings",
302
+ "shortName": "communications"
303
+ },
304
+ {
305
+ "name": "college engineering building",
306
+ "pluralName": "college engineering buildings",
307
+ "shortName": "engineering"
308
+ },
309
+ {
310
+ "name": "college history building",
311
+ "pluralName": "college history buildings",
312
+ "shortName": "history"
313
+ },
314
+ {
315
+ "name": "college math building",
316
+ "pluralName": "college math buildings",
317
+ "shortName": "math"
318
+ },
319
+ {
320
+ "name": "college science building",
321
+ "pluralName": "college science buildings",
322
+ "shortName": "science"
323
+ },
324
+ {
325
+ "name": "college technology building",
326
+ "pluralName": "college technology buildings",
327
+ "shortName": "technology"
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "name": "college administrative building",
333
+ "pluralName": "college administrative buildings",
334
+ "shortName": "administrative building"
335
+ },
336
+ {
337
+ "name": "college auditorium",
338
+ "pluralName": "college auditoriums",
339
+ "shortName": "auditorium"
340
+ },
341
+ {
342
+ "name": "college bookstore",
343
+ "pluralName": "college bookstores",
344
+ "shortName": "bookstore"
345
+ },
346
+ {
347
+ "name": "college cafeteria",
348
+ "pluralName": "college cafeterias",
349
+ "shortName": "cafeteria"
350
+ },
351
+ {
352
+ "name": "college classroom",
353
+ "pluralName": "college classrooms",
354
+ "shortName": "classroom"
355
+ },
356
+ {
357
+ "name": "college gym",
358
+ "pluralName": "college gyms",
359
+ "shortName": "gym"
360
+ },
361
+ {
362
+ "name": "college lab",
363
+ "pluralName": "college labs",
364
+ "shortName": "lab"
365
+ },
366
+ {
367
+ "name": "college library",
368
+ "pluralName": "college libraries",
369
+ "shortName": "library"
370
+ },
371
+ {
372
+ "name": "college quad",
373
+ "pluralName": "college quads",
374
+ "shortName": "quad"
375
+ },
376
+ {
377
+ "name": "college rec center",
378
+ "pluralName": "college rec centers",
379
+ "shortName": "rec center"
380
+ },
381
+ {
382
+ "name": "college residence hall",
383
+ "pluralName": "college residence halls",
384
+ "shortName": "residence hall"
385
+ },
386
+ {
387
+ "name": "college stadium",
388
+ "pluralName": "college stadiums",
389
+ "shortName": "stadium",
390
+ "categories": [
391
+ {
392
+ "name": "college baseball diamond",
393
+ "pluralName": "college baseball diamonds",
394
+ "shortName": "baseball"
395
+ },
396
+ {
397
+ "name": "college basketball court",
398
+ "pluralName": "college basketball courts",
399
+ "shortName": "basketball"
400
+ },
401
+ {
402
+ "name": "college cricket pitch",
403
+ "pluralName": "college cricket pitches",
404
+ "shortName": "cricket"
405
+ },
406
+ {
407
+ "name": "college football field",
408
+ "pluralName": "college football fields",
409
+ "shortName": "football"
410
+ },
411
+ {
412
+ "name": "college hockey rink",
413
+ "pluralName": "college hockey rinks",
414
+ "shortName": "hockey"
415
+ },
416
+ {
417
+ "name": "college soccer field",
418
+ "pluralName": "college soccer fields",
419
+ "shortName": "soccer"
420
+ },
421
+ {
422
+ "name": "college tennis court",
423
+ "pluralName": "college tennis courts",
424
+ "shortName": "tennis court"
425
+ },
426
+ {
427
+ "name": "college track",
428
+ "pluralName": "college tracks",
429
+ "shortName": "track"
430
+ }
431
+ ]
432
+ },
433
+ {
434
+ "name": "college theater",
435
+ "pluralName": "college theaters",
436
+ "shortName": "theater"
437
+ },
438
+ {
439
+ "name": "community college",
440
+ "pluralName": "community colleges",
441
+ "shortName": "community college"
442
+ },
443
+ {
444
+ "name": "fraternity house",
445
+ "pluralName": "fraternity houses",
446
+ "shortName": "frat house"
447
+ },
448
+ {
449
+ "name": "general college & university",
450
+ "pluralName": "general colleges & universities",
451
+ "shortName": "education"
452
+ },
453
+ {
454
+ "name": "law school",
455
+ "pluralName": "law schools",
456
+ "shortName": "law school"
457
+ },
458
+ {
459
+ "name": "medical school",
460
+ "pluralName": "medical schools",
461
+ "shortName": "medical school"
462
+ },
463
+ {
464
+ "name": "sorority house",
465
+ "pluralName": "sorority houses",
466
+ "shortName": "sorority house"
467
+ },
468
+ {
469
+ "name": "student center",
470
+ "pluralName": "student centers",
471
+ "shortName": "student center"
472
+ },
473
+ {
474
+ "name": "trade school",
475
+ "pluralName": "trade schools",
476
+ "shortName": "trade school"
477
+ },
478
+ {
479
+ "name": "university",
480
+ "pluralName": "universities",
481
+ "shortName": "university"
482
+ }
483
+ ]
484
+ },
485
+ {
486
+ "name": "event",
487
+ "pluralName": "events",
488
+ "shortName": "event",
489
+ "categories": [
490
+ {
491
+ "name": "conference",
492
+ "pluralName": "conferences",
493
+ "shortName": "conference"
494
+ },
495
+ {
496
+ "name": "convention",
497
+ "pluralName": "conventions",
498
+ "shortName": "convention"
499
+ },
500
+ {
501
+ "name": "festival",
502
+ "pluralName": "festivals",
503
+ "shortName": "festival"
504
+ },
505
+ {
506
+ "name": "music festival",
507
+ "pluralName": "music festivals",
508
+ "shortName": "music festival"
509
+ },
510
+ {
511
+ "name": "other event",
512
+ "pluralName": "other events",
513
+ "shortName": "other event"
514
+ },
515
+ {
516
+ "name": "parade",
517
+ "pluralName": "parades",
518
+ "shortName": "parade"
519
+ },
520
+ {
521
+ "name": "stoop sale",
522
+ "pluralName": "stoop sales",
523
+ "shortName": "stoop sale"
524
+ },
525
+ {
526
+ "name": "street fair",
527
+ "pluralName": "street fairs",
528
+ "shortName": "fair"
529
+ }
530
+ ]
531
+ },
532
+ {
533
+ "name": "food",
534
+ "pluralName": "food",
535
+ "shortName": "food",
536
+ "categories": [
537
+ {
538
+ "name": "Afghan restaurant",
539
+ "pluralName": "Afghan restaurants",
540
+ "shortName": "Afghan"
541
+ },
542
+ {
543
+ "name": "African restaurant",
544
+ "pluralName": "African restaurants",
545
+ "shortName": "African"
546
+ },
547
+ {
548
+ "name": "American restaurant",
549
+ "pluralName": "American restaurants",
550
+ "shortName": "American"
551
+ },
552
+ {
553
+ "name": "Arepa restaurant",
554
+ "pluralName": "Arepa restaurants",
555
+ "shortName": "Arepas"
556
+ },
557
+ {
558
+ "name": "Argentinian restaurant",
559
+ "pluralName": "Argentinian restaurants",
560
+ "shortName": "Argentinian"
561
+ },
562
+ {
563
+ "name": "Asian restaurant",
564
+ "pluralName": "Asian restaurants",
565
+ "shortName": "Asian"
566
+ },
567
+ {
568
+ "name": "Australian restaurant",
569
+ "pluralName": "Australian restaurants",
570
+ "shortName": "Australian"
571
+ },
572
+ {
573
+ "name": "Austrian restaurant",
574
+ "pluralName": "Austrian restaurants",
575
+ "shortName": "Austrian"
576
+ },
577
+ {
578
+ "name": "BBQ joint",
579
+ "pluralName": "BBQ joints",
580
+ "shortName": "BBQ"
581
+ },
582
+ {
583
+ "name": "bagel shop",
584
+ "pluralName": "bagel shops",
585
+ "shortName": "bagels"
586
+ },
587
+ {
588
+ "name": "bakery",
589
+ "pluralName": "bakeries",
590
+ "shortName": "bakery"
591
+ },
592
+ {
593
+ "name": "Belarusian restaurant",
594
+ "pluralName": "Belarusian restaurants",
595
+ "shortName": "Belarusian"
596
+ },
597
+ {
598
+ "name": "Belgian restaurant",
599
+ "pluralName": "Belgian restaurants",
600
+ "shortName": "Belgian"
601
+ },
602
+ {
603
+ "name": "bistro",
604
+ "pluralName": "bistros",
605
+ "shortName": "bistro"
606
+ },
607
+ {
608
+ "name": "Brazilian restaurant",
609
+ "pluralName": "Brazilian restaurants",
610
+ "shortName": "Brazilian",
611
+ "categories": [
612
+ {
613
+ "name": "Acai house",
614
+ "pluralName": "Acai houses",
615
+ "shortName": "Acai"
616
+ },
617
+ {
618
+ "name": "Baiano restaurant",
619
+ "pluralName": "Baiano restaurants",
620
+ "shortName": "Baiano"
621
+ },
622
+ {
623
+ "name": "Central Brazilian restaurant",
624
+ "pluralName": "Central Brazilian restaurants",
625
+ "shortName": "Central Brazilian"
626
+ },
627
+ {
628
+ "name": "churrascaria",
629
+ "pluralName": "churrascarias",
630
+ "shortName": "churrascaria"
631
+ },
632
+ {
633
+ "name": "empada house",
634
+ "pluralName": "empada houses",
635
+ "shortName": "empadas"
636
+ },
637
+ {
638
+ "name": "Goiano restaurant",
639
+ "pluralName": "Goiano restaurants",
640
+ "shortName": "Goiano"
641
+ },
642
+ {
643
+ "name": "Mineiro restaurant",
644
+ "pluralName": "Mineiro restaurants",
645
+ "shortName": "Mineiro"
646
+ },
647
+ {
648
+ "name": "Northeastern Brazilian restaurant",
649
+ "pluralName": "Northeastern Brazilian restaurants",
650
+ "shortName": "Northeastern Brazilian"
651
+ },
652
+ {
653
+ "name": "Northern Brazilian restaurant",
654
+ "pluralName": "Northern Brazilian restaurants",
655
+ "shortName": "Northern Brazilian"
656
+ },
657
+ {
658
+ "name": "pastelaria",
659
+ "pluralName": "pastelarias",
660
+ "shortName": "pastelaria"
661
+ },
662
+ {
663
+ "name": "Southeastern Brazilian restaurant",
664
+ "pluralName": "Southeastern Brazilian restaurants",
665
+ "shortName": "Southeastern Brazilian"
666
+ },
667
+ {
668
+ "name": "Southern Brazilian restaurant",
669
+ "pluralName": "Southern Brazilian restaurants",
670
+ "shortName": "Southern Brazilian"
671
+ },
672
+ {
673
+ "name": "tapiocaria",
674
+ "pluralName": "tapiocarias",
675
+ "shortName": "tapiocaria"
676
+ }
677
+ ]
678
+ },
679
+ {
680
+ "name": "breakfast spot",
681
+ "pluralName": "breakfast spots",
682
+ "shortName": "breakfast"
683
+ },
684
+ {
685
+ "name": "bubble tea shop",
686
+ "pluralName": "bubble tea shops",
687
+ "shortName": "bubble tea"
688
+ },
689
+ {
690
+ "name": "buffet",
691
+ "pluralName": "buffets",
692
+ "shortName": "buffet"
693
+ },
694
+ {
695
+ "name": "burger joint",
696
+ "pluralName": "burger joints",
697
+ "shortName": "burgers"
698
+ },
699
+ {
700
+ "name": "burrito place",
701
+ "pluralName": "burrito places",
702
+ "shortName": "burritos"
703
+ },
704
+ {
705
+ "name": "cafeteria",
706
+ "pluralName": "cafeterias",
707
+ "shortName": "cafeteria"
708
+ },
709
+ {
710
+ "name": "café",
711
+ "pluralName": "cafés",
712
+ "shortName": "café"
713
+ },
714
+ {
715
+ "name": "Cajun / Creole restaurant",
716
+ "pluralName": "Cajun / Creole restaurants",
717
+ "shortName": "Cajun / Creole"
718
+ },
719
+ {
720
+ "name": "Cambodian restaurant",
721
+ "pluralName": "Cambodian restaurants",
722
+ "shortName": "Cambodian"
723
+ },
724
+ {
725
+ "name": "Caribbean restaurant",
726
+ "pluralName": "Caribbean restaurants",
727
+ "shortName": "Caribbean"
728
+ },
729
+ {
730
+ "name": "Caucasian restaurant",
731
+ "pluralName": "Caucasian restaurants",
732
+ "shortName": "Caucasian"
733
+ },
734
+ {
735
+ "name": "Chinese restaurant",
736
+ "pluralName": "Chinese restaurants",
737
+ "shortName": "Chinese",
738
+ "categories": [
739
+ {
740
+ "name": "Anhui restaurant",
741
+ "pluralName": "Anhui restaurants",
742
+ "shortName": "Anhui"
743
+ },
744
+ {
745
+ "name": "Beijing restaurant",
746
+ "pluralName": "Beijing restaurants",
747
+ "shortName": "Beijing"
748
+ },
749
+ {
750
+ "name": "Cantonese restaurant",
751
+ "pluralName": "Cantonese restaurants",
752
+ "shortName": "Cantonese"
753
+ },
754
+ {
755
+ "name": "Chinese aristocrat restaurant",
756
+ "pluralName": "Chinese aristocrat restaurants",
757
+ "shortName": "aristocrat"
758
+ },
759
+ {
760
+ "name": "Chinese breakfast place",
761
+ "pluralName": "Chinese breakfast places",
762
+ "shortName": "Chinese breakfast"
763
+ },
764
+ {
765
+ "name": "Dongbei restaurant",
766
+ "pluralName": "Dongbei restaurants",
767
+ "shortName": "Dongbei"
768
+ },
769
+ {
770
+ "name": "Fujian restaurant",
771
+ "pluralName": "Fujian restaurants",
772
+ "shortName": "Fujian"
773
+ },
774
+ {
775
+ "name": "Guizhou restaurant",
776
+ "pluralName": "Guizhou restaurants",
777
+ "shortName": "Guizhou"
778
+ },
779
+ {
780
+ "name": "Hainan restaurant",
781
+ "pluralName": "Hainan restaurants",
782
+ "shortName": "Hainan"
783
+ },
784
+ {
785
+ "name": "Hakka restaurant",
786
+ "pluralName": "Hakka restaurants",
787
+ "shortName": "Hakka"
788
+ },
789
+ {
790
+ "name": "Henan restaurant",
791
+ "pluralName": "Henan restaurants",
792
+ "shortName": "Henan"
793
+ },
794
+ {
795
+ "name": "Hong Kong restaurant",
796
+ "pluralName": "Hong Kong restaurants",
797
+ "shortName": "Hong Kong"
798
+ },
799
+ {
800
+ "name": "Huaiyang restaurant",
801
+ "pluralName": "Huaiyang restaurants",
802
+ "shortName": "Huaiyang"
803
+ },
804
+ {
805
+ "name": "Hubei restaurant",
806
+ "pluralName": "Hubei restaurants",
807
+ "shortName": "Hubei"
808
+ },
809
+ {
810
+ "name": "Hunan restaurant",
811
+ "pluralName": "Hunan restaurants",
812
+ "shortName": "Hunan"
813
+ },
814
+ {
815
+ "name": "Imperial restaurant",
816
+ "pluralName": "Imperial restaurants",
817
+ "shortName": "Imperial"
818
+ },
819
+ {
820
+ "name": "Jiangsu restaurant",
821
+ "pluralName": "Jiangsu restaurants",
822
+ "shortName": "Jiangsu"
823
+ },
824
+ {
825
+ "name": "Jiangxi restaurant",
826
+ "pluralName": "Jiangxi restaurants",
827
+ "shortName": "Jiangxi"
828
+ },
829
+ {
830
+ "name": "Macanese restaurant",
831
+ "pluralName": "Macanese restaurants",
832
+ "shortName": "Macanese"
833
+ },
834
+ {
835
+ "name": "Manchu restaurant",
836
+ "pluralName": "Manchu restaurants",
837
+ "shortName": "Manchu"
838
+ },
839
+ {
840
+ "name": "Peking duck restaurant",
841
+ "pluralName": "Peking duck restaurants",
842
+ "shortName": "Peking duck"
843
+ },
844
+ {
845
+ "name": "Shaanxi restaurant",
846
+ "pluralName": "Shaanxi restaurants",
847
+ "shortName": "Shaanxi"
848
+ },
849
+ {
850
+ "name": "Shandong restaurant",
851
+ "pluralName": "Shandong restaurants",
852
+ "shortName": "Shandong"
853
+ },
854
+ {
855
+ "name": "Shanghai restaurant",
856
+ "pluralName": "Shanghai restaurants",
857
+ "shortName": "Shanghai"
858
+ },
859
+ {
860
+ "name": "Shanxi restaurant",
861
+ "pluralName": "Shanxi restaurants",
862
+ "shortName": "Shanxi"
863
+ },
864
+ {
865
+ "name": "Szechuan restaurant",
866
+ "pluralName": "Szechuan restaurants",
867
+ "shortName": "Szechuan"
868
+ },
869
+ {
870
+ "name": "Taiwanese restaurant",
871
+ "pluralName": "Taiwanese restaurants",
872
+ "shortName": "Taiwanese"
873
+ },
874
+ {
875
+ "name": "Tianjin restaurant",
876
+ "pluralName": "Tianjin restaurants",
877
+ "shortName": "Tianjin"
878
+ },
879
+ {
880
+ "name": "Xinjiang restaurant",
881
+ "pluralName": "Xinjiang restaurants",
882
+ "shortName": "Xinjiang"
883
+ },
884
+ {
885
+ "name": "Yunnan restaurant",
886
+ "pluralName": "Yunnan restaurants",
887
+ "shortName": "Yunnan"
888
+ },
889
+ {
890
+ "name": "Zhejiang restaurant",
891
+ "pluralName": "Zhejiang restaurants",
892
+ "shortName": "Zhejiang"
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "name": "coffee shop",
898
+ "pluralName": "coffee shops",
899
+ "shortName": "coffee shop"
900
+ },
901
+ {
902
+ "name": "comfort food restaurant",
903
+ "pluralName": "comfort food restaurants",
904
+ "shortName": "comfort food"
905
+ },
906
+ {
907
+ "name": "creperie",
908
+ "pluralName": "creperies",
909
+ "shortName": "creperie"
910
+ },
911
+ {
912
+ "name": "Cuban restaurant",
913
+ "pluralName": "Cuban restaurants",
914
+ "shortName": "Cuban"
915
+ },
916
+ {
917
+ "name": "cupcake shop",
918
+ "pluralName": "cupcake shops",
919
+ "shortName": "cupcakes"
920
+ },
921
+ {
922
+ "name": "Czech restaurant",
923
+ "pluralName": "Czech restaurants",
924
+ "shortName": "Czech"
925
+ },
926
+ {
927
+ "name": "deli / bodega",
928
+ "pluralName": "delis / bodegas",
929
+ "shortName": "deli / bodega"
930
+ },
931
+ {
932
+ "name": "dessert shop",
933
+ "pluralName": "dessert shops",
934
+ "shortName": "desserts"
935
+ },
936
+ {
937
+ "name": "dim sum restaurant",
938
+ "pluralName": "dim sum restaurants",
939
+ "shortName": "dim sum"
940
+ },
941
+ {
942
+ "name": "diner",
943
+ "pluralName": "diners",
944
+ "shortName": "diner"
945
+ },
946
+ {
947
+ "name": "distillery",
948
+ "pluralName": "distillery",
949
+ "shortName": "distillery"
950
+ },
951
+ {
952
+ "name": "donut shop",
953
+ "pluralName": "donut shops",
954
+ "shortName": "donuts"
955
+ },
956
+ {
957
+ "name": "dumpling restaurant",
958
+ "pluralName": "dumpling restaurants",
959
+ "shortName": "dumplings"
960
+ },
961
+ {
962
+ "name": "Eastern European restaurant",
963
+ "pluralName": "Eastern European restaurants",
964
+ "shortName": "Eastern European"
965
+ },
966
+ {
967
+ "name": "English restaurant",
968
+ "pluralName": "English restaurants",
969
+ "shortName": "English"
970
+ },
971
+ {
972
+ "name": "Ethiopian restaurant",
973
+ "pluralName": "Ethiopian restaurants",
974
+ "shortName": "Ethiopian"
975
+ },
976
+ {
977
+ "name": "falafel restaurant",
978
+ "pluralName": "falafel restaurants",
979
+ "shortName": "falafel"
980
+ },
981
+ {
982
+ "name": "fast food restaurant",
983
+ "pluralName": "fast food restaurants",
984
+ "shortName": "fast food"
985
+ },
986
+ {
987
+ "name": "Filipino restaurant",
988
+ "pluralName": "Filipino restaurants",
989
+ "shortName": "Filipino"
990
+ },
991
+ {
992
+ "name": "fish & chip shop",
993
+ "pluralName": "fish & chip shops",
994
+ "shortName": "fish & chips"
995
+ },
996
+ {
997
+ "name": "fondue restaurant",
998
+ "pluralName": "fondue restaurants",
999
+ "shortName": "fondue"
1000
+ },
1001
+ {
1002
+ "name": "food truck",
1003
+ "pluralName": "food trucks",
1004
+ "shortName": "food truck"
1005
+ },
1006
+ {
1007
+ "name": "French restaurant",
1008
+ "pluralName": "French restaurants",
1009
+ "shortName": "French"
1010
+ },
1011
+ {
1012
+ "name": "fried chicken joint",
1013
+ "pluralName": "fried chicken joints",
1014
+ "shortName": "fried chicken"
1015
+ },
1016
+ {
1017
+ "name": "gastropub",
1018
+ "pluralName": "gastropubs",
1019
+ "shortName": "gastropub"
1020
+ },
1021
+ {
1022
+ "name": "German restaurant",
1023
+ "pluralName": "German restaurants",
1024
+ "shortName": "German"
1025
+ },
1026
+ {
1027
+ "name": "gluten-free restaurant",
1028
+ "pluralName": "gluten-free restaurants",
1029
+ "shortName": "gluten-free"
1030
+ },
1031
+ {
1032
+ "name": "Greek restaurant",
1033
+ "pluralName": "Greek restaurants",
1034
+ "shortName": "Greek",
1035
+ "categories": [
1036
+ {
1037
+ "name": "bougatsa shop",
1038
+ "pluralName": "bougatsa shop",
1039
+ "shortName": "bougatsa shops"
1040
+ },
1041
+ {
1042
+ "name": "Cretan restaurant",
1043
+ "pluralName": "Cretan restaurant",
1044
+ "shortName": "Cretan restaurants"
1045
+ },
1046
+ {
1047
+ "name": "fish taverna",
1048
+ "pluralName": "fish taverna",
1049
+ "shortName": "fish tavernas"
1050
+ },
1051
+ {
1052
+ "name": "grilled meat restaurant",
1053
+ "pluralName": "grilled meat restaurant",
1054
+ "shortName": "grilled meat restaurants"
1055
+ },
1056
+ {
1057
+ "name": "kafenio",
1058
+ "pluralName": "kafenio",
1059
+ "shortName": "kafenia"
1060
+ },
1061
+ {
1062
+ "name": "magirio",
1063
+ "pluralName": "magiria",
1064
+ "shortName": "magirio"
1065
+ },
1066
+ {
1067
+ "name": "meze restaurant",
1068
+ "pluralName": "meze restaurant",
1069
+ "shortName": "meze restaurants"
1070
+ },
1071
+ {
1072
+ "name": "modern Greek restaurant",
1073
+ "pluralName": "modern Greek restaurant",
1074
+ "shortName": "modern Greek restaurants"
1075
+ },
1076
+ {
1077
+ "name": "ouzeri",
1078
+ "pluralName": "ouzeri",
1079
+ "shortName": "ouzeri"
1080
+ },
1081
+ {
1082
+ "name": "patsa restaurant",
1083
+ "pluralName": "patsa restaurant",
1084
+ "shortName": "patsa restaurants"
1085
+ },
1086
+ {
1087
+ "name": "taverna",
1088
+ "pluralName": "taverna",
1089
+ "shortName": "tavernas"
1090
+ },
1091
+ {
1092
+ "name": "tsipouro restaurant",
1093
+ "pluralName": "tsipouro restaurant",
1094
+ "shortName": "tsipouro restaurants"
1095
+ }
1096
+ ]
1097
+ },
1098
+ {
1099
+ "name": "halal restaurant",
1100
+ "pluralName": "halal restaurants",
1101
+ "shortName": "halal"
1102
+ },
1103
+ {
1104
+ "name": "Hawaiian restaurant",
1105
+ "pluralName": "Hawaiian restaurants",
1106
+ "shortName": "Hawaiian"
1107
+ },
1108
+ {
1109
+ "name": "Himalayan restaurant",
1110
+ "pluralName": "Himalayan restaurants",
1111
+ "shortName": "Himalayan"
1112
+ },
1113
+ {
1114
+ "name": "hot dog joint",
1115
+ "pluralName": "hot dog joints",
1116
+ "shortName": "hot dogs"
1117
+ },
1118
+ {
1119
+ "name": "hotpot restaurant",
1120
+ "pluralName": "hotpot restaurants",
1121
+ "shortName": "hotpot"
1122
+ },
1123
+ {
1124
+ "name": "Hungarian restaurant",
1125
+ "pluralName": "Hungarian restaurants",
1126
+ "shortName": "Hungarian"
1127
+ },
1128
+ {
1129
+ "name": "ice cream shop",
1130
+ "pluralName": "ice cream shops",
1131
+ "shortName": "ice cream"
1132
+ },
1133
+ {
1134
+ "name": "Indian restaurant",
1135
+ "pluralName": "Indian restaurants",
1136
+ "shortName": "Indian",
1137
+ "categories": [
1138
+ {
1139
+ "name": "Andhra restaurant",
1140
+ "pluralName": "Andhra restaurants",
1141
+ "shortName": "Andhra"
1142
+ },
1143
+ {
1144
+ "name": "Awadhi restaurant",
1145
+ "pluralName": "Awadhi restaurants",
1146
+ "shortName": "Awadhi"
1147
+ },
1148
+ {
1149
+ "name": "Bengali restaurant",
1150
+ "pluralName": "Bengali restaurants",
1151
+ "shortName": "Bengali"
1152
+ },
1153
+ {
1154
+ "name": "chaat place",
1155
+ "pluralName": "chaat places",
1156
+ "shortName": "chaat"
1157
+ },
1158
+ {
1159
+ "name": "Chettinad restaurant",
1160
+ "pluralName": "Chettinad restaurants",
1161
+ "shortName": "Chettinad"
1162
+ },
1163
+ {
1164
+ "name": "dhaba",
1165
+ "pluralName": "dhabas",
1166
+ "shortName": "dhaba"
1167
+ },
1168
+ {
1169
+ "name": "dosa place",
1170
+ "pluralName": "dosa places",
1171
+ "shortName": "dosa"
1172
+ },
1173
+ {
1174
+ "name": "Goan restaurant",
1175
+ "pluralName": "Goan restaurants",
1176
+ "shortName": "Goan"
1177
+ },
1178
+ {
1179
+ "name": "Gujarati restaurant",
1180
+ "pluralName": "Gujarati restaurants",
1181
+ "shortName": "Gujarati"
1182
+ },
1183
+ {
1184
+ "name": "Hyderabadi restaurant",
1185
+ "pluralName": "Hyderabadi restaurants",
1186
+ "shortName": "Hyderabadi"
1187
+ },
1188
+ {
1189
+ "name": "Indian Chinese restaurant",
1190
+ "pluralName": "Indian Chinese restaurants",
1191
+ "shortName": "Indian Chinese"
1192
+ },
1193
+ {
1194
+ "name": "Irani cafe",
1195
+ "pluralName": "Irani cafes",
1196
+ "shortName": "Irani"
1197
+ },
1198
+ {
1199
+ "name": "Jain restaurant",
1200
+ "pluralName": "Jain restaurants",
1201
+ "shortName": "Jain"
1202
+ },
1203
+ {
1204
+ "name": "Karnataka restaurant",
1205
+ "pluralName": "Karnataka restaurants",
1206
+ "shortName": "Karnataka"
1207
+ },
1208
+ {
1209
+ "name": "Kerala restaurant",
1210
+ "pluralName": "Kerala restaurants",
1211
+ "shortName": "Kerala"
1212
+ },
1213
+ {
1214
+ "name": "Maharashtrian restaurant",
1215
+ "pluralName": "Maharashtrian restaurants",
1216
+ "shortName": "Maharashtrian"
1217
+ },
1218
+ {
1219
+ "name": "Mughlai restaurant",
1220
+ "pluralName": "Mughlai restaurants",
1221
+ "shortName": "Mughlai"
1222
+ },
1223
+ {
1224
+ "name": "multicuisine Indian restaurant",
1225
+ "pluralName": "multicuisine Indian restaurants",
1226
+ "shortName": "multicuisine Indian"
1227
+ },
1228
+ {
1229
+ "name": "North Indian restaurant",
1230
+ "pluralName": "North Indian restaurants",
1231
+ "shortName": "North Indian"
1232
+ },
1233
+ {
1234
+ "name": "Northeast Indian restaurant",
1235
+ "pluralName": "Northeast Indian restaurants",
1236
+ "shortName": "Northeast Indian"
1237
+ },
1238
+ {
1239
+ "name": "Parsi restaurant",
1240
+ "pluralName": "Parsi restaurants",
1241
+ "shortName": "Parsi"
1242
+ },
1243
+ {
1244
+ "name": "Punjabi restaurant",
1245
+ "pluralName": "Punjabi restaurants",
1246
+ "shortName": "Punjabi"
1247
+ },
1248
+ {
1249
+ "name": "Rajasthani restaurant",
1250
+ "pluralName": "Rajasthani restaurants",
1251
+ "shortName": "Rajasthani"
1252
+ },
1253
+ {
1254
+ "name": "South Indian restaurant",
1255
+ "pluralName": "South Indian restaurants",
1256
+ "shortName": "South Indian"
1257
+ },
1258
+ {
1259
+ "name": "sweet shop",
1260
+ "pluralName": "sweet shops",
1261
+ "shortName": "sweets"
1262
+ },
1263
+ {
1264
+ "name": "udupi restaurant",
1265
+ "pluralName": "udupi restaurants",
1266
+ "shortName": "udupi"
1267
+ }
1268
+ ]
1269
+ },
1270
+ {
1271
+ "name": "Indonesian restaurant",
1272
+ "pluralName": "Indonesian restaurants",
1273
+ "shortName": "Indonesian",
1274
+ "categories": [
1275
+ {
1276
+ "name": "Acehnese restaurant",
1277
+ "pluralName": "Acehnese restaurants",
1278
+ "shortName": "Acehnese"
1279
+ },
1280
+ {
1281
+ "name": "Balinese restaurant",
1282
+ "pluralName": "Balinese restaurants",
1283
+ "shortName": "Balinese"
1284
+ },
1285
+ {
1286
+ "name": "Betawinese restaurant",
1287
+ "pluralName": "Betawinese restaurants",
1288
+ "shortName": "Betawinese"
1289
+ },
1290
+ {
1291
+ "name": "Javanese restaurant",
1292
+ "pluralName": "Javanese restaurants",
1293
+ "shortName": "Javanese"
1294
+ },
1295
+ {
1296
+ "name": "Manadonese restaurant",
1297
+ "pluralName": "Manadonese restaurants",
1298
+ "shortName": "Manadonese"
1299
+ },
1300
+ {
1301
+ "name": "meatball place",
1302
+ "pluralName": "meatball places",
1303
+ "shortName": "meatball place"
1304
+ },
1305
+ {
1306
+ "name": "Padangnese restaurant",
1307
+ "pluralName": "Padangnese restaurants",
1308
+ "shortName": "Padangnese"
1309
+ },
1310
+ {
1311
+ "name": "Sundanese restaurant",
1312
+ "pluralName": "Sundanese restaurants",
1313
+ "shortName": "Sundanese"
1314
+ }
1315
+ ]
1316
+ },
1317
+ {
1318
+ "name": "Irish pub",
1319
+ "pluralName": "Irish pubs",
1320
+ "shortName": "Irish"
1321
+ },
1322
+ {
1323
+ "name": "Italian restaurant",
1324
+ "pluralName": "Italian restaurants",
1325
+ "shortName": "Italian"
1326
+ },
1327
+ {
1328
+ "name": "Japanese restaurant",
1329
+ "pluralName": "Japanese restaurants",
1330
+ "shortName": "Japanese"
1331
+ },
1332
+ {
1333
+ "name": "Jewish restaurant",
1334
+ "pluralName": "Jewish restaurants",
1335
+ "shortName": "Jewish"
1336
+ },
1337
+ {
1338
+ "name": "juice bar",
1339
+ "pluralName": "juice bars",
1340
+ "shortName": "juice bar"
1341
+ },
1342
+ {
1343
+ "name": "Korean restaurant",
1344
+ "pluralName": "Korean restaurants",
1345
+ "shortName": "Korean"
1346
+ },
1347
+ {
1348
+ "name": "kosher restaurant",
1349
+ "pluralName": "kosher restaurants",
1350
+ "shortName": "kosher"
1351
+ },
1352
+ {
1353
+ "name": "Latin American restaurant",
1354
+ "pluralName": "Latin American restaurants",
1355
+ "shortName": "Latin American",
1356
+ "categories": [
1357
+ {
1358
+ "name": "empanada restaurant",
1359
+ "pluralName": "empanada restaurants",
1360
+ "shortName": "empanada"
1361
+ }
1362
+ ]
1363
+ },
1364
+ {
1365
+ "name": "mac & cheese joint",
1366
+ "pluralName": "mac & cheese joints",
1367
+ "shortName": "mac & cheese"
1368
+ },
1369
+ {
1370
+ "name": "Malaysian restaurant",
1371
+ "pluralName": "Malaysian restaurants",
1372
+ "shortName": "Malaysian"
1373
+ },
1374
+ {
1375
+ "name": "Mediterranean restaurant",
1376
+ "pluralName": "Mediterranean restaurants",
1377
+ "shortName": "Mediterranean"
1378
+ },
1379
+ {
1380
+ "name": "Mexican restaurant",
1381
+ "pluralName": "Mexican restaurants",
1382
+ "shortName": "Mexican"
1383
+ },
1384
+ {
1385
+ "name": "Middle Eastern restaurant",
1386
+ "pluralName": "Middle Eastern restaurants",
1387
+ "shortName": "Middle Eastern"
1388
+ },
1389
+ {
1390
+ "name": "modern European restaurant",
1391
+ "pluralName": "modern European restaurants",
1392
+ "shortName": "modern European"
1393
+ },
1394
+ {
1395
+ "name": "molecular gastronomy restaurant",
1396
+ "pluralName": "molecular gastronomy restaurants",
1397
+ "shortName": "molecular gastronomy"
1398
+ },
1399
+ {
1400
+ "name": "Mongolian restaurant",
1401
+ "pluralName": "Mongolian restaurants",
1402
+ "shortName": "Mongolian"
1403
+ },
1404
+ {
1405
+ "name": "Moroccan restaurant",
1406
+ "pluralName": "Moroccan restaurants",
1407
+ "shortName": "Moroccan"
1408
+ },
1409
+ {
1410
+ "name": "new American restaurant",
1411
+ "pluralName": "new American restaurants",
1412
+ "shortName": "new American"
1413
+ },
1414
+ {
1415
+ "name": "Pakistani restaurant",
1416
+ "pluralName": "Pakistani restaurants",
1417
+ "shortName": "Pakistani"
1418
+ },
1419
+ {
1420
+ "name": "Persian restaurant",
1421
+ "pluralName": "Persian restaurants",
1422
+ "shortName": "Persian"
1423
+ },
1424
+ {
1425
+ "name": "Peruvian restaurant",
1426
+ "pluralName": "Peruvian restaurants",
1427
+ "shortName": "Peruvian"
1428
+ },
1429
+ {
1430
+ "name": "pie shop",
1431
+ "pluralName": "pie shops",
1432
+ "shortName": "pie shop"
1433
+ },
1434
+ {
1435
+ "name": "pizza place",
1436
+ "pluralName": "pizza places",
1437
+ "shortName": "pizza"
1438
+ },
1439
+ {
1440
+ "name": "Polish restaurant",
1441
+ "pluralName": "Polish restaurants",
1442
+ "shortName": "Polish"
1443
+ },
1444
+ {
1445
+ "name": "Portuguese restaurant",
1446
+ "pluralName": "Portuguese restaurants",
1447
+ "shortName": "Portuguese"
1448
+ },
1449
+ {
1450
+ "name": "ramen / noodle house",
1451
+ "pluralName": "ramen / noodle house",
1452
+ "shortName": "ramen / noodles"
1453
+ },
1454
+ {
1455
+ "name": "restaurant",
1456
+ "pluralName": "restaurants",
1457
+ "shortName": "restaurant"
1458
+ },
1459
+ {
1460
+ "name": "Romanian restaurant",
1461
+ "pluralName": "Romanian restaurants",
1462
+ "shortName": "Romanian"
1463
+ },
1464
+ {
1465
+ "name": "Russian restaurant",
1466
+ "pluralName": "Russian restaurants",
1467
+ "shortName": "Russian",
1468
+ "categories": [
1469
+ {
1470
+ "name": "blini house",
1471
+ "pluralName": "blini houses",
1472
+ "shortName": "blini"
1473
+ },
1474
+ {
1475
+ "name": "pelmeni house",
1476
+ "pluralName": "pelmeni houses",
1477
+ "shortName": "pelmeni"
1478
+ }
1479
+ ]
1480
+ },
1481
+ {
1482
+ "name": "salad place",
1483
+ "pluralName": "salad shop",
1484
+ "shortName": "salad"
1485
+ },
1486
+ {
1487
+ "name": "sandwich place",
1488
+ "pluralName": "sandwich places",
1489
+ "shortName": "sandwiches"
1490
+ },
1491
+ {
1492
+ "name": "Scandinavian restaurant",
1493
+ "pluralName": "Scandinavian restaurants",
1494
+ "shortName": "Scandinavian"
1495
+ },
1496
+ {
1497
+ "name": "seafood restaurant",
1498
+ "pluralName": "seafood restaurants",
1499
+ "shortName": "seafood"
1500
+ },
1501
+ {
1502
+ "name": "snack place",
1503
+ "pluralName": "snack places",
1504
+ "shortName": "snacks"
1505
+ },
1506
+ {
1507
+ "name": "soup place",
1508
+ "pluralName": "soup places",
1509
+ "shortName": "soup"
1510
+ },
1511
+ {
1512
+ "name": "South American restaurant",
1513
+ "pluralName": "South American restaurants",
1514
+ "shortName": "South American"
1515
+ },
1516
+ {
1517
+ "name": "Southern / soul food restaurant",
1518
+ "pluralName": "Southern / soul food restaurants",
1519
+ "shortName": "Southern / soul"
1520
+ },
1521
+ {
1522
+ "name": "souvlaki shop",
1523
+ "pluralName": "souvlaki shops",
1524
+ "shortName": "souvlaki"
1525
+ },
1526
+ {
1527
+ "name": "Spanish restaurant",
1528
+ "pluralName": "Spanish restaurants",
1529
+ "shortName": "Spanish",
1530
+ "categories": [
1531
+ {
1532
+ "name": "paella restaurant",
1533
+ "pluralName": "paella restaurants",
1534
+ "shortName": "paella"
1535
+ }
1536
+ ]
1537
+ },
1538
+ {
1539
+ "name": "Sri Lankan restaurant",
1540
+ "pluralName": "Sri Lankan restaurants",
1541
+ "shortName": "Sri Lankan"
1542
+ },
1543
+ {
1544
+ "name": "steakhouse",
1545
+ "pluralName": "steakhouses",
1546
+ "shortName": "steakhouse"
1547
+ },
1548
+ {
1549
+ "name": "sushi restaurant",
1550
+ "pluralName": "sushi restaurants",
1551
+ "shortName": "sushi"
1552
+ },
1553
+ {
1554
+ "name": "Swiss restaurant",
1555
+ "pluralName": "Swiss restaurants",
1556
+ "shortName": "Swiss"
1557
+ },
1558
+ {
1559
+ "name": "taco place",
1560
+ "pluralName": "taco places",
1561
+ "shortName": "tacos"
1562
+ },
1563
+ {
1564
+ "name": "tapas restaurant",
1565
+ "pluralName": "tapas restaurants",
1566
+ "shortName": "tapas"
1567
+ },
1568
+ {
1569
+ "name": "Tatar restaurant",
1570
+ "pluralName": "Tatar restaurants",
1571
+ "shortName": "Tatar"
1572
+ },
1573
+ {
1574
+ "name": "tea room",
1575
+ "pluralName": "tea rooms",
1576
+ "shortName": "tea room"
1577
+ },
1578
+ {
1579
+ "name": "Thai restaurant",
1580
+ "pluralName": "Thai restaurants",
1581
+ "shortName": "Thai"
1582
+ },
1583
+ {
1584
+ "name": "Tibetan restaurant",
1585
+ "pluralName": "Tibetan restaurants",
1586
+ "shortName": "Tibetan"
1587
+ },
1588
+ {
1589
+ "name": "Turkish restaurant",
1590
+ "pluralName": "Turkish restaurants",
1591
+ "shortName": "Turkish",
1592
+ "categories": [
1593
+ {
1594
+ "name": "borek place",
1595
+ "pluralName": "borek places",
1596
+ "shortName": "borek"
1597
+ },
1598
+ {
1599
+ "name": "cigkofte place",
1600
+ "pluralName": "cigkofte places",
1601
+ "shortName": "cigkofte"
1602
+ },
1603
+ {
1604
+ "name": "doner restaurant",
1605
+ "pluralName": "doner restaurants",
1606
+ "shortName": "doner"
1607
+ },
1608
+ {
1609
+ "name": "gozleme place",
1610
+ "pluralName": "gozleme places",
1611
+ "shortName": "gozleme"
1612
+ },
1613
+ {
1614
+ "name": "home cooking restaurant",
1615
+ "pluralName": "home cooking restaurants",
1616
+ "shortName": "home cooking"
1617
+ },
1618
+ {
1619
+ "name": "kebab restaurant",
1620
+ "pluralName": "kebab restaurants",
1621
+ "shortName": "kebab"
1622
+ },
1623
+ {
1624
+ "name": "kofte place",
1625
+ "pluralName": "kofte places",
1626
+ "shortName": "kofte"
1627
+ },
1628
+ {
1629
+ "name": "kokoreç restaurant",
1630
+ "pluralName": "kokoreç restaurants",
1631
+ "shortName": "kokoreç"
1632
+ },
1633
+ {
1634
+ "name": "manti place",
1635
+ "pluralName": "manti places",
1636
+ "shortName": "manti"
1637
+ },
1638
+ {
1639
+ "name": "meyhane",
1640
+ "pluralName": "meyhanes",
1641
+ "shortName": "meyhane"
1642
+ },
1643
+ {
1644
+ "name": "pide place",
1645
+ "pluralName": "pide places",
1646
+ "shortName": "pide"
1647
+ }
1648
+ ]
1649
+ },
1650
+ {
1651
+ "name": "Ukrainian restaurant",
1652
+ "pluralName": "Ukrainian restaurants",
1653
+ "shortName": "Ukrainian",
1654
+ "categories": [
1655
+ {
1656
+ "name": "Varenyky restaurant",
1657
+ "pluralName": "Varenyky restaurants",
1658
+ "shortName": "Varenyky"
1659
+ },
1660
+ {
1661
+ "name": "West-Ukrainian restaurant",
1662
+ "pluralName": "West-Ukrainian restaurants",
1663
+ "shortName": "West-Ukrainian"
1664
+ }
1665
+ ]
1666
+ },
1667
+ {
1668
+ "name": "vegetarian / vegan restaurant",
1669
+ "pluralName": "vegetarian / vegan restaurants",
1670
+ "shortName": "vegetarian / vegan"
1671
+ },
1672
+ {
1673
+ "name": "Vietnamese restaurant",
1674
+ "pluralName": "Vietnamese restaurants",
1675
+ "shortName": "Vietnamese"
1676
+ },
1677
+ {
1678
+ "name": "winery",
1679
+ "pluralName": "wineries",
1680
+ "shortName": "winery"
1681
+ },
1682
+ {
1683
+ "name": "wings joint",
1684
+ "pluralName": "wings joints",
1685
+ "shortName": "wings"
1686
+ },
1687
+ {
1688
+ "name": "frozen yogurt",
1689
+ "pluralName": "yogurt",
1690
+ "shortName": "frozen yogurt"
1691
+ }
1692
+ ]
1693
+ },
1694
+ {
1695
+ "name": "nightlife spot",
1696
+ "pluralName": "nightlife spots",
1697
+ "shortName": "nightlife",
1698
+ "categories": [
1699
+ {
1700
+ "name": "bar",
1701
+ "pluralName": "bars",
1702
+ "shortName": "bar"
1703
+ },
1704
+ {
1705
+ "name": "beach bar",
1706
+ "pluralName": "beach bars",
1707
+ "shortName": "beach bar"
1708
+ },
1709
+ {
1710
+ "name": "beer garden",
1711
+ "pluralName": "beer gardens",
1712
+ "shortName": "beer garden"
1713
+ },
1714
+ {
1715
+ "name": "brewery",
1716
+ "pluralName": "breweries",
1717
+ "shortName": "brewery"
1718
+ },
1719
+ {
1720
+ "name": "Champagne bar",
1721
+ "pluralName": "Champagne bars",
1722
+ "shortName": "Champagne bar"
1723
+ },
1724
+ {
1725
+ "name": "cocktail bar",
1726
+ "pluralName": "cocktail bars",
1727
+ "shortName": "cocktail"
1728
+ },
1729
+ {
1730
+ "name": "dive bar",
1731
+ "pluralName": "dive bars",
1732
+ "shortName": "dive bar"
1733
+ },
1734
+ {
1735
+ "name": "gay bar",
1736
+ "pluralName": "gay bars",
1737
+ "shortName": "gay bar"
1738
+ },
1739
+ {
1740
+ "name": "hookah bar",
1741
+ "pluralName": "hookah bars",
1742
+ "shortName": "hookah bar"
1743
+ },
1744
+ {
1745
+ "name": "hotel bar",
1746
+ "pluralName": "hotel bars",
1747
+ "shortName": "hotel bar"
1748
+ },
1749
+ {
1750
+ "name": "karaoke bar",
1751
+ "pluralName": "karaoke bars",
1752
+ "shortName": "karaoke"
1753
+ },
1754
+ {
1755
+ "name": "lounge",
1756
+ "pluralName": "lounges",
1757
+ "shortName": "lounge"
1758
+ },
1759
+ {
1760
+ "name": "night market",
1761
+ "pluralName": "night markets",
1762
+ "shortName": "night market"
1763
+ },
1764
+ {
1765
+ "name": "nightclub",
1766
+ "pluralName": "nightclubs",
1767
+ "shortName": "nightclub"
1768
+ },
1769
+ {
1770
+ "name": "other nightlife",
1771
+ "pluralName": "other nightlife",
1772
+ "shortName": "nightlife"
1773
+ },
1774
+ {
1775
+ "name": "pub",
1776
+ "pluralName": "pubs",
1777
+ "shortName": "pub"
1778
+ },
1779
+ {
1780
+ "name": "sake bar",
1781
+ "pluralName": "sake bars",
1782
+ "shortName": "sake bar"
1783
+ },
1784
+ {
1785
+ "name": "speakeasy",
1786
+ "pluralName": "speakeasies",
1787
+ "shortName": "speakeasy"
1788
+ },
1789
+ {
1790
+ "name": "sports bar",
1791
+ "pluralName": "sports bars",
1792
+ "shortName": "sports bar"
1793
+ },
1794
+ {
1795
+ "name": "strip club",
1796
+ "pluralName": "strip clubs",
1797
+ "shortName": "strip club"
1798
+ },
1799
+ {
1800
+ "name": "whisky bar",
1801
+ "pluralName": "whisky bars",
1802
+ "shortName": "whisky bar"
1803
+ },
1804
+ {
1805
+ "name": "wine bar",
1806
+ "pluralName": "wine bars",
1807
+ "shortName": "wine bar"
1808
+ }
1809
+ ]
1810
+ },
1811
+ {
1812
+ "name": "outdoors & recreation",
1813
+ "pluralName": "outdoors & recreation",
1814
+ "shortName": "outdoors & recreation",
1815
+ "categories": [
1816
+ {
1817
+ "name": "athletics & sports",
1818
+ "pluralName": "athletics & sports",
1819
+ "shortName": "athletics & sports",
1820
+ "categories": [
1821
+ {
1822
+ "name": "badminton court",
1823
+ "pluralName": "badminton courts",
1824
+ "shortName": "badminton court"
1825
+ },
1826
+ {
1827
+ "name": "baseball field",
1828
+ "pluralName": "baseball fields",
1829
+ "shortName": "baseball field"
1830
+ },
1831
+ {
1832
+ "name": "basketball court",
1833
+ "pluralName": "basketball courts",
1834
+ "shortName": "basketball court"
1835
+ },
1836
+ {
1837
+ "name": "bowling green",
1838
+ "pluralName": "bowling greens",
1839
+ "shortName": "bowling green"
1840
+ },
1841
+ {
1842
+ "name": "golf course",
1843
+ "pluralName": "golf courses",
1844
+ "shortName": "golf course"
1845
+ },
1846
+ {
1847
+ "name": "hockey field",
1848
+ "pluralName": "hockey fields",
1849
+ "shortName": "hockey field"
1850
+ },
1851
+ {
1852
+ "name": "paintball field",
1853
+ "pluralName": "paintball fields",
1854
+ "shortName": "paintball field"
1855
+ },
1856
+ {
1857
+ "name": "rugby pitch",
1858
+ "pluralName": "rugby pitches",
1859
+ "shortName": "pitch"
1860
+ },
1861
+ {
1862
+ "name": "skate park",
1863
+ "pluralName": "skate parks",
1864
+ "shortName": "skate park"
1865
+ },
1866
+ {
1867
+ "name": "skating rink",
1868
+ "pluralName": "skating rinks",
1869
+ "shortName": "skating rink"
1870
+ },
1871
+ {
1872
+ "name": "soccer field",
1873
+ "pluralName": "soccer fields",
1874
+ "shortName": "soccer field"
1875
+ },
1876
+ {
1877
+ "name": "sports club",
1878
+ "pluralName": "sports clubs",
1879
+ "shortName": "sports club"
1880
+ },
1881
+ {
1882
+ "name": "squash court",
1883
+ "pluralName": "squash courts",
1884
+ "shortName": "squash court"
1885
+ },
1886
+ {
1887
+ "name": "tennis court",
1888
+ "pluralName": "tennis courts",
1889
+ "shortName": "tennis court"
1890
+ },
1891
+ {
1892
+ "name": "volleyball court",
1893
+ "pluralName": "volleyball courts",
1894
+ "shortName": "volleyball court"
1895
+ }
1896
+ ]
1897
+ },
1898
+ {
1899
+ "name": "bath house",
1900
+ "pluralName": "bath houses",
1901
+ "shortName": "bath house"
1902
+ },
1903
+ {
1904
+ "name": "bathing area",
1905
+ "pluralName": "bathing areas",
1906
+ "shortName": "bathing area"
1907
+ },
1908
+ {
1909
+ "name": "beach",
1910
+ "pluralName": "beaches",
1911
+ "shortName": "beach",
1912
+ "categories": [
1913
+ {
1914
+ "name": "nudist beach",
1915
+ "pluralName": "nudist beaches",
1916
+ "shortName": "nudist beach"
1917
+ },
1918
+ {
1919
+ "name": "surf spot",
1920
+ "pluralName": "surf spots",
1921
+ "shortName": "surf spot"
1922
+ }
1923
+ ]
1924
+ },
1925
+ {
1926
+ "name": "botanical garden",
1927
+ "pluralName": "botanical gardens",
1928
+ "shortName": "botanical garden"
1929
+ },
1930
+ {
1931
+ "name": "bridge",
1932
+ "pluralName": "bridges",
1933
+ "shortName": "bridge"
1934
+ },
1935
+ {
1936
+ "name": "campground",
1937
+ "pluralName": "campgrounds",
1938
+ "shortName": "campground"
1939
+ },
1940
+ {
1941
+ "name": "castle",
1942
+ "pluralName": "castles",
1943
+ "shortName": "castle"
1944
+ },
1945
+ {
1946
+ "name": "cemetery",
1947
+ "pluralName": "cemeteries",
1948
+ "shortName": "cemetery"
1949
+ },
1950
+ {
1951
+ "name": "dive spot",
1952
+ "pluralName": "dive spots",
1953
+ "shortName": "dive spot"
1954
+ },
1955
+ {
1956
+ "name": "dog run",
1957
+ "pluralName": "dog runs",
1958
+ "shortName": "dog run"
1959
+ },
1960
+ {
1961
+ "name": "farm",
1962
+ "pluralName": "farms",
1963
+ "shortName": "farm"
1964
+ },
1965
+ {
1966
+ "name": "field",
1967
+ "pluralName": "fields",
1968
+ "shortName": "field"
1969
+ },
1970
+ {
1971
+ "name": "fishing spot",
1972
+ "pluralName": "fishing spots",
1973
+ "shortName": "fishing spot"
1974
+ },
1975
+ {
1976
+ "name": "forest",
1977
+ "pluralName": "forests",
1978
+ "shortName": "forest"
1979
+ },
1980
+ {
1981
+ "name": "garden",
1982
+ "pluralName": "gardens",
1983
+ "shortName": "garden"
1984
+ },
1985
+ {
1986
+ "name": "gun range",
1987
+ "pluralName": "gun ranges",
1988
+ "shortName": "gun range"
1989
+ },
1990
+ {
1991
+ "name": "harbor / marina",
1992
+ "pluralName": "harbors / marinas",
1993
+ "shortName": "harbor / marina"
1994
+ },
1995
+ {
1996
+ "name": "hot spring",
1997
+ "pluralName": "hot springs",
1998
+ "shortName": "hot spring"
1999
+ },
2000
+ {
2001
+ "name": "island",
2002
+ "pluralName": "islands",
2003
+ "shortName": "island"
2004
+ },
2005
+ {
2006
+ "name": "lake",
2007
+ "pluralName": "lakes",
2008
+ "shortName": "lake"
2009
+ },
2010
+ {
2011
+ "name": "lighthouse",
2012
+ "pluralName": "lighthouses",
2013
+ "shortName": "lighthouse"
2014
+ },
2015
+ {
2016
+ "name": "mountain",
2017
+ "pluralName": "mountains",
2018
+ "shortName": "mountain"
2019
+ },
2020
+ {
2021
+ "name": "national park",
2022
+ "pluralName": "national parks",
2023
+ "shortName": "national park"
2024
+ },
2025
+ {
2026
+ "name": "nature preserve",
2027
+ "pluralName": "nature preserves",
2028
+ "shortName": "preserve"
2029
+ },
2030
+ {
2031
+ "name": "other great outdoors",
2032
+ "pluralName": "other great outdoors",
2033
+ "shortName": "other outdoors"
2034
+ },
2035
+ {
2036
+ "name": "palace",
2037
+ "pluralName": "palaces",
2038
+ "shortName": "palace"
2039
+ },
2040
+ {
2041
+ "name": "park",
2042
+ "pluralName": "parks",
2043
+ "shortName": "park"
2044
+ },
2045
+ {
2046
+ "name": "pedestrian plaza",
2047
+ "pluralName": "pedestrian plazas",
2048
+ "shortName": "pedestrian street/plaza"
2049
+ },
2050
+ {
2051
+ "name": "playground",
2052
+ "pluralName": "playgrounds",
2053
+ "shortName": "playground"
2054
+ },
2055
+ {
2056
+ "name": "plaza",
2057
+ "pluralName": "plazas",
2058
+ "shortName": "plaza"
2059
+ },
2060
+ {
2061
+ "name": "pool",
2062
+ "pluralName": "pools",
2063
+ "shortName": "pool"
2064
+ },
2065
+ {
2066
+ "name": "rafting",
2067
+ "pluralName": "rafting spots",
2068
+ "shortName": "rafting"
2069
+ },
2070
+ {
2071
+ "name": "recreation center",
2072
+ "pluralName": "recreation centers",
2073
+ "shortName": "recreation center"
2074
+ },
2075
+ {
2076
+ "name": "river",
2077
+ "pluralName": "rivers",
2078
+ "shortName": "river"
2079
+ },
2080
+ {
2081
+ "name": "rock climbing spot",
2082
+ "pluralName": "rock climbing spots",
2083
+ "shortName": "rock climbing"
2084
+ },
2085
+ {
2086
+ "name": "scenic lookout",
2087
+ "pluralName": "scenic lookouts",
2088
+ "shortName": "scenic lookout"
2089
+ },
2090
+ {
2091
+ "name": "sculpture garden",
2092
+ "pluralName": "sculpture gardens",
2093
+ "shortName": "sculpture"
2094
+ },
2095
+ {
2096
+ "name": "ski area",
2097
+ "pluralName": "ski areas",
2098
+ "shortName": "ski area",
2099
+ "categories": [
2100
+ {
2101
+ "name": "apres ski bar",
2102
+ "pluralName": "apres ski bars",
2103
+ "shortName": "apres ski bar"
2104
+ },
2105
+ {
2106
+ "name": "ski chairlift",
2107
+ "pluralName": "ski chairlifts",
2108
+ "shortName": "chairlift"
2109
+ },
2110
+ {
2111
+ "name": "ski chalet",
2112
+ "pluralName": "ski chalets",
2113
+ "shortName": "ski chalet"
2114
+ },
2115
+ {
2116
+ "name": "ski lodge",
2117
+ "pluralName": "ski lodges",
2118
+ "shortName": "lodge"
2119
+ },
2120
+ {
2121
+ "name": "ski trail",
2122
+ "pluralName": "ski trails",
2123
+ "shortName": "trail"
2124
+ }
2125
+ ]
2126
+ },
2127
+ {
2128
+ "name": "stables",
2129
+ "pluralName": "stables",
2130
+ "shortName": "stables"
2131
+ },
2132
+ {
2133
+ "name": "states & municipalities",
2134
+ "pluralName": "states & municipalities",
2135
+ "shortName": "states & municipalities",
2136
+ "categories": [
2137
+ {
2138
+ "name": "city",
2139
+ "pluralName": "cities",
2140
+ "shortName": "city"
2141
+ },
2142
+ {
2143
+ "name": "county",
2144
+ "pluralName": "counties",
2145
+ "shortName": "county"
2146
+ },
2147
+ {
2148
+ "name": "country",
2149
+ "pluralName": "countries",
2150
+ "shortName": "country"
2151
+ },
2152
+ {
2153
+ "name": "neighborhood",
2154
+ "pluralName": "neighborhoods",
2155
+ "shortName": "neighborhood"
2156
+ },
2157
+ {
2158
+ "name": "state",
2159
+ "pluralName": "states",
2160
+ "shortName": "state"
2161
+ },
2162
+ {
2163
+ "name": "town",
2164
+ "pluralName": "towns",
2165
+ "shortName": "town"
2166
+ },
2167
+ {
2168
+ "name": "village",
2169
+ "pluralName": "villages",
2170
+ "shortName": "village"
2171
+ }
2172
+ ]
2173
+ },
2174
+ {
2175
+ "name": "summer camp",
2176
+ "pluralName": "summer camps",
2177
+ "shortName": "summer camp"
2178
+ },
2179
+ {
2180
+ "name": "trail",
2181
+ "pluralName": "trails",
2182
+ "shortName": "trail"
2183
+ },
2184
+ {
2185
+ "name": "tree",
2186
+ "pluralName": "trees",
2187
+ "shortName": "tree"
2188
+ },
2189
+ {
2190
+ "name": "vineyard",
2191
+ "pluralName": "vineyards",
2192
+ "shortName": "vineyard"
2193
+ },
2194
+ {
2195
+ "name": "volcano",
2196
+ "pluralName": "volcanoes",
2197
+ "shortName": "volcano"
2198
+ },
2199
+ {
2200
+ "name": "well",
2201
+ "pluralName": "wells",
2202
+ "shortName": "well"
2203
+ }
2204
+ ]
2205
+ },
2206
+ {
2207
+ "name": "professional & other places",
2208
+ "pluralName": "professional & other places",
2209
+ "shortName": "professional",
2210
+ "categories": [
2211
+ {
2212
+ "name": "animal shelter",
2213
+ "pluralName": "animal shelters",
2214
+ "shortName": "animal shelter"
2215
+ },
2216
+ {
2217
+ "name": "auditorium",
2218
+ "pluralName": "auditoriums",
2219
+ "shortName": "auditorium"
2220
+ },
2221
+ {
2222
+ "name": "building",
2223
+ "pluralName": "buildings",
2224
+ "shortName": "building"
2225
+ },
2226
+ {
2227
+ "name": "club house",
2228
+ "pluralName": "club houses",
2229
+ "shortName": "club"
2230
+ },
2231
+ {
2232
+ "name": "community center",
2233
+ "pluralName": "community centers",
2234
+ "shortName": "community center"
2235
+ },
2236
+ {
2237
+ "name": "convention center",
2238
+ "pluralName": "convention centers",
2239
+ "shortName": "convention center",
2240
+ "categories": [
2241
+ {
2242
+ "name": "meeting room",
2243
+ "pluralName": "meeting rooms",
2244
+ "shortName": "meeting room"
2245
+ }
2246
+ ]
2247
+ },
2248
+ {
2249
+ "name": "cultural center",
2250
+ "pluralName": "cultural centers",
2251
+ "shortName": "cultural center"
2252
+ },
2253
+ {
2254
+ "name": "distribution center",
2255
+ "pluralName": "distribution centers",
2256
+ "shortName": "distributor"
2257
+ },
2258
+ {
2259
+ "name": "event space",
2260
+ "pluralName": "event spaces",
2261
+ "shortName": "event space"
2262
+ },
2263
+ {
2264
+ "name": "factory",
2265
+ "pluralName": "factories",
2266
+ "shortName": "factory"
2267
+ },
2268
+ {
2269
+ "name": "fair",
2270
+ "pluralName": "fairs",
2271
+ "shortName": "fair"
2272
+ },
2273
+ {
2274
+ "name": "funeral home",
2275
+ "pluralName": "funeral homes",
2276
+ "shortName": "funeral home"
2277
+ },
2278
+ {
2279
+ "name": "government building",
2280
+ "pluralName": "government buildings",
2281
+ "shortName": "government",
2282
+ "categories": [
2283
+ {
2284
+ "name": "capitol building",
2285
+ "pluralName": "capitol buildings",
2286
+ "shortName": "capitol building"
2287
+ },
2288
+ {
2289
+ "name": "city hall",
2290
+ "pluralName": "city halls",
2291
+ "shortName": "city hall"
2292
+ },
2293
+ {
2294
+ "name": "courthouse",
2295
+ "pluralName": "courthouses",
2296
+ "shortName": "courthouse"
2297
+ },
2298
+ {
2299
+ "name": "embassy / consulate",
2300
+ "pluralName": "embassies / consulates",
2301
+ "shortName": "embassy"
2302
+ },
2303
+ {
2304
+ "name": "fire station",
2305
+ "pluralName": "fire stations",
2306
+ "shortName": "fire station"
2307
+ },
2308
+ {
2309
+ "name": "monument / landmark",
2310
+ "pluralName": "monuments / landmarks",
2311
+ "shortName": "landmark"
2312
+ },
2313
+ {
2314
+ "name": "police station",
2315
+ "pluralName": "police stations",
2316
+ "shortName": "police station"
2317
+ },
2318
+ {
2319
+ "name": "town hall",
2320
+ "pluralName": "town halls",
2321
+ "shortName": "town hall"
2322
+ }
2323
+ ]
2324
+ },
2325
+ {
2326
+ "name": "library",
2327
+ "pluralName": "libraries",
2328
+ "shortName": "library"
2329
+ },
2330
+ {
2331
+ "name": "medical center",
2332
+ "pluralName": "medical centers",
2333
+ "shortName": "medical",
2334
+ "categories": [
2335
+ {
2336
+ "name": "acupuncturist",
2337
+ "pluralName": "acupuncturists",
2338
+ "shortName": "acupuncturist"
2339
+ },
2340
+ {
2341
+ "name": "alternative healer",
2342
+ "pluralName": "alternative healers",
2343
+ "shortName": "alternative healer"
2344
+ },
2345
+ {
2346
+ "name": "chiropractor",
2347
+ "pluralName": "chiropractors",
2348
+ "shortName": "chiropractors"
2349
+ },
2350
+ {
2351
+ "name": "dentist's office",
2352
+ "pluralName": "dentist's offices",
2353
+ "shortName": "dentist's office"
2354
+ },
2355
+ {
2356
+ "name": "doctor's office",
2357
+ "pluralName": "doctor's offices",
2358
+ "shortName": "doctor's office"
2359
+ },
2360
+ {
2361
+ "name": "emergency room",
2362
+ "pluralName": "emergency rooms",
2363
+ "shortName": "emergency room"
2364
+ },
2365
+ {
2366
+ "name": "eye doctor",
2367
+ "pluralName": "eye doctors",
2368
+ "shortName": "eye doctor"
2369
+ },
2370
+ {
2371
+ "name": "hospital",
2372
+ "pluralName": "hospitals",
2373
+ "shortName": "hospital"
2374
+ },
2375
+ {
2376
+ "name": "laboratory",
2377
+ "pluralName": "laboratories",
2378
+ "shortName": "lab"
2379
+ },
2380
+ {
2381
+ "name": "mental health office",
2382
+ "pluralName": "mental health offices",
2383
+ "shortName": "mental health"
2384
+ },
2385
+ {
2386
+ "name": "veterinarian",
2387
+ "pluralName": "veterinarians",
2388
+ "shortName": "veterinarians"
2389
+ }
2390
+ ]
2391
+ },
2392
+ {
2393
+ "name": "military base",
2394
+ "pluralName": "military bases",
2395
+ "shortName": "military base"
2396
+ },
2397
+ {
2398
+ "name": "non-profit",
2399
+ "pluralName": "non-profits",
2400
+ "shortName": "non-profit"
2401
+ },
2402
+ {
2403
+ "name": "office",
2404
+ "pluralName": "offices",
2405
+ "shortName": "office",
2406
+ "categories": [
2407
+ {
2408
+ "name": "advertising agency",
2409
+ "pluralName": "advertising agencies",
2410
+ "shortName": "advertising agency"
2411
+ },
2412
+ {
2413
+ "name": "campaign office",
2414
+ "pluralName": "campaign offices",
2415
+ "shortName": "campaign"
2416
+ },
2417
+ {
2418
+ "name": "conference room",
2419
+ "pluralName": "conference rooms",
2420
+ "shortName": "conference room"
2421
+ },
2422
+ {
2423
+ "name": "coworking space",
2424
+ "pluralName": "coworking spaces",
2425
+ "shortName": "coworking space"
2426
+ },
2427
+ {
2428
+ "name": "tech startup",
2429
+ "pluralName": "tech startups",
2430
+ "shortName": "tech startup"
2431
+ }
2432
+ ]
2433
+ },
2434
+ {
2435
+ "name": "parking",
2436
+ "pluralName": "parking",
2437
+ "shortName": "parking"
2438
+ },
2439
+ {
2440
+ "name": "post office",
2441
+ "pluralName": "post offices",
2442
+ "shortName": "post office"
2443
+ },
2444
+ {
2445
+ "name": "prison",
2446
+ "pluralName": "prisons",
2447
+ "shortName": "prison"
2448
+ },
2449
+ {
2450
+ "name": "radio station",
2451
+ "pluralName": "radio stations",
2452
+ "shortName": "radio station"
2453
+ },
2454
+ {
2455
+ "name": "recruiting agency",
2456
+ "pluralName": "recruiting agencies",
2457
+ "shortName": "recruiting agency"
2458
+ },
2459
+ {
2460
+ "name": "school",
2461
+ "pluralName": "schools",
2462
+ "shortName": "school",
2463
+ "categories": [
2464
+ {
2465
+ "name": "circus school",
2466
+ "pluralName": "circus schools",
2467
+ "shortName": "circus school"
2468
+ },
2469
+ {
2470
+ "name": "driving school",
2471
+ "pluralName": "driving schools",
2472
+ "shortName": "driving school"
2473
+ },
2474
+ {
2475
+ "name": "elementary school",
2476
+ "pluralName": "elementary schools",
2477
+ "shortName": "elementary school"
2478
+ },
2479
+ {
2480
+ "name": "flight school",
2481
+ "pluralName": "flight schools",
2482
+ "shortName": "flight school"
2483
+ },
2484
+ {
2485
+ "name": "high school",
2486
+ "pluralName": "high schools",
2487
+ "shortName": "high school"
2488
+ },
2489
+ {
2490
+ "name": "language school",
2491
+ "pluralName": "language schools",
2492
+ "shortName": "language school"
2493
+ },
2494
+ {
2495
+ "name": "middle school",
2496
+ "pluralName": "middle schools",
2497
+ "shortName": "middle school"
2498
+ },
2499
+ {
2500
+ "name": "music school",
2501
+ "pluralName": "music schools",
2502
+ "shortName": "music school"
2503
+ },
2504
+ {
2505
+ "name": "nursery school",
2506
+ "pluralName": "nursery schools",
2507
+ "shortName": "nursery school"
2508
+ },
2509
+ {
2510
+ "name": "preschool",
2511
+ "pluralName": "preschools",
2512
+ "shortName": "preschool"
2513
+ },
2514
+ {
2515
+ "name": "private school",
2516
+ "pluralName": "private schools",
2517
+ "shortName": "private school"
2518
+ },
2519
+ {
2520
+ "name": "religious school",
2521
+ "pluralName": "religious schools",
2522
+ "shortName": "religious school"
2523
+ },
2524
+ {
2525
+ "name": "swim school",
2526
+ "pluralName": "swim schools",
2527
+ "shortName": "swim school"
2528
+ }
2529
+ ]
2530
+ },
2531
+ {
2532
+ "name": "social club",
2533
+ "pluralName": "social clubs",
2534
+ "shortName": "social club"
2535
+ },
2536
+ {
2537
+ "name": "spiritual center",
2538
+ "pluralName": "spiritual centers",
2539
+ "shortName": "spiritual",
2540
+ "categories": [
2541
+ {
2542
+ "name": "Buddhist temple",
2543
+ "pluralName": "Buddhist temples",
2544
+ "shortName": "Buddhist temple"
2545
+ },
2546
+ {
2547
+ "name": "church",
2548
+ "pluralName": "churches",
2549
+ "shortName": "church"
2550
+ },
2551
+ {
2552
+ "name": "Hindu temple",
2553
+ "pluralName": "Hindu temples",
2554
+ "shortName": "Hindu temple"
2555
+ },
2556
+ {
2557
+ "name": "monastery",
2558
+ "pluralName": "monasteries",
2559
+ "shortName": "monastery"
2560
+ },
2561
+ {
2562
+ "name": "mosque",
2563
+ "pluralName": "mosques",
2564
+ "shortName": "mosque"
2565
+ },
2566
+ {
2567
+ "name": "prayer room",
2568
+ "pluralName": "prayer rooms",
2569
+ "shortName": "prayer room"
2570
+ },
2571
+ {
2572
+ "name": "shrine",
2573
+ "pluralName": "shrines",
2574
+ "shortName": "shrine"
2575
+ },
2576
+ {
2577
+ "name": "synagogue",
2578
+ "pluralName": "synagogues",
2579
+ "shortName": "synagogue"
2580
+ },
2581
+ {
2582
+ "name": "temple",
2583
+ "pluralName": "temples",
2584
+ "shortName": "temple"
2585
+ }
2586
+ ]
2587
+ },
2588
+ {
2589
+ "name": "TV station",
2590
+ "pluralName": "TV stations",
2591
+ "shortName": "TV station"
2592
+ },
2593
+ {
2594
+ "name": "voting booth",
2595
+ "pluralName": "voting booths",
2596
+ "shortName": "voting booth"
2597
+ },
2598
+ {
2599
+ "name": "warehouse",
2600
+ "pluralName": "warehouses",
2601
+ "shortName": "warehouse"
2602
+ }
2603
+ ]
2604
+ },
2605
+ {
2606
+ "name": "residence",
2607
+ "pluralName": "residences",
2608
+ "shortName": "residence",
2609
+ "categories": [
2610
+ {
2611
+ "name": "assisted living",
2612
+ "pluralName": "assisted living",
2613
+ "shortName": "assisted living"
2614
+ },
2615
+ {
2616
+ "name": "home (private)",
2617
+ "pluralName": "homes (private)",
2618
+ "shortName": "home"
2619
+ },
2620
+ {
2621
+ "name": "housing development",
2622
+ "pluralName": "housing developments",
2623
+ "shortName": "housing development"
2624
+ },
2625
+ {
2626
+ "name": "residential building (apartment / condo)",
2627
+ "pluralName": "residential buildings (apartments / condos)",
2628
+ "shortName": "residential"
2629
+ },
2630
+ {
2631
+ "name": "trailer park",
2632
+ "pluralName": "trailer parks",
2633
+ "shortName": "trailer park"
2634
+ }
2635
+ ]
2636
+ },
2637
+ {
2638
+ "name": "shop & service",
2639
+ "pluralName": "shops & services",
2640
+ "shortName": "shops",
2641
+ "categories": [
2642
+ {
2643
+ "name": "ATM",
2644
+ "pluralName": "ATMs",
2645
+ "shortName": "ATM"
2646
+ },
2647
+ {
2648
+ "name": "adult boutique",
2649
+ "pluralName": "adult boutiques",
2650
+ "shortName": "adult boutique"
2651
+ },
2652
+ {
2653
+ "name": "antique shop",
2654
+ "pluralName": "antique shops",
2655
+ "shortName": "antiques"
2656
+ },
2657
+ {
2658
+ "name": "arts & crafts store",
2659
+ "pluralName": "arts & crafts stores",
2660
+ "shortName": "arts & crafts"
2661
+ },
2662
+ {
2663
+ "name": "astrologer",
2664
+ "pluralName": "astrologers",
2665
+ "shortName": "astrologer"
2666
+ },
2667
+ {
2668
+ "name": "auto garage",
2669
+ "pluralName": "auto garages",
2670
+ "shortName": "auto garage"
2671
+ },
2672
+ {
2673
+ "name": "automotive shop",
2674
+ "pluralName": "automotive shops",
2675
+ "shortName": "automotive"
2676
+ },
2677
+ {
2678
+ "name": "baby store",
2679
+ "pluralName": "baby stores",
2680
+ "shortName": "baby store"
2681
+ },
2682
+ {
2683
+ "name": "bank",
2684
+ "pluralName": "banks",
2685
+ "shortName": "bank"
2686
+ },
2687
+ {
2688
+ "name": "betting shop",
2689
+ "pluralName": "betting shops",
2690
+ "shortName": "betting shop"
2691
+ },
2692
+ {
2693
+ "name": "big box store",
2694
+ "pluralName": "big box stores",
2695
+ "shortName": "big box store"
2696
+ },
2697
+ {
2698
+ "name": "bike shop",
2699
+ "pluralName": "bike shops",
2700
+ "shortName": "bike shop"
2701
+ },
2702
+ {
2703
+ "name": "board shop",
2704
+ "pluralName": "board shops",
2705
+ "shortName": "board shop"
2706
+ },
2707
+ {
2708
+ "name": "bookstore",
2709
+ "pluralName": "bookstores",
2710
+ "shortName": "bookstore"
2711
+ },
2712
+ {
2713
+ "name": "bridal shop",
2714
+ "pluralName": "bridal shops",
2715
+ "shortName": "bridal"
2716
+ },
2717
+ {
2718
+ "name": "business service",
2719
+ "pluralName": "business services",
2720
+ "shortName": "business services"
2721
+ },
2722
+ {
2723
+ "name": "camera store",
2724
+ "pluralName": "camera stores",
2725
+ "shortName": "camera store"
2726
+ },
2727
+ {
2728
+ "name": "candy store",
2729
+ "pluralName": "candy stores",
2730
+ "shortName": "candy store"
2731
+ },
2732
+ {
2733
+ "name": "car dealership",
2734
+ "pluralName": "car dealerships",
2735
+ "shortName": "car dealer"
2736
+ },
2737
+ {
2738
+ "name": "car wash",
2739
+ "pluralName": "car wash",
2740
+ "shortName": "car wash"
2741
+ },
2742
+ {
2743
+ "name": "carpet store",
2744
+ "pluralName": "carpet stores",
2745
+ "shortName": "carpet store"
2746
+ },
2747
+ {
2748
+ "name": "check cashing service",
2749
+ "pluralName": "check cashing services",
2750
+ "shortName": "check cashing service"
2751
+ },
2752
+ {
2753
+ "name": "chocolate shop",
2754
+ "pluralName": "chocolate shops",
2755
+ "shortName": "chocolate shop"
2756
+ },
2757
+ {
2758
+ "name": "Christmas market",
2759
+ "pluralName": "Christmas markets",
2760
+ "shortName": "Christmas market"
2761
+ },
2762
+ {
2763
+ "name": "clothing store",
2764
+ "pluralName": "clothing stores",
2765
+ "shortName": "apparel",
2766
+ "categories": [
2767
+ {
2768
+ "name": "accessories store",
2769
+ "pluralName": "accessories stores",
2770
+ "shortName": "accessories"
2771
+ },
2772
+ {
2773
+ "name": "boutique",
2774
+ "pluralName": "boutiques",
2775
+ "shortName": "boutique"
2776
+ },
2777
+ {
2778
+ "name": "kids store",
2779
+ "pluralName": "kids stores",
2780
+ "shortName": "kids store"
2781
+ },
2782
+ {
2783
+ "name": "lingerie store",
2784
+ "pluralName": "lingerie stores",
2785
+ "shortName": "lingerie"
2786
+ },
2787
+ {
2788
+ "name": "men's store",
2789
+ "pluralName": "men's stores",
2790
+ "shortName": "men's store"
2791
+ },
2792
+ {
2793
+ "name": "shoe store",
2794
+ "pluralName": "shoe stores",
2795
+ "shortName": "shoes"
2796
+ },
2797
+ {
2798
+ "name": "women's store",
2799
+ "pluralName": "women's stores",
2800
+ "shortName": "women's store"
2801
+ }
2802
+ ]
2803
+ },
2804
+ {
2805
+ "name": "comic shop",
2806
+ "pluralName": "comic shops",
2807
+ "shortName": "comic shop"
2808
+ },
2809
+ {
2810
+ "name": "construction & landscaping",
2811
+ "pluralName": "construction & landscaping",
2812
+ "shortName": "construction"
2813
+ },
2814
+ {
2815
+ "name": "convenience store",
2816
+ "pluralName": "convenience stores",
2817
+ "shortName": "convenience stores"
2818
+ },
2819
+ {
2820
+ "name": "cosmetics shop",
2821
+ "pluralName": "cosmetics shops",
2822
+ "shortName": "cosmetics"
2823
+ },
2824
+ {
2825
+ "name": "costume shop",
2826
+ "pluralName": "costume shops",
2827
+ "shortName": "costume shop"
2828
+ },
2829
+ {
2830
+ "name": "credit union",
2831
+ "pluralName": "credit unions",
2832
+ "shortName": "credit union"
2833
+ },
2834
+ {
2835
+ "name": "daycare",
2836
+ "pluralName": "daycares",
2837
+ "shortName": "daycare"
2838
+ },
2839
+ {
2840
+ "name": "department store",
2841
+ "pluralName": "department stores",
2842
+ "shortName": "department store"
2843
+ },
2844
+ {
2845
+ "name": "design studio",
2846
+ "pluralName": "design studios",
2847
+ "shortName": "design"
2848
+ },
2849
+ {
2850
+ "name": "discount store",
2851
+ "pluralName": "discount stores",
2852
+ "shortName": "discount store"
2853
+ },
2854
+ {
2855
+ "name": "dive shop",
2856
+ "pluralName": "dive shops",
2857
+ "shortName": "dive shop"
2858
+ },
2859
+ {
2860
+ "name": "drugstore / pharmacy",
2861
+ "pluralName": "drugstores / pharmacies",
2862
+ "shortName": "pharmacy"
2863
+ },
2864
+ {
2865
+ "name": "dry cleaner",
2866
+ "pluralName": "dry cleaners",
2867
+ "shortName": "dry cleaner"
2868
+ },
2869
+ {
2870
+ "name": "EV charging station",
2871
+ "pluralName": "EV charging stations",
2872
+ "shortName": "EV charging"
2873
+ },
2874
+ {
2875
+ "name": "electronics store",
2876
+ "pluralName": "electronics stores",
2877
+ "shortName": "electronics"
2878
+ },
2879
+ {
2880
+ "name": "event service",
2881
+ "pluralName": "event services",
2882
+ "shortName": "event services"
2883
+ },
2884
+ {
2885
+ "name": "fabric shop",
2886
+ "pluralName": "fabric shops",
2887
+ "shortName": "fabric shop"
2888
+ },
2889
+ {
2890
+ "name": "financial or legal service",
2891
+ "pluralName": "financial or legal services",
2892
+ "shortName": "financial / legal"
2893
+ },
2894
+ {
2895
+ "name": "fireworks store",
2896
+ "pluralName": "fireworks stores",
2897
+ "shortName": "fireworks store"
2898
+ },
2899
+ {
2900
+ "name": "fishing store",
2901
+ "pluralName": "fishing stores",
2902
+ "shortName": "fishing store"
2903
+ },
2904
+ {
2905
+ "name": "flea market",
2906
+ "pluralName": "flea markets",
2907
+ "shortName": "flea market"
2908
+ },
2909
+ {
2910
+ "name": "flower shop",
2911
+ "pluralName": "flower shops",
2912
+ "shortName": "flower shop"
2913
+ },
2914
+ {
2915
+ "name": "food & drink shop",
2916
+ "pluralName": "food & drink shops",
2917
+ "shortName": "food & drink",
2918
+ "categories": [
2919
+ {
2920
+ "name": "beer store",
2921
+ "pluralName": "beer stores",
2922
+ "shortName": "beer store"
2923
+ },
2924
+ {
2925
+ "name": "butcher",
2926
+ "pluralName": "butchers",
2927
+ "shortName": "butcher"
2928
+ },
2929
+ {
2930
+ "name": "cheese shop",
2931
+ "pluralName": "cheese shops",
2932
+ "shortName": "cheese shop"
2933
+ },
2934
+ {
2935
+ "name": "farmers market",
2936
+ "pluralName": "farmers markets",
2937
+ "shortName": "farmer's market"
2938
+ },
2939
+ {
2940
+ "name": "fish market",
2941
+ "pluralName": "fish markets",
2942
+ "shortName": "fish market"
2943
+ },
2944
+ {
2945
+ "name": "food court",
2946
+ "pluralName": "food courts",
2947
+ "shortName": "food court"
2948
+ },
2949
+ {
2950
+ "name": "gourmet shop",
2951
+ "pluralName": "gourmet shops",
2952
+ "shortName": "gourmet"
2953
+ },
2954
+ {
2955
+ "name": "grocery store",
2956
+ "pluralName": "grocery stores",
2957
+ "shortName": "grocery store"
2958
+ },
2959
+ {
2960
+ "name": "health food store",
2961
+ "pluralName": "health food stores",
2962
+ "shortName": "health food store"
2963
+ },
2964
+ {
2965
+ "name": "liquor store",
2966
+ "pluralName": "liquor stores",
2967
+ "shortName": "liquor store"
2968
+ },
2969
+ {
2970
+ "name": "organic grocery",
2971
+ "pluralName": "organic groceries",
2972
+ "shortName": "organic grocery"
2973
+ },
2974
+ {
2975
+ "name": "street food gathering",
2976
+ "pluralName": "street food gatherings",
2977
+ "shortName": "street food gathering"
2978
+ },
2979
+ {
2980
+ "name": "supermarket",
2981
+ "pluralName": "supermarkets",
2982
+ "shortName": "supermarket"
2983
+ },
2984
+ {
2985
+ "name": "wine shop",
2986
+ "pluralName": "wine shops",
2987
+ "shortName": "wine shop"
2988
+ }
2989
+ ]
2990
+ },
2991
+ {
2992
+ "name": "frame store",
2993
+ "pluralName": "frame stores",
2994
+ "shortName": "frame store"
2995
+ },
2996
+ {
2997
+ "name": "fruit & vegetable store",
2998
+ "pluralName": "fruit & vegetable stores",
2999
+ "shortName": "fruit & vegetable store"
3000
+ },
3001
+ {
3002
+ "name": "furniture / home store",
3003
+ "pluralName": "furniture / home stores",
3004
+ "shortName": "furniture / home"
3005
+ },
3006
+ {
3007
+ "name": "gaming cafe",
3008
+ "pluralName": "gaming cafes",
3009
+ "shortName": "gaming cafe"
3010
+ },
3011
+ {
3012
+ "name": "garden center",
3013
+ "pluralName": "garden centers",
3014
+ "shortName": "garden center"
3015
+ },
3016
+ {
3017
+ "name": "gas station / garage",
3018
+ "pluralName": "gas stations / garages",
3019
+ "shortName": "gas station / garage"
3020
+ },
3021
+ {
3022
+ "name": "gift shop",
3023
+ "pluralName": "gift shops",
3024
+ "shortName": "gift shop"
3025
+ },
3026
+ {
3027
+ "name": "gun shop",
3028
+ "pluralName": "gun shops",
3029
+ "shortName": "gun shop"
3030
+ },
3031
+ {
3032
+ "name": "gym / fitness center",
3033
+ "pluralName": "gyms or fitness centers",
3034
+ "shortName": "gym / fitness",
3035
+ "categories": [
3036
+ {
3037
+ "name": "boxing gym",
3038
+ "pluralName": "boxing gyms",
3039
+ "shortName": "boxing gym"
3040
+ },
3041
+ {
3042
+ "name": "climbing gym",
3043
+ "pluralName": "climbing gyms",
3044
+ "shortName": "climbing gym"
3045
+ },
3046
+ {
3047
+ "name": "cycle studio",
3048
+ "pluralName": "cycle studios",
3049
+ "shortName": "cycle studio"
3050
+ },
3051
+ {
3052
+ "name": "gym pool",
3053
+ "pluralName": "gym pools",
3054
+ "shortName": "pool"
3055
+ },
3056
+ {
3057
+ "name": "gymnastics gym",
3058
+ "pluralName": "gymnastics gyms",
3059
+ "shortName": "gymnastics gym"
3060
+ },
3061
+ {
3062
+ "name": "gym",
3063
+ "pluralName": "gyms",
3064
+ "shortName": "gym"
3065
+ },
3066
+ {
3067
+ "name": "martial arts dojo",
3068
+ "pluralName": "martial arts dojos",
3069
+ "shortName": "martial arts"
3070
+ },
3071
+ {
3072
+ "name": "track",
3073
+ "pluralName": "tracks",
3074
+ "shortName": "track"
3075
+ },
3076
+ {
3077
+ "name": "yoga studio",
3078
+ "pluralName": "yoga studios",
3079
+ "shortName": "yoga studio"
3080
+ }
3081
+ ]
3082
+ },
3083
+ {
3084
+ "name": "hardware store",
3085
+ "pluralName": "hardware stores",
3086
+ "shortName": "hardware"
3087
+ },
3088
+ {
3089
+ "name": "health & beauty service",
3090
+ "pluralName": "health & beauty services",
3091
+ "shortName": "health & beauty"
3092
+ },
3093
+ {
3094
+ "name": "herbs & spices store",
3095
+ "pluralName": "herbs & spices stores",
3096
+ "shortName": "herbs & spices store"
3097
+ },
3098
+ {
3099
+ "name": "hobby shop",
3100
+ "pluralName": "hobby shops",
3101
+ "shortName": "hobbies"
3102
+ },
3103
+ {
3104
+ "name": "home service",
3105
+ "pluralName": "home services & repairs",
3106
+ "shortName": "home services"
3107
+ },
3108
+ {
3109
+ "name": "hunting supply",
3110
+ "pluralName": "hunting supplies",
3111
+ "shortName": "hunting supply"
3112
+ },
3113
+ {
3114
+ "name": "IT services",
3115
+ "pluralName": "IT services",
3116
+ "shortName": "IT services"
3117
+ },
3118
+ {
3119
+ "name": "Internet cafe",
3120
+ "pluralName": "Internet cafes",
3121
+ "shortName": "Internet cafe"
3122
+ },
3123
+ {
3124
+ "name": "jewelry store",
3125
+ "pluralName": "jewelry stores",
3126
+ "shortName": "jewelry"
3127
+ },
3128
+ {
3129
+ "name": "knitting store",
3130
+ "pluralName": "knitting stores",
3131
+ "shortName": "knitting supplies"
3132
+ },
3133
+ {
3134
+ "name": "laundromat",
3135
+ "pluralName": "laundromats",
3136
+ "shortName": "laundromat"
3137
+ },
3138
+ {
3139
+ "name": "laundry service",
3140
+ "pluralName": "laundry services",
3141
+ "shortName": "laundry"
3142
+ },
3143
+ {
3144
+ "name": "lawyer",
3145
+ "pluralName": "lawyers",
3146
+ "shortName": "lawyer"
3147
+ },
3148
+ {
3149
+ "name": "leather goods store",
3150
+ "pluralName": "leather goods stores",
3151
+ "shortName": "leather goods"
3152
+ },
3153
+ {
3154
+ "name": "locksmith",
3155
+ "pluralName": "locksmiths",
3156
+ "shortName": "locksmith"
3157
+ },
3158
+ {
3159
+ "name": "lottery retailer",
3160
+ "pluralName": "lottery retailers",
3161
+ "shortName": "lottery"
3162
+ },
3163
+ {
3164
+ "name": "luggage store",
3165
+ "pluralName": "luggage stores",
3166
+ "shortName": "luggage store"
3167
+ },
3168
+ {
3169
+ "name": "mall",
3170
+ "pluralName": "malls",
3171
+ "shortName": "mall"
3172
+ },
3173
+ {
3174
+ "name": "marijuana dispensary",
3175
+ "pluralName": "marijuana dispensaries",
3176
+ "shortName": "dispensary"
3177
+ },
3178
+ {
3179
+ "name": "market",
3180
+ "pluralName": "markets",
3181
+ "shortName": "market"
3182
+ },
3183
+ {
3184
+ "name": "massage studio",
3185
+ "pluralName": "massage studios",
3186
+ "shortName": "massage studio"
3187
+ },
3188
+ {
3189
+ "name": "mattress store",
3190
+ "pluralName": "mattress stores",
3191
+ "shortName": "mattress store"
3192
+ },
3193
+ {
3194
+ "name": "miscellaneous shop",
3195
+ "pluralName": "miscellaneous shops",
3196
+ "shortName": "shop"
3197
+ },
3198
+ {
3199
+ "name": "mobile phone shop",
3200
+ "pluralName": "mobile phone shops",
3201
+ "shortName": "mobile phone"
3202
+ },
3203
+ {
3204
+ "name": "motorcycle shop",
3205
+ "pluralName": "motorcycle shops",
3206
+ "shortName": "motorcycle shop"
3207
+ },
3208
+ {
3209
+ "name": "music store",
3210
+ "pluralName": "music stores",
3211
+ "shortName": "music store"
3212
+ },
3213
+ {
3214
+ "name": "nail salon",
3215
+ "pluralName": "nail salons",
3216
+ "shortName": "nail salon"
3217
+ },
3218
+ {
3219
+ "name": "newsstand",
3220
+ "pluralName": "newsstands",
3221
+ "shortName": "newsstand"
3222
+ },
3223
+ {
3224
+ "name": "optical shop",
3225
+ "pluralName": "optical shops",
3226
+ "shortName": "optical"
3227
+ },
3228
+ {
3229
+ "name": "other repair shop",
3230
+ "pluralName": "other repair shops",
3231
+ "shortName": "other repair"
3232
+ },
3233
+ {
3234
+ "name": "outdoor supply store",
3235
+ "pluralName": "outdoor supply stores",
3236
+ "shortName": "outdoor supplies"
3237
+ },
3238
+ {
3239
+ "name": "outlet store",
3240
+ "pluralName": "outlet stores",
3241
+ "shortName": "outlet store"
3242
+ },
3243
+ {
3244
+ "name": "paper / office supplies store",
3245
+ "pluralName": "paper / office supplies stores",
3246
+ "shortName": "office supplies"
3247
+ },
3248
+ {
3249
+ "name": "pawn shop",
3250
+ "pluralName": "pawn shops",
3251
+ "shortName": "pawn shop"
3252
+ },
3253
+ {
3254
+ "name": "perfume shop",
3255
+ "pluralName": "perfume shops",
3256
+ "shortName": "perfume shop"
3257
+ },
3258
+ {
3259
+ "name": "pet service",
3260
+ "pluralName": "pet services",
3261
+ "shortName": "pet service"
3262
+ },
3263
+ {
3264
+ "name": "pet store",
3265
+ "pluralName": "pet stores",
3266
+ "shortName": "pet store"
3267
+ },
3268
+ {
3269
+ "name": "photography lab",
3270
+ "pluralName": "photography labs",
3271
+ "shortName": "photography lab"
3272
+ },
3273
+ {
3274
+ "name": "piercing parlor",
3275
+ "pluralName": "piercing parlors",
3276
+ "shortName": "piercing parlor"
3277
+ },
3278
+ {
3279
+ "name": "pop-up shop",
3280
+ "pluralName": "pop-up shops",
3281
+ "shortName": "pop-up shop"
3282
+ },
3283
+ {
3284
+ "name": "print shop",
3285
+ "pluralName": "print shops",
3286
+ "shortName": "print shop"
3287
+ },
3288
+ {
3289
+ "name": "real estate office",
3290
+ "pluralName": "real estate offices",
3291
+ "shortName": "real estate"
3292
+ },
3293
+ {
3294
+ "name": "record shop",
3295
+ "pluralName": "record shops",
3296
+ "shortName": "record shop"
3297
+ },
3298
+ {
3299
+ "name": "recording studio",
3300
+ "pluralName": "recording studios",
3301
+ "shortName": "recording studio"
3302
+ },
3303
+ {
3304
+ "name": "recycling facility",
3305
+ "pluralName": "recycling facilities",
3306
+ "shortName": "recycling"
3307
+ },
3308
+ {
3309
+ "name": "salon / barbershop",
3310
+ "pluralName": "salons / barbershops",
3311
+ "shortName": "salon / barbershop"
3312
+ },
3313
+ {
3314
+ "name": "shipping store",
3315
+ "pluralName": "shipping stores",
3316
+ "shortName": "shipping store"
3317
+ },
3318
+ {
3319
+ "name": "shoe repair",
3320
+ "pluralName": "shoe repair shops",
3321
+ "shortName": "shoe repair"
3322
+ },
3323
+ {
3324
+ "name": "smoke shop",
3325
+ "pluralName": "smoke shops",
3326
+ "shortName": "smoke shop"
3327
+ },
3328
+ {
3329
+ "name": "smoothie shop",
3330
+ "pluralName": "smoothie shops",
3331
+ "shortName": "smoothie shop"
3332
+ },
3333
+ {
3334
+ "name": "souvenir shop",
3335
+ "pluralName": "souvenir shops",
3336
+ "shortName": "souvenir shop"
3337
+ },
3338
+ {
3339
+ "name": "spa",
3340
+ "pluralName": "spas",
3341
+ "shortName": "spa"
3342
+ },
3343
+ {
3344
+ "name": "sporting goods shop",
3345
+ "pluralName": "sporting goods shops",
3346
+ "shortName": "sporting goods"
3347
+ },
3348
+ {
3349
+ "name": "stationery store",
3350
+ "pluralName": "stationery stores",
3351
+ "shortName": "stationery store"
3352
+ },
3353
+ {
3354
+ "name": "storage facility",
3355
+ "pluralName": "storage facilities",
3356
+ "shortName": "storage"
3357
+ },
3358
+ {
3359
+ "name": "tailor shop",
3360
+ "pluralName": "tailor shops",
3361
+ "shortName": "tailor"
3362
+ },
3363
+ {
3364
+ "name": "tanning salon",
3365
+ "pluralName": "tanning salons",
3366
+ "shortName": "tanning salon"
3367
+ },
3368
+ {
3369
+ "name": "tattoo parlor",
3370
+ "pluralName": "tattoo parlors",
3371
+ "shortName": "tattoo"
3372
+ },
3373
+ {
3374
+ "name": "thrift / vintage store",
3375
+ "pluralName": "thrift / vintage stores",
3376
+ "shortName": "thrift / vintage"
3377
+ },
3378
+ {
3379
+ "name": "toy / game store",
3380
+ "pluralName": "toy / game stores",
3381
+ "shortName": "toys & games"
3382
+ },
3383
+ {
3384
+ "name": "travel agency",
3385
+ "pluralName": "travel agencies",
3386
+ "shortName": "travel agency"
3387
+ },
3388
+ {
3389
+ "name": "used bookstore",
3390
+ "pluralName": "used bookstores",
3391
+ "shortName": "used bookstore"
3392
+ },
3393
+ {
3394
+ "name": "video game store",
3395
+ "pluralName": "video game stores",
3396
+ "shortName": "video games"
3397
+ },
3398
+ {
3399
+ "name": "video store",
3400
+ "pluralName": "video stores",
3401
+ "shortName": "video store"
3402
+ },
3403
+ {
3404
+ "name": "warehouse store",
3405
+ "pluralName": "warehouse stores",
3406
+ "shortName": "warehouse store"
3407
+ },
3408
+ {
3409
+ "name": "watch repair shop",
3410
+ "pluralName": "watch repair shops",
3411
+ "shortName": "watch repair"
3412
+ }
3413
+ ]
3414
+ },
3415
+ {
3416
+ "name": "travel & transport",
3417
+ "pluralName": "travel & transport",
3418
+ "shortName": "travel",
3419
+ "categories": [
3420
+ {
3421
+ "name": "airport",
3422
+ "pluralName": "airports",
3423
+ "shortName": "airport",
3424
+ "categories": [
3425
+ {
3426
+ "name": "airport food court",
3427
+ "pluralName": "airport food court",
3428
+ "shortName": "food court"
3429
+ },
3430
+ {
3431
+ "name": "airport gate",
3432
+ "pluralName": "airport gates",
3433
+ "shortName": "gate"
3434
+ },
3435
+ {
3436
+ "name": "airport lounge",
3437
+ "pluralName": "airport lounges",
3438
+ "shortName": "lounge"
3439
+ },
3440
+ {
3441
+ "name": "airport terminal",
3442
+ "pluralName": "airport terminals",
3443
+ "shortName": "terminal"
3444
+ },
3445
+ {
3446
+ "name": "airport tram",
3447
+ "pluralName": "airport trams",
3448
+ "shortName": "tram"
3449
+ },
3450
+ {
3451
+ "name": "plane",
3452
+ "pluralName": "planes",
3453
+ "shortName": "plane"
3454
+ }
3455
+ ]
3456
+ },
3457
+ {
3458
+ "name": "bike rental / bike share",
3459
+ "pluralName": "bike rentals / bike shares",
3460
+ "shortName": "bike"
3461
+ },
3462
+ {
3463
+ "name": "boat or ferry",
3464
+ "pluralName": "boats or ferries",
3465
+ "shortName": "boat / ferry"
3466
+ },
3467
+ {
3468
+ "name": "border crossing",
3469
+ "pluralName": "border crossings",
3470
+ "shortName": "border crossing"
3471
+ },
3472
+ {
3473
+ "name": "bus station",
3474
+ "pluralName": "bus stations",
3475
+ "shortName": "bus station",
3476
+ "categories": [
3477
+ {
3478
+ "name": "bus line",
3479
+ "pluralName": "bus lines",
3480
+ "shortName": "bus"
3481
+ }
3482
+ ]
3483
+ },
3484
+ {
3485
+ "name": "bus stop",
3486
+ "pluralName": "bus stops",
3487
+ "shortName": "bus stop"
3488
+ },
3489
+ {
3490
+ "name": "cable car",
3491
+ "pluralName": "cable cars",
3492
+ "shortName": "cable car"
3493
+ },
3494
+ {
3495
+ "name": "general travel",
3496
+ "pluralName": "general travel",
3497
+ "shortName": "travel"
3498
+ },
3499
+ {
3500
+ "name": "hotel",
3501
+ "pluralName": "hotels",
3502
+ "shortName": "hotel",
3503
+ "categories": [
3504
+ {
3505
+ "name": "bed & breakfast",
3506
+ "pluralName": "bed & breakfasts",
3507
+ "shortName": "B & B"
3508
+ },
3509
+ {
3510
+ "name": "boarding house",
3511
+ "pluralName": "boarding houses",
3512
+ "shortName": "boarding"
3513
+ },
3514
+ {
3515
+ "name": "hostel",
3516
+ "pluralName": "hostels",
3517
+ "shortName": "hostel"
3518
+ },
3519
+ {
3520
+ "name": "hotel pool",
3521
+ "pluralName": "hotel pools",
3522
+ "shortName": "pool"
3523
+ },
3524
+ {
3525
+ "name": "motel",
3526
+ "pluralName": "motels",
3527
+ "shortName": "motel"
3528
+ },
3529
+ {
3530
+ "name": "resort",
3531
+ "pluralName": "resorts",
3532
+ "shortName": "resort"
3533
+ },
3534
+ {
3535
+ "name": "roof deck",
3536
+ "pluralName": "roof decks",
3537
+ "shortName": "roof deck"
3538
+ }
3539
+ ]
3540
+ },
3541
+ {
3542
+ "name": "intersection",
3543
+ "pluralName": "intersections",
3544
+ "shortName": "intersection"
3545
+ },
3546
+ {
3547
+ "name": "light rail",
3548
+ "pluralName": "light rails",
3549
+ "shortName": "light rail"
3550
+ },
3551
+ {
3552
+ "name": "moving target",
3553
+ "pluralName": "moving targets",
3554
+ "shortName": "moving target"
3555
+ },
3556
+ {
3557
+ "name": "pier",
3558
+ "pluralName": "pier",
3559
+ "shortName": "pier"
3560
+ },
3561
+ {
3562
+ "name": "RV park",
3563
+ "pluralName": "RV parks",
3564
+ "shortName": "RV park"
3565
+ },
3566
+ {
3567
+ "name": "rental car location",
3568
+ "pluralName": "rental car locations",
3569
+ "shortName": "rental car"
3570
+ },
3571
+ {
3572
+ "name": "rest area",
3573
+ "pluralName": "rest areas",
3574
+ "shortName": "rest areas"
3575
+ },
3576
+ {
3577
+ "name": "road",
3578
+ "pluralName": "roads",
3579
+ "shortName": "road"
3580
+ },
3581
+ {
3582
+ "name": "street",
3583
+ "pluralName": "streets",
3584
+ "shortName": "street"
3585
+ },
3586
+ {
3587
+ "name": "subway",
3588
+ "pluralName": "subways",
3589
+ "shortName": "subway"
3590
+ },
3591
+ {
3592
+ "name": "taxi stand",
3593
+ "pluralName": "taxi stands",
3594
+ "shortName": "taxi stand"
3595
+ },
3596
+ {
3597
+ "name": "taxi",
3598
+ "pluralName": "taxis",
3599
+ "shortName": "taxi"
3600
+ },
3601
+ {
3602
+ "name": "toll booth",
3603
+ "pluralName": "toll booths",
3604
+ "shortName": "toll booth"
3605
+ },
3606
+ {
3607
+ "name": "toll plaza",
3608
+ "pluralName": "toll plazas",
3609
+ "shortName": "toll plaza"
3610
+ },
3611
+ {
3612
+ "name": "tourist information center",
3613
+ "pluralName": "tourist information centers",
3614
+ "shortName": "tourist information"
3615
+ },
3616
+ {
3617
+ "name": "train station",
3618
+ "pluralName": "train stations",
3619
+ "shortName": "train station",
3620
+ "categories": [
3621
+ {
3622
+ "name": "platform",
3623
+ "pluralName": "platforms",
3624
+ "shortName": "platform"
3625
+ },
3626
+ {
3627
+ "name": "train",
3628
+ "pluralName": "trains",
3629
+ "shortName": "train"
3630
+ }
3631
+ ]
3632
+ },
3633
+ {
3634
+ "name": "tram",
3635
+ "pluralName": "trams",
3636
+ "shortName": "tram"
3637
+ },
3638
+ {
3639
+ "name": "transportation service",
3640
+ "pluralName": "transportation services",
3641
+ "shortName": "transportation services"
3642
+ },
3643
+ {
3644
+ "name": "travel lounge",
3645
+ "pluralName": "travel lounges",
3646
+ "shortName": "lounge"
3647
+ },
3648
+ {
3649
+ "name": "tunnel",
3650
+ "pluralName": "tunnels",
3651
+ "shortName": "tunnel"
3652
+ }
3653
+ ]
3654
+ }
3655
+ ]
3656
+ }