├── .gitignore ├── data ├── societies_and_groups │ ├── designated_terrorist_groups │ │ ├── tunisia.json │ │ ├── ukraine.json │ │ ├── iran.json │ │ ├── china.json │ │ ├── egypt.json │ │ ├── saudi_arabia.json │ │ ├── kazakhstan.json │ │ ├── israel.json │ │ ├── turkey.json │ │ ├── australia.json │ │ ├── russia.json │ │ ├── united_arab_emirates.json │ │ ├── european_union.json │ │ ├── united_nations.json │ │ ├── india.json │ │ ├── canada.json │ │ ├── united_states.json │ │ └── united_kingdom.json │ ├── fraternities │ │ ├── defunct.json │ │ ├── coeducational_fraternities.json │ │ └── service.json │ └── semi_secret.json ├── materials │ ├── plastic-brands.json │ ├── carbon-allotropes.json │ ├── natural-materials.json │ ├── technical-fabrics.json │ ├── layperson-metals.json │ ├── fibers.json │ ├── abridged-body-fluids.json │ ├── packaging.json │ ├── building-materials.json │ ├── sculpture-materials.json │ ├── metals.json │ └── decorative-stones.json ├── games │ ├── bannedGames │ │ ├── denmark │ │ │ └── bannedList.json │ │ ├── argentina │ │ │ └── bannedList.json │ │ ├── china │ │ │ └── bannedList.json │ │ └── brazil │ │ │ └── bannedList.json │ ├── trivial_pursuit.json │ ├── scrabble.json │ ├── cluedo.json │ └── street_fighter_ii.json ├── foods │ ├── beer_categories.json │ ├── pizzaToppings.json │ ├── hot_peppers.json │ ├── breads_and_pastries.json │ ├── scotch_whiskey.json │ ├── iba_cocktails.json │ ├── fruits.json │ ├── wine_descriptions.json │ ├── condiments.json │ ├── bad_beers.json │ └── vegetables.json ├── geography │ ├── canada_provinces_and_territories.json │ ├── japanese_prefectures.json │ └── winds.json ├── words │ ├── state_verbs.json │ ├── units_of_time.json │ ├── possessive_pronouns.json │ ├── emoji │ │ └── cute_kaomoji.json │ ├── states_of_drunkenness.json │ ├── stopwords │ │ ├── jp.json │ │ ├── da.json │ │ ├── no.json │ │ ├── gr.json │ │ ├── ar.json │ │ ├── lv.json │ │ └── sk.json │ ├── personal_pronouns.json │ ├── encouraging_words.json │ ├── literature │ │ ├── lovecraft_words.json │ │ └── mr_men_little_miss.json │ ├── strange_words.json │ ├── rhymeless_words.json │ ├── crash_blossoms.json │ ├── resume_action_words.json │ └── prepositions.json ├── mythology │ ├── greek_monsters.json │ ├── greek_gods.json │ ├── greek_titans.json │ ├── norse_gods.json │ ├── hebrew_god.json │ ├── greek_myths_master.json │ ├── monsters.json │ └── lovecraft.json ├── architecture │ ├── passages.json │ └── rooms.json ├── mathematics │ └── trigonometry.json ├── film-tv │ └── look-around-you-shakespeare.json ├── humans │ ├── bodyParts.json │ ├── suffixes.json │ ├── prefixes.json │ ├── spanishLastNames.json │ ├── wrestlers.json │ ├── spinalTapDrummers.json │ └── lastNames.json ├── music │ ├── bands_that_have_opened_for_tool.json │ ├── instruments.json │ ├── xxl_freshman.json │ └── hamilton_musical_obcrecording_actors_characters.json ├── technology │ ├── photo_sharing_websites.json │ ├── fireworks.json │ ├── programming_languages.json │ ├── lisp.json │ ├── video_hosting_websites.json │ ├── guns_n_rifles.json │ ├── appliances.json │ └── computer_sciences.json ├── objects │ ├── corpora_winners.json │ └── clothing.json ├── plants │ └── flowers.json ├── corporations │ ├── cars.json │ ├── djia.json │ └── newspapers.json ├── archetypes │ ├── artifact.json │ └── event.json ├── science │ └── hail_size.json ├── animals │ ├── cats.json │ ├── birds_antarctica.json │ └── common.json ├── sports │ └── football │ │ ├── serieA.json │ │ ├── laliga_teams.json │ │ └── epl_teams.json ├── art │ └── isms.json └── religion │ └── parody_religions.json ├── .travis.yml ├── .editorconfig ├── Gruntfile.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | #*# 3 | *~ 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/tunisia.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Ansar al-Sharia (Tunisia)" 3 | ] 4 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/ukraine.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Donetsk People's Republic", 3 | "Lugansk People's Republic" 4 | ] 5 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/iran.json: -------------------------------------------------------------------------------- 1 | [ 2 | "al-Qaeda", 3 | "Jundallah", 4 | "Komalah", 5 | "Kurdistan Workers' Party", 6 | "People's Mujahedin of Iran" 7 | ] 8 | -------------------------------------------------------------------------------- /data/materials/plastic-brands.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "plastic brands", 3 | "plastic brands": [ 4 | "bakelite", 5 | "nalgene", 6 | "styrofoam", 7 | "tupperware" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /data/materials/carbon-allotropes.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "carbon allotropes", 3 | "carbon allotropes": [ 4 | "graphite", 5 | "graphene", 6 | "diamond", 7 | "carbon nanotube" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/china.json: -------------------------------------------------------------------------------- 1 | [ 2 | "East Turkestan Information Center", 3 | "East Turkestan Islamic Movement", 4 | "East Turkestan Liberation Organization", 5 | "World Uygur Youth Congress" 6 | ] 7 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/egypt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Ajnad Misr", 3 | "Ansar Bait al-Maqdis", 4 | "Hamas", 5 | "Izz ad-Din al-Qassam Brigades", 6 | "Hezbollah", 7 | "Islamic State of Iraq and the Levant", 8 | "Muslim Brotherhood" 9 | ] 10 | -------------------------------------------------------------------------------- /data/materials/natural-materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "natural materials", 3 | "natural materials": [ 4 | "adobe", 5 | "bamboo", 6 | "cordwood", 7 | "earth-sheltered", 8 | "papercrete", 9 | "rammed earth", 10 | "rock", 11 | "sawdust", 12 | "straw", 13 | "thatch" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Al-Nusra Front", 3 | "al-Qaeda in the Arabian Peninsula", 4 | "East Turkestan Liberation Organization", 5 | "Hezbollah Al-Hejaz", 6 | "Houthis", 7 | "Islamic State of Iraq and the Levant", 8 | "Muslim Brotherhood" 9 | ] 10 | -------------------------------------------------------------------------------- /data/games/bannedGames/denmark/bannedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"A list of video games banned in Denmark", 3 | "games":[ 4 | { 5 | "name":"EA Sports MMA", 6 | "reason":"This game was not released in Denmark because of a law prohibiting marketing for energy drinks, which EA chose not to remove from the game." 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /data/games/bannedGames/argentina/bannedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"A list of video games banned in Argentina", 3 | "games":[ 4 | { 5 | "name":"RapeLay", 6 | "reason":"Banned because the object of the game is to stalk and rape a woman and her two daughters, at least one of whom appears to be underage." 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /data/materials/technical-fabrics.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "technical fabrics", 3 | "technical fabrics": [ 4 | "gore-tex", 5 | "iron-on", 6 | "kevlar", 7 | "microfiber", 8 | "polar fleece", 9 | "polyurethane", 10 | "smartwool", 11 | "space blanket", 12 | "spandex", 13 | "vinyl", 14 | "polyester" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/kazakhstan.json: -------------------------------------------------------------------------------- 1 | [ 2 | "al-Qaeda", 3 | "Aum Shinrikyo", 4 | "East Turkestan Liberation Organization", 5 | "Hizb ut-Tahrir", 6 | "Islamic Movement of Uzbekistan", 7 | "Kurdistan Workers' Party", 8 | "Muslim Brotherhood", 9 | "Party of Free Life of Kurdistan", 10 | "Taliban" 11 | ] 12 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | 3 | python: 2.7 4 | 5 | sudo: false 6 | 7 | install: 8 | - npm install 9 | - pip install jsonchecker 10 | 11 | script: 12 | # JSON Lint: 13 | - grunt 14 | 15 | # Skip this file, it has valid duplicates: 16 | - rm data/words/verbs_with_conjugations.json 17 | 18 | # Check for duplicate values: 19 | - jsonchecker data --values --quiet 20 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | root = true 5 | 6 | [*] 7 | indent_style = space 8 | indent_size = 2 9 | 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /data/foods/beer_categories.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of beer categories.", 3 | "beer_categories": [ 4 | "Belgian and French ale", 5 | "British ale", 6 | "German ale", 7 | "German lager", 8 | "international ale", 9 | "international lager", 10 | "Irish ale", 11 | "North American ale", 12 | "North American lager", 13 | "other lager", 14 | "other style" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /data/geography/canada_provinces_and_territories.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of Canadian provinces and territories.", 3 | "provinces": [ 4 | "Alberta", 5 | "British Columbia", 6 | "Manitoba", 7 | "New Brunswick", 8 | "Newfoundland and Labrador", 9 | "Nova Scotia", 10 | "Ontario", 11 | "Prince Edward Island", 12 | "Quebec", 13 | "Saskatchewan" 14 | ], 15 | "territories": [ "Northwest Territories", "Nunavut", "Yukon"] 16 | } 17 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function (grunt) { 4 | 5 | grunt.loadNpmTasks('grunt-jsonlint'); 6 | 7 | grunt.initConfig({ 8 | 9 | jsonlint: { 10 | sample: { 11 | src: [ 'data/**/*.json' ] 12 | } 13 | } 14 | 15 | }); 16 | 17 | // Default task. 18 | grunt.registerTask('default', 'jsonlint'); 19 | 20 | // Travis CI task. 21 | grunt.registerTask('travis', 'jsonlint'); 22 | 23 | }; 24 | -------------------------------------------------------------------------------- /data/materials/layperson-metals.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "layperson metals", 3 | "layperson metals": [ 4 | "aluminium", 5 | "chromium", 6 | "copper", 7 | "gold", 8 | "iron", 9 | "lead", 10 | "nickel", 11 | "platinum", 12 | "silver", 13 | "tin", 14 | "titanium", 15 | "zinc", 16 | "steel", 17 | "brass", 18 | "electrum", 19 | "bronze", 20 | "sterling", 21 | "pewter" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/israel.json: -------------------------------------------------------------------------------- 1 | [ 2 | "al-Aqsa Foundation", 3 | "Comite' de Blenfaisance et de Solidarite' avec la Plestine", 4 | "Force 17", 5 | "Hamas", 6 | "Holy Land Foundation for Relief and Development", 7 | "Islamic State of Iraq and the Levant", 8 | "Kach and Kahane Chai", 9 | "Palestine al-muslima", 10 | "Palestine Liberation Front", 11 | "Palestinian Relief Development Fund – Interpal", 12 | "Tanzim" 13 | ] 14 | -------------------------------------------------------------------------------- /data/words/state_verbs.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "word": "been", 3 | "verb-type": "state-verb" 4 | }, { 5 | "word": "being", 6 | "verb-type": "state-verb" 7 | }, { 8 | "word": "be", 9 | "verb-type": "state-verb" 10 | }, { 11 | "word": "were", 12 | "verb-type": "state-verb" 13 | }, { 14 | "word": "was", 15 | "verb-type": "state-verb" 16 | }, { 17 | "word": "are", 18 | "verb-type": "state-verb" 19 | }, { 20 | "word": "is", 21 | "verb-type": "state-verb" 22 | }, { 23 | "word": "am", 24 | "verb-type": "state-verb" 25 | }] 26 | -------------------------------------------------------------------------------- /data/mythology/greek_monsters.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"Monsters from Greek myth", 3 | "greek_monsters": [ 4 | "Arachne", 5 | "Caucasian Eagle", 6 | "Centaur", 7 | "Charybdis", 8 | "Chimera", 9 | "Empousai", 10 | "Gorgon", 11 | "Harpy", 12 | "Hippalectryon", 13 | "Hippocampus", 14 | "Icthyocentaur", 15 | "Ipotane", 16 | "Lamia", 17 | "Hydra", 18 | "Manticore", 19 | "Minotaur", 20 | "Mormo", 21 | "Ophitaurus", 22 | "Satyr", 23 | "Synthian Dracanus", 24 | "Siren", 25 | "Taraxippus", 26 | "Telekhines", 27 | "Typhon" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/turkey.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Al-Nusra Front", 3 | "Communist Party of Turkey/Marxist–Leninist", 4 | "Ergenekon", 5 | "Great Eastern Islamic Raiders' Front", 6 | "Hezbollah (Turkey)", 7 | "Hilafet Devleti", 8 | "Islamic State of Iraq and the Levant", 9 | "Kurdistan Democratic Party/North", 10 | "Kurdistan Workers' Party", 11 | "Marxist–Leninist Communist Party", 12 | "Revolutionary Party of Kurdistan", 13 | "Revolutionary People's Liberation Party–Front", 14 | "Tevhid-Selam (Al-Quds Army)" 15 | ] 16 | -------------------------------------------------------------------------------- /data/mythology/greek_gods.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Gods and goddesses from Greek myth", 3 | "greek_gods": [ 4 | "Aphrodite", 5 | "Apollo", 6 | "Ares", 7 | "Artemis", 8 | "Athena", 9 | "Demeter", 10 | "Dionysus", 11 | "Hades", 12 | "Hephaestus", 13 | "Hera", 14 | "Hermes", 15 | "Hestia", 16 | "Poseidon", 17 | "Zeus", 18 | "Aether", 19 | "Ananke", 20 | "Chaos", 21 | "Chronos", 22 | "Erebus", 23 | "Eros", 24 | "Hypnos", 25 | "Uranus", 26 | "Gaia", 27 | "Phanes", 28 | "Pontus", 29 | "Tartarus", 30 | "Thalassa", 31 | "Thanatos", 32 | "Hemera", 33 | "Nyx", 34 | "Nemesis" 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /data/foods/pizzaToppings.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of pizza toppings.", 3 | "pizzaToppings": [ 4 | "anchovies", 5 | "artichoke", 6 | "bacon", 7 | "breakfast bacon", 8 | "Canadian bacon", 9 | "cheese", 10 | "chicken", 11 | "chili peppers", 12 | "feta", 13 | "garlic", 14 | "green peppers", 15 | "grilled onions", 16 | "ground beef", 17 | "ham", 18 | "hot sauce", 19 | "meatballs", 20 | "mushrooms", 21 | "olives", 22 | "onions", 23 | "pepperoni", 24 | "pineapple", 25 | "sausage", 26 | "spinach", 27 | "sun-dried tomato", 28 | "tomatoes" 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /data/mythology/greek_titans.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"Titans from Greek myth", 3 | "greek_titans": [ 4 | "Coeus", 5 | "Crius", 6 | "Cronus", 7 | "Hyperion", 8 | "Iapetus", 9 | "Mnemosyne", 10 | "Oceanus", 11 | "Phoebe", 12 | "Rhea", 13 | "Tethys", 14 | "Theia", 15 | "Themis", 16 | "Asteria", 17 | "Astraeus", 18 | "Atlas", 19 | "Aura", 20 | "Clymene", 21 | "Dione", 22 | "Helios", 23 | "Selene", 24 | "Eos", 25 | "Epimetheus", 26 | "Eurybia", 27 | "Eurynome", 28 | "Lelantos", 29 | "Leto", 30 | "Menoeltius", 31 | "Metis", 32 | "Ophion", 33 | "Pallas", 34 | "Perses", 35 | "Prometheus", 36 | "Styx" 37 | ] 38 | } 39 | -------------------------------------------------------------------------------- /data/materials/fibers.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "fibers", 3 | "fibers": [ 4 | "batting", 5 | "boron fiber", 6 | "carding", 7 | "cellulose fiber", 8 | "codilla", 9 | "desizing", 10 | "fibril", 11 | "forbon", 12 | "leatheroid", 13 | "lenzing, grimsby", 14 | "lint", 15 | "mercerised cotton", 16 | "microfibril", 17 | "nanofiber", 18 | "natural fiber", 19 | "noil", 20 | "rolag", 21 | "roving", 22 | "sea silk", 23 | "setralit", 24 | "stainless steel fiber", 25 | "teased wool", 26 | "twine", 27 | "vulcanized fibre", 28 | "watap", 29 | "wood wool", 30 | "yarn", 31 | "zari" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "corpora", 3 | "version": "0.0.1", 4 | "description": "A collection of small corpuses of interesting data for the creation of weird internet stuff.", 5 | "devDependencies": { 6 | "grunt": "^0.4.3", 7 | "grunt-jsonlint": "^1.0.4", 8 | "grunt-cli": "^0.1.13" 9 | }, 10 | "scripts": { 11 | "test": "grunt travis --verbose" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/dariusk/corpora.git" 16 | }, 17 | "author": "Darius Kazemi", 18 | "license": "CC0", 19 | "bugs": { 20 | "url": "https://github.com/dariusk/corpora/issues" 21 | }, 22 | "homepage": "https://github.com/dariusk/corpora" 23 | } 24 | -------------------------------------------------------------------------------- /data/architecture/passages.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Ways to enter or exit a place.", 3 | "passages": [ 4 | "avenue", 5 | "conveyor", 6 | "corridor", 7 | "door", 8 | "doorway", 9 | "dumbwaiter", 10 | "entrance", 11 | "entryway", 12 | "exit", 13 | "fire escape", 14 | "fire pole", 15 | "foyer", 16 | "gate", 17 | "hallway", 18 | "hatch", 19 | "ladder", 20 | "opening", 21 | "passage", 22 | "passageway", 23 | "path", 24 | "pit", 25 | "secret door", 26 | "staircase", 27 | "stairway", 28 | "step", 29 | "track", 30 | "trail", 31 | "trapdoor", 32 | "tunnel", 33 | "walkway" 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /data/mathematics/trigonometry.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"A list of trigonometric functions, formulas, equations, etc..", 3 | "numbers":[ 4 | "tan(x) = sin(x)/cos(x)", 5 | "cot(x) = cos(x)/sin(x)", 6 | "csc(x) = 1/sin(x)", 7 | "sin(x) = 1/csc(x)", 8 | "sec(x) = 1/cos(x)", 9 | "cos(x) = 1/sec(x)", 10 | "cot(x) = 1/tan(x)", 11 | "tan(x) = 1/cot(x)", 12 | "sin^2(x) + cos^2(x) = 1", 13 | "tan^2(x) + 1 = sec^2(x)", 14 | "1 + cot^2(x) = csc^2(x)", 15 | "sin(-x) = -sin(x)", 16 | "csc(-x) = -csc(x)", 17 | "cos(-x) = cos(x)", 18 | "sec(-x) = sec(x)", 19 | "tan(-x) = -tan(x)", 20 | "cot(-x) = -cot(x)", 21 | "sin(2x) = 2sin(x)cos(x)" 22 | ] 23 | 24 | } 25 | -------------------------------------------------------------------------------- /data/materials/abridged-body-fluids.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "abridged body fluids", 3 | "abridged body fluids": [ 4 | "amniotic fluid", 5 | "aqueous humour", 6 | "vitreous humour", 7 | "bile", 8 | "blood", 9 | "blood serum", 10 | "cerebrospinal fluid", 11 | "cerumen", 12 | "earwax", 13 | "chyle", 14 | "chyme", 15 | "endolymph", 16 | "perilymph", 17 | "gastric acid", 18 | "gastric juice", 19 | "lymph", 20 | "mucus", 21 | "pericardial fluid", 22 | "peritoneal fluid", 23 | "pleural fluid", 24 | "pus", 25 | "rheum", 26 | "saliva", 27 | "sebum", 28 | "sputum", 29 | "synovial fluid", 30 | "sweat", 31 | "tears", 32 | "vomit" 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /data/words/units_of_time.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of units of time ordered by magnitude, both formal and colloquial.", 3 | "comments": ["Some lists are incomplete, feel free to add"], 4 | "formal_time_units": [ 5 | "nanosecond", 6 | "microsecond", 7 | "millisecond", 8 | "second", 9 | "minute", 10 | "hour", 11 | "day", 12 | "week", 13 | "month", 14 | "year", 15 | "decade", 16 | "century", 17 | "millenium" 18 | ], 19 | "informal_discrete_time_units": [ 20 | "fortnight", 21 | "blue moon", 22 | "30 days", 23 | "90 days", 24 | "quarter" 25 | ], 26 | "informal_nondiscrete_time_units": [ 27 | "moment", 28 | "once in a while", 29 | "later", 30 | "a bit" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /data/words/possessive_pronouns.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "word": "my", 3 | "people": "f", 4 | "number": "s" 5 | }, { 6 | "word": "your", 7 | "people": "s" 8 | }, { 9 | "word": "our", 10 | "people": "f" 11 | }, { 12 | "word": "their", 13 | "people": "t" 14 | }, { 15 | "word": "his", 16 | "people": "t", 17 | "gender": "m" 18 | }, { 19 | "word": "her", 20 | "people": "t", 21 | "gender": "f", 22 | "number": "s" 23 | }, { 24 | "word": "its", 25 | "people": "t", 26 | "number": "s" 27 | }, { 28 | "word": "hers", 29 | "people": "t", 30 | "gender": "f", 31 | "number": "s" 32 | }, { 33 | "word": "yours", 34 | "people": "s" 35 | }, { 36 | "word": "ours", 37 | "people": "f", 38 | "number": "p" 39 | }, { 40 | "word": "theirs", 41 | "people": "t", 42 | "number": "p" 43 | }] 44 | -------------------------------------------------------------------------------- /data/film-tv/look-around-you-shakespeare.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The complete works of Shakespeare, according to Look Around You", 3 | "plays": [ 4 | "The Noble Naysayer", 5 | "Rupert II", 6 | "The Whore & The Harriman", 7 | "The Weary Wives Of Warwick", 8 | "O’Reilly", 9 | "The House At Bunplehurst", 10 | "Rupert III", 11 | "Cognumis & Grognumis", 12 | "’Twas a Merry Morn in Malta", 13 | "Tit For Tat", 14 | "Ian I", 15 | "Ian II", 16 | "Ian III Part I", 17 | "Ian III Part II", 18 | "Ian III Part III", 19 | "Razzamatazz", 20 | "Bessie’s Revenge", 21 | "Rupert IV", 22 | "David’s Diary", 23 | "Knock Knock", 24 | "Catherine & Casanova", 25 | "Rupert V", 26 | "Harlem Blues" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /data/games/trivial_pursuit.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Pie categories and colors from Trivial Pursuit", 3 | "pie": [ 4 | { 5 | "category": "Geography", 6 | "color": "blue" 7 | }, 8 | { 9 | "category": "Entertainment", 10 | "color": "pink" 11 | }, 12 | { 13 | "category": "History", 14 | "color": "yellow" 15 | }, 16 | { 17 | "category": "Arts & Literature", 18 | "color": "brown" 19 | }, 20 | { 21 | "category": "Science & Nature", 22 | "color": "green" 23 | }, 24 | { 25 | "category": "Sports & Leisure", 26 | "color": "orange" 27 | } 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/australia.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Abu Sayyaf", 3 | "Al-Mourabitoun", 4 | "Al-Nusra Front", 5 | "al-Qaeda", 6 | "al-Qaeda in the Arabian Peninsula", 7 | "al-Qaeda in the Islamic Maghreb", 8 | "Al-Shabaab", 9 | "Ansar al-Islam", 10 | "Boko Haram", 11 | "Hamas", 12 | "Izz ad-Din al-Qassam Brigades", 13 | "Hezbollah (External Security Organisation)", 14 | "Islamic Movement of Uzbekistan", 15 | "Islamic State of Iraq and the Levant", 16 | "Jaish-e-Mohammed", 17 | "Jamiat ul-Ansar", 18 | "Jemaah Islamiyah", 19 | "Kurdistan Workers' Party", 20 | "Lashkar-e-Taiba", 21 | "Lashkar-e-Jhangvi", 22 | "Liberation Tigers of Tamil Eelam", 23 | "Palestinian Islamic Jihad" 24 | ] 25 | -------------------------------------------------------------------------------- /data/materials/packaging.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "packaging", 3 | "packaging": [ 4 | "aluminium foil", 5 | "bopet", 6 | "bubble wrap", 7 | "cellophane", 8 | "corrugated fiberboard", 9 | "corrugated plastic", 10 | "cushioning", 11 | "foam peanut", 12 | "glass", 13 | "hot-melt adhesive", 14 | "kraft paper", 15 | "linear low-density polyethylene", 16 | "liquid packaging board", 17 | "low-density polyethylene", 18 | "metallised film", 19 | "modified atmosphere", 20 | "molded pulp", 21 | "nonwoven fabric", 22 | "paperboard", 23 | "plastic film", 24 | "plastic wrap", 25 | "polyester", 26 | "polyethylene", 27 | "polypropylene", 28 | "shrinkwrap", 29 | "tinplate", 30 | "velostat" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /data/words/emoji/cute_kaomoji.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A general corpus of cute kaomoji.", 3 | "cuteKaomoji": 4 | [ 5 | "(´・` )♡", 6 | "(✿ ♥‿♥)", 7 | "(♥ω♥*)", 8 | "(∿°○°)∿ ︵ ǝʌol", 9 | "(๑°꒵°๑)・*♡", 10 | "♡´・ᴗ・`♡", 11 | "(´•ω•`♥)", 12 | "(*´c_,`*)", 13 | "(●´Д`●)", 14 | "(つω`●)", 15 | "(●⌒v⌒●)", 16 | "。◕‿◕。", 17 | "(◕‿◕✿)", 18 | "(◡‿◡✿)", 19 | "(✿◠‿◠)", 20 | "(ㆁᴗㆁ✿)", 21 | "(ᅌᴗᅌ* )", 22 | "(๑╹っ╹๑)", 23 | "°˖✧◝(⁰▿⁰)◜✧˖°", 24 | "(• ω •)", 25 | "(灬╹ω╹灬)", 26 | "٩(๑❛ᴗ❛๑)۶", 27 | "(◍•ᴗ•◍)", 28 | "╰(*´︶`*)╯", 29 | "✿*,(*´◕ω◕`*)+✿.*", 30 | "(✾♛‿♛)ノ*♡*", 31 | "(◔ᴥ◔)", 32 | "゚・✿ヾ╲(。◕‿◕。)╱✿・゚", 33 | "≧◠◡◠≦", 34 | "ʕ•ᴥ•ʔ" 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /data/humans/bodyParts.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of common human body parts.", 3 | "bodyParts": [ 4 | "ankle", 5 | "arm", 6 | "back", 7 | "belly", 8 | "bottom", 9 | "breast", 10 | "buttocks", 11 | "calf", 12 | "cheek", 13 | "chin", 14 | "ear", 15 | "elbow", 16 | "eye", 17 | "eyebrow", 18 | "eyelash", 19 | "finger", 20 | "fist", 21 | "foot", 22 | "forearm", 23 | "forehead", 24 | "hair", 25 | "hand", 26 | "head", 27 | "hip", 28 | "knee", 29 | "leg", 30 | "lip", 31 | "lower leg", 32 | "mouth", 33 | "neck", 34 | "nose", 35 | "nostril", 36 | "shoulder", 37 | "thigh", 38 | "thumb", 39 | "toe", 40 | "tongue", 41 | "tooth", 42 | "upper arm", 43 | "waist", 44 | "wrist" 45 | ] 46 | } 47 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/russia.json: -------------------------------------------------------------------------------- 1 | [ 2 | "al-Gama'a al-Islamiyya", 3 | "al-Haramain Foundation", 4 | "Al-Nusra Front", 5 | "al-Qaeda", 6 | "al-Qaeda in the Islamic Maghreb", 7 | "Osbat al-Ansar", 8 | "Caucasus Emirate", 9 | "Egyptian Islamic Jihad", 10 | "Hizb ut-Tahrir", 11 | "Islamic Jihad – Jamaat Mujahideen", 12 | "Islamic Movement of Uzbekistan", 13 | "Islamic State of Iraq and the Levant", 14 | "Jamiat al-Islah al-Idzhtimai", 15 | "Jamiat-e Islami", 16 | "Jund al-Sham", 17 | "Lashkar-e-Taiba", 18 | "Muslim Brotherhood", 19 | "People's Congress of Ichkeria and Dagestan", 20 | "Society of the Revival of Islamic Heritage", 21 | "Supreme Military Majlis ul-Shura of the United Mujahideen Forces of Caucasus", 22 | "Taliban" 23 | ] 24 | -------------------------------------------------------------------------------- /data/humans/suffixes.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Suffixes taken from a form on an airline website.", 3 | "suffixes": [ 4 | "Jr", 5 | "Sr", 6 | "II", 7 | "III", 8 | "M.D", 9 | "Ph.D.", 10 | "(Ret)", 11 | "C.P.A", 12 | "D.D.S", 13 | "DC", 14 | "DD", 15 | "DDSPA", 16 | "DMD", 17 | "DO", 18 | "DPM", 19 | "DR", 20 | "DVM", 21 | "ESP", 22 | "Esq.", 23 | "Filho", 24 | "I", 25 | "INC", 26 | "ITF", 27 | "IV", 28 | "IX", 29 | "MDPA", 30 | "MFCC", 31 | "MS", 32 | "ND", 33 | "Neto", 34 | "O.D.P.C.", 35 | "O.F.M.", 36 | "OBS", 37 | "OD", 38 | "P.A.", 39 | "PC", 40 | "PRS", 41 | "Q.C.", 42 | "R.N.", 43 | "Sobrinho", 44 | "THD", 45 | "V", 46 | "VI", 47 | "VMD", 48 | "VP" 49 | ] 50 | } 51 | -------------------------------------------------------------------------------- /data/music/bands_that_have_opened_for_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Bands that have opened for Tool. You must be really dedicated to your music if you are willing to play before Tool fans.", 3 | "bands": [ 4 | "Big Business", 5 | "Cortizone", 6 | "Cosmic Psychos", 7 | "Dälek", 8 | "Failure", 9 | "Fantômas", 10 | "Headswim", 11 | "Intronaut", 12 | "Isis", 13 | "Jakob", 14 | "King Crimson", 15 | "Kinski", 16 | "Mastodon", 17 | "Melt-Banana", 18 | "Meshuggah", 19 | "Pablo", 20 | "Paw", 21 | "Peach", 22 | "Psychotic", 23 | "Rajas", 24 | "Russian Circles", 25 | "Submarine", 26 | "The Cows", 27 | "The Flaming Lips", 28 | "The Melvins", 29 | "Tomahawk", 30 | "Trans Am", 31 | "Tricky", 32 | "TU", 33 | "Tweak Bird", 34 | "Wovenhand", 35 | "YOB" 36 | ] 37 | } -------------------------------------------------------------------------------- /data/words/states_of_drunkenness.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of states of drunkenness.", 3 | "states_of_drunkenness": 4 | [ "drunk", 5 | "hammered", 6 | "intoxicated", 7 | "impaired", 8 | "stinko", 9 | "wrecked", 10 | "pissed", 11 | "blotto", 12 | "sloshed", 13 | "buzzed", 14 | "tight", 15 | "canned", 16 | "baked", 17 | "thrashed", 18 | "trashed", 19 | "tipsy", 20 | "smashed", 21 | "totaled", 22 | "tore up", 23 | "gone", 24 | "soused", 25 | "thirsty", 26 | "annihilated", 27 | "blitzed", 28 | "stoned", 29 | "lit", 30 | "plastered", 31 | "three sheets to the wind", 32 | "tanked", 33 | "delerious", 34 | "friendly", 35 | "disorderly", 36 | "rowdy", 37 | "stewed" 38 | ] 39 | } -------------------------------------------------------------------------------- /data/technology/photo_sharing_websites.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Photo sharing websites", 3 | "PhotoSharingWebsites": [ 4 | "500px", 5 | "Bayimg", 6 | "Dayviews", 7 | "DeviantArt", 8 | "Flickr", 9 | "Fotki", 10 | "Fotolog", 11 | "Fotopic.net", 12 | "GazoPa Bloom", 13 | "GifBoom", 14 | "Imgur", 15 | "imm.io", 16 | "Instagram", 17 | "Ipernity", 18 | "jAlbum", 19 | "Kodak Gallery", 20 | "Lafango", 21 | "Lockerz", 22 | "MobileMe", 23 | "Ovi Share", 24 | "Panoramio", 25 | "Phanfare", 26 | "Photobucket", 27 | "Photoshare", 28 | "Pinterest", 29 | "Pixabay", 30 | "Pixorial", 31 | "Radar.net", 32 | "Shutterfly", 33 | "SmugMug", 34 | "Snapfish", 35 | "Streamzoo", 36 | "TinyPic", 37 | "Trovebox", 38 | "Webshots", 39 | "yfrog", 40 | "Zooomr" 41 | ] 42 | } 43 | -------------------------------------------------------------------------------- /data/words/stopwords/jp.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Japanese stop words", 3 | "stopWords": 4 | [ 5 | "これ", 6 | "それ", 7 | "あれ", 8 | "この", 9 | "その", 10 | "あの", 11 | "ここ", 12 | "そこ", 13 | "あそこ", 14 | "こちら", 15 | "どこ", 16 | "だれ", 17 | "なに", 18 | "なん", 19 | "何", 20 | "私", 21 | "貴方", 22 | "貴方方", 23 | "我々", 24 | "私達", 25 | "あの人", 26 | "あのかた", 27 | "彼女", 28 | "彼", 29 | "です", 30 | "あります", 31 | "おります", 32 | "います", 33 | "は", 34 | "が", 35 | "の", 36 | "に", 37 | "を", 38 | "で", 39 | "え", 40 | "から", 41 | "まで", 42 | "より", 43 | "も", 44 | "どの", 45 | "と", 46 | "し", 47 | "それで", 48 | "しかし" 49 | ] 50 | } 51 | -------------------------------------------------------------------------------- /data/technology/fireworks.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list (ooh!) of firework effects (aah!)", 3 | "effects": [ 4 | "bees", 5 | "Bengal fire", 6 | "bouquet", 7 | "brocade", 8 | "cake", 9 | "Catherine wheel", 10 | "chrysanthemum", 11 | "comet", 12 | "crackle", 13 | "crossette", 14 | "dahlia", 15 | "diadem", 16 | "falling leaf", 17 | "fish", 18 | "glitter", 19 | "ground bloom flower", 20 | "helicopter", 21 | "horsetail", 22 | "kamuro", 23 | "mine", 24 | "maroon", 25 | "palm", 26 | "pearls", 27 | "peony", 28 | "pistil", 29 | "pot à feu", 30 | "ring", 31 | "Roman candle", 32 | "salute", 33 | "silver fish", 34 | "snail", 35 | "spider", 36 | "stars", 37 | "strobe", 38 | "thousands", 39 | "tail", 40 | "time rain", 41 | "waterfall", 42 | "whirl", 43 | "willow" 44 | ] 45 | } 46 | -------------------------------------------------------------------------------- /data/technology/programming_languages.json: -------------------------------------------------------------------------------- 1 | [ 2 | "ABAP", 3 | "ActionScript", 4 | "Ada", 5 | "Assembly language", 6 | "AutoHotkey", 7 | "AutoIt", 8 | "Awk", 9 | "C", 10 | "C#", 11 | "C++", 12 | "COBOL", 13 | "CSS", 14 | "CoffeeScript", 15 | "D", 16 | "Dart", 17 | "Erlang", 18 | "F#", 19 | "Fortran", 20 | "FoxPro", 21 | "Go", 22 | "Groovy", 23 | "Haskell", 24 | "Java", 25 | "JavaScript", 26 | "LabVIEW", 27 | "Ladder Logic", 28 | "Lisp", 29 | "Logo", 30 | "Lua", 31 | "MATLAB", 32 | "ML", 33 | "Object Pascal", 34 | "Objective-C", 35 | "OpenEdge ABL", 36 | "PHP", 37 | "PL/SQL", 38 | "Pascal", 39 | "Perl", 40 | "Prolog", 41 | "Python", 42 | "R", 43 | "RPG (OS/400)", 44 | "Ruby", 45 | "Rust", 46 | "SAS", 47 | "Scala", 48 | "Scheme", 49 | "Scratch", 50 | "Swift", 51 | "TeX", 52 | "Transact-SQL", 53 | "VBScript", 54 | "VHDL", 55 | "Visual Basic" 56 | ] 57 | -------------------------------------------------------------------------------- /data/objects/corpora_winners.json: -------------------------------------------------------------------------------- 1 | { 2 | "description" : "Winners in the Corpora Brackets, from https://twitter.com/corporabrackets", 3 | "winners" : [{ 4 | "bracket" : "condiments", 5 | "winner" : "Guacamole" 6 | }, { 7 | "bracket" : "Deities and supernatural creatures", 8 | "winner" : "Many-angled One" 9 | }, { 10 | "bracket" : "elements", 11 | "winner" : "Ytterbium" 12 | }, { 13 | "bracket" : "fibers", 14 | "winner" : "yarn" 15 | }, { 16 | "bracket" : "positive emoji", 17 | "winner" : "🔥" 18 | }, { 19 | "bracket" : "decorative stones", 20 | "winner" : "oolitic limestone" 21 | }, { 22 | "bracket" : "packaging", 23 | "winner" : "modified atmosphere" 24 | }, { 25 | "bracket" : "Common character archetypes", 26 | "winner" : "trickster" 27 | }, { 28 | "bracket" : "flowers", 29 | "winner" : "foxglove" 30 | } 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Abdullah Azzam Brigades", 3 | "Abu Sayyaf", 4 | "al-Gama'a al-Islamiyya", 5 | "Al-Nusra Front", 6 | "al-Qaeda", 7 | "al-Qaeda in the Arabian Peninsula", 8 | "al-Qaeda in the Islamic Maghreb", 9 | "Al-Shabaab", 10 | "Ansar al-Sharia (Libya)", 11 | "Ansar al-Sharia (Tunisia)", 12 | "Ansar al-Islam", 13 | "Ansar Bait al-Maqdis", 14 | "Army of Islam", 15 | "Osbat al-Ansar", 16 | "Boko Haram", 17 | "Caucasus Emirate", 18 | "East Turkestan Islamic Movement", 19 | "Haqqani network", 20 | "Hezbollah Al-Hejaz", 21 | "Houthis", 22 | "Indian Mujahideen", 23 | "Islamic Movement of Uzbekistan", 24 | "Islamic State of Iraq and the Levant", 25 | "Jaish-e-Mohammed", 26 | "Kata'ib Hezbollah", 27 | "Lashkar-e-Taiba", 28 | "Muslim Brotherhood", 29 | "Taliban", 30 | "Tehrik-i-Taliban Pakistan" 31 | ] 32 | -------------------------------------------------------------------------------- /data/music/instruments.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Musical Instruments", 3 | "instruments": [ 4 | "accordian", 5 | "air horn", 6 | "baby grand piano", 7 | "bagpipe", 8 | "banjo", 9 | "bass guitar", 10 | "bassoon", 11 | "bugle", 12 | "calliope", 13 | "cello", 14 | "clarinet", 15 | "clavichord", 16 | "concertina", 17 | "didgeridoo", 18 | "dobro", 19 | "dulcimer", 20 | "fiddle", 21 | "fife", 22 | "flugelhorn", 23 | "flute", 24 | "French horn", 25 | "glockenspiel", 26 | "grand piano", 27 | "guitar", 28 | "harmonica", 29 | "harp", 30 | "harpsichord", 31 | "hurdy-gurdy", 32 | "kazoo", 33 | "kick drum", 34 | "lute", 35 | "lyre", 36 | "mandolin", 37 | "marimba", 38 | "mellotran", 39 | "melodica", 40 | "oboe", 41 | "pan flute", 42 | "piano", 43 | "piccolo", 44 | "pipe organ", 45 | "saxaphone", 46 | "sitar", 47 | "sousaphone", 48 | "tambourine", 49 | "theremin", 50 | "trombone", 51 | "tuba", 52 | "ukulele", 53 | "viola", 54 | "violin", 55 | "vuvuzela", 56 | "washtub bass", 57 | "xylophone", 58 | "zither" 59 | ] 60 | } 61 | -------------------------------------------------------------------------------- /data/materials/building-materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "building materials", 3 | "building materials": [ 4 | "plaster", 5 | "gypsum board", 6 | "cement", 7 | "ceramic tile", 8 | "terrazzo", 9 | "carpet", 10 | "wallpaper", 11 | "paint", 12 | "wood", 13 | "adobe", 14 | "brick", 15 | "glass brick", 16 | "terra cotta", 17 | "cinder block", 18 | "stone", 19 | "urbanite", 20 | "rebar", 21 | "wire rope", 22 | "copper", 23 | "timber", 24 | "dimensional lumber", 25 | "plywood", 26 | "shiplap", 27 | "oriented strand board", 28 | "parallel strand lumber", 29 | "glue-laminate", 30 | "plastic laminate", 31 | "plastic", 32 | "aluminum", 33 | "asphalt", 34 | "concrete", 35 | "glass", 36 | "hemp", 37 | "rammed earth", 38 | "mud", 39 | "sand", 40 | "asbestos", 41 | "glass wool", 42 | "glass fiber", 43 | "polyurethane", 44 | "polystyrene", 45 | "styrofoam", 46 | "clay", 47 | "paper", 48 | "gravel" 49 | ] 50 | } 51 | -------------------------------------------------------------------------------- /data/words/personal_pronouns.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "word": "I", 3 | "people": "f", 4 | "gender": "", 5 | "number": "s" 6 | },{ 7 | "word": "me", 8 | "people": "f", 9 | "gender": "", 10 | "number": "s" 11 | },{ 12 | "word": "we", 13 | "people": "f", 14 | "gender": "", 15 | "number": "p" 16 | },{ 17 | "word": "us", 18 | "people": "f", 19 | "gender": "", 20 | "number": "p" 21 | },{ 22 | "word": "you", 23 | "people": "s", 24 | "gender": "", 25 | "number": "" 26 | },{ 27 | "word": "she", 28 | "people": "t", 29 | "gender": "f", 30 | "number": "s" 31 | },{ 32 | "word": "her", 33 | "people": "t", 34 | "gender": "f", 35 | "number": "s" 36 | },{ 37 | "word": "he", 38 | "people": "t", 39 | "gender": "m", 40 | "number": "s" 41 | },{ 42 | "word": "him", 43 | "people": "t", 44 | "gender": "m", 45 | "number": "s" 46 | },{ 47 | "word": "it", 48 | "people": "t", 49 | "gender": "", 50 | "number": "s" 51 | },{ 52 | "word": "they", 53 | "people": "t", 54 | "gender": "", 55 | "number": "p" 56 | },{ 57 | "word": "them", 58 | "people": "t", 59 | "gender": "", 60 | "number": "p" 61 | }] 62 | -------------------------------------------------------------------------------- /data/materials/sculpture-materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "sculpture materials", 3 | "sculpture materials": [ 4 | "alabaster", 5 | "barre granite", 6 | "clay", 7 | "cold porcelain", 8 | "concrete", 9 | "equilibrium gel", 10 | "faux bois", 11 | "ferrocement", 12 | "fimo", 13 | "glass", 14 | "granite", 15 | "hepatizon", 16 | "ivory", 17 | "kato polyclay", 18 | "latex", 19 | "limestone", 20 | "copper", 21 | "marble", 22 | "metal clay", 23 | "microcrystalline wax", 24 | "milliput", 25 | "modelling clay", 26 | "pagodite", 27 | "papier-mâché", 28 | "plaster", 29 | "plasticine", 30 | "plastilina", 31 | "play-doh", 32 | "polymer clay", 33 | "roman concrete", 34 | "rtv silicone", 35 | "salt ceramic", 36 | "salt dough", 37 | "sculpey", 38 | "silicone rubber", 39 | "soapstone", 40 | "stone sculpture", 41 | "sugru", 42 | "terracotta", 43 | "tuckahoe marble", 44 | "vegetable ivory", 45 | "wax carving", 46 | "weathering steel", 47 | "westchester marble" 48 | ] 49 | } 50 | -------------------------------------------------------------------------------- /data/words/encouraging_words.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "a list of encouraging words to tell someone about something they created", 3 | "encouraging_words": [ 4 | "amazing", 5 | "awesome", 6 | "beautiful", 7 | "bravo", 8 | "brilliant", 9 | "breathtaking", 10 | "congratulations", 11 | "cool", 12 | "dazzling", 13 | "delightful", 14 | "electrifying", 15 | "elegant", 16 | "enchanting", 17 | "excellent", 18 | "exciting", 19 | "fabulous", 20 | "fantastic", 21 | "fun", 22 | "genius", 23 | "groundbreaking", 24 | "heavenly", 25 | "impressive", 26 | "innovative", 27 | "inventive", 28 | "kind", 29 | "legendary", 30 | "lifechanging", 31 | "lovely", 32 | "magical", 33 | "marvelous", 34 | "masterful", 35 | "miraculous", 36 | "original", 37 | "perfect", 38 | "phenomenal", 39 | "powerful", 40 | "remarkable", 41 | "rejuvenating", 42 | "resounding", 43 | "skillful", 44 | "stupendous", 45 | "stunning", 46 | "sweet", 47 | "terrific", 48 | "thoughtful", 49 | "thrilling", 50 | "wonderful", 51 | "wondrous" 52 | ] 53 | } 54 | -------------------------------------------------------------------------------- /data/games/bannedGames/china/bannedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"A list of video games banned in China.", 3 | "games":[ 4 | { 5 | "name":"Battlefield 4", 6 | "reason":"Banned due to the discrediting of China's national image as well as a threat to national security, in which the Chinese Ministry claims that the game shows it a 'cultural invasion.'" 7 | }, 8 | { 9 | "name":"Command & Conquer Generals", 10 | "reason":"Banned for 'smearing the image of China and the Chinese army' despite the fact that the game presents China as a quasi-protagonist. Additionally, the GLA campaign has the player destroy questionable targets such as the Three Gorges Dam and the Hong Kong Convention and Exhibition Centre." 11 | }, 12 | { 13 | "name":"Football Manager 2005", 14 | "reason":"Banned for recognizing Tibet as an independent country." 15 | }, 16 | { 17 | "name":"Hearts of Iron", 18 | "reason":"Banned for portraying Tibet, Sinkiang, and Manchuria as independent countries and Taiwan as under Japanese control." 19 | }, 20 | { 21 | "name":"I.G.I.-2: Convert Strike", 22 | "reason":"Banned because of 'intentionally blackening China and the Chinese army's image.'" 23 | } 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/european_union.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Abu Nidal Organization", 3 | "al-Aqsa Foundation", 4 | "al-Aqsa Martyrs' Brigades", 5 | "al-Gama'a al-Islamiyya", 6 | "al-Qaeda", 7 | "Takfir wal-Hijra", 8 | "Babbar Khalsa International", 9 | "Communist Party of the Philippines/New People's Army", 10 | "ETA", 11 | "Great Eastern Islamic Raiders' Front", 12 | "Izz ad-Din al-Qassam Brigades", 13 | "Hezbollah (Military Wing)", 14 | "Hizbul Mujahideen", 15 | "Hofstad Network", 16 | "Holy Land Foundation for Relief and Development", 17 | "International Sikh Youth Federation", 18 | "Islamic State of Iraq and the Levant", 19 | "Khalistan Zindabad Force", 20 | "Kurdistan Freedom Falcons", 21 | "Kurdistan Workers' Party", 22 | "Liberation Tigers of Tamil Eelam", 23 | "National Liberation Army", 24 | "Palestinian Islamic Jihad", 25 | "Popular Front for the Liberation of Palestine", 26 | "Popular Front for the Liberation of Palestine – General Command", 27 | "Revolutionary Armed Forces of Colombia", 28 | "Revolutionary People's Liberation Party–Front", 29 | "Shining Path", 30 | "Stichting Al Aqsa" 31 | ] 32 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/united_nations.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Abdullah Azzam Brigades", 3 | "Abu Sayyaf", 4 | "al-Haramain Foundation", 5 | "Al-Itihaad al-Islamiya", 6 | "Al-Mourabitoun", 7 | "Al-Nusra Front", 8 | "al-Qaeda", 9 | "al-Qaeda in the Arabian Peninsula", 10 | "al-Qaeda in the Islamic Maghreb", 11 | "Ansar al-Sharia (Libya)", 12 | "Ansar al-Sharia (Tunisia)", 13 | "Ansar al-Islam", 14 | "Ansar Dine", 15 | "Ansaru", 16 | "Armed Islamic Group of Algeria", 17 | "Osbat al-Ansar", 18 | "Boko Haram", 19 | "Caucasus Emirate", 20 | "East Turkestan Islamic Movement", 21 | "Egyptian Islamic Jihad", 22 | "Harkat-ul-Jihad al-Islami", 23 | "Harkat-ul-Mujahideen", 24 | "Islamic Jihad Union", 25 | "Islamic Movement of Uzbekistan", 26 | "Islamic State of Iraq and the Levant", 27 | "Jaish-e-Mohammed", 28 | "Jemaah Islamiyah", 29 | "Jamaah Ansharut Tauhid", 30 | "Lashkar-e-Taiba", 31 | "Lashkar-e-Jhangvi", 32 | "Libyan Islamic Fighting Group", 33 | "Moroccan Islamic Combatant Group", 34 | "Movement for Oneness and Jihad in West Africa", 35 | "Society of the Revival of Islamic Heritage", 36 | "Tehrik-i-Taliban Pakistan" 37 | ] 38 | -------------------------------------------------------------------------------- /data/mythology/norse_gods.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"Gods and goddesses of norse and germanic myth", 3 | "norse_deities": { 4 | "gods":[ 5 | "Baldr", 6 | "Bragi", 7 | "Dellingr", 8 | "Forseti", 9 | "Freyr", 10 | "Heimdallr", 11 | "Hermóðr", 12 | "Höðr", 13 | "Hœnir", 14 | "Lóðurr", 15 | "Loki", 16 | "Máni", 17 | "Meili", 18 | "Njörðr", 19 | "Odin", 20 | "Óðr", 21 | "Saxnōt", 22 | "Thor", 23 | "Ullr", 24 | "Váli", 25 | "Viðarr", 26 | "Vé", 27 | "Vili" 28 | ], 29 | "goddesses":[ 30 | "Baduhenna", 31 | "Bil", 32 | "Beyla", 33 | "Eir", 34 | "Ēostre", 35 | "Freyja", 36 | "Frigg", 37 | "Fulla", 38 | "Gefjun", 39 | "Gersemi", 40 | "Gerðr", 41 | "Gná", 42 | "Gullveig", 43 | "Hariasa", 44 | "Hlín", 45 | "Hretha", 46 | "Hnoss", 47 | "Ilmr", 48 | "Iðunn", 49 | "Irpa", 50 | "Lofn", 51 | "Nanna", 52 | "Nerthus", 53 | "Njörun", 54 | "Rán", 55 | "Rindr", 56 | "Sága", 57 | "Sandraudiga", 58 | "Sif", 59 | "Sigyn", 60 | "Sinthgunt", 61 | "Sjöfn", 62 | "Skaði", 63 | "Snotra", 64 | "Sól", 65 | "Syn", 66 | "Tanfana", 67 | "Þrúðr", 68 | "Þorgerðr", 69 | "Hölgabrúðr", 70 | "Vár", 71 | "Vör", 72 | "Zisa" 73 | ] 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/india.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Akhil Bharat Nepali Ekta Samaj", 3 | "Al-Badr", 4 | "al-Qaeda", 5 | "Al-Umar-Mujahideen", 6 | "All Tripura Tiger Force", 7 | "Babbar Khalsa International", 8 | "Communist Party of India (Marxist–Leninist)", 9 | "Deendar Anjuman", 10 | "Dukhtaran-e-Millat", 11 | "Harkat-ul-Mujahideen", 12 | "Hizbul Mujahideen", 13 | "Indian Mujahideen", 14 | "International Sikh Youth Federation", 15 | "Islamic State of Iraq and the Levant", 16 | "Jaish-e-Mohammed", 17 | "Jamaat-ul-Mujahideen Bangladesh", 18 | "Kangleipak Communist Party", 19 | "Kanglei Yawol Kanna Lup", 20 | "Khalistan Commando Force", 21 | "Khalistan Zindabad Force", 22 | "Lashkar-e-Taiba", 23 | "Liberation Tigers of Tamil Eelam", 24 | "Manipur People’s Liberation Front", 25 | "Maoist Communist Centre of India", 26 | "National Democratic Front of Bodoland", 27 | "National Liberation Front of Tripura", 28 | "People's Liberation Army of Manipur", 29 | "People's Revolutionary Party of Kangleipak", 30 | "Students Islamic Movement of India", 31 | "Tamil Nadu Liberation Army", 32 | "Tamil National Retrieval Troops", 33 | "United Liberation Front of Assam", 34 | "United National Liberation Front" 35 | ] 36 | -------------------------------------------------------------------------------- /data/plants/flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "flowers": [ 3 | "anemone", 4 | "amaryllis", 5 | "amaranth", 6 | "aster", 7 | "azalea", 8 | "babys breath", 9 | "begonia", 10 | "bellflower", 11 | "bergamot", 12 | "bird of paradise", 13 | "bluebell", 14 | "bottlebrush", 15 | "buttercup", 16 | "camellias", 17 | "carnation", 18 | "chrysantemum", 19 | "columbine", 20 | "clover", 21 | "crocus", 22 | "daisy", 23 | "dahlia", 24 | "daffodil", 25 | "delphinium", 26 | "edelweiss", 27 | "primrose", 28 | "forget me not", 29 | "foxglove", 30 | "freesia", 31 | "gerbera daisy", 32 | "gladiolus", 33 | "hibiscus", 34 | "heather", 35 | "hyacinth", 36 | "holly", 37 | "iris", 38 | "jasmine", 39 | "ladys slipper", 40 | "lavender", 41 | "lilac", 42 | "lily", 43 | "lotus flower", 44 | "marigold", 45 | "marjoram", 46 | "mimosa", 47 | "narcissus", 48 | "orange blossom", 49 | "orchid", 50 | "peach blossom", 51 | "peony", 52 | "petunia", 53 | "rhododendron", 54 | "rosemary", 55 | "roses", 56 | "sage", 57 | "snapdragon", 58 | "sunflower", 59 | "tansy", 60 | "thistle", 61 | "thyme", 62 | "tulip", 63 | "violet", 64 | "water lily", 65 | "zinnia" 66 | ] 67 | } 68 | -------------------------------------------------------------------------------- /data/words/stopwords/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Danish stop words", 3 | "stopWords": 4 | [ 5 | "De", 6 | "I", 7 | "af", 8 | "aldrig", 9 | "alle", 10 | "altid", 11 | "bagved", 12 | "de", 13 | "der", 14 | "du", 15 | "efter", 16 | "eller", 17 | "en", 18 | "endnu", 19 | "et", 20 | "fjernt", 21 | "for", 22 | "foran", 23 | "fra", 24 | "få", 25 | "gennem", 26 | "god", 27 | "han", 28 | "her", 29 | "hos", 30 | "hovfor", 31 | "hun", 32 | "hurtig", 33 | "hvad", 34 | "hvem", 35 | "hvonår", 36 | "hvor", 37 | "hvordan", 38 | "hvorhen", 39 | "i", 40 | "imod", 41 | "ja", 42 | "jeg", 43 | "langsom", 44 | "lidt", 45 | "mange", 46 | "med", 47 | "meget", 48 | "mellem", 49 | "mere", 50 | "mindre", 51 | "måske", 52 | "nede", 53 | "nej", 54 | "nok", 55 | "nu", 56 | "når", 57 | "og", 58 | "oppe", 59 | "på", 60 | "rask", 61 | "sammen", 62 | "temmelig", 63 | "til", 64 | "uden", 65 | "udenfor", 66 | "under", 67 | "ved", 68 | "vi" 69 | ] 70 | } 71 | -------------------------------------------------------------------------------- /data/technology/lisp.json: -------------------------------------------------------------------------------- 1 | { 2 | "description" : "a list of LISP dialects", 3 | "lisps": [ 4 | "ABCL", 5 | "ACL", 6 | "ACL2", 7 | "ANSI Common Lisp", 8 | "Allegro CL", 9 | "Arc", 10 | "Armed Bear CL", 11 | "AutoLISP", 12 | "CCL", 13 | "CLISP", 14 | "CLiCC", 15 | "CMU CL", 16 | "CMUCL", 17 | "Clasp", 18 | "Clojure", 19 | "Clozure CL", 20 | "Common Lisp", 21 | "Corman CL", 22 | "Dylan", 23 | "ECL", 24 | "emacs-cl", 25 | "Emacs Lisp", 26 | "Embedded CL", 27 | "EuLisp", 28 | "Franz Lisp", 29 | "GCL", 30 | "GNU CL", 31 | "GNU CLISP", 32 | "Hy", 33 | "IEEE Scheme", 34 | "ISLISP", 35 | "InterLisp", 36 | "LFE", 37 | "LISP 1 ", 38 | "LISP 1.5", 39 | "LeLisp", 40 | "Lisp Machine Lisp", 41 | "LispWorks", 42 | "MACLISP", 43 | "MDL", 44 | "MKCL", 45 | "Maclisp", 46 | "Movitz", 47 | "NIL", 48 | "Newlisp", 49 | "Picolisp", 50 | "Poplog", 51 | "Portable Standard Lisp", 52 | "RPL", 53 | "Racket", 54 | "SBCL", 55 | "SKILL", 56 | "Scheme", 57 | "Scieneer CL", 58 | "Spice Lisp", 59 | "Standard Lisp ", 60 | "Stanford LISP 1.6", 61 | "Steel Bank CL", 62 | "T", 63 | "ThinLisp", 64 | "UABCL", 65 | "WCL", 66 | "XCL", 67 | "XLISP", 68 | "ZetaLisp" 69 | ] 70 | } 71 | -------------------------------------------------------------------------------- /data/foods/hot_peppers.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Capsicum cultivars (hot peppers)", 3 | "C. annuum var. annuum": [ 4 | "Aleppo", 5 | "Anaheim", 6 | "Ancho", 7 | "Banana pepper", 8 | "Bell pepper", 9 | "Bird's eye", 10 | "Cascabel", 11 | "Cayenne", 12 | "Chilaca", 13 | "Chungyang", 14 | "Cubanelle", 15 | "Chile de arbol", 16 | "Dundicut", 17 | "Facing heaven", 18 | "Fresno", 19 | "Friggitello", 20 | "Guajillo", 21 | "Hungarian wax", 22 | "Jalapeño", 23 | "Medusa", 24 | "Mulato", 25 | "New Mexico", 26 | "Padrón", 27 | "Pasilla", 28 | "Peter", 29 | "Pimento", 30 | "Poblano", 31 | "Santa Fe Grande", 32 | "Serrano", 33 | "Shishito" 34 | ], 35 | "C. annuum var. glabriusculum": [ 36 | "Piquín", 37 | "Wild chiltepin" 38 | ], 39 | "C. chinense": [ 40 | "Adjuma", 41 | "Ají dulce", 42 | "Carolina Reaper", 43 | "Datil", 44 | "Fatalii", 45 | "Habanero", 46 | "Hainan yellow lantern chili", 47 | "Madame Jeanette", 48 | "Naga jolokia", 49 | "Red Savina habanero", 50 | "Scotch bonnet", 51 | "Trinidad moruga scorpion", 52 | "Trinidad scorpion" 53 | ], 54 | "C. frutescens": [ 55 | "African bird's eye", 56 | "Siling labuyo", 57 | "Malagueta", 58 | "Tabasco" 59 | ], 60 | "C. baccatum": [ 61 | "Ají", 62 | "Bishop's crown", 63 | "Lemon drop", 64 | "Peppadew" 65 | ], 66 | "C. pubescens": [ 67 | "Rocoto pepper" 68 | ] 69 | } -------------------------------------------------------------------------------- /data/games/scrabble.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Tile distribution and points for the English-language edition of Scrabble", 3 | "letters": 4 | { 5 | "a": { "points": 1, "tiles": 9 }, 6 | "b": { "points": 3, "tiles": 2 }, 7 | "c": { "points": 3, "tiles": 2 }, 8 | "d": { "points": 2, "tiles": 4 }, 9 | "e": { "points": 1, "tiles": 12 }, 10 | "f": { "points": 4, "tiles": 2 }, 11 | "g": { "points": 2, "tiles": 3 }, 12 | "h": { "points": 4, "tiles": 2 }, 13 | "i": { "points": 1, "tiles": 9 }, 14 | "j": { "points": 8, "tiles": 1 }, 15 | "k": { "points": 5, "tiles": 1 }, 16 | "l": { "points": 1, "tiles": 4 }, 17 | "m": { "points": 3, "tiles": 2 }, 18 | "n": { "points": 1, "tiles": 6 }, 19 | "o": { "points": 1, "tiles": 8 }, 20 | "p": { "points": 3, "tiles": 2 }, 21 | "q": { "points": 10, "tiles": 1 }, 22 | "r": { "points": 1, "tiles": 6 }, 23 | "s": { "points": 1, "tiles": 4 }, 24 | "t": { "points": 1, "tiles": 6 }, 25 | "u": { "points": 1, "tiles": 4 }, 26 | "v": { "points": 4, "tiles": 2 }, 27 | "w": { "points": 4, "tiles": 2 }, 28 | "x": { "points": 8, "tiles": 1 }, 29 | "y": { "points": 4, "tiles": 2 }, 30 | "z": { "points": 10, "tiles": 1 }, 31 | "blank": { "tiles": 2} 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /data/words/literature/lovecraft_words.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"H.P Lovecraft favorite words, from http://arkhamarchivist.com/wordcount-lovecraft-favorite-words/", 3 | "words":[ 4 | "abnormal", 5 | "accursed", 6 | "amorphous", 7 | "antediluvian", 8 | "antique", 9 | "antiquarian", 10 | "blasphemy", 11 | "blasphemous", 12 | "cat", 13 | "charnel", 14 | "comprehension", 15 | "cyclopean", 16 | "dank", 17 | "decadent", 18 | "daemoniac", 19 | "effulgence", 20 | "eldritch", 21 | "fainted", 22 | "fainting", 23 | "foetid", 24 | "fungus", 25 | "fungoid", 26 | "fungous", 27 | "furtive", 28 | "gambrel", 29 | "gibbous", 30 | "gibbered", 31 | "gibbering", 32 | "hideous", 33 | "immemorial", 34 | "indescribable", 35 | "iridescence", 36 | "loathing", 37 | "loathsome", 38 | "lurk", 39 | "madness", 40 | "manuscript", 41 | "mortal", 42 | "nameless", 43 | "noisome", 44 | "non-euclidean", 45 | "proportion", 46 | "disproportionate", 47 | "shunned", 48 | "singularly", 49 | "spectral", 50 | "squamous", 51 | "stench", 52 | "stygian", 53 | "swarthy", 54 | "tenebrous", 55 | "tentacle", 56 | "ululating", 57 | "unmentionable", 58 | "unnamable", 59 | "unutterable" 60 | ] 61 | } -------------------------------------------------------------------------------- /data/foods/breads_and_pastries.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of classic breads and sweet pastries.", 3 | "breads": [ 4 | "bagel", 5 | "baguette", 6 | "boule", 7 | "brioche", 8 | "casalinga", 9 | "chapati", 10 | "ciabatta", 11 | "cornbread", 12 | "crumpet", 13 | "epi", 14 | "ficelle", 15 | "flatbread", 16 | "focaccia", 17 | "fruit bread", 18 | "hamburger bun", 19 | "hardtack", 20 | "lavash", 21 | "matzoh", 22 | "muffin", 23 | "naan", 24 | "pain au levain", 25 | "pain de mie", 26 | "pane d'olive", 27 | "paratha", 28 | "pita", 29 | "potato bread", 30 | "pretzel", 31 | "pumpernickel", 32 | "roti", 33 | "rugbrød", 34 | "rye", 35 | "scone", 36 | "soda bread", 37 | "sourdough", 38 | "tortilla" 39 | ], 40 | "pastries": [ 41 | "baklava", 42 | "bomboloni", 43 | "canelé", 44 | "cinnamon roll", 45 | "croissant", 46 | "cronut", 47 | "doughnut", 48 | "éclair", 49 | "gulab jamun", 50 | "kouign-amann", 51 | "mille-feuille", 52 | "morning bun", 53 | "pain au chocolat", 54 | "pastel de nata", 55 | "profiterole", 56 | "rugelach", 57 | "shortcake", 58 | "stollen", 59 | "strudel", 60 | "toaster strudel" 61 | ] 62 | } 63 | -------------------------------------------------------------------------------- /data/corporations/cars.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of car manufacturers.", 3 | "cars": 4 | [ 5 | "Abarth", 6 | "Alfa Romeo", 7 | "Aston Martin", 8 | "Audi", 9 | "Bentley", 10 | "BMW", 11 | "Bugatti", 12 | "Cadillac", 13 | "Caparo", 14 | "Caterham", 15 | "Chevrolet", 16 | "Chrysler", 17 | "Citroen", 18 | "Dacia", 19 | "Daihatsu", 20 | "Dodge", 21 | "Ferrari", 22 | "Fiat", 23 | "Fisker", 24 | "Ford", 25 | "Gordon Murray", 26 | "Holden", 27 | "Honda", 28 | "Hummer", 29 | "Hyundai", 30 | "Infiniti", 31 | "Jaguar", 32 | "Jeep", 33 | "Kia", 34 | "Koenigsegg", 35 | "KTM", 36 | "Lamborghini", 37 | "Lancia", 38 | "Land Rover", 39 | "Lexus", 40 | "Lotus", 41 | "Maserati", 42 | "Maybach", 43 | "Mazda", 44 | "McLaren", 45 | "Mercedes-Benz", 46 | "MG", 47 | "Mini", 48 | "Mitsubishi", 49 | "Morgan", 50 | "Nissan", 51 | "Noble", 52 | "Pagani", 53 | "Peugeot", 54 | "Porsche", 55 | "Proton", 56 | "Renault", 57 | "Rolls-Royce", 58 | "Seat", 59 | "Skoda", 60 | "Smart", 61 | "Subaru", 62 | "Suzuki", 63 | "Tata", 64 | "Tesla Motors", 65 | "Toyota", 66 | "Vauxhall", 67 | "VW", 68 | "Volvo" 69 | ] 70 | } 71 | -------------------------------------------------------------------------------- /data/humans/prefixes.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Prefixes taken from a form on an airline website.", 3 | "prefixes": [ 4 | "Mr.", 5 | "Mrs.", 6 | "Ms.", 7 | "Miss", 8 | "Dr.", 9 | "A.V.M", 10 | "AB", 11 | "Adm.", 12 | "Amb", 13 | "AMN", 14 | "Archbishop", 15 | "Baron", 16 | "Baroness", 17 | "Bishop", 18 | "Brig. Gen.", 19 | "Bigadier", 20 | "Bro.", 21 | "Cantor", 22 | "Capt.", 23 | "Cardinal", 24 | "Chaplain", 25 | "Cmdr.", 26 | "CMSGT", 27 | "Col.", 28 | "Consul", 29 | "Count", 30 | "Countess", 31 | "Cpl.", 32 | "CPO", 33 | "CWO", 34 | "Dean", 35 | "Duchess", 36 | "Duke", 37 | "Earl", 38 | "Ens.", 39 | "Eur Eng", 40 | "Father", 41 | "Fr.", 42 | "Gen.", 43 | "Gov.", 44 | "H. E.", 45 | "Herr", 46 | "Hon", 47 | "HRH", 48 | "Lady", 49 | "Lord", 50 | "Lt.", 51 | "Lt. Cmdr.", 52 | "Lt. Col.", 53 | "Lt. Gen.", 54 | "M.", 55 | "Maj.", 56 | "Maj. Gen", 57 | "Master", 58 | "Mile.", 59 | "Mme.", 60 | "Mother", 61 | "MSGT", 62 | "Pastor", 63 | "PFC", 64 | "Pres.", 65 | "Prince", 66 | "Princess", 67 | "Prof.", 68 | "Rabbi", 69 | "Radm", 70 | "Rev.", 71 | "Rt. Hon.", 72 | "Senator", 73 | "Sgt.", 74 | "Sgt. Maj.", 75 | "Sir", 76 | "Sister", 77 | "SMSGT", 78 | "Speaker", 79 | "Squad. Ldr.", 80 | "Sr.", 81 | "SrA", 82 | "Sra", 83 | "Srta", 84 | "SSGT", 85 | "Swami", 86 | "STSGT" 87 | ] 88 | } 89 | -------------------------------------------------------------------------------- /data/games/cluedo.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Characters, rooms and weapons from the board game Cluedo / Clue.", 3 | "victim": { 4 | "Cluedo": "Dr Black", 5 | "Clue": "Mr Boddy" 6 | }, 7 | "suspects": { 8 | "Cluedo": [ 9 | "Miss Scarlett", 10 | "Professor Plum", 11 | "Mrs Peacock", 12 | "Reverend Green", 13 | "Colonel Mustard", 14 | "Mrs White" 15 | ], 16 | "Clue": [ 17 | "Miss Scarlet", 18 | "Professor Plum", 19 | "Mrs Peacock", 20 | "Mr Green", 21 | "Colonel Mustard", 22 | "Mrs White" 23 | ] 24 | }, 25 | "weapons": { 26 | "Cluedo": [ 27 | "candlestick", 28 | "dagger", 29 | "lead pipe", 30 | "revolver", 31 | "rope", 32 | "spanner" 33 | ], 34 | "Clue": [ 35 | "candlestick", 36 | "knife", 37 | "lead pipe", 38 | "revolver", 39 | "rope", 40 | "wrench" 41 | ] 42 | }, 43 | "rooms": [ 44 | "kitchen", 45 | "ballroom", 46 | "conservatory", 47 | "dining room", 48 | "cellar", 49 | "billiard room", 50 | "library", 51 | "lounge", 52 | "hall", 53 | "study" 54 | ], 55 | "secret_passages": [ 56 | [ 57 | "kitchen", 58 | "study" 59 | ], 60 | [ 61 | "lounge", 62 | "conservatory" 63 | ] 64 | ] 65 | } 66 | -------------------------------------------------------------------------------- /data/mythology/hebrew_god.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Hebrew names of God used in the Old Testament Bible", 3 | "names": [ 4 | { 5 | "name": "El Shaddai", 6 | "meaning": "Lord God Almighty" 7 | }, 8 | { 9 | "name": "El Elyon", 10 | "meaning": "The Most High God" 11 | }, 12 | { 13 | "name": "Adonai", 14 | "meaning": "Lord, Master" 15 | }, 16 | { 17 | "name": "Yahweh", 18 | "meaning": "Lord, Jehovah" 19 | }, 20 | { 21 | "name": "Jehovah Nissi", 22 | "meaning": "The Lord My Banner" 23 | }, 24 | { 25 | "name": "Jehovah-Raah", 26 | "meaning": "The Lord My Shepherd" 27 | }, 28 | { 29 | "name": "Jehovah Rapha", 30 | "meaning": "The Lord That Heals" 31 | }, 32 | { 33 | "name": "Jehovah Shammah", 34 | "meaning": "The Lord Is There" 35 | }, 36 | { 37 | "name": "Jehovah Tsidkenu", 38 | "meaning": "The Lord Our Righteousness" 39 | }, 40 | { 41 | "name": "Jehovah Mekoddishkem", 42 | "meaning": "The Lord Who Sanctifies You" 43 | }, 44 | { 45 | "name": "El Olam", 46 | "meaning": "The Everlasting God" 47 | }, 48 | { 49 | "name": "Elohim", 50 | "meaning": "God" 51 | }, 52 | { 53 | "name": "Qanna", 54 | "meaning": "Jealous" 55 | }, 56 | { 57 | "name": "Jehovah Jireh", 58 | "meaning": "The Lord Will Provide" 59 | }, 60 | { 61 | "name": "Jehovah Shalom", 62 | "meaning": "The Lord Is Peace" 63 | }, 64 | { 65 | "name": "Jehovah Sabaoth", 66 | "meaning": "The Lord of Hosts" 67 | } 68 | ] 69 | } 70 | -------------------------------------------------------------------------------- /data/music/xxl_freshman.json: -------------------------------------------------------------------------------- 1 | { 2 | "description" : "Every rapper that's ever made the XXL Annual Freshman Cover", 3 | 4 | "2007" : ["Plies", "Saigon", "Rich Boy", "Gorilla Zoe", "Joell Ortiz", "Lupe Fiasco", "Lil Boosie", "Crooked I", "Papoose", "Young Dro"], 5 | "2009" : ["Wale", "B.o.B","Charles Hamilton", "Asher Roth", "Cory Gunz", "Blu", "Mickey Factz", "Ace Hood", "Curren$y", "Kid Cudi"], 6 | "2010" : ["J. Cole", "Pill", "Nipsey Hussle", "Freddie Gibbs", "Big Sean", "Wiz Khalifa", "OJ da Juiceman", "Jay Rock", "Fashawn", "Donnis"], 7 | "2011" : ["Meek Mill", "Big K.R.I.T", "Cyhi the Prynce", "Lil Twist", "Yelawolf", "Fred the Godson", "Mac Miller", "YG", "Lil B", "Kendrick Lamar", "Diggy Simmons"], 8 | "2012" : ["Future", "Kid Ink", "Danny Brown", "French Montana", "Macklemore", "Don Trip", "Machine Gun Kelly", "Hopsin", "Iggy Azalea", "Roscoe Dash"], 9 | "2013" : ["Schoolboy Q", "Trinidad James", "Joey Bada$$", "Ab-Soul", "Logic", "Action Bronson", "Kirko Bangz", "Travi$ Scott", "Dizzy Wright", "Angel Haze", "Chief Keef"], 10 | "2014" : ["Chance The Rapper", "Rich Homie Quan", "Isaiah Rashad", "Ty Dolla $ign", "Lil Durk","Kevin Gates","Troy Ave", "Vic Mensa", "Jon Connor", "Lil Bibby", "Jarren Benton", "August Alsina"], 11 | "2015" : ["Fetty Wap", "Dej Loaf"," Raury", "Kidd Kidd"," OG Maco", "Shy Glizzy", "K Camp", "Vince Staples", "Tink", "GoldLink"], 12 | "2016" : ["Lil Uzi Vert", "Lil Yachty", "Kodak Black", "Denzel Curry", "G Herbo", "Dave East", "Lil Dicky", "Anderson Paak", "Desiigner", "21 Savage"], 13 | "2017" : ["Kamaiyah", "A Boogie wit da Hoodie", "PnB Rock", "MadeinTYO", "Playboi Carti", "Aminé", "Kap G", "Kyle", "Ugly God","XXXTentacion"] 14 | 15 | } 16 | -------------------------------------------------------------------------------- /data/mythology/greek_myths_master.json: -------------------------------------------------------------------------------- 1 | { 2 | "greek_titans": [ 3 | "Coeus", 4 | "Crius", 5 | "Cronus", 6 | "Hyperion", 7 | "Iapetus", 8 | "Mnemosyne", 9 | "Oceanus", 10 | "Phoebe", 11 | "Rhea", 12 | "Tethys", 13 | "Theia", 14 | "Themis", 15 | "Asteria", 16 | "Astraeus", 17 | "Atlas", 18 | "Aura", 19 | "Clymene", 20 | "Dione", 21 | "Helios", 22 | "Selene", 23 | "Eos", 24 | "Epimetheus", 25 | "Eurybia", 26 | "Eurynome", 27 | "Lelantos", 28 | "Leto", 29 | "Menoeltius", 30 | "Metis", 31 | "Ophion", 32 | "Pallas", 33 | "Perses", 34 | "Prometheus", 35 | "Styx" 36 | ], 37 | 38 | "greek_monsters": [ 39 | "Arachne", 40 | "Caucasian Eagle", 41 | "Centaur", 42 | "Charybdis", 43 | "Chimera", 44 | "Empousai", 45 | "Gorgon", 46 | "Harpy", 47 | "Hippalectryon", 48 | "Hippocampus", 49 | "Icthyocentaur", 50 | "Ipotane", 51 | "Lamia", 52 | "Hydra", 53 | "Manticore", 54 | "Minotaur", 55 | "Mormo", 56 | "Ophitaurus", 57 | "Satyr", 58 | "Synthian Dracanus", 59 | "Siren", 60 | "Taraxippus", 61 | "Telekhines", 62 | "Typhon" 63 | ], 64 | 65 | "greek_gods": [ 66 | "Aphrodite", 67 | "Apollo", 68 | "Ares", 69 | "Artemis", 70 | "Athena", 71 | "Demeter", 72 | "Dionysus", 73 | "Hades", 74 | "Hephaestus", 75 | "Hera", 76 | "Hermes", 77 | "Hestia", 78 | "Poseidon", 79 | "Zeus", 80 | "Aether", 81 | "Ananke", 82 | "Chaos", 83 | "Chronos", 84 | "Erebus", 85 | "Eros", 86 | "Hypnos", 87 | "Uranus", 88 | "Gaia", 89 | "Phanes", 90 | "Pontus", 91 | "Tartarus", 92 | "Thalassa", 93 | "Thanatos", 94 | "Hemera", 95 | "Nyx", 96 | "Nemesis" 97 | ] 98 | } 99 | -------------------------------------------------------------------------------- /data/foods/scotch_whiskey.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of scotch whiskies", 3 | "scotches": [ 4 | "Aberlour", 5 | "Ambassador", 6 | "Ardbeg", 7 | "Arran", 8 | "Atholl", 9 | "Auchentoshan", 10 | "Balmore", 11 | "Balvenie", 12 | "Benriach", 13 | "Bowmore", 14 | "Bruichladdich", 15 | "Buchanan", 16 | "Bunnahabhain", 17 | "Cardhu", 18 | "Clontarf", 19 | "Cluny", 20 | "Clynelish", 21 | "Cragganmore", 22 | "Crawford", 23 | "Cutty", 24 | "Dalmore", 25 | "Dalwhinnie", 26 | "Deanston", 27 | "Duggan", 28 | "Edradour", 29 | "Glendronach", 30 | "Glenfarclas", 31 | "Glenfiddich", 32 | "Glengoyne", 33 | "Glenkeith", 34 | "Glenkinchie", 35 | "Glenlivet", 36 | "Glenlossie", 37 | "Glenmorangie", 38 | "Glenrothers", 39 | "Glenrothes", 40 | "Grants", 41 | "Highland", 42 | "Hogshead", 43 | "House", 44 | "Inver", 45 | "Kynross", 46 | "Lagavulin", 47 | "Laphroaig", 48 | "Lauders", 49 | "Linkwood", 50 | "Lismore", 51 | "Lochside", 52 | "Longmorn", 53 | "Macallan", 54 | "Magellan", 55 | "Mcclellands", 56 | "Mccormick", 57 | "Murray", 58 | "Mcclelland", 59 | "Oban", 60 | "Passport", 61 | "Provenance", 62 | "Scapa", 63 | "Signatory", 64 | "Speyburn", 65 | "Speyside", 66 | "Springbank", 67 | "Strathisala", 68 | "Strathisla", 69 | "Suntory", 70 | "Talisker", 71 | "Tamdhu", 72 | "Tamnavulin", 73 | "Tobermory", 74 | "Tomatin", 75 | "Tomintoul", 76 | "Tormore", 77 | "Tullamore", 78 | "Usher", 79 | "Usquaebach", 80 | "White" 81 | ] 82 | } 83 | -------------------------------------------------------------------------------- /data/mythology/monsters.json: -------------------------------------------------------------------------------- 1 | { 2 | "description" : "A list of monsters and other mythic creatures", 3 | "sources" : "some from https://en.wikipedia.org/wiki/Mythic_humanoids, others from memory.", 4 | "names" : [ 5 | "angel", 6 | "brownie", 7 | "bugbear", 8 | "centaur", 9 | "chimera", 10 | "chupacabra", 11 | "cockatrice", 12 | "cyclops", 13 | "demon", 14 | "djinn", 15 | "dragon", 16 | "draugr", 17 | "dryad", 18 | "dwarf", 19 | "elemental", 20 | "elf", 21 | "fairy", 22 | "faun", 23 | "frost giant", 24 | "gargoyle", 25 | "genie", 26 | "ghast", 27 | "ghost", 28 | "ghoul", 29 | "giant", 30 | "gnome", 31 | "goblin", 32 | "golem", 33 | "gorgon", 34 | "gremlin", 35 | "griffon", 36 | "hag", 37 | "harpy", 38 | "hippogriff", 39 | "hobgoblin", 40 | "homonculus", 41 | "hydra", 42 | "imp", 43 | "incubus", 44 | "kappa", 45 | "kobold", 46 | "kraken", 47 | "lamassu", 48 | "leprechaun", 49 | "lich", 50 | "manticore", 51 | "mermaid", 52 | "merman", 53 | "minotaur", 54 | "mummy", 55 | "naga", 56 | "nix", 57 | "nymph", 58 | "ogre", 59 | "oni", 60 | "orc", 61 | "pegasus", 62 | "phoenix", 63 | "pixie", 64 | "poltergeist", 65 | "roc", 66 | "sasquatch", 67 | "satyr", 68 | "selkie", 69 | "siren", 70 | "spectre", 71 | "sphinx", 72 | "sprite", 73 | "succubus", 74 | "sylph", 75 | "thunderbird", 76 | "troll", 77 | "unicorn", 78 | "vampire", 79 | "valkyrie", 80 | "warg", 81 | "wendigo", 82 | "werewolf", 83 | "wight", 84 | "witch", 85 | "wraith", 86 | "wyvern", 87 | "yeti", 88 | "zombie" 89 | ] 90 | 91 | } 92 | -------------------------------------------------------------------------------- /data/games/bannedGames/brazil/bannedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"A list of video games banned in Brazil", 3 | "games":[ 4 | { 5 | "name":"The Cat In The Hat", 6 | "reason":"Banned due to a copyright claim by Discovery Communications." 7 | }, 8 | { 9 | "name":"Blood", 10 | "reason":"Banned because of high impact violence." 11 | }, 12 | { 13 | "name":"Bully", 14 | "reason":"Banned for showing violence and harassment in a school setting." 15 | }, 16 | { 17 | "name":"Carmageddon", 18 | "reason":"Banned because of high impact violence against pedestrians." 19 | }, 20 | { 21 | "name":"Carmageddon II: Carpocalypse Now", 22 | "reason":"Banned because of high impact violence against pedestrians." 23 | }, 24 | { 25 | "name":"Doom", 26 | "reason":"Banned because of very high impact violence and offensive depictions of cruelty." 27 | }, 28 | { 29 | "name":"Duke Nukem 3D", 30 | "reason":"Banned because of high impact violence." 31 | }, 32 | { 33 | "name":"EverQuest", 34 | "reason":"Banned because of X18+ references." 35 | }, 36 | { 37 | "name":"Grand Theft Auto: Episodes from Liberty City", 38 | "reason":"Banned because it uses music by the Brazilian composer Hamilton da Silva Lourenço without correct permissions." 39 | }, 40 | { 41 | "name":"Mortal Kombat", 42 | "reason":"Banned because of high impact violence and depictions of cruelty." 43 | }, 44 | { 45 | "name":"Requiem: Avenging Angel", 46 | "reason":"Banned because of high impact violence." 47 | }, 48 | { 49 | "name":"Postal", 50 | "reason":"Both banned because of high impact violence and offensive depictions of cruelty." 51 | } 52 | ] 53 | } 54 | -------------------------------------------------------------------------------- /data/words/literature/mr_men_little_miss.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Mr Men and Little Miss characters", 3 | "source": "http://www.mrmen.com", 4 | "mr_men": [ 5 | "Birthday", 6 | "Bounce", 7 | "Brave", 8 | "Bump", 9 | "Busy", 10 | "Chatterbox", 11 | "Cheerful", 12 | "Christmas", 13 | "Clever", 14 | "Clumsy", 15 | "Cool", 16 | "Daydream", 17 | "Dizzy", 18 | "Forgetful", 19 | "Funny", 20 | "Fussy", 21 | "Good", 22 | "Greedy", 23 | "Grumble", 24 | "Grumpy", 25 | "Happy", 26 | "Impossible", 27 | "Jelly", 28 | "Lazy", 29 | "Mean", 30 | "Messy", 31 | "Mischief", 32 | "Muddle", 33 | "Nobody", 34 | "Noisy", 35 | "Nonsense", 36 | "Nosey", 37 | "Perfect", 38 | "Quiet", 39 | "Rude", 40 | "Rush", 41 | "Silly", 42 | "Skinny", 43 | "Slow", 44 | "Small", 45 | "Sneeze", 46 | "Snow", 47 | "Strong", 48 | "Tall", 49 | "Tickle", 50 | "Topsy-Turvy", 51 | "Uppity", 52 | "Worry", 53 | "Wrong" 54 | ], 55 | "little_miss": [ 56 | "Bad", 57 | "Birthday", 58 | "Bossy", 59 | "Brainy", 60 | "Busy", 61 | "Chatterbox", 62 | "Christmas", 63 | "Contrary", 64 | "Curious", 65 | "Dotty", 66 | "Fickle", 67 | "Fun", 68 | "Giggles", 69 | "Greedy", 70 | "Helpful", 71 | "Hug", 72 | "Late", 73 | "Lucky", 74 | "Magic", 75 | "Naughty", 76 | "Neat", 77 | "Princess", 78 | "Quick", 79 | "Scary", 80 | "Scatterbrain", 81 | "Shy", 82 | "Somersault", 83 | "Splendid", 84 | "Star", 85 | "Stubborn", 86 | "Sunshine", 87 | "Tidy", 88 | "Tiny", 89 | "Trouble", 90 | "Twins", 91 | "Whoops", 92 | "Wise" 93 | ] 94 | } 95 | -------------------------------------------------------------------------------- /data/archetypes/artifact.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Artifact archetypes.", 3 | "artifacts": [ 4 | { 5 | "name": "book", 6 | "synonyms": ["tome","scroll","tablet"], 7 | "qualities": ["educational","wise"], 8 | "nature": "neutral" 9 | }, 10 | { 11 | "name": "candle", 12 | "synonyms": ["torch","lamp","flashlight","light","beacon"], 13 | "qualities": ["enlightening","revealing","illuminating","opening"], 14 | "nature": "good" 15 | }, 16 | { 17 | "name": "bell", 18 | "synonyms": ["signal","chime","warning"], 19 | "qualities": ["clear","truthful"], 20 | "nature": "good" 21 | }, 22 | { 23 | "name": "staff", 24 | "synonyms": ["stick","cane","crook","pole"], 25 | "qualities": ["strong","steady","supporting"], 26 | "nature": "good" 27 | }, 28 | { 29 | "name": "blade", 30 | "synonyms": ["knife","sword","axe"], 31 | "qualities": ["damaging","forceful"], 32 | "nature": "evil" 33 | }, 34 | { 35 | "name": "seed", 36 | "synonyms": ["bean"], 37 | "qualities": ["growth","renewal","creation","transitional"], 38 | "nature": "good" 39 | }, 40 | { 41 | "name": "cloak", 42 | "synonyms": ["hood","mask","disguise","robe"], 43 | "qualities": ["protective","mysterious","warmth"], 44 | "nature": "neutral" 45 | }, 46 | { 47 | "name": "map", 48 | "synonyms": ["compass","guide"], 49 | "qualities": ["helpful","moving","transitional"], 50 | "nature": "good" 51 | } 52 | ] 53 | } 54 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/canada.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Abu Nidal Organization", 3 | "Abu Sayyaf", 4 | "Aden-Abyan Islamic Army", 5 | "al-Aqsa Martyrs' Brigades", 6 | "al-Gama'a al-Islamiyya", 7 | "Al-Itihaad al-Islamiya", 8 | "Al-Mourabitoun", 9 | "Al-Nusra Front", 10 | "al-Qaeda", 11 | "al-Qaeda in the Arabian Peninsula", 12 | "al-Qaeda in the Islamic Maghreb", 13 | "Al-Shabaab", 14 | "Ansar al-Islam", 15 | "Armed Islamic Group of Algeria", 16 | "Osbat al-Ansar", 17 | "Aum Shinrikyo", 18 | "Babbar Khalsa International", 19 | "Boko Haram", 20 | "Caucasus Emirate", 21 | "Egyptian Islamic Jihad", 22 | "ETA", 23 | "Hamas", 24 | "Haqqani network", 25 | "Harkat-ul-Mujahideen", 26 | "Hezb-e Islami Gulbuddin", 27 | "Hezbollah", 28 | "Hezbollah (External Security Organisation)", 29 | "International Sikh Youth Federation", 30 | "Islamic Movement of Uzbekistan", 31 | "Islamic State of Iraq and the Levant", 32 | "Jaish-e-Mohammed", 33 | "Jaish al-Muhajireen wal-Ansar", 34 | "Jemaah Islamiyah", 35 | "Kach and Kahane Chai", 36 | "Kurdistan Workers' Party", 37 | "Lashkar-e-Taiba", 38 | "Lashkar-e-Jhangvi", 39 | "Liberation Tigers of Tamil Eelam", 40 | "Movement for Oneness and Jihad in West Africa", 41 | "National Liberation Army", 42 | "Palestine Liberation Front", 43 | "Palestinian Islamic Jihad", 44 | "Popular Front for the Liberation of Palestine", 45 | "Popular Front for the Liberation of Palestine – General Command", 46 | "Quds Force", 47 | "Revolutionary Armed Forces of Colombia", 48 | "Shining Path", 49 | "Taliban", 50 | "Tehrik-i-Taliban Pakistan", 51 | "United Self-Defense Forces of Colombia", 52 | "Vanguards of Conquest", 53 | "World Tamil Movement" 54 | ] 55 | -------------------------------------------------------------------------------- /data/words/strange_words.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Do you know the feeling when you repeat some word many times and it starts to sound weird? Below is the list of some of the strangest sounding words that people submitted during my Intro to Computational Media Class at ITP, NYU.", 3 | "words": 4 | [ "rural", 5 | "frugal", 6 | "twin", 7 | "santorum", 8 | "detritus", 9 | "entrepreneurial", 10 | "pronounciation", 11 | "moisture", 12 | "peculiarly", 13 | "crepuscular", 14 | "ubiquitous", 15 | "malarkey", 16 | "bubbles", 17 | "dude", 18 | "torque", 19 | "google", 20 | "visualization", 21 | "cliche", 22 | "floccinaucinihilipilification", 23 | "conundrums", 24 | "doodlesack", 25 | "volunteer", 26 | "mississippilessly", 27 | "calisthenics", 28 | "serendipity", 29 | "grommets", 30 | "dilettante", 31 | "macrosmatic", 32 | "supercalifragilisticexpialidocious", 33 | "flabergasted", 34 | "sphygmomanometer", 35 | "Kardashian", 36 | "hubbub", 37 | "prescription", 38 | "caulking", 39 | "wreath", 40 | "expat", 41 | "jentacular", 42 | "schnapps", 43 | "zdravstvuite", 44 | "phlegm", 45 | "specific", 46 | "quproch", 47 | "riboflavin", 48 | "cubersome", 49 | "garage", 50 | "flummoxed", 51 | "profiterole", 52 | "ruler", 53 | "dingleberry", 54 | "egg", 55 | "ombudsman", 56 | "perpendicular", 57 | "collate", 58 | "abruptly", 59 | "word", 60 | "bitter", 61 | "cellar", 62 | "airworthy", 63 | "stupendous", 64 | "swathe" ] 65 | } 66 | -------------------------------------------------------------------------------- /data/objects/clothing.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "List of clothing types", 3 | "clothes": [ 4 | "baby grow", 5 | "ball gown", 6 | "belt", 7 | "bikini", 8 | "blazer", 9 | "blouse", 10 | "boots", 11 | "bow tie", 12 | "boxers", 13 | "bra", 14 | "bra & knicker set", 15 | "briefs", 16 | "camisole", 17 | "cap", 18 | "cardigan", 19 | "cargos", 20 | "catsuit", 21 | "chemise", 22 | "coat", 23 | "corset", 24 | "cravat", 25 | "cufflinks", 26 | "cummerbund", 27 | "dinner jacket", 28 | "dress", 29 | "dressing gown", 30 | "dungarees", 31 | "fleece", 32 | "gloves", 33 | "hat", 34 | "hoody", 35 | "jacket", 36 | "jeans", 37 | "jogging suit", 38 | "jumper", 39 | "kaftan", 40 | "kilt", 41 | "knickers", 42 | "kurta", 43 | "lingerie", 44 | "nightgown", 45 | "nightwear", 46 | "pants", 47 | "pashmina", 48 | "polo shirt", 49 | "poncho", 50 | "pyjamas", 51 | "raincoat", 52 | "robe", 53 | "romper", 54 | "sandals", 55 | "sarong", 56 | "scarf", 57 | "shawl", 58 | "shellsuit", 59 | "shirt", 60 | "shoes", 61 | "shorts", 62 | "skirt", 63 | "slacks", 64 | "slippers", 65 | "socks", 66 | "stockings", 67 | "suit", 68 | "sunglasses", 69 | "sweater", 70 | "sweatshirt", 71 | "swimming costume", 72 | "swimming shorts", 73 | "swimming trunks", 74 | "swimwear", 75 | "t-shirt", 76 | "tailcoat", 77 | "tankini", 78 | "thong", 79 | "tie", 80 | "tights", 81 | "top", 82 | "tracksuit", 83 | "trainers", 84 | "trousers", 85 | "underclothes", 86 | "underpants", 87 | "undershirt", 88 | "underwear", 89 | "vest", 90 | "vest underwear", 91 | "waistcoat", 92 | "waterproof", 93 | "zip" 94 | ] 95 | } 96 | -------------------------------------------------------------------------------- /data/materials/metals.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "metals", 3 | "metals": [ 4 | "actinium", 5 | "aluminium", 6 | "americium", 7 | "barium", 8 | "berkelium", 9 | "beryllium", 10 | "bismuth", 11 | "bohrium", 12 | "cadmium", 13 | "calcium", 14 | "californium", 15 | "cerium", 16 | "cesium", 17 | "chromium", 18 | "cobalt", 19 | "copper", 20 | "curium", 21 | "darmstadtium", 22 | "dubnium", 23 | "dysprosium", 24 | "einsteinium", 25 | "erbium", 26 | "europium", 27 | "fermium", 28 | "francium", 29 | "gadolinium", 30 | "gallium", 31 | "gold", 32 | "hafnium", 33 | "hassium", 34 | "holmium", 35 | "indium", 36 | "iridium", 37 | "iron", 38 | "lanthanum", 39 | "lawrencium", 40 | "lead", 41 | "lithium", 42 | "lutetium", 43 | "magnesium", 44 | "manganese", 45 | "meitnerium", 46 | "mendelevium", 47 | "mercury", 48 | "molybdenum", 49 | "neodymium", 50 | "neptunium", 51 | "nickel", 52 | "niobium", 53 | "nobelium", 54 | "osmium", 55 | "palladium", 56 | "platinum", 57 | "plutonium", 58 | "polonium", 59 | "potassium", 60 | "praseodymium", 61 | "promethium", 62 | "protactinium", 63 | "radium", 64 | "rhenium", 65 | "rhodium", 66 | "roentgenium", 67 | "rubidium", 68 | "ruthenium", 69 | "rutherfordium", 70 | "samarium", 71 | "scandium", 72 | "seaborgium", 73 | "silver", 74 | "sodium", 75 | "strontium", 76 | "tantalum", 77 | "technetium", 78 | "terbium", 79 | "thallium", 80 | "thorium", 81 | "thulium", 82 | "tin", 83 | "titanium", 84 | "tungsten", 85 | "ununbium", 86 | "ununhexium", 87 | "ununpentium", 88 | "ununquadium", 89 | "ununtrium", 90 | "uranium", 91 | "vanadium", 92 | "ytterbium", 93 | "yttrium", 94 | "zinc", 95 | "zirconium" 96 | ] 97 | } 98 | -------------------------------------------------------------------------------- /data/foods/iba_cocktails.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Cocktails recognized by the International Bartenders Association for use in the World Cocktail Competition.", 3 | "cocktails": [ 4 | "Alexander", 5 | "Americano", 6 | "Angel Face", 7 | "Aviation", 8 | "Bacardi", 9 | "Between the Sheets", 10 | "Casino", 11 | "Clover Club", 12 | "Daiquiri", 13 | "Derby", 14 | "Dry Martini", 15 | "Gin Fizz", 16 | "John Collins", 17 | "Manhattan", 18 | "Mary Pickford", 19 | "Monkey Gland", 20 | "Negroni", 21 | "Old Fashioned", 22 | "Paradise", 23 | "Planter's Punch", 24 | "Porto flip", 25 | "Ramos Gin Fizz", 26 | "Rusty Nail", 27 | "Sazerac", 28 | "Screwdriver", 29 | "Sidecar", 30 | "Stinger", 31 | "Tuxedo", 32 | "Whiskey sour", 33 | "White Lady", 34 | "Bellini", 35 | "Black Russian", 36 | "Bloody Mary", 37 | "Caipirinha", 38 | "Champagne Cocktail", 39 | "Cosmopolitan", 40 | "Cuba Libre", 41 | "French 75", 42 | "French Connection", 43 | "God Father", 44 | "God Mother", 45 | "Golden Dream", 46 | "Grasshopper", 47 | "Harvey Wallbanger", 48 | "Hemingway Special", 49 | "Horse's Neck", 50 | "Irish Coffee", 51 | "Kir", 52 | "Long Island Iced Tea", 53 | "Mai Tai", 54 | "Margarita", 55 | "Mimosa", 56 | "Mint Julep", 57 | "Mojito", 58 | "Moscow Mule", 59 | "Piña Colada", 60 | "Rose", 61 | "Sea-Breeze", 62 | "Sex on the Beach", 63 | "Singapore Sling", 64 | "Tequila Sunrise", 65 | "B-52", 66 | "Barracuda", 67 | "Bramble", 68 | "Dark 'N' Stormy", 69 | "Dirty Martini", 70 | "Espresso Martini", 71 | "French Martini", 72 | "Kamikaze", 73 | "Lemon Drop Martini", 74 | "Pisco Sour", 75 | "Russian Spring Punch", 76 | "Spritz Veneziano", 77 | "Tommy's Margarita", 78 | "Vampiro", 79 | "Vesper", 80 | "Yellow Bird" 81 | ] 82 | } 83 | -------------------------------------------------------------------------------- /data/music/hamilton_musical_obcrecording_actors_characters.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Actors and the named characters played by them in the Original Broadway Cast recording of Hamilton: An American Musical. Actors who played multiple characters are listed multiple times.", 3 | "source": "https://en.wikipedia.org/wiki/Hamilton_(musical)#Principal_roles_and_major_casts", 4 | 5 | "actors": [{ 6 | "actor": "Lin-Manuel Miranda", 7 | "character": "Alexander Hamilton" 8 | }, { 9 | "actor": "Leslie Odom, Jr.", 10 | "character": "Aaron Burr" 11 | }, { 12 | "actor": "Phillipa Soo", 13 | "character": "Eliza Schuyler Hamilton" 14 | }, { 15 | "actor": "Renée Elise Goldsberry", 16 | "character": "Angelica Schuyler Church" 17 | }, { 18 | "actor": "Daveed Diggs", 19 | "character": "Marquis de Lafayette" 20 | }, { 21 | "actor": "Daveed Diggs", 22 | "character": "Thomas Jefferson" 23 | }, { 24 | "actor": "Christopher Jackson", 25 | "character": "George Washington" 26 | }, { 27 | "actor": "Jonathan Groff", 28 | "character": "King George III" 29 | }, { 30 | "actor": "Jasmine Cephas Jones", 31 | "character": "Peggy Schuyler" 32 | }, { 33 | "actor": "Jasmine Cephas Jones", 34 | "character": "Maria Reynolds" 35 | }, { 36 | "actor": "Anthony Ramos", 37 | "character": "John Laurens" 38 | }, { 39 | "actor": "Anthony Ramos", 40 | "character": "Philip Hamilton" 41 | }, { 42 | "actor": "Okieriete Onaodowan", 43 | "character": "Hercules Mulligan" 44 | }, { 45 | "actor": "Okieriete Onaodowan", 46 | "character": "James Madison" 47 | }, { 48 | "actor": "Jon Rua", 49 | "character": "Charles Lee" 50 | }, { 51 | "actor": "Thayne Jasperson", 52 | "character": "Samuel Seabury" 53 | }, { 54 | "actor": "Sydney James Harcourt", 55 | "character": "Philip Schuyler" 56 | }, { 57 | "actor": "Sydney James Harcourt", 58 | "character": "James Reynolds" 59 | }, { 60 | "actor": "Ephraim Sykes", 61 | "character": "George Eacker" 62 | }] 63 | } 64 | -------------------------------------------------------------------------------- /data/technology/video_hosting_websites.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Video hosting websites", 3 | "videoHostingWebsites": [ 4 | "AcFun", 5 | "AfreecaTV", 6 | "Archive.org", 7 | "Bilibili", 8 | "Blip.tv", 9 | "BlogTV", 10 | "Break.com", 11 | "Brightcove", 12 | "Buzznet", 13 | "Cambridge Imaging", 14 | "Comedy.com", 15 | "Commons.wikimedia.org", 16 | "Crackle", 17 | "DaCast", 18 | "Dailymotion Cloud", 19 | "Dailymotion", 20 | "EngageMedia", 21 | "ExpoTV", 22 | "Facebook", 23 | "Flickr", 24 | "Fotki", 25 | "Frequency", 26 | "Funnyordie.com", 27 | "Funshion", 28 | "GNU MediaGoblin", 29 | "GodTube", 30 | "HD share", 31 | "Hulu", 32 | "islamictube", 33 | "Kaltura", 34 | "Kewego", 35 | "Lafango", 36 | "LeTV", 37 | "Liveleak", 38 | "MainStreaming", 39 | "MediaCore", 40 | "Mefeedia", 41 | "Metacafe", 42 | "MetaCDN", 43 | "Mevio", 44 | "MUZU.TV", 45 | "Myspace", 46 | "MyVideo", 47 | "Nico Nico Douga", 48 | "OneWorldTV", 49 | "Ooyala", 50 | "Openfilm", 51 | "Ora TV", 52 | "Panopto", 53 | "Photobucket", 54 | "Pixorial", 55 | "Plumi", 56 | "Pornhub", 57 | "QQ Video", 58 | "Rediff", 59 | "RedTube", 60 | "RuTube", 61 | "Sapo Videos", 62 | "SchoolTube", 63 | "ScienceStage", 64 | "Sevenload", 65 | "SmugMug", 66 | "Synaptop", 67 | "Tape.tv", 68 | "thePlatform", 69 | "Trilulilu", 70 | "TroopTube", 71 | "Tudou", 72 | "Tune.pk", 73 | "TV UOL", 74 | "Ustream", 75 | "Vbox7", 76 | "Veoh", 77 | "ViaStreaming", 78 | "Viddler", 79 | "Viddsee", 80 | "Videojug", 81 | "Videolog", 82 | "Vidoosh", 83 | "Vidyard", 84 | "Vimeo", 85 | "VK", 86 | "Vuze", 87 | "Vzaar", 88 | "Wildscreen.tv", 89 | "Wistia", 90 | "xHamster", 91 | "Xtube", 92 | "XVideos", 93 | "Yahoo! Video", 94 | "Youku", 95 | "YouPorn", 96 | "YouTube" 97 | ] 98 | } 99 | -------------------------------------------------------------------------------- /data/science/hail_size.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Analogous objects for various hail sizes, adapted from http://www.spc.noaa.gov/misc/tables/hailsize.htm", 3 | "hail": [ 4 | { 5 | "inches": 0.5, 6 | "analogs": [ 7 | "marble", 8 | "moth ball" 9 | ] 10 | }, 11 | { 12 | "inches": 0.75, 13 | "analogs": [ 14 | "penny" 15 | ] 16 | }, 17 | { 18 | "inches": 0.88, 19 | "analogs": [ 20 | "nickel" 21 | ] 22 | }, 23 | { 24 | "inches": 1, 25 | "analogs": [ 26 | "quarter" 27 | ] 28 | }, 29 | { 30 | "inches": 1.25, 31 | "analogs": [ 32 | "half-dollar" 33 | ] 34 | }, 35 | { 36 | "inches": 1.5, 37 | "analogs": [ 38 | "walnut", 39 | "ping-pong ball" 40 | ] 41 | }, 42 | { 43 | "inches": 1.75, 44 | "analogs": [ 45 | "golf ball" 46 | ] 47 | }, 48 | { 49 | "inches": 2, 50 | "analogs": [ 51 | "egg" 52 | ] 53 | }, 54 | { 55 | "inches": 2.5, 56 | "analogs": [ 57 | "tennis ball" 58 | ] 59 | }, 60 | { 61 | "inches": 2.75, 62 | "analogs": [ 63 | "baseball" 64 | ] 65 | }, 66 | { 67 | "inches": 3, 68 | "analogs": [ 69 | "tea cup" 70 | ] 71 | }, 72 | { 73 | "inches": 4, 74 | "analogs": [ 75 | "grapefruit" 76 | ] 77 | }, 78 | { 79 | "inches": 4.5, 80 | "analogs": [ 81 | "softball" 82 | ] 83 | } 84 | ] 85 | } -------------------------------------------------------------------------------- /data/foods/fruits.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of fruits.", 3 | "fruits": [ 4 | "apple", 5 | "apricot", 6 | "avocado", 7 | "banana", 8 | "bell pepper", 9 | "bilberry", 10 | "blackberry", 11 | "blackcurrant", 12 | "blood orange", 13 | "blueberry", 14 | "boysenberry", 15 | "breadfruit", 16 | "canary melon", 17 | "cantaloupe", 18 | "cherimoya", 19 | "cherry", 20 | "chili pepper", 21 | "clementine", 22 | "cloudberry", 23 | "coconut", 24 | "cranberry", 25 | "cucumber", 26 | "currant", 27 | "damson", 28 | "date", 29 | "dragonfruit", 30 | "durian", 31 | "eggplant", 32 | "elderberry", 33 | "feijoa", 34 | "fig", 35 | "goji berry", 36 | "gooseberry", 37 | "grape", 38 | "grapefruit", 39 | "guava", 40 | "honeydew", 41 | "huckleberry", 42 | "jackfruit", 43 | "jambul", 44 | "jujube", 45 | "kiwi fruit", 46 | "kumquat", 47 | "lemon", 48 | "lime", 49 | "loquat", 50 | "lychee", 51 | "mandarine", 52 | "mango", 53 | "mulberry", 54 | "nectarine", 55 | "nut", 56 | "olive", 57 | "orange", 58 | "pamelo", 59 | "papaya", 60 | "passionfruit", 61 | "peach", 62 | "pear", 63 | "persimmon", 64 | "physalis", 65 | "pineapple", 66 | "plum", 67 | "pomegranate", 68 | "pomelo", 69 | "purple mangosteen", 70 | "quince", 71 | "raisin", 72 | "rambutan", 73 | "raspberry", 74 | "redcurrant", 75 | "rock melon", 76 | "salal berry", 77 | "satsuma", 78 | "star fruit", 79 | "strawberry", 80 | "tamarillo", 81 | "tangerine", 82 | "tomato", 83 | "ugli fruit", 84 | "watermelon" 85 | ] 86 | } 87 | -------------------------------------------------------------------------------- /data/foods/wine_descriptions.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of words commonly used to describe wine.", 3 | "wine_descriptions": [ 4 | "acidic", 5 | "alcoholic", 6 | "angular", 7 | "astringent", 8 | "austere", 9 | "autolytic", 10 | "baked", 11 | "balanced", 12 | "barnyard", 13 | "big", 14 | "bitter", 15 | "bright", 16 | "brilliance", 17 | "buttery", 18 | "cassis", 19 | "cat pee", 20 | "charcoal", 21 | "chewy", 22 | "chocolaty", 23 | "cigar box", 24 | "closed", 25 | "cloying", 26 | "coarse", 27 | "complex", 28 | "concentrated", 29 | "connected", 30 | "corked", 31 | "creamy", 32 | "crisp", 33 | "dense", 34 | "depth", 35 | "dirty", 36 | "dry", 37 | "earthy", 38 | "elegant", 39 | "expressive", 40 | "extracted", 41 | "fallen over", 42 | "fat", 43 | "firm", 44 | "flabby", 45 | "flamboyant", 46 | "flat", 47 | "fleshy", 48 | "food friendly", 49 | "foxy", 50 | "fresh", 51 | "fruity", 52 | "full", 53 | "grassy", 54 | "green", 55 | "grippy", 56 | "hard", 57 | "heavy", 58 | "herbaceous", 59 | "herbal", 60 | "hollow", 61 | "hot", 62 | "intellectually satisfying", 63 | "jammy", 64 | "juicy", 65 | "laser-like", 66 | "lean", 67 | "leathery", 68 | "lees", 69 | "leggy", 70 | "minerally", 71 | "musty", 72 | "oaked", 73 | "oaky", 74 | "opulent", 75 | "oxidized", 76 | "petrolly", 77 | "powerful", 78 | "raisiny", 79 | "refined", 80 | "reticent", 81 | "rich", 82 | "rough", 83 | "round", 84 | "silky", 85 | "smokey", 86 | "smooth", 87 | "soft", 88 | "sour", 89 | "spicy", 90 | "steely", 91 | "structured", 92 | "supple", 93 | "sweet", 94 | "tannic", 95 | "tar", 96 | "tart", 97 | "tight", 98 | "toast", 99 | "toasty", 100 | "transparent", 101 | "unctuous", 102 | "unoaked", 103 | "vanillin", 104 | "vegetal", 105 | "velvety", 106 | "vinegar" 107 | ] 108 | } 109 | -------------------------------------------------------------------------------- /data/geography/japanese_prefectures.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Japanese regions and prefectures.", 3 | "regions": 4 | [ 5 | { 6 | "region": "Chūbu", 7 | "prefectures": [ 8 | "Aichi", 9 | "Fukui", 10 | "Gifu", 11 | "Ishikawa", 12 | "Nagano", 13 | "Niigata", 14 | "Shizuoka", 15 | "Toyama", 16 | "Yamanashi" 17 | ] 18 | }, 19 | { 20 | "region": "Chūgoku", 21 | "prefectures": [ 22 | "Hiroshima", 23 | "Okayama", 24 | "Shimane", 25 | "Tottori", 26 | "Yamaguchi" 27 | ] 28 | 29 | }, 30 | { 31 | "region": "Hokkaido", 32 | "prefectures": [ 33 | "Hokkaido" 34 | ] 35 | 36 | }, 37 | { 38 | "region": "Kansai", 39 | "prefectures": [ 40 | "Hyōgo", 41 | "Kyoto", 42 | "Mie", 43 | "Nara", 44 | "Osaka", 45 | "Shiga", 46 | "Wakayama" 47 | ] 48 | 49 | }, 50 | { 51 | "region": "Kantō", 52 | "prefectures": [ 53 | "Chiba", 54 | "Gunma", 55 | "Ibaraki", 56 | "Kanagawa", 57 | "Saitama", 58 | "Tochigi", 59 | "Tokyo" 60 | ] 61 | 62 | }, 63 | { 64 | "region": "Kyushu", 65 | "prefectures": [ 66 | "Fukuoka", 67 | "Kagoshima", 68 | "Kumamoto", 69 | "Miyazaki", 70 | "Nagasaki", 71 | "Ōita", 72 | "Okinawa", 73 | "Saga" 74 | ] 75 | 76 | }, 77 | { 78 | "region": "Shikoku", 79 | "prefectures": [ 80 | "Ehime", 81 | "Kagawa", 82 | "Kōchi", 83 | "Tokushima" 84 | ] 85 | 86 | }, 87 | { 88 | "region": "Tōhoku", 89 | "prefectures": [ 90 | "Akita", 91 | "Aomori", 92 | "Fukushima", 93 | "Iwate", 94 | "Miyagi", 95 | "Yamagata" 96 | ] 97 | } 98 | ] 99 | } 100 | -------------------------------------------------------------------------------- /data/technology/guns_n_rifles.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "weapons used in mass shootings in the U.S.A.", 3 | "weapons": 4 | [ 5 | ".22-caliber Double Deuce Buddie two-shot", 6 | ".22-caliber Walther P22 semiautomatic", 7 | ".223 Bushmaster assault rifle", 8 | ".223 Bushmaster XM15-E2S rifle", 9 | ".223-caliber Smith & Wesson M&P15 semiautomatic rifle", 10 | ".30-06 Remington 742", 11 | ".30-caliber Universal M-1 carbine", 12 | ".30-caliber Universal M1 carbine", 13 | ".32-caliber Retolaza semiautomatic", 14 | ".357 Ruger Blackhawk revolver", 15 | ".357-caliber Ruger Security Six", 16 | ".38-caliber Colt revolver", 17 | ".38-caliber Davis Industries two-shot derringer", 18 | ".38-caliber Smith & Wesson", 19 | ".380-caliber", 20 | ".40-caliber Glock", 21 | ".44 Magnum Ruger", 22 | ".45-caliber Colt semiautomatic", 23 | ".45-caliber Springfield semiautomatic", 24 | "10mm Glock" , 25 | "12-gauge Remington 870 pump-action shotgun", 26 | "12-gauge Remington Sportsman sawed-off shotgun", 27 | "12-gauge sawed-off Savage Stevens 311D", 28 | "12-gauge Winchester 1200 pump-action shotgun", 29 | "12-gauge Winchester 1300 pump-action shotgun", 30 | "20-gauge Winchester pump-action shotgun", 31 | "7.62mm AK-47", 32 | "9mm Beretta", 33 | "9mm Browning P35 Hi-Power semiautomatic handgun", 34 | "9mm Glock 17 handgun", 35 | "9mm Glock 17", 36 | "9mm Glock 19", 37 | "9mm Glock", 38 | "9mm Hi-Point 995 carbine rifle", 39 | "9mm Intratec DC-9 semiautomatic", 40 | "9mm Israeli Military Industries Uzi Model A", 41 | "9mm Kurz SIG Sauer P232 semiautomatic", 42 | "9mm Ruger P85", 43 | "9mm Ruger P89", 44 | "9mm Ruger SR9 semiautomatic", 45 | "9mm SIG Sauer P226", 46 | "9mm SIG Sauer semiautomatic", 47 | "9mm Smith & Wesson 459 semiautomatic", 48 | "9mm Smith & Wesson 915 semiautomatic", 49 | "9mm Springfield Armory XDM semiautomatic", 50 | "9mm Taurus semiautomatic", 51 | "AK-47", 52 | "AR-15 assault rifle", 53 | "FIE .380-caliber Star semiautomatic", 54 | "Glock 34", 55 | "Hi-Point CF380", 56 | "Intratec DC-9", 57 | "Intratec MAC-11", 58 | "Izhmash Saiga-12 12-gauge semiautomatic shotgun", 59 | "MAK-90 rifle", 60 | "sawed-off Savage Springfield 67H pump-action shotgun", 61 | "Sig Sauer p226", 62 | "Sturm, Ruger Mini-14 rifle", 63 | "WASR-10 Century Arms rifle" 64 | ] 65 | } 66 | -------------------------------------------------------------------------------- /data/humans/spanishLastNames.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of common Spanish last names.", 3 | "source": "https://github.com/olea/lemarios", 4 | "lastNames": 5 | [ "Aguilar", 6 | "Alonso", 7 | "Álvarez", 8 | "Arias", 9 | "Benítez", 10 | "Blanco", 11 | "Blesa", 12 | "Bravo", 13 | "Caballero", 14 | "Cabrera", 15 | "Calvo", 16 | "Cambil", 17 | "Campos", 18 | "Cano", 19 | "Carmona", 20 | "Carrasco", 21 | "Castillo", 22 | "Castro", 23 | "Cortés", 24 | "Crespo", 25 | "Cruz", 26 | "Delgado", 27 | "Díaz", 28 | "Díez", 29 | "Domínguez", 30 | "Durán", 31 | "Esteban", 32 | "Fernández", 33 | "Ferrer", 34 | "Flores", 35 | "Fuentes", 36 | "Gallardo", 37 | "Gallego", 38 | "García", 39 | "Garrido", 40 | "Gil", 41 | "Giménez", 42 | "Gómez", 43 | "González", 44 | "Guerrero", 45 | "Gutiérrez", 46 | "Hernández", 47 | "Herrera", 48 | "Herrero", 49 | "Hidalgo", 50 | "Ibáñez", 51 | "Iglesias", 52 | "Jiménez", 53 | "León", 54 | "López", 55 | "Lorenzo", 56 | "Lozano", 57 | "Marín", 58 | "Márquez", 59 | "Martín", 60 | "Martínez", 61 | "Medina", 62 | "Méndez", 63 | "Molina", 64 | "Montero", 65 | "Montoro", 66 | "Mora", 67 | "Morales", 68 | "Moreno", 69 | "Moya", 70 | "Muñoz", 71 | "Navarro", 72 | "Nieto", 73 | "Núñez", 74 | "Ortega", 75 | "Ortiz", 76 | "Parra", 77 | "Pascual", 78 | "Pastor", 79 | "Peña", 80 | "Pérez", 81 | "Prieto", 82 | "Ramírez", 83 | "Ramos", 84 | "Rey", 85 | "Reyes", 86 | "Rodríguez", 87 | "Román", 88 | "Romero", 89 | "Rubio", 90 | "Ruiz", 91 | "Sáez", 92 | "Sánchez", 93 | "Santana", 94 | "Santiago", 95 | "Santos", 96 | "Sanz", 97 | "Serrano", 98 | "Soler", 99 | "Soto", 100 | "Suárez", 101 | "Torres", 102 | "Vargas", 103 | "Vázquez", 104 | "Vega", 105 | "Velasco", 106 | "Vicente", 107 | "Vidal" ] 108 | } 109 | -------------------------------------------------------------------------------- /data/mythology/lovecraft.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Deities and supernatural creatures from the works of Lovecraft and the Cthulhu mythos.", 3 | "deities": [ 4 | "Abhoth", 5 | "Ahtu", 6 | "Atlach-Nacha", 7 | "Azathoth", 8 | "Bastet", 9 | "Bokrug", 10 | "Chaugnar Faugn", 11 | "Cthugha", 12 | "Cthulhu", 13 | "Cthylla", 14 | "Cxaxukluth", 15 | "Cyäegha", 16 | "Dagon", 17 | "Daoloth", 18 | "Eihort", 19 | "Ghatanothoa", 20 | "Ghisguth", 21 | "Gla'aki", 22 | "Great Old One", 23 | "Hastur", 24 | "Hydra", 25 | "Hypnos", 26 | "Hziulquoigmnzhah", 27 | "Ithaqua", 28 | "The King in Yellow", 29 | "Knygathin Zhaum", 30 | "Nodens", 31 | "Nyarlathotep", 32 | "Nyogtha", 33 | "Other God", 34 | "Outer God", 35 | "Quachil Uttaus", 36 | "Sfatlicllp", 37 | "Shathak", 38 | "Shub-Niggurath", 39 | "Shudde M'ell", 40 | "Tsathoggua", 41 | "Tulzscha", 42 | "Ubbo-Sathla", 43 | "Vulthoom", 44 | "Ycnágnnisssz", 45 | "Y'golonac", 46 | "Yibb-Tstll", 47 | "Yig", 48 | "Yog-Sothoth", 49 | "Ythogtha", 50 | "Zoth-Ommog", 51 | "Zstylzhemghi", 52 | "Zvilpogghua" 53 | ], 54 | "supernatural_creatures": [ 55 | "Byakhee", 56 | "Chthonian", 57 | "Colour out of space", 58 | "Cthulhi", 59 | "Dark Young of Shub-Niggurath", 60 | "Deep One", 61 | "Dholes", 62 | "Dimensional shambler", 63 | "Brood of Eihort", 64 | "Elder Thing", 65 | "Fire vampire", 66 | "Flying Polyp", 67 | "Formless spawn of Tsathoggua", 68 | "Ghast", 69 | "Ghoul", 70 | "Gnophkeh", 71 | "Great Race of Yith", 72 | "Gug", 73 | "Hound of Tindalos", 74 | "Hunting Horror", 75 | "Being of Ib", 76 | "Leng spider", 77 | "Lloigor", 78 | "Many-angled One", 79 | "Mi-go", 80 | "Moon-beast", 81 | "Night-gaunt", 82 | "Rat-thing", 83 | "Rhan-Tegoth", 84 | "Sand dweller", 85 | "Serpent people", 86 | "Servant of Glaaki", 87 | "Servitor of the Outer Gods", 88 | "Shaggai", 89 | "Shan", 90 | "Shantak", 91 | "Shoggoth", 92 | "Starspawn of Cthulhu", 93 | "Star vampire", 94 | "Tcho-Tcho", 95 | "Voormi", 96 | "Being of Xiclotl", 97 | "Yugg", 98 | "Zoog" 99 | ] 100 | } 101 | -------------------------------------------------------------------------------- /data/humans/wrestlers.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A bunch of WWE wrestlers nicknames", 3 | "wrestlers": [ 4 | "Adam Rose", 5 | "Alberto Del Rio", 6 | "Alexander Rusev", 7 | "Andre the Giant", 8 | "Arn Anderson", 9 | "Bad News Barrett", 10 | "Barry Horowitz", 11 | "Batista", 12 | "Big Boss Man", 13 | "Big E", 14 | "Big Show", 15 | "Billy Gunn", 16 | "Booker T", 17 | "Bray Wyatt", 18 | "Bret \"Hitman\" Hart", 19 | "Brock Lesnar", 20 | "Brodus Clay", 21 | "Brutus \"The Barber\" Beefcake", 22 | "Cesaro", 23 | "Christian", 24 | "CM Punk", 25 | "Cody Rhodes", 26 | "Curt Hawkins", 27 | "Curtis Axel", 28 | "Damien Sandow", 29 | "Daniel Bryan", 30 | "Darren Young", 31 | "David Otunga", 32 | "Dean Ambrose", 33 | "Diego", 34 | "Dolph Ziggler", 35 | "Drew McIntyre", 36 | "Dwayne \"The Rock\" Johnson", 37 | "Erick Rowan", 38 | "Evan Bourne", 39 | "Fernando", 40 | "George \"The Animal\" Steele", 41 | "Goldust", 42 | "The Great Khali", 43 | "\"Hacksaw\" Jim Duggan", 44 | "Heath Slater", 45 | "The Honky Tonk Man", 46 | "Hornswoggle", 47 | "Hulk Hogan", 48 | "The Iron Shiek", 49 | "Jack Swagger", 50 | "Jake \"The Snake\" Roberts", 51 | "Jey Uso", 52 | "Jimmy Uso", 53 | "Jinder Mahal", 54 | "John Cena", 55 | "JTG", 56 | "Junkyard Dog", 57 | "Justin Gabriel", 58 | "Kane", 59 | "Kofi Kingston", 60 | "Koko B. Ware", 61 | "Luke Harper", 62 | "\"Macho Man\" Randy Savage", 63 | "Mark Henry", 64 | "\"The Million Dollar Man\" Ted DeBiase", 65 | "The Miz", 66 | "Mr. Perfect", 67 | "Paul \"Mr. Wonderful\" Orndorff", 68 | "\"Nature Boy\" Ric Flair", 69 | "R-Truth", 70 | "Randy Orton", 71 | "\"Ravishing\" Rick Rude", 72 | "Rey Mysterio", 73 | "Ricardo Rodriguez", 74 | "Rob Van Dam", 75 | "Roman Reigns", 76 | "\"Rowdy\" Roddy Piper", 77 | "Rusev", 78 | "Ryback", 79 | "Santino Marella", 80 | "Seth Rollins", 81 | "Sgt. Slaughter", 82 | "Shawn Michaels", 83 | "Sheamus", 84 | "Sin Cara", 85 | "\"Stone Cold\" Steve Austin", 86 | "\"Superfly\" Jimmy Snuka", 87 | "Titus O'Neil", 88 | "Triple H", 89 | "Tugboat", 90 | "Tully Blanchard", 91 | "Tyson Kidd", 92 | "The Undertaker", 93 | "The Ultimate Warrior", 94 | "William Regal", 95 | "Xavier Woods", 96 | "Yoshi Tatsu", 97 | "Zack Ryder" 98 | ] 99 | } 100 | -------------------------------------------------------------------------------- /data/foods/condiments.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of condiments", 3 | "condiments": [ 4 | "Aioli", 5 | "Ajvar", 6 | "Amba", 7 | "Barbecue sauce", 8 | "Biber salçası", 9 | "Brown mustard", 10 | "Chili peppers", 11 | "Chili sauce", 12 | "Chili oil", 13 | "Chimichurri", 14 | "Chutney", 15 | "Cocktail sauce", 16 | "Colo-colo", 17 | "Crushed red pepper", 18 | "Dabu-dabu", 19 | "Dijon ketchup", 20 | "Dijon mustard", 21 | "Dip", 22 | "Fish paste", 23 | "Fish sauce", 24 | "Fritessaus", 25 | "Fruit preserves", 26 | "Fry sauce", 27 | "Gochujang", 28 | "Guacamole", 29 | "Honey dill", 30 | "Horseradish", 31 | "Hot mustard", 32 | "Hot sauce", 33 | "Skhug", 34 | "Kachumbari", 35 | "Kachumber", 36 | "Ketchup", 37 | "Fruit ketchup", 38 | "Banana ketchup", 39 | "Curry ketchup", 40 | "Kimchi", 41 | "Khrenovina", 42 | "Kyopolou", 43 | "Mayonnaise", 44 | "Mignonette sauce", 45 | "Milkette", 46 | "Monkey gland sauce", 47 | "Muhammara", 48 | "Mumbo sauce", 49 | "Murri", 50 | "Mushroom ketchup", 51 | "Mustard", 52 | "Mostarda", 53 | "Mustard oil", 54 | "Tewkesbury mustard", 55 | "Turun sinappi", 56 | "Nutritional yeast", 57 | "Olive oil", 58 | "Pepper jelly", 59 | "Pesto", 60 | "Piccalilli", 61 | "Pickled fruit", 62 | "Pico de gallo", 63 | "Mango pickle", 64 | "Pickled cucumber", 65 | "Pickled onion", 66 | "Pickled pepper", 67 | "Pinđur", 68 | "Popcorn seasoning", 69 | "Relish", 70 | "Chrain", 71 | "Ljutenica", 72 | "Remoulade", 73 | "Salad cream", 74 | "Salad dressing", 75 | "Salmoriglio", 76 | "Salsa", 77 | "Salsa golf", 78 | "Salt", 79 | "Salt and pepper", 80 | "Sambal", 81 | "Sauerkraut", 82 | "Sesame oil", 83 | "Skyronnes", 84 | "Soy sauce", 85 | "Sriracha", 86 | "Steak sauce", 87 | "Sumbala", 88 | "Sweet chilli sauce", 89 | "Syrup", 90 | "Tartar sauce", 91 | "Tekka", 92 | "Teriyaki sauce", 93 | "Tkemali", 94 | "Toum", 95 | "Vinegar", 96 | "Black vinegar", 97 | "Vincotto", 98 | "Vino cotto", 99 | "Watermelon rind preserves", 100 | "XO sauce", 101 | "Za'atar", 102 | "Zacuscă" 103 | ] 104 | } 105 | -------------------------------------------------------------------------------- /data/words/rhymeless_words.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "English words for which there is no perfect rhyme, taken from https://en.wikipedia.org/wiki/List_of_English_words_without_rhymes", 3 | "words": [ 4 | "adzed", 5 | "airt", 6 | "aitch", 7 | "alb", 8 | "amongst", 9 | "angel", 10 | "angry", 11 | "angst", 12 | "angsts", 13 | "anxious", 14 | "arugula", 15 | "beige", 16 | "bilge", 17 | "blitzed", 18 | "borscht", 19 | "breadth", 20 | "bronzed", 21 | "bulb", 22 | "cairn", 23 | "chaos", 24 | "chimney", 25 | "circle", 26 | "circus", 27 | "cleansed", 28 | "coif", 29 | "comment", 30 | "coolth", 31 | "corpsed", 32 | "cusp", 33 | "delft", 34 | "depth", 35 | "doth", 36 | "eighth", 37 | "elbow", 38 | "else", 39 | "empty", 40 | "engine", 41 | "eth", 42 | "false", 43 | "fiends", 44 | "fifth", 45 | "film", 46 | "filmed", 47 | "flange", 48 | "foible", 49 | "fourths", 50 | "foyer", 51 | "fugue", 52 | "glimpsed", 53 | "gouge", 54 | "grilse", 55 | "gulf", 56 | "heighth", 57 | "hundred", 58 | "husband", 59 | "iron", 60 | "karsts", 61 | "kiln", 62 | "kilned", 63 | "kirsch", 64 | "liquid", 65 | "loge", 66 | "luggage", 67 | "midst", 68 | "midsts", 69 | "monster", 70 | "month", 71 | "mulcts", 72 | "music", 73 | "neutron", 74 | "ninth", 75 | "nothing", 76 | "oblige", 77 | "olive", 78 | "oomph", 79 | "opus", 80 | "orange", 81 | "penguin", 82 | "pierced", 83 | "pint", 84 | "plankton", 85 | "plinth", 86 | "polka", 87 | "problem", 88 | "prompts", 89 | "purple", 90 | "quaich", 91 | "rhythm", 92 | "rouged", 93 | "sanction", 94 | "sandwich", 95 | "scarce", 96 | "sculpts", 97 | "secret", 98 | "silver", 99 | "siren", 100 | "sixth", 101 | "something", 102 | "sowthed", 103 | "spoilt", 104 | "stilb", 105 | "toilet", 106 | "traipsed", 107 | "tufts", 108 | "twelfth", 109 | "unbeknowns", 110 | "vuln", 111 | "waltzed", 112 | "warmth", 113 | "whilst", 114 | "width", 115 | "wolf", 116 | "wolve", 117 | "woman", 118 | "worlds", 119 | "wounds", 120 | "yogh", 121 | "yoicks", 122 | "yttrium", 123 | "zigzag" 124 | ] 125 | } -------------------------------------------------------------------------------- /data/materials/decorative-stones.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "decorative stones", 3 | "decorative stones": [ 4 | "aberdeen granite", 5 | "ancaster stone", 6 | "anorthosite", 7 | "banktop", 8 | "barnack rag", 9 | "bearl", 10 | "beer stone", 11 | "blaxter", 12 | "brownstone", 13 | "burdur beige marble", 14 | "caen stone", 15 | "catcastle", 16 | "chalk", 17 | "charnockite", 18 | "clipsham stone", 19 | "clunch", 20 | "comblanchien", 21 | "corallian limestone", 22 | "corncockle", 23 | "côte d'or", 24 | "cotswold stone", 25 | "czaple", 26 | "dębnik", 27 | "diabase", 28 | "diorite", 29 | "dolomite", 30 | "dunhouse blue", 31 | "dunhouse buff", 32 | "elazig cherry marble", 33 | "emprador", 34 | "flaggy limestone", 35 | "flint", 36 | "forest marble", 37 | "frosterley marble", 38 | "gabbro", 39 | "gneiss", 40 | "granite", 41 | "granodiorite", 42 | "hall dale", 43 | "haslingden flag", 44 | "heavitree stone", 45 | "jerusalem stone", 46 | "ketton stone", 47 | "kielce", 48 | "kośmin", 49 | "larvikite", 50 | "limestone", 51 | "locharbriggs", 52 | "magnesian limestone", 53 | "marble", 54 | "marmara", 55 | "monzonite", 56 | "mugla white", 57 | "nasławice", 58 | "noche travertine", 59 | "onyx", 60 | "oolitic limestone", 61 | "peperino", 62 | "pierre d'euville", 63 | "pierre de jaumont", 64 | "pietra serena", 65 | "portland admiralty roach", 66 | "portland bowers basebed", 67 | "portland bowers lynham whitbed", 68 | "portland bowers saunders whitbed", 69 | "portland grove whitbed", 70 | "portland hard blue", 71 | "portland independent basebed", 72 | "portland independent bottom whitbed", 73 | "portland independent top whitbed", 74 | "portland new independent whitbed", 75 | "portland stone", 76 | "portoro buono", 77 | "przedborowa", 78 | "purbeck marble", 79 | "quartzite", 80 | "radków", 81 | "sandstone", 82 | "serpentinite", 83 | "skała", 84 | "skiddaw slate", 85 | "slate", 86 | "steatite", 87 | "stromatolites", 88 | "strzegom", 89 | "strzelin", 90 | "syenite", 91 | "szczytna", 92 | "tezontle", 93 | "travertine", 94 | "tuffeau stone", 95 | "verde antico", 96 | "welsh slate", 97 | "yorkstone" 98 | ] 99 | } 100 | -------------------------------------------------------------------------------- /data/words/stopwords/no.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Norwegian stop words", 3 | "stopWords": 4 | [ 5 | "alle", 6 | "andre", 7 | "arbeid", 8 | "av", 9 | "begge", 10 | "bort", 11 | "bra", 12 | "bruke", 13 | "da", 14 | "denne", 15 | "der", 16 | "deres", 17 | "det", 18 | "din", 19 | "disse", 20 | "du", 21 | "eller", 22 | "en", 23 | "ene", 24 | "eneste", 25 | "enhver", 26 | "enn", 27 | "er", 28 | "et", 29 | "folk", 30 | "for", 31 | "fordi", 32 | "forsÛke", 33 | "fra", 34 | "fÅ", 35 | "fÛr", 36 | "fÛrst", 37 | "gjorde", 38 | "gjÛre", 39 | "god", 40 | "gÅ", 41 | "ha", 42 | "hadde", 43 | "han", 44 | "hans", 45 | "hennes", 46 | "her", 47 | "hva", 48 | "hvem", 49 | "hver", 50 | "hvilken", 51 | "hvis", 52 | "hvor", 53 | "hvordan", 54 | "hvorfor", 55 | "i", 56 | "ikke", 57 | "inn", 58 | "innen", 59 | "kan", 60 | "kunne", 61 | "lage", 62 | "lang", 63 | "lik", 64 | "like", 65 | "makt", 66 | "mange", 67 | "med", 68 | "meg", 69 | "meget", 70 | "men", 71 | "mens", 72 | "mer", 73 | "mest", 74 | "min", 75 | "mye", 76 | "mÅ", 77 | "mÅte", 78 | "navn", 79 | "nei", 80 | "ny", 81 | "nÅ", 82 | "nÅr", 83 | "og", 84 | "ogsÅ", 85 | "om", 86 | "opp", 87 | "oss", 88 | "over", 89 | "part", 90 | "punkt", 91 | "pÅ", 92 | "rett", 93 | "riktig", 94 | "samme", 95 | "sant", 96 | "si", 97 | "siden", 98 | "sist", 99 | "skulle", 100 | "slik", 101 | "slutt", 102 | "som", 103 | "start", 104 | "stille", 105 | "sÅ", 106 | "tid", 107 | "til", 108 | "tilbake", 109 | "tilstand", 110 | "under", 111 | "ut", 112 | "uten", 113 | "var", 114 | "ved", 115 | "verdi", 116 | "vi", 117 | "vil", 118 | "ville", 119 | "vite", 120 | "vÅr", 121 | "vÖre", 122 | "vÖrt", 123 | "Å" 124 | ] 125 | } 126 | -------------------------------------------------------------------------------- /data/architecture/rooms.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Different kinds of rooms", 3 | "rooms": [ 4 | "aerary", 5 | "aircraft cabin", 6 | "airport lounge", 7 | "alcove", 8 | "anatomical theatre", 9 | "anechoic chamber", 10 | "antechamber", 11 | "anteroom", 12 | "armory", 13 | "assembly room", 14 | "atelier", 15 | "attic", 16 | "auditorium", 17 | "backroom", 18 | "ballroom", 19 | "basement", 20 | "bathroom", 21 | "bedroom", 22 | "billiard room", 23 | "boardroom", 24 | "boiler room", 25 | "boudoir", 26 | "breakfast nook", 27 | "breezeway", 28 | "cabin", 29 | "cafeteria", 30 | "caldarium", 31 | "cellar", 32 | "changing room", 33 | "chapel", 34 | "classroom", 35 | "clean room", 36 | "cloakroom", 37 | "closet", 38 | "cold room", 39 | "common room", 40 | "computer lab", 41 | "conference room", 42 | "conservatory", 43 | "control room", 44 | "conversation pit", 45 | "corner office", 46 | "courtroom", 47 | "cry room", 48 | "darkroom", 49 | "den", 50 | "dining room", 51 | "dormitory", 52 | "drawing room", 53 | "dressing room", 54 | "electrical room", 55 | "emergency room", 56 | "engine room", 57 | "equipment room", 58 | "fallout shelter", 59 | "family room", 60 | "fitting room", 61 | "foyer", 62 | "game room", 63 | "garage", 64 | "guest room", 65 | "gym", 66 | "hotel room", 67 | "kitchen", 68 | "laundry room", 69 | "library", 70 | "living room", 71 | "lobby", 72 | "locker room", 73 | "loft", 74 | "lounge", 75 | "mailroom", 76 | "map room", 77 | "motel room", 78 | "mud room", 79 | "newsroom", 80 | "nursery", 81 | "office", 82 | "panic room", 83 | "pantry", 84 | "parlor", 85 | "playroom", 86 | "pool room", 87 | "print room", 88 | "rec room", 89 | "salon", 90 | "sauna", 91 | "schoolroom", 92 | "showroom", 93 | "sitting room", 94 | "staff room", 95 | "stockroom", 96 | "storm cellar", 97 | "studio", 98 | "study", 99 | "sunroom", 100 | "tearoom", 101 | "throne room", 102 | "transmission control room", 103 | "tv room", 104 | "utility room", 105 | "waiting room", 106 | "washroom", 107 | "water closet", 108 | "weight room", 109 | "wine cellar", 110 | "wiring closet", 111 | "workshop" 112 | ] 113 | } -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/united_states.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Abdullah Azzam Brigades", 3 | "Abu Nidal Organization", 4 | "Abu Sayyaf", 5 | "Ajnad Misr", 6 | "al-Aqsa Martyrs' Brigades", 7 | "al-Gama'a al-Islamiyya", 8 | "Al-Mourabitoun", 9 | "Al-Nusra Front", 10 | "al-Qaeda", 11 | "al-Qaeda in the Arabian Peninsula", 12 | "al-Qaeda in the Islamic Maghreb", 13 | "Al-Shabaab", 14 | "Ansar al-Sharia (Libya)", 15 | "Ansar al-Sharia (Tunisia)", 16 | "Ansar al-Islam", 17 | "Ansar Bait al-Maqdis", 18 | "Ansar Dine", 19 | "Ansaru", 20 | "Army of Islam", 21 | "Osbat al-Ansar", 22 | "Aum Shinrikyo", 23 | "Boko Haram", 24 | "Caucasus Emirate", 25 | "Communist Party of the Philippines/New People's Army", 26 | "Conspiracy of Fire Nuclei", 27 | "Continuity Irish Republican Army", 28 | "East Turkestan Islamic Movement", 29 | "ETA", 30 | "Hamas", 31 | "Izz ad-Din al-Qassam Brigades", 32 | "Haqqani network", 33 | "Harkat-ul-Jihad al-Islami", 34 | "Harkat-al-Jihad al-Islami in Bangladesh", 35 | "Harkat-ul-Mujahideen", 36 | "Harakat Sham al-Islam", 37 | "Hezbollah", 38 | "Indian Mujahideen", 39 | "Islamic Jihad Union", 40 | "Islamic Movement of Uzbekistan", 41 | "Islamic State of Iraq and the Levant", 42 | "Jaish-e-Mohammed", 43 | "Jaish al-Muhajireen wal-Ansar", 44 | "Jemaah Islamiyah", 45 | "Jamaah Ansharut Tauhid", 46 | "Jundallah", 47 | "Kach and Kahane Chai", 48 | "Kata'ib Hezbollah", 49 | "Kurdistan Workers' Party", 50 | "Lashkar-e-Taiba", 51 | "Lashkar-e-Jhangvi", 52 | "Liberation Tigers of Tamil Eelam", 53 | "Libyan Islamic Fighting Group", 54 | "Moroccan Islamic Combatant Group", 55 | "Movement for Oneness and Jihad in West Africa", 56 | "Mujahideen Shura Council in the Environs of Jerusalem", 57 | "National Liberation Army", 58 | "Palestine Liberation Front", 59 | "Palestinian Islamic Jihad", 60 | "Popular Front for the Liberation of Palestine", 61 | "Popular Front for the Liberation of Palestine – General Command", 62 | "Provisional Irish Republican Army", 63 | "Real Irish Republican Army", 64 | "Revolutionary Armed Forces of Colombia", 65 | "Revolutionary Organization 17 November", 66 | "Revolutionary People's Liberation Party–Front", 67 | "Revolutionary Struggle", 68 | "Shining Path[69]", 69 | "Tehrik-i-Taliban Pakistan", 70 | "Ulster Defence Association", 71 | "Ulster Volunteer Force", 72 | "United Self-Defense Forces of Colombia" 73 | ] 74 | -------------------------------------------------------------------------------- /data/geography/winds.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of regional and local winds and weather phenomena.", 3 | "source": "https://en.wikipedia.org/wiki/List_of_local_winds, http://www.ggweather.com/windsoftheworld.htm", 4 | "winds": [ 5 | "abrolhos", 6 | "alisio", 7 | "alizé", 8 | "alizé maritime", 9 | "amihan", 10 | "autan", 11 | "bad-i-sad-o-bist-roz", 12 | "barber", 13 | "barguzin", 14 | "bayamo", 15 | "berg", 16 | "bise", 17 | "blue norther", 18 | "bora", 19 | "brickfielder", 20 | "brisote", 21 | "buran", 22 | "calima", 23 | "carpinteiro", 24 | "cape doctor", 25 | "cers", 26 | "chinook", 27 | "cierzo", 28 | "coho", 29 | "cordonazo", 30 | "coromuel", 31 | "crivăț", 32 | "descuernacabras", 33 | "diablo", 34 | "elephanta", 35 | "etesian", 36 | "euroclydon", 37 | "foehn", 38 | "föhn", 39 | "fremantle doctor", 40 | "furious fifties", 41 | "garua", 42 | "ghibli", 43 | "gilavar", 44 | "gregale", 45 | "habagat", 46 | "haizebeltza", 47 | "halny", 48 | "harmattan", 49 | "helm", 50 | "kali andhi", 51 | "karaburan", 52 | "karakaze", 53 | "khamsin", 54 | "khazri", 55 | "kona", 56 | "košava", 57 | "laawan", 58 | "leste", 59 | "levanter", 60 | "leveche", 61 | "libeccio", 62 | "llevantades", 63 | "lodos", 64 | "loo", 65 | "maestro", 66 | "marin", 67 | "matacabras", 68 | "meltem", 69 | "meltemi", 70 | "minuano", 71 | "mistral", 72 | "mono", 73 | "monsoon", 74 | "n'aschi", 75 | "nigeq", 76 | "norte", 77 | "nor'easter", 78 | "nor'wester", 79 | "oroshi", 80 | "ostro", 81 | "pampero", 82 | "papagayo", 83 | "passat", 84 | "piteraq", 85 | "poniente", 86 | "puelche", 87 | "purga", 88 | "roaring forties", 89 | "santa ana", 90 | "santa lucia", 91 | "sarma", 92 | "screaming sixties", 93 | "shamal", 94 | "sharav", 95 | "sharqi", 96 | "simoom", 97 | "sirocco", 98 | "solano", 99 | "southerly buster", 100 | "sou'wester", 101 | "squamish", 102 | "sudestada", 103 | "suêtes", 104 | "sukhovey", 105 | "sundowner", 106 | "tehuano", 107 | "tehuantepecer", 108 | "tramontane", 109 | "vendavel", 110 | "warm braw", 111 | "washoe zephyr", 112 | "wisper", 113 | "witch of November", 114 | "wreckhouse", 115 | "zonda" 116 | ] 117 | } 118 | -------------------------------------------------------------------------------- /data/animals/cats.json: -------------------------------------------------------------------------------- 1 | { 2 | "cats":[ 3 | "Abyssinian", 4 | "Aegean", 5 | "American Bobtail", 6 | "American Curl", 7 | "American Shorthair", 8 | "American Wirehair", 9 | "Arabian Mau", 10 | "Asian", 11 | "Asian Semi-longhair", 12 | "Australian Mist", 13 | "Balinese", 14 | "Bambino", 15 | "Bengal", 16 | "Birman", 17 | "Bombay", 18 | "Brazilian Shorthair", 19 | "British Longhair", 20 | "British Semi-longhair", 21 | "British Shorthair", 22 | "Burmese", 23 | "Burmilla", 24 | "California Spangled", 25 | "Chantilly-Tiffany", 26 | "Chartreux", 27 | "Chausie", 28 | "Cheetoh", 29 | "Colorpoint Shorthair", 30 | "Cornish Rex", 31 | "Cymric", 32 | "Cyprus", 33 | "Devon Rex", 34 | "Donskoy", 35 | "Dragon Li", 36 | "Dwarf cat", 37 | "Egyptian Mau", 38 | "European Shorthair", 39 | "Exotic Shorthair", 40 | "Foldex", 41 | "German Rex", 42 | "Havana Brown", 43 | "Highlander", 44 | "Himalayan", 45 | "Japanese Bobtail", 46 | "Javanese", 47 | "Khao Manee", 48 | "Korat", 49 | "Korean Bobtail", 50 | "Korn Ja", 51 | "Kurilian Bobtail", 52 | "LaPerm", 53 | "Lykoi", 54 | "Maine Coon", 55 | "Manx", 56 | "Mekong Bobtail", 57 | "Minskin", 58 | "Munchkin", 59 | "Napoleon", 60 | "Nebelung", 61 | "Norwegian Forest cat", 62 | "Ocicat", 63 | "Ojos Azules", 64 | "Oregon Rex", 65 | "Oriental Bicolor", 66 | "Oriental Longhair", 67 | "Oriental Shorthair", 68 | "PerFold", 69 | "Persian (Modern)", 70 | "Persian (Traditional)", 71 | "Peterbald", 72 | "Pixie-bob", 73 | "Raas", 74 | "Ragamuffin", 75 | "Ragdoll", 76 | "Russian Blue", 77 | "Russian White, Black and Tabby", 78 | "Sam Sawet", 79 | "Savannah", 80 | "Scottish Fold", 81 | "Selkirk Rex", 82 | "Serengeti", 83 | "Serrade Petit", 84 | "Siamese", 85 | "Siberian", 86 | "Singapura", 87 | "Snowshoe", 88 | "Sokoke", 89 | "Somali", 90 | "Sphynx", 91 | "Suphalak", 92 | "Thai", 93 | "Thai Lilac", 94 | "Tonkinese", 95 | "Toyger", 96 | "Turkish Angora", 97 | "Turkish Van", 98 | "Ukrainian Levkoy" 99 | ] 100 | } -------------------------------------------------------------------------------- /data/humans/spinalTapDrummers.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Deceased drummers from the fictional rock band Spinal Tap, taken from Wikipedia.", 3 | "deceasedDrummers": [{ 4 | "name": { 5 | "first": "John", 6 | "nick": "Stumpy", 7 | "last": "Pepys" 8 | }, 9 | "joined": 1964, 10 | "died": 1966, 11 | "demise": "Died in a bizarre gardening accident, that the authorities said was \"best left unsolved.\"" 12 | }, 13 | { 14 | "name": { 15 | "first": "Eric", 16 | "nick": "Stumpy Joe", 17 | "last": "Childs" 18 | }, 19 | "joined": 1966, 20 | "died": 1967, 21 | "demise": "Choked on vomit of unknown origin, perhaps but not necessarily his own, because \"you can't really dust for vomit.\"" 22 | }, 23 | { 24 | "name": { 25 | "first": "Peter", 26 | "nick": "James", 27 | "last": "Bond" 28 | }, 29 | "joined": 1967, 30 | "died": 1977, 31 | "demise": "Spontaneously combusted on stage during a jazz festival on the Isle of Lucy, leaving behind what has been described alternatively as a \"globule\" or a \"stain\"" 32 | }, 33 | { 34 | "name": { 35 | "first": "Mick", 36 | "nick": "", 37 | "last": "Shrimpton" 38 | }, 39 | "joined": 1977, 40 | "died": 1982, 41 | "demise": "Exploded onstage." 42 | }, 43 | { 44 | "name": { 45 | "first": "Joe", 46 | "nick": "Mama", 47 | "last": "Besser" 48 | }, 49 | "joined": 1982, 50 | "died": 1982, 51 | "demise": "Claimed he \"couldn't take this 4/4 shit\"; according to an MTV interview with Spinal Tap in November 1991, he disappeared along with the equipment during their Japanese tour. He is either dead or playing jazz. The name is a play on that of Joe Besser, who similarly had a short-lived and ill-fitted stint as a member of The Three Stooges." 52 | }, 53 | { 54 | "name": { 55 | "first": "Richard", 56 | "nick": "Ric", 57 | "last": "Shrimpton" 58 | }, 59 | "joined": 1982, 60 | "died": 1999, 61 | "demise": "Allegedly sold his dialysis machine for drugs; presumed dead." 62 | }, 63 | { 64 | "name": { 65 | "first": "Sammy", 66 | "nick": "Stumpy", 67 | "last": "Bateman" 68 | }, 69 | "joined": 1999, 70 | "died": 2001, 71 | "demise": "Died trying to jump over a tank full of sharks while on a tricycle in a freak show." 72 | }, 73 | { 74 | "name": { 75 | "first": "Scott", 76 | "nick": "Skippy", 77 | "last": "Scuffleton" 78 | }, 79 | "joined": 2001, 80 | "died": 2007, 81 | "demise": "Fate unknown." 82 | }, 83 | { 84 | "name": { 85 | "first": "Chris", 86 | "nick": "Poppa", 87 | "last": "Cadeau" 88 | }, 89 | "joined": 2007, 90 | "died": 2008, 91 | "demise": "Eaten by his pet python Cleopatra." 92 | }] 93 | } 94 | -------------------------------------------------------------------------------- /data/games/street_fighter_ii.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Street Fighter II fighting moves", 3 | "characters": [ 4 | { 5 | "character": "Akuma", 6 | "moves": ["Gou-Hadoken", "Shakunetsu Hadoken", "Zanku Hadoken", "Gou-Shoryuken", "Hurricane Kick", "Ashura Senku", "Shun Goku Satsu"] 7 | }, 8 | { 9 | "character": "Balrog", 10 | "moves": ["Dash Straight", "Dash Upper", "Turn Punch", "Buffalo Head", "Crazy Buffalo"] 11 | }, 12 | { 13 | "character": "Blanka", 14 | "moves": ["Electric Thunder", "Rolling Attack", "Backstep Roll", "Vertical Roll", "Ground Shave Roll"] 15 | }, 16 | { 17 | "character": "Cammy", 18 | "moves": ["Spiral Arrow", "Axle Spin Knuckle", "Cannon Spike", "Spin Drive Smasher"] 19 | }, 20 | { 21 | "character": "Chun-li", 22 | "moves": ["Lightning Kick", "Spinning Bird Kick", "Kikoken", "Yousou Kyaku", "Senretsu Kyaku"] 23 | }, 24 | { 25 | "character": "Dee Jay", 26 | "moves": ["Air Slasher", "Machine Gun Upper", "Double Rolling Sobat", "Jackknife Maximum", "Sobat Carnival"] 27 | }, 28 | { 29 | "character": "Dhalsim", 30 | "moves": ["Yoga Fire", "Yoga Flame", "Yoga Teleport", "Yoga Blast", "Yoga Inferno"] 31 | }, 32 | { 33 | "character": "E. Honda", 34 | "moves": ["Hundred Hand Slap", "Sumo Headbutt", "Sumo Smash", "Super Killer Head Ram"] 35 | }, 36 | { 37 | "character": "Fei Long", 38 | "moves": ["Rekkaken", "Shienkyaku", "Rekkukyaku", "Rekkashinken"] 39 | }, 40 | { 41 | "character": "Guile", 42 | "moves": ["Sonic Boom", "Flash Kick", "Spin Back Knuckle", "Double Flash"] 43 | }, 44 | { 45 | "character": "Ken", 46 | "moves": ["Shoryuken", "Hadoken", "Hurricane Kick", "Shoryu Reppa"] 47 | }, 48 | { 49 | "character": "M. Bison", 50 | "moves": ["Psycho Crusher", "Scissor Kick", "Head Stomp", "Devil Reverse", "Knee Press Nightmare"] 51 | }, 52 | { 53 | "character": "Ryu", 54 | "moves": ["Hadoken", "Shakunetsu Hadoken", "Shoryuken", "Hurricane Kick", "Shinku Hadoken"] 55 | }, 56 | { 57 | "character": "Sagat", 58 | "moves": ["Tiger Shot", "Low Tiger Shot", "Tiger Uppercut", "Tiger Knee", "Tiger Genocide"] 59 | }, 60 | { 61 | "character": "T. Hawk", 62 | "moves": ["Mexican Typhoon", "Tomahawk Buster", "Condor Dive", "Double Typhoon"] 63 | }, 64 | { 65 | "character": "Vega", 66 | "moves": ["Sky High Claw", "Rolling Crystal Flash", "Flying Barcelona Attack", "Izuna Drop", "Scarlet Terror", "Rolling Izuna Drop"] 67 | }, 68 | { 69 | "character": "Zangief", 70 | "moves": ["Double Lariat", "Spinning Piledriver", "Banishing Flat", "Final Atomic Buster"] 71 | } 72 | ] 73 | } 74 | -------------------------------------------------------------------------------- /data/societies_and_groups/designated_terrorist_groups/united_kingdom.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Abdullah Azzam Brigades", 3 | "Abu Nidal Organization", 4 | "Abu Sayyaf", 5 | "Aden-Abyan Islamic Army", 6 | "Ajnad Misr", 7 | "al-Gama'a al-Islamiyya", 8 | "Al Ghurabaa", 9 | "Al-Itihaad al-Islamiya", 10 | "Al-Mourabitoun", 11 | "Al-Nusra Front", 12 | "al-Qaeda", 13 | "Al-Shabaab", 14 | "Ansar al-Sharia (Libya)", 15 | "Ansar al-Sharia (Tunisia)", 16 | "Ansar al-Islam", 17 | "Jamaat Ansar al-Sunna", 18 | "Ansar Bait al-Maqdis", 19 | "Ansaru", 20 | "Armed Islamic Group of Algeria", 21 | "Osbat al-Ansar", 22 | "Babbar Khalsa International", 23 | "Balochistan Liberation Army", 24 | "Boko Haram", 25 | "Caucasus Emirate", 26 | "Continuity Irish Republican Army", 27 | "Cumann na mBan", 28 | "Egyptian Islamic Jihad", 29 | "ETA", 30 | "Fianna Éireann", 31 | "Force 17", 32 | "Hamas", 33 | "Izz ad-Din al-Qassam Brigades", 34 | "Haqqani network", 35 | "Harkat-ul-Jihad al-Islami", 36 | "Harkat-al-Jihad al-Islami in Bangladesh", 37 | "Harkat-ul-Mujahideen", 38 | "Harakat-Ul-Mujahideen/Alami", 39 | "Hezb-e Islami Gulbuddin", 40 | "Hezbollah", 41 | "Hezbollah (Military Wing)", 42 | "Hezbollah (External Security Organisation)", 43 | "Indian Mujahideen", 44 | "International Sikh Youth Federation", 45 | "Irish National Liberation Army", 46 | "Irish People's Liberation Organisation", 47 | "Islamic Jihad Union", 48 | "Islamic Movement of Uzbekistan", 49 | "Islamic State of Iraq and the Levant", 50 | "Jaish-e-Mohammed", 51 | "Jamaat Ul-Furquan", 52 | "Jamaat-ul-Ahrar", 53 | "Jamaat-ul-Mujahideen Bangladesh", 54 | "Jemaah Islamiyah", 55 | "Jund al-Aqsa", 56 | "Jund al-Khilafah", 57 | "Khuddam ul-Islam", 58 | "Kurdistan Freedom Falcons", 59 | "Kurdistan Workers' Party", 60 | "Lashkar-e-Taiba", 61 | "Lashkar-e-Jhangvi", 62 | "Liberation Tigers of Tamil Eelam", 63 | "Libyan Islamic Fighting Group", 64 | "Loyalist Volunteer Force", 65 | "Moroccan Islamic Combatant Group", 66 | "Orange Volunteers", 67 | "Palestinian Islamic Jihad", 68 | "Popular Front for the Liberation of Palestine – General Command", 69 | "Provisional Irish Republican Army", 70 | "Real Irish Republican Army", 71 | "Red Hand Commando", 72 | "Red Hand Defenders", 73 | "Revolutionary Organization 17 November", 74 | "Revolutionary People's Liberation Party–Front", 75 | "Saor Éire", 76 | "The Saved Sect", 77 | "Sipah-e-Sahaba Pakistan", 78 | "Tehreek-e-Nafaz-e-Shariat-e-Mohammadi", 79 | "Tehrik-i-Taliban Pakistan", 80 | "Ulster Defence Association", 81 | "Ulster Volunteer Force" 82 | ] 83 | -------------------------------------------------------------------------------- /data/animals/birds_antarctica.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Birds of Antarctica, grouped by family", 3 | "source": "https://en.wikipedia.org/wiki/List_of_birds_of_Antarctica", 4 | "birds": [ 5 | { 6 | "family": "Albatrosses", 7 | "members": [ 8 | "Wandering albatross", 9 | "Grey-headed albatross", 10 | "Black-browed albatross", 11 | "Sooty albatross", 12 | "Light-mantled albatross" 13 | ] 14 | }, 15 | { 16 | "family": "Cormorants", 17 | "members": [ 18 | "Antarctic shag", 19 | "Imperial shag", 20 | "Crozet shag" 21 | ] 22 | }, 23 | { 24 | "family": "Diving petrels", 25 | "members": [ 26 | "South Georgia diving petrel", 27 | "Common diving petrel" 28 | ] 29 | }, 30 | { 31 | "family": "Ducks, geese and swans", 32 | "members": [ 33 | "Yellow-billed pintail" 34 | ] 35 | }, 36 | { 37 | "family": "Gulls", 38 | "members": [ 39 | "Kelp gull" 40 | ] 41 | }, 42 | { 43 | "family": "Penguins", 44 | "members": [ 45 | "King penguin", 46 | "Emperor penguin", 47 | "Gentoo penguin", 48 | "Adelie penguin", 49 | "Chinstrap penguin", 50 | "Rockhopper penguin", 51 | "Macaroni penguin" 52 | ] 53 | }, 54 | { 55 | "family": "Shearwaters and petrels", 56 | "members": [ 57 | "Antarctic giant petrel", 58 | "Hall's giant petrel", 59 | "Southern fulmar", 60 | "Antarctic petrel", 61 | "Cape petrel", 62 | "Snow petrel", 63 | "Great-winged petrel", 64 | "White-headed petrel", 65 | "Blue petrel", 66 | "Broad-billed prion", 67 | "Salvin's prion", 68 | "Antarctic prion", 69 | "Slender-billed prion", 70 | "Fairy prion", 71 | "Grey petrel", 72 | "White-chinned petrel", 73 | "Kerguelen petrel", 74 | "Sooty shearwater" 75 | ] 76 | }, 77 | { 78 | "family": "Sheathbills", 79 | "members": [ 80 | "Snowy sheathbill" 81 | ] 82 | }, 83 | { 84 | "family": "Skuas and jaegers", 85 | "members": [ 86 | "South polar skua", 87 | "Brown skua" 88 | ] 89 | }, 90 | { 91 | "family": "Storm petrels", 92 | "members": [ 93 | "Grey-backed storm petrel", 94 | "Wilson's storm petrel", 95 | "Black-bellied storm petrel" 96 | ] 97 | }, 98 | { 99 | "family": "Terns", 100 | "members": [ 101 | "Arctic tern", 102 | "Antarctic tern" 103 | ] 104 | } 105 | ] 106 | } 107 | -------------------------------------------------------------------------------- /data/technology/appliances.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of home appliances", 3 | "appliances": [ 4 | "air conditioner", 5 | "air fryer", 6 | "air ioniser", 7 | "aroma lamp", 8 | "attic fan", 9 | "bachelor griller", 10 | "back boiler", 11 | "barbecue", 12 | "beehive oven", 13 | "beverage opener", 14 | "boiler", 15 | "bread machine", 16 | "butane torch", 17 | "can opener", 18 | "ceiling fan", 19 | "central vacuum cleaner", 20 | "clothes dryer", 21 | "clothes iron", 22 | "coffee percolator", 23 | "coffeemaker", 24 | "combo washer dryer", 25 | "compactor", 26 | "convection heater", 27 | "convection microwave", 28 | "convection oven", 29 | "corn roaster", 30 | "crepe maker", 31 | "deep fryer", 32 | "dehumidifier", 33 | "dishwasher", 34 | "earth oven", 35 | "electric cooker", 36 | "electric water boiler", 37 | "embroidery machine", 38 | "energy regulator", 39 | "espresso machine", 40 | "fan heater", 41 | "field kitchen", 42 | "fire pot", 43 | "fireplace toaster", 44 | "flame supervision device", 45 | "flattop grill", 46 | "food steamer", 47 | "garbage disposal unit", 48 | "hair dryer", 49 | "hair iron", 50 | "halogen oven", 51 | "home server", 52 | "hot plate", 53 | "humidifier", 54 | "HVAC", 55 | "icebox", 56 | "instant hot water dispenser", 57 | "internet refrigerator", 58 | "kettle", 59 | "kimchi refrigerator", 60 | "kitchener range", 61 | "micathermic heater", 62 | "microwave oven", 63 | "mousetrap", 64 | "oil heater", 65 | "oven", 66 | "panini sandwich grill", 67 | "patio heater", 68 | "pneumatic vacuum", 69 | "popcorn maker", 70 | "pressure cooker", 71 | "pressure fryer", 72 | "radiator", 73 | "reflector oven", 74 | "refrigerator", 75 | "rice cooker", 76 | "rice polisher", 77 | "robotic vacuum cleaner", 78 | "rotisserie", 79 | "sandwich toaster", 80 | "self-cleaning oven", 81 | "set-n-forget cooker", 82 | "sewing machine", 83 | "slow cooker", 84 | "solar cooker", 85 | "sous-vide cooker", 86 | "soy milk maker", 87 | "stove", 88 | "sump pump", 89 | "susceptor", 90 | "swamp cooler", 91 | "tandoor", 92 | "thermal immersion circulator", 93 | "thermal mass refrigerator", 94 | "tie press", 95 | "toaster", 96 | "toaster oven", 97 | "trivet", 98 | "trouser press", 99 | "turkey fryer", 100 | "vacuum cleaner", 101 | "vacuum fryer", 102 | "vaporizer", 103 | "waffle iron", 104 | "washing machine", 105 | "water cooker", 106 | "water cooler", 107 | "water heater", 108 | "wet grinder", 109 | "window fan", 110 | "wood-fired oven" 111 | ] 112 | } 113 | -------------------------------------------------------------------------------- /data/animals/common.json: -------------------------------------------------------------------------------- 1 | { 2 | "animals": 3 | [ 4 | "aardvark", 5 | "alligator", 6 | "alpaca", 7 | "antelope", 8 | "ape", 9 | "armadillo", 10 | "baboon", 11 | "badger", 12 | "bat", 13 | "bear", 14 | "beaver", 15 | "bison", 16 | "boar", 17 | "buffalo", 18 | "bull", 19 | "camel", 20 | "canary", 21 | "capybara", 22 | "cat", 23 | "chameleon", 24 | "cheetah", 25 | "chimpanzee", 26 | "chinchilla", 27 | "chipmunk", 28 | "cougar", 29 | "cow", 30 | "coyote", 31 | "crocodile", 32 | "crow", 33 | "deer", 34 | "dingo", 35 | "dog", 36 | "donkey", 37 | "dromedary", 38 | "elephant", 39 | "elk", 40 | "ewe", 41 | "ferret", 42 | "finch", 43 | "fish", 44 | "fox", 45 | "frog", 46 | "gazelle", 47 | "gila monster", 48 | "giraffe", 49 | "gnu", 50 | "goat", 51 | "gopher", 52 | "gorilla", 53 | "grizzly bear", 54 | "ground hog", 55 | "guinea pig", 56 | "hamster", 57 | "hedgehog", 58 | "hippopotamus", 59 | "hog", 60 | "horse", 61 | "hyena", 62 | "ibex", 63 | "iguana", 64 | "impala", 65 | "jackal", 66 | "jaguar", 67 | "kangaroo", 68 | "koala", 69 | "lamb", 70 | "lemur", 71 | "leopard", 72 | "lion", 73 | "lizard", 74 | "llama", 75 | "lynx", 76 | "mandrill", 77 | "marmoset", 78 | "mink", 79 | "mole", 80 | "mongoose", 81 | "monkey", 82 | "moose", 83 | "mountain goat", 84 | "mouse", 85 | "mule", 86 | "muskrat", 87 | "mustang", 88 | "mynah bird", 89 | "newt", 90 | "ocelot", 91 | "opossum", 92 | "orangutan", 93 | "oryx", 94 | "otter", 95 | "ox", 96 | "panda", 97 | "panther", 98 | "parakeet", 99 | "parrot", 100 | "pig", 101 | "platypus", 102 | "polar bear", 103 | "porcupine", 104 | "porpoise", 105 | "prairie dog", 106 | "puma", 107 | "rabbit", 108 | "raccoon", 109 | "ram", 110 | "rat", 111 | "reindeer", 112 | "reptile", 113 | "rhinoceros", 114 | "salamander", 115 | "seal", 116 | "sheep", 117 | "shrew", 118 | "silver fox", 119 | "skunk", 120 | "sloth", 121 | "snake", 122 | "squirrel", 123 | "tapir", 124 | "tiger", 125 | "toad", 126 | "turtle", 127 | "walrus", 128 | "warthog", 129 | "weasel", 130 | "whale", 131 | "wildcat", 132 | "wolf", 133 | "wolverine", 134 | "wombat", 135 | "woodchuck", 136 | "yak", 137 | "zebra" 138 | ] 139 | } 140 | -------------------------------------------------------------------------------- /data/sports/football/serieA.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Teams in the Italian First División, Serie A(2017-18) with their details ", 3 | "serieA_teams" : [ 4 | {"name":"Atalanta", 5 | "homecity":"Bergamo", 6 | "stadium":"Stadio Atleti Azzurri d'Italia", 7 | "manager":"Gian Piero Gasperini"}, 8 | { 9 | "name":"Benevento", 10 | "homecity":"Benevento", 11 | "stadium":"Stadio Ciro Vigorito", 12 | "manager":"Marco Baroni"}, 13 | { 14 | "name":"Bologna", 15 | "homecity":"Bologna", 16 | "stadium":"Stadio Renato Dall'Ara", 17 | "manager":"Roberto Donadoni"}, 18 | { 19 | "name":"Cagliari", 20 | "homecity":"Cagliari", 21 | "stadium":"Sardegna Arena", 22 | "manager":"Massimo Rastelli"}, 23 | { 24 | "name":"Chievo", 25 | "homecity":"Verona", 26 | "stadium":"Stadio Marc'Antonio Bentegodi", 27 | "manager":"Rolando Maran"}, 28 | { 29 | "name":"Crotone", 30 | "homecity":"Crotone", 31 | "stadium":"Stadio Ezio Scida", 32 | "manager":"Davide Nicola"}, 33 | { 34 | "name":"Fiorentina", 35 | "homecity":"Florence", 36 | "stadium":"Stadio Artemio Franchi", 37 | "manager":"Stefano Pioli"}, 38 | { 39 | "name":"Genoa", 40 | "homecity":"Genoa", 41 | "stadium":"Stadio Luigi Ferraris", 42 | "manager":"Ivan Jurić"}, 43 | { 44 | "name":"Hellas Verona", 45 | "homecity":"Verona", 46 | "stadium":"Stadio Marc'Antonio Bentegodi", 47 | "manager":"Fabio Pecchia"}, 48 | { 49 | "name":"Internazionale", 50 | "homecity":"Milan", 51 | "stadium":"San Siro", 52 | "manager":"Luciano Spalletti"}, 53 | { 54 | "name":"Juventus", 55 | "homecity":"Turin", 56 | "stadium":"Juventus Stadium", 57 | "manager":"Massimiliano Allegri"}, 58 | { 59 | "name":"Lazio", 60 | "homecity":"Rome", 61 | "stadium":"Stadio Olimpico", 62 | "manager":"Simone Inzaghi"}, 63 | { 64 | "name":"Milan", 65 | "homecity":"Milan", 66 | "stadium":"San Siro", 67 | "manager":"Vincenzo Montella"}, 68 | { 69 | "name":"Napoli", 70 | "homecity":"Naples", 71 | "stadium":"Stadio San Paolo", 72 | "manager":"Maurizio Sarri"}, 73 | { 74 | "name":"Roma", 75 | "homecity":"Rome", 76 | "stadium":"Stadio Olimpico", 77 | "manager":"Eusebio Di Francesco"}, 78 | { 79 | "name":"Sampdoria", 80 | "homecity":"Genoa", 81 | "stadium":"Stadio Luigi Ferraris", 82 | "manager":"Marco Giampaolo"}, 83 | { 84 | "name":"Sassuolo", 85 | "homecity":"Sassuolo", 86 | "stadium":"Mapei Stadium – Città del Tricolore(Reggio Emilia)", 87 | "manager":"Cristian Bucchi"}, 88 | { 89 | "name":"SPAL", 90 | "homecity":"Ferrara", 91 | "stadium":"Paolo Mazza", 92 | "manager":"Leonardo Semplici"}, 93 | { 94 | "name":"Torino", 95 | "homecity":"Turin", 96 | "stadium":"Stadio Olimpico Grande Torino", 97 | "manager":"Siniša Mihajlović"}, 98 | { 99 | "name":"Udinese", 100 | "homecity":"Udine", 101 | "stadium":"Stadio Friuli-Dacia Arena", 102 | "manager":"Luigi Delneri"} 103 | ] 104 | } -------------------------------------------------------------------------------- /data/words/crash_blossoms.json: -------------------------------------------------------------------------------- 1 | { 2 | "description":"confusing or misleading headlines", 3 | "crash_blossoms": [ 4 | "12 ON THEIR WAY TO CRUISE AMONG DEAD IN PLANE CRASH", 5 | "2 SISTERS REUNITED AFTER 18 YEARS AT CHECKOUT COUNTER", 6 | "3 MISSING AFTER WAVES HIT MAINE LOCATED", 7 | "AMERICAN SHIPS HEAD TO GULF", 8 | "ASTRONAUTS EMERGE GAILY FROM CAPSULE", 9 | "ASTRONAUT TAKES BLAME FOR GAS IN SPACECRAFT", 10 | "BISCUIT LANDS HEAD FOR LOGGING", 11 | "BODY FIND IS MISSING MAN", 12 | "CHEVY UNVEILS THE RESTORED 1 MILLIONTH CORVETTE PULLED FROM A KENTUCKY SINKHOLE", 13 | "COMPLAINTS ABOUT NBA REFEREES GROWING UGLY", 14 | "DEALERS WILL HEAR CAR TALK AT NOON", 15 | "DRUNK GETS NINE MONTHS IN VIOLIN CASE", 16 | "ENRAGED COW INJURES FARMER WITH AX", 17 | "EYE DROPS OFF SHELF", 18 | "FRENCH PUSH BOTTLES UP GERMAN REAR", 19 | "GRANDMOTHER OF EIGHT MAKES HOLE IN ONE", 20 | "HEADLESS BODY FOUND IN TOPLESS BAR", 21 | "HERSHEY BARS PROTEST", 22 | "HOSPITALS ARE SUED BY 7 FOOT DOCTORS", 23 | "IKE TURNER BEATS TINA TO DEATH", 24 | "INCLUDE YOUR CHILDREN WHEN BAKING COOKIES", 25 | "IRAQI HEAD SEEKS ARMS", 26 | "JUVENILE COURT TO TRY SHOOTING DEFENDANT", 27 | "KIDS MAKE NUTRITIOUS SNACKS", 28 | "KILLER SENTENCED TO DIE FOR SECOND TIME IN 10 YEARS", 29 | "LACK OF BRAINS HINDERS RESEARCH", 30 | "LAWMEN FROM MEXICO BARBECUE GUESTS", 31 | "LETTER BOMBS ACCUSED IN COURT", 32 | "LIKE PUTTING ON BROCCOLI, OR CAULIFLOWER, AND RESULTS ARE PUMPY", 33 | "LUNG CANCER IN WOMEN MUSHROOMS", 34 | "MAN EATING PIRANHA MISTAKENLY SOLD AS PET FISH", 35 | "MAN HELD FOR ATTEMPTED MURDER OF POLICEMAN AFTER DETENTION FOR CONFINING GIRL EXPIRES", 36 | "MAN RATTLED BY PYTHON FOUND COILED UP AND HIDING IN HIS BOX OF CORN FLAKES", 37 | "MARINES BEAT OFF 500 VIET CONG", 38 | "MEXICO MINE MISSING DECLARED DEAD", 39 | "MILK DRINKERS ARE TURNING TO POWDER", 40 | "MINERS REFUSE TO WORK AFTER DEATH", 41 | "MONTY FLIES BACK TO FRONT", 42 | "OBAMA'S AD BUYS DWARF TV PRESENCE OF MCCAIN", 43 | "OLD SCHOOL PILLARS ARE REPLACED BY ALUMNI", 44 | "PANDA MATING FAILS; VETERINARIAN TAKES OVER", 45 | "PETITTE SCRATCHED WITH INFLAMED ELBOW", 46 | "POLICE BEGIN CAMPAIGN TO RUN DOWN JAYWALKERS", 47 | "PROSTITUTES APPEAL TO POPE", 48 | "QUARTER OF A MILLION CHINESE LIVE ON WATER", 49 | "QUEEN MARY HAVING BOTTOM SCRAPED", 50 | "REAGAN NOSE PIMPLE SKIN CANCER", 51 | "REAGAN WINS ON BUDGET, BUT MORE LIES AHEAD", 52 | "RED TAPE HOLDS UP NEW BRIDGE", 53 | "SAFETY EXPERTS SAY SCHOOL BUS PASSENGERS SHOULD BE BELTED", 54 | "SECRET DRACULA STAR TOOK TO GRAVE", 55 | "SHARK ATTACKS PUZZLE EXPERTS", 56 | "SMOKING RISKIER THAN THOUGHT", 57 | "SQUAD HELPS DOG BITE VICTIM", 58 | "STOLEN PAINTING FOUND BY TREE", 59 | "STUD TIRES OUT", 60 | "THOMPSON'S PEN IS A SWORD", 61 | "TWO SOVIET SHIPS COLLIDE, ONE DIES", 62 | "VIOLINIST LINKED TO JAL CRASH BLOSSOMS", 63 | "VOODOO DOGS FLYING DOCTOR'S PLANES", 64 | "WHY SOME WOMEN RISK HAVING CHILDREN WITH BIRTH DEFECTS", 65 | "WOMAN BURNED AS BABY TRACKS DOWN NURSE WHO CARED FOR HER" 66 | ] 67 | } 68 | 69 | -------------------------------------------------------------------------------- /data/foods/bad_beers.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Beers with the 100 lowest scores on BeerAdvocate, adapted from https://www.beeradvocate.com/lists/bottom/", 3 | "bad_beers": [ 4 | "Natural Light", 5 | "Budweiser Select 55", 6 | "Keystone Ice", 7 | "Natural Ice", 8 | "Keystone Light", 9 | "Bud Light", 10 | "Miller Genuine Draft 64", 11 | "Miller 64", 12 | "Busch Light", 13 | "Milwaukee's Best Light", 14 | "Michelob Ultra", 15 | "Bud Ice", 16 | "Milwaukee's Best", 17 | "Busch Ice", 18 | "Corona Light", 19 | "Bud Light & Clamato Chelada", 20 | "Coors Light", 21 | "Busch Beer", 22 | "Sharp's", 23 | "Red Dog", 24 | "Budweiser Select", 25 | "Icehouse", 26 | "O'Doul's", 27 | "Olde English 800", 28 | "Milwaukee's Best Ice", 29 | "King Cobra Premium Malt Liquor", 30 | "Bud Light Lime", 31 | "Miller Lite", 32 | "Bud Light Lime-A-Rita", 33 | "Michelob Light", 34 | "Keystone Premium", 35 | "Hurricane Malt Liquor", 36 | "Budweiser & Clamato Chelada", 37 | "Bud Light Platinum", 38 | "Beer 30 Light", 39 | "Colt 45 Malt Liquor", 40 | "Labatt Blue Light", 41 | "Miller Genuine Draft", 42 | "Wild Blue", 43 | "Magnum", 44 | "Miller High Life Light", 45 | "Keystone Lager", 46 | "Rock Green Light", 47 | "Corona Extra", 48 | "Shock Top Honey Bourbon Cask Wheat", 49 | "Budweiser", 50 | "Bud Light Lime Straw-Ber-Rita", 51 | "Heineken Premium Light Lager", 52 | "Michelob Ultra Fruit Pomegranate Raspberry", 53 | "Old Milwaukee Beer", 54 | "Evil Eye", 55 | "Sleeman Clear", 56 | "St. Ides High Gravity Malt Liquor", 57 | "Steel Reserve 211 (High Gravity)", 58 | "O'Doul's Amber", 59 | "Miller Genuine Draft Light 64 Lemonade", 60 | "Beck's Premier Light", 61 | "Tecate Light", 62 | "Amstel Light", 63 | "Michelob Ultra Amber", 64 | "Sol", 65 | "Kirin Light Beer", 66 | "Lucky Lager", 67 | "Olde English 800 High Gravity", 68 | "Kirin Lager", 69 | "Famosa (Gallo)", 70 | "Michelob Golden Draft Light", 71 | "Brahma", 72 | "Mickey's", 73 | "Desperados", 74 | "Tecate", 75 | "Foster's Lager", 76 | "Victoria Bitter (VB)", 77 | "Stroh's Light", 78 | "Hurricane High Gravity Malt Liquor", 79 | "Super Brew 15", 80 | "Lone Star Beer", 81 | "Beck's Light", 82 | "Dog Bite High Gravity Lager", 83 | "Molson XXX", 84 | "Michelob Ultra Fruit Lime Cactus", 85 | "Camo Black Ice", 86 | "Camo High Gravity Lager", 87 | "Old Milwaukee Ice", 88 | "Black Label Beer", 89 | "Molson Ice", 90 | "Iron City Beer", 91 | "Carlton Cold", 92 | "Coors Light Summer Brew", 93 | "Coors Banquet", 94 | "Rolling Rock Extra Pale", 95 | "Cass Fresh", 96 | "St. Pauli N. A.", 97 | "Blatz Beer", 98 | "Stroh's", 99 | "Genny Light", 100 | "Natty Daddy", 101 | "Ed Hardy Premium Beer", 102 | "Molson Canadian 67" 103 | ] 104 | } 105 | -------------------------------------------------------------------------------- /data/sports/football/laliga_teams.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Teams in the Spanish Primera División, La Liga(2017-18) with their details ", 3 | "laLiga_teams": [ 4 | { 5 | "name": "Alavés", 6 | "manager": "Luis Zubeldía", 7 | "loc": "Vitoria-Gasteiz", 8 | "stadium": "Mendizorrotza" 9 | }, 10 | { 11 | "name": "Athletic Bilbao", 12 | "manager": "José Ángel Ziganda", 13 | "loc": "Bilbao", 14 | "stadium": "San Mamés" 15 | }, 16 | { 17 | "name": "Atlético Madrid", 18 | "manager": "Diego Simeone", 19 | "loc": "Madrid", 20 | "stadium": "Wanda Metropolitano" 21 | }, 22 | { 23 | "name": "Barcelona", 24 | "manager": "Ernesto Valverde", 25 | "loc": "Barcelona", 26 | "stadium": "Camp Nou" 27 | }, 28 | { 29 | "name": "Celta Vigo", 30 | "manager": "Juan Carlos Unzué", 31 | "loc": " Vigo", 32 | "stadium": "Balaídos" 33 | }, 34 | { 35 | "name": "Deportivo La Coruña", 36 | "manager": "Pepe Mel", 37 | "loc": "A Coruña", 38 | "stadium": "Abanca-Riazor" 39 | }, 40 | { 41 | "name": "Eibar", 42 | "manager": "José Luis Mendilibar", 43 | "loc": "Eibar", 44 | "stadium": "Ipurua" 45 | }, 46 | { 47 | "name": "Espanyol", 48 | "manager": "Quique Sánchez Flores", 49 | "loc": "Barcelona", 50 | "stadium": "RCDE Stadium" 51 | }, 52 | { 53 | "name": "Getafe", 54 | "manager": "José Bordalás", 55 | "loc": "Getafe", 56 | "stadium": "Coliseum Alfonso Pérez" 57 | }, 58 | { 59 | "name": "Girona", 60 | "manager": "Pablo Machín", 61 | "loc": "Girona", 62 | "stadium": "Montilivi" 63 | }, 64 | { 65 | "name": "Las Palmas", 66 | "manager": "Manolo Márquez", 67 | "loc": "Las Palmas", 68 | "stadium": "Gran Canaria" 69 | }, 70 | { 71 | "name": "Leganés", 72 | "manager": "Asier Garitano", 73 | "loc": "Leganés", 74 | "stadium": "Butarque" 75 | }, 76 | { 77 | "name": "Levante", 78 | "manager": "Juan Muñiz", 79 | "loc": "Valencia", 80 | "stadium": "Ciutat de València" 81 | }, 82 | { 83 | "name": "Málaga", 84 | "manager": "Míchel", 85 | "loc": "Málaga", 86 | "stadium": "La Rosaleda" 87 | }, 88 | { 89 | "name": "Real Betis", 90 | "manager": "Quique Setién", 91 | "loc": "Seville", 92 | "stadium": "Benito Villamarín" 93 | }, 94 | { 95 | "name": "Real Madrid", 96 | "manager": "Zinedine Zidane", 97 | "loc": "Madrid", 98 | "stadium": "Santiago Bernabéu" 99 | }, 100 | { 101 | "name": "Real Sociedad", 102 | "manager": "Eusebio Sacristán", 103 | "loc": "San Sebastián", 104 | "stadium": "Anoeta" 105 | }, 106 | { 107 | "name": "Sevilla", 108 | "manager": "Eduardo Berizzo", 109 | "loc": "Seville", 110 | "stadium": "Ramón Sánchez Pizjuán" 111 | }, 112 | { 113 | "name": "Valencia", 114 | "manager": "Marcelino", 115 | "loc": "Valencia", 116 | "stadium": "Mestalla" 117 | }, 118 | { 119 | "name": "Villarreal", 120 | "manager": "Fran Escribá", 121 | "loc": "Villarreal", 122 | "stadium": "Estadio de la Cerámica" 123 | } 124 | ] 125 | } -------------------------------------------------------------------------------- /data/words/stopwords/gr.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Greek stop words", 3 | "stopWords": 4 | ["η", 5 | "κ", 6 | "ο", 7 | "ἡ", 8 | "ἤ", 9 | "ὁ", 10 | "ὦ", 11 | "αν", 12 | "γε", 13 | "δέ", 14 | "δή", 15 | "δε", 16 | "δ’", 17 | "εἰ", 18 | "θα", 19 | "κι", 20 | "μή", 21 | "μα", 22 | "με", 23 | "μη", 24 | "να", 25 | "οι", 26 | "οἱ", 27 | "οὐ", 28 | "σε", 29 | "σύ", 30 | "τά", 31 | "τί", 32 | "τα", 33 | "τε", 34 | "τι", 35 | "το", 36 | "τό", 37 | "τῇ", 38 | "τῷ", 39 | "ωσ", 40 | "ἐκ", 41 | "ἐν", 42 | "ὅσ", 43 | "ὡσ", 44 | "ἄν ", 45 | "γα^", 46 | "απο", 47 | "γάρ", 48 | "για", 49 | "δαί", 50 | "δεν", 51 | "διά", 52 | "εαν", 53 | "ενω", 54 | "επι", 55 | "εἰσ", 56 | "καί", 57 | "μέν", 58 | "μην", 59 | "οσο", 60 | "οτι", 61 | "οὐκ", 62 | "οὖν", 63 | "που", 64 | "πωσ", 65 | "στη", 66 | "στο", 67 | "σόσ", 68 | "σύν", 69 | "τήν", 70 | "τίσ", 71 | "την", 72 | "τησ", 73 | "τισ", 74 | "τοί", 75 | "τον", 76 | "του", 77 | "τοῦ", 78 | "των", 79 | "τόν", 80 | "τῆσ", 81 | "τῶν", 82 | "ἀπό", 83 | "ἄρα", 84 | "ἐάν", 85 | "ἐγώ", 86 | "ἐπί", 87 | "ἔτι", 88 | "ὅδε", 89 | "ὅτι", 90 | "ὑπό", 91 | "μή", 92 | "και ", 93 | "αλλα", 94 | "αντι", 95 | "αυτα", 96 | "αυτη", 97 | "αυτο", 98 | "δαίσ", 99 | "εἰμί", 100 | "εἴμι", 101 | "ισωσ", 102 | "κατά", 103 | "κατα", 104 | "μετά", 105 | "μετα", 106 | "ομωσ", 107 | "οπωσ", 108 | "οὐδέ", 109 | "οὔτε", 110 | "παρά", 111 | "παρα", 112 | "περί", 113 | "ποια", 114 | "ποιο", 115 | "προσ", 116 | "πρόσ", 117 | "στην", 118 | "στον", 119 | "τοτε", 120 | "τούσ", 121 | "ἀλλά", 122 | "ἀλλ’", 123 | "ἐμόσ", 124 | "ὑμόσ", 125 | "ὑπέρ", 126 | "ὥστε", 127 | "αυτεσ", 128 | "αυτοι", 129 | "αυτοσ", 130 | "αυτων", 131 | "αὐτόσ", 132 | "ειμαι", 133 | "ειναι", 134 | "εισαι", 135 | "ειστε", 136 | "οὕτωσ", 137 | "οὗτοσ", 138 | "ποιεσ", 139 | "ποιοι", 140 | "ποιοσ", 141 | "ποιων", 142 | "ἄλλοσ", 143 | "ὅστισ", 144 | "αυτουσ", 145 | "εκεινα", 146 | "εκεινη", 147 | "εκεινο", 148 | "οὐδείσ", 149 | "ποιουσ", 150 | "ἑαυτοῦ", 151 | "ειμαστε", 152 | "εκεινεσ", 153 | "εκεινοι", 154 | "εκεινοσ", 155 | "εκεινων", 156 | "εκεινουσ", 157 | "τοιοῦτοσ" 158 | ] 159 | } 160 | -------------------------------------------------------------------------------- /data/words/resume_action_words.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Resume action words", 3 | "source": "http://careercenter.umich.edu/article/resume-action-words", 4 | "resume_action_words": [ 5 | "achieved", 6 | "adapted", 7 | "addressed", 8 | "administered", 9 | "advised", 10 | "analyzed", 11 | "arranged", 12 | "assembled", 13 | "assessed", 14 | "assisted", 15 | "attained", 16 | "audited", 17 | "budgeted", 18 | "calculated", 19 | "classified", 20 | "coached", 21 | "collected", 22 | "communicated", 23 | "compiled", 24 | "composed", 25 | "computed", 26 | "conducted", 27 | "consolidated", 28 | "constructed", 29 | "consulted", 30 | "coordinated", 31 | "counseled", 32 | "created", 33 | "critiqued", 34 | "defined", 35 | "designed", 36 | "detected", 37 | "determined", 38 | "devised", 39 | "diagnosed", 40 | "directed", 41 | "discovered", 42 | "displayed", 43 | "earned", 44 | "edited", 45 | "eliminated", 46 | "enforced", 47 | "established", 48 | "estimated", 49 | "evaluated", 50 | "examined", 51 | "expanded", 52 | "explained", 53 | "experimented", 54 | "financed", 55 | "formulated", 56 | "gathered", 57 | "generated", 58 | "grossed", 59 | "guided", 60 | "handled", 61 | "hypothesized", 62 | "identified", 63 | "illustrated", 64 | "implemented", 65 | "improved", 66 | "increased", 67 | "influenced", 68 | "initiated", 69 | "inspected", 70 | "installed", 71 | "instituted", 72 | "instructed", 73 | "interpreted", 74 | "interviewed", 75 | "invented", 76 | "investigated", 77 | "lectured", 78 | "managed", 79 | "marketed", 80 | "mediated", 81 | "modeled", 82 | "monitored", 83 | "motivated", 84 | "negotiated", 85 | "obtained", 86 | "operated", 87 | "ordered", 88 | "organized", 89 | "oversaw", 90 | "performed", 91 | "persuaded", 92 | "photographed", 93 | "planned", 94 | "prepared", 95 | "presented", 96 | "printed", 97 | "processed", 98 | "produced", 99 | "projected", 100 | "promoted", 101 | "proofread", 102 | "provided", 103 | "publicized", 104 | "purchased", 105 | "received", 106 | "recommended", 107 | "reconciled", 108 | "recorded", 109 | "recruited", 110 | "reduced", 111 | "referred", 112 | "refined", 113 | "rehabilitated", 114 | "repaired", 115 | "reported", 116 | "represented", 117 | "researched", 118 | "resolved", 119 | "responded", 120 | "restored", 121 | "retrieved", 122 | "reviewed", 123 | "scheduled", 124 | "selected", 125 | "solved", 126 | "sorted", 127 | "studied", 128 | "summarized", 129 | "supervised", 130 | "supplied", 131 | "surveyed", 132 | "tested", 133 | "trained", 134 | "transcribed", 135 | "translated", 136 | "traveled", 137 | "tutored", 138 | "upgraded", 139 | "utilized", 140 | "wrote" 141 | ] 142 | } 143 | -------------------------------------------------------------------------------- /data/foods/vegetables.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of vegetables.", 3 | "vegetables": [ 4 | "acorn squash", 5 | "alfalfa sprout", 6 | "amaranth", 7 | "anise", 8 | "artichoke", 9 | "arugula", 10 | "asparagus", 11 | "aubergine", 12 | "azuki bean", 13 | "banana squash", 14 | "basil", 15 | "bean sprout", 16 | "beet", 17 | "black bean", 18 | "black-eyed pea", 19 | "bok choy", 20 | "borlotti bean", 21 | "broad beans", 22 | "broccoflower", 23 | "broccoli", 24 | "brussels sprout", 25 | "butternut squash", 26 | "cabbage", 27 | "calabrese", 28 | "caraway", 29 | "carrot", 30 | "cauliflower", 31 | "cayenne pepper", 32 | "celeriac", 33 | "celery", 34 | "chamomile", 35 | "chard", 36 | "chayote", 37 | "chickpea", 38 | "chives", 39 | "cilantro", 40 | "collard green", 41 | "corn", 42 | "corn salad", 43 | "courgette", 44 | "cucumber", 45 | "daikon", 46 | "delicata", 47 | "dill", 48 | "eggplant", 49 | "endive", 50 | "fennel", 51 | "fiddlehead", 52 | "frisee", 53 | "garlic", 54 | "gem squash", 55 | "ginger", 56 | "green bean", 57 | "green pepper", 58 | "habanero", 59 | "herbs and spice", 60 | "horseradish", 61 | "hubbard squash", 62 | "jalapeno", 63 | "jerusalem artichoke", 64 | "jicama", 65 | "kale", 66 | "kidney bean", 67 | "kohlrabi", 68 | "lavender", 69 | "leek ", 70 | "legume", 71 | "lemon grass", 72 | "lentils", 73 | "lettuce", 74 | "lima bean", 75 | "mamey", 76 | "mangetout", 77 | "marjoram", 78 | "mung bean", 79 | "mushroom", 80 | "mustard green", 81 | "navy bean", 82 | "new zealand spinach", 83 | "nopale", 84 | "okra", 85 | "onion", 86 | "oregano", 87 | "paprika", 88 | "parsley", 89 | "parsnip", 90 | "patty pan", 91 | "pea", 92 | "pinto bean", 93 | "potato", 94 | "pumpkin", 95 | "radicchio", 96 | "radish", 97 | "rhubarb", 98 | "rosemary", 99 | "runner bean", 100 | "rutabaga", 101 | "sage", 102 | "scallion", 103 | "shallot", 104 | "skirret", 105 | "snap pea", 106 | "soy bean", 107 | "spaghetti squash", 108 | "spinach", 109 | "squash ", 110 | "sweet potato", 111 | "tabasco pepper", 112 | "taro", 113 | "tat soi", 114 | "thyme", 115 | "topinambur", 116 | "tubers", 117 | "turnip", 118 | "wasabi", 119 | "water chestnut", 120 | "watercress", 121 | "white radish", 122 | "yam", 123 | "zucchini" 124 | ] 125 | } 126 | -------------------------------------------------------------------------------- /data/societies_and_groups/fraternities/defunct.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Alpha Delta Theta", 4 | "symbol": "ΑΔΘ", 5 | "founded": "1919 - 1939, Phi Mu", 6 | "affiliation": "", 7 | "traditional_emphasis": "" 8 | }, 9 | { 10 | "name": "Beta Kappa", 11 | "symbol": "ΒΚ", 12 | "founded": "1901 - 1942, Theta Chi", 13 | "affiliation": "", 14 | "traditional_emphasis": "" 15 | }, 16 | { 17 | "name": "Beta Phi Alpha", 18 | "symbol": "ΒΦΑ", 19 | "founded": "1919 - 1941, Delta Zeta", 20 | "affiliation": "", 21 | "traditional_emphasis": "" 22 | }, 23 | { 24 | "name": "Delta Sigma Epsilon", 25 | "symbol": "ΔΣΕ", 26 | "founded": "1914 - 1956, Delta Zeta", 27 | "affiliation": "", 28 | "traditional_emphasis": "" 29 | }, 30 | { 31 | "name": "Iota Alpha Pi", 32 | "symbol": "ΙΑΠ", 33 | "founded": "1903 - 1971", 34 | "affiliation": "", 35 | "traditional_emphasis": "" 36 | }, 37 | { 38 | "name": "Kappa Phi Lambda", 39 | "symbol": "ΚΦΛ", 40 | "founded": "1862 - 1874", 41 | "affiliation": "", 42 | "traditional_emphasis": "" 43 | }, 44 | { 45 | "name": "Lambda Omega", 46 | "symbol": "ΛΩ", 47 | "founded": "1915 - 1933, Delta Zeta", 48 | "affiliation": "", 49 | "traditional_emphasis": "" 50 | }, 51 | { 52 | "name": "Pi Delta Kappa", 53 | "symbol": "ΠΔΚ", 54 | "founded": "1907 - 1913, Chi Omega", 55 | "affiliation": "", 56 | "traditional_emphasis": "" 57 | }, 58 | { 59 | "name": "Pi Kappa Sigma", 60 | "symbol": "ΠΚΣ", 61 | "founded": "1894 - 1959 Sigma Kappa", 62 | "affiliation": "", 63 | "traditional_emphasis": "" 64 | }, 65 | { 66 | "name": "Pi Lambda Sigma", 67 | "symbol": "ΠΛΣ", 68 | "founded": "1903 - 1959 Beta Phi Mu", 69 | "affiliation": "", 70 | "traditional_emphasis": "" 71 | }, 72 | { 73 | "name": "Sigma Iota", 74 | "symbol": "ΣΙ", 75 | "founded": "1904 - 1931 Phi Iota Alpha", 76 | "affiliation": "", 77 | "traditional_emphasis": "" 78 | }, 79 | { 80 | "name": "Phi Omega Pi", 81 | "symbol": "ΦΩΠ", 82 | "founded": "1922 - 1946 Delta Zeta", 83 | "affiliation": "", 84 | "traditional_emphasis": "" 85 | }, 86 | { 87 | "name": "Phi Lambda Alpha", 88 | "symbol": "ΦΛΑ", 89 | "founded": "1919 - 1931 Phi Iota Alpha", 90 | "affiliation": "", 91 | "traditional_emphasis": "" 92 | }, 93 | { 94 | "name": "Theta Kappa Nu", 95 | "symbol": "ΘKN", 96 | "founded": "1924 - 1939 Lambda Chi Alpha", 97 | "affiliation": "", 98 | "traditional_emphasis": "" 99 | }, 100 | { 101 | "name": "Theta Upsilon", 102 | "symbol": "ΘΥ", 103 | "founded": "1921 - 1962 Delta Zeta", 104 | "affiliation": "", 105 | "traditional_emphasis": "" 106 | } 107 | ] 108 | -------------------------------------------------------------------------------- /data/corporations/djia.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Corporations of the Dow Jones Industrial Average", 3 | "corporations": [ 4 | { 5 | "symbol": "MMM", 6 | "name": "3M" 7 | }, 8 | { 9 | "symbol": "AXP", 10 | "name": "American Express" 11 | }, 12 | { 13 | "symbol": "T", 14 | "name": "AT&T" 15 | }, 16 | { 17 | "symbol": "BA", 18 | "name": "Boeing" 19 | }, 20 | { 21 | "symbol": "CAT", 22 | "name": "Caterpillar" 23 | }, 24 | { 25 | "symbol": "CVX", 26 | "name": "Chevron" 27 | }, 28 | { 29 | "symbol": "CSCO", 30 | "name": "Cisco Systems" 31 | }, 32 | { 33 | "symbol": "DD", 34 | "name": "duPont" 35 | }, 36 | { 37 | "symbol": "XOM", 38 | "name": "Exxon Mobil" 39 | }, 40 | { 41 | "symbol": "GE", 42 | "name": "General Electric" 43 | }, 44 | { 45 | "symbol": "GS", 46 | "name": "Goldman Sachs" 47 | }, 48 | { 49 | "symbol": "HD", 50 | "name": "Home Depot" 51 | }, 52 | { 53 | "symbol": "INTC", 54 | "name": "Intel" 55 | }, 56 | { 57 | "symbol": "IBM", 58 | "name": "IBM" 59 | }, 60 | { 61 | "symbol": "JNJ", 62 | "name": "Johnson & Johnson" 63 | }, 64 | { 65 | "symbol": "JPM", 66 | "name": "JPMorgan Chase" 67 | }, 68 | { 69 | "symbol": "MCD", 70 | "name": "McDonald's" 71 | }, 72 | { 73 | "symbol": "MRK", 74 | "name": "Merck" 75 | }, 76 | { 77 | "symbol": "MSFT", 78 | "name": "Microsoft" 79 | }, 80 | { 81 | "symbol": "NKE", 82 | "name": "Nike" 83 | }, 84 | { 85 | "symbol": "PFE", 86 | "name": "Pfizer" 87 | }, 88 | { 89 | "symbol": "PG", 90 | "name": "Procter & Gamble" 91 | }, 92 | { 93 | "symbol": "KO", 94 | "name": "Coca-Cola" 95 | }, 96 | { 97 | "symbol": "TRV", 98 | "name": "Travelers Companies" 99 | }, 100 | { 101 | "symbol": "UTX", 102 | "name": "United Technologies" 103 | }, 104 | { 105 | "symbol": "UNH", 106 | "name": "UnitedHealth Group" 107 | }, 108 | { 109 | "symbol": "VZ", 110 | "name": "Verizon Communications" 111 | }, 112 | { 113 | "symbol": "V", 114 | "name": "Visa" 115 | }, 116 | { 117 | "symbol": "WMT", 118 | "name": "Wal-Mart" 119 | }, 120 | { 121 | "symbol": "DIS", 122 | "name": "Walt Disney" 123 | } 124 | ] 125 | } 126 | -------------------------------------------------------------------------------- /data/words/prepositions.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of English prepositions, sourced from Wikipedia.", 3 | "prepositions": [ 4 | "aboard", 5 | "about", 6 | "above", 7 | "absent", 8 | "across", 9 | "after", 10 | "against", 11 | "along", 12 | "alongside", 13 | "amid", 14 | "amidst", 15 | "among", 16 | "amongst", 17 | "around", 18 | "as", 19 | "astride", 20 | "at", 21 | "atop", 22 | "before", 23 | "afore", 24 | "behind", 25 | "below", 26 | "beneath", 27 | "beside", 28 | "besides", 29 | "between", 30 | "beyond", 31 | "by", 32 | "circa", 33 | "despite", 34 | "down", 35 | "during", 36 | "except", 37 | "for", 38 | "from", 39 | "in", 40 | "inside", 41 | "into", 42 | "less", 43 | "like", 44 | "minus", 45 | "near", 46 | "nearer", 47 | "nearest", 48 | "notwithstanding", 49 | "of", 50 | "off", 51 | "on", 52 | "onto", 53 | "opposite", 54 | "outside", 55 | "over", 56 | "past", 57 | "per", 58 | "save", 59 | "since", 60 | "through", 61 | "throughout", 62 | "to", 63 | "toward", 64 | "towards", 65 | "under", 66 | "underneath", 67 | "until", 68 | "up", 69 | "upon", 70 | "upside", 71 | "versus", 72 | "via", 73 | "with", 74 | "within", 75 | "without", 76 | "worth", 77 | "according to", 78 | "adjacent to", 79 | "ahead of", 80 | "apart from", 81 | "as of", 82 | "as per", 83 | "as regards", 84 | "aside from", 85 | "astern of", 86 | "back to", 87 | "because of", 88 | "close to", 89 | "due to", 90 | "except for", 91 | "far from", 92 | "inside of", 93 | "instead of", 94 | "left of", 95 | "near to", 96 | "next to", 97 | "opposite of", 98 | "opposite to", 99 | "out from", 100 | "out of", 101 | "outside of", 102 | "owing to", 103 | "prior to", 104 | "pursuant to", 105 | "rather than", 106 | "regardless of", 107 | "right of", 108 | "subsequent to", 109 | "such as", 110 | "thanks to", 111 | "up to", 112 | "as far as", 113 | "as opposed to", 114 | "as soon as", 115 | "as well as", 116 | "at the behest of", 117 | "by means of", 118 | "by virtue of", 119 | "for the sake of", 120 | "in accordance with", 121 | "in addition to", 122 | "in case of", 123 | "in front of", 124 | "in lieu of", 125 | "in place of", 126 | "in point of", 127 | "in spite of", 128 | "on account of", 129 | "on behalf of", 130 | "on top of", 131 | "with regard to", 132 | "with respect to", 133 | "with a view to" 134 | ] 135 | } 136 | -------------------------------------------------------------------------------- /data/words/stopwords/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Arabic stop words", 3 | "stopWords": 4 | [ 5 | "،", 6 | "أ", 7 | "ا", 8 | "ب", 9 | "ـ", 10 | "ف", 11 | "و", 12 | "و6", 13 | "اف", 14 | "ان", 15 | "او", 16 | "اي", 17 | "بن", 18 | "به", 19 | "تم", 20 | "ثم", 21 | "ضد", 22 | "عن", 23 | "فى", 24 | "في", 25 | "قد", 26 | "كل", 27 | "لا", 28 | "لم", 29 | "لن", 30 | "له", 31 | "ما", 32 | "مع", 33 | "من", 34 | "هو", 35 | "هي", 36 | "اثر", 37 | "اجل", 38 | "احد", 39 | "اذا", 40 | "اكد", 41 | "الا", 42 | "الف", 43 | "الى", 44 | "اما", 45 | "امس", 46 | "انه", 47 | "اول", 48 | "بان", 49 | "برس", 50 | "بعد", 51 | "بعض", 52 | "بها", 53 | "بين", 54 | "حتى", 55 | "حول", 56 | "حيث", 57 | "حين", 58 | "دون", 59 | "ذلك", 60 | "سنة", 61 | "صفر", 62 | "ضمن", 63 | "عام", 64 | "عدة", 65 | "عدد", 66 | "عدم", 67 | "عشر", 68 | "على", 69 | "عند", 70 | "غدا", 71 | "غير", 72 | "فان", 73 | "فيه", 74 | "قال", 75 | "قبل", 76 | "قوة", 77 | "كان", 78 | "كلم", 79 | "كما", 80 | "لدى", 81 | "لكن", 82 | "لها", 83 | "منذ", 84 | "نحو", 85 | "هذا", 86 | "هذه", 87 | "وان", 88 | "وفي", 89 | "وقد", 90 | "وقف", 91 | "ولا", 92 | "ولم", 93 | "ومن", 94 | "وهو", 95 | "وهي", 96 | "يوم", 97 | "فى", 98 | "اخرى", 99 | "اطار", 100 | "اكثر", 101 | "الان", 102 | "التى", 103 | "التي", 104 | "الذى", 105 | "الذي", 106 | "امام", 107 | "انها", 108 | "ايار", 109 | "ايام", 110 | "ايضا", 111 | "باسم", 112 | "بسبب", 113 | "بشكل", 114 | "جميع", 115 | "خلال", 116 | "شخصا", 117 | "صباح", 118 | "عاما", 119 | "عشرة", 120 | "عليه", 121 | "فيها", 122 | "كانت", 123 | "لقاء", 124 | "مايو", 125 | "مساء", 126 | "منها", 127 | "نفسه", 128 | "هناك", 129 | "واحد", 130 | "واكد", 131 | "وقال", 132 | "وكان", 133 | "يكون", 134 | "يمكن", 135 | "مليون", 136 | "اربعة", 137 | "اعادة", 138 | "اعلنت", 139 | "الاول", 140 | "الذين", 141 | "الوقت", 142 | "اليوم", 143 | "ثلاثة", 144 | "حاليا", 145 | "حوالى", 146 | "زيارة", 147 | "سنوات", 148 | "عليها", 149 | "عندما", 150 | "للامم", 151 | "مقابل", 152 | "مليار", 153 | "نهاية", 154 | "واضاف", 155 | "واوضح", 156 | "وقالت", 157 | "وكانت", 158 | "الاولى", 159 | "الثاني", 160 | "الذاتي", 161 | "السابق", 162 | "الماضي", 163 | "المقبل", 164 | "لوكالة", 165 | "واضافت", 166 | "الاخيرة", 167 | "الثانية" 168 | ] 169 | } 170 | -------------------------------------------------------------------------------- /data/societies_and_groups/semi_secret.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Skull and Bones", 4 | "aka": [] 5 | }, 6 | { 7 | "name": "Rosicrucians", 8 | "aka": [] 9 | }, 10 | { 11 | "name": "Sons of Liberty", 12 | "aka": [] 13 | }, 14 | { 15 | "name": "Thule Society", 16 | "aka": [] 17 | }, 18 | { 19 | "name": "Priory of Sion", 20 | "aka": [] 21 | }, 22 | { 23 | "name": "Ordo Templi Orientis", 24 | "aka": [] 25 | }, 26 | { 27 | "name": "Knights of the Golden Eagle", 28 | "aka": [] 29 | }, 30 | { 31 | "name": "Woodmen", 32 | "aka": [] 33 | }, 34 | { 35 | "name": "Ancient Arabic Order of the Nobles of the Mystic Shrine", 36 | "aka": [ 37 | "Shriners" 38 | ] 39 | }, 40 | { 41 | "name": "Improved Order of Red Men", 42 | "aka": [] 43 | }, 44 | { 45 | "name": "P.E.O. Sisterhood", 46 | "aka": [] 47 | }, 48 | { 49 | "name": "FreeMasons", 50 | "aka": [ 51 | "Masons" 52 | ] 53 | }, 54 | { 55 | "name": "Loyal Order of Moose", 56 | "aka": [] 57 | }, 58 | { 59 | "name": "Bilderberg Group", 60 | "aka": [] 61 | }, 62 | { 63 | "name": "Ku Klux Klan", 64 | "aka": [ 65 | "KKK" 66 | ] 67 | }, 68 | { 69 | "name": "Knights of Pythias", 70 | "aka": [] 71 | }, 72 | { 73 | "name": "Knights of Columbus", 74 | "aka": [] 75 | }, 76 | { 77 | "name": "Illuminati", 78 | "aka": [] 79 | }, 80 | { 81 | "name": "Foresters Society", 82 | "aka": [] 83 | }, 84 | { 85 | "name": "Hermetic Order of the Golden Dawn", 86 | "aka": [] 87 | }, 88 | { 89 | "name": "Mystic Order of Veiled Prophets of the Enchanted Realm", 90 | "aka": [] 91 | }, 92 | { 93 | "name": "United Order of the Golden Cross", 94 | "aka": [] 95 | }, 96 | { 97 | "name": "United Ancient Order of Druids", 98 | "aka": [] 99 | }, 100 | { 101 | "name": "National Grange", 102 | "aka": [] 103 | }, 104 | { 105 | "name": "Ancient Order of Hibernians", 106 | "aka": [] 107 | }, 108 | { 109 | "name": "Masons", 110 | "aka": [] 111 | }, 112 | { 113 | "name": "The Trilateral Commission", 114 | "aka": [] 115 | }, 116 | { 117 | "name": "Knights Templar", 118 | "aka": [ 119 | "Poor Fellow-Soldiers of Christ and of the Temple of Solomon", 120 | "Order of Solomon's Temple", 121 | "Templars" 122 | ] 123 | }, 124 | { 125 | "name": "High enlightened oculist order of Wolfenbüttel", 126 | "aka": [ 127 | "Oculists" 128 | ] 129 | }, 130 | { 131 | "name": "Lizard People", 132 | "aka": [] 133 | }, 134 | { 135 | "name": "Anonymous", 136 | "aka": [] 137 | }, 138 | { 139 | "name": "Cicada 3301", 140 | "aka": [] 141 | }, 142 | { 143 | "name": "Bohemian Grove", 144 | "aka": [] 145 | } 146 | ] 147 | -------------------------------------------------------------------------------- /data/societies_and_groups/fraternities/coeducational_fraternities.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Alpha Nu Omega (Chapters)", 4 | "symbol": "ΑΝΩ", 5 | "founded": "1988", 6 | "affiliation": "UCCFS", 7 | "traditional_emphasis": "Christian coed fraternity" 8 | }, 9 | { 10 | "name": "Zeta Phi Zeta", 11 | "symbol": "ΖΦΖ", 12 | "founded": "2001", 13 | "affiliation": "UCCFS", 14 | "traditional_emphasis": "Christian[34]" 15 | }, 16 | { 17 | "name": "Alpha Delta Phi Society", 18 | "symbol": "ΑΔΦ", 19 | "founded": "1832", 20 | "affiliation": "Unaffiliated, national", 21 | "traditional_emphasis": "Literary and traditional" 22 | }, 23 | { 24 | "name": "Alpha Psi Lambda", 25 | "symbol": "ΑΨΛ", 26 | "founded": "1985", 27 | "affiliation": "NALFO", 28 | "traditional_emphasis": "Latino" 29 | }, 30 | { 31 | "name": "St. Anthony Hall (Delta Psi)", 32 | "symbol": "ΔΨ", 33 | "founded": "1847", 34 | "affiliation": "Unaffiliated, national", 35 | "traditional_emphasis": "Literary and social" 36 | }, 37 | { 38 | "name": "Delta Psi Alpha", 39 | "symbol": "ΔΨΑ", 40 | "founded": "1998", 41 | "affiliation": "Unaffiliated, national", 42 | "traditional_emphasis": "Multicultural" 43 | }, 44 | { 45 | "name": "Trigon Engineering Society", 46 | "symbol": "ΓΔΕ", 47 | "founded": "1924", 48 | "affiliation": "Local, University of Virginia", 49 | "traditional_emphasis": "Engineering, Social" 50 | }, 51 | { 52 | "name": "Lambda Lambda Lambda", 53 | "symbol": "ΛΛΛ", 54 | "founded": "2006", 55 | "affiliation": "Unaffiliated, national", 56 | "traditional_emphasis": "Traditional" 57 | }, 58 | { 59 | "name": "Theta Delta Sigma", 60 | "symbol": "ΘΔΣ", 61 | "founded": "2001", 62 | "affiliation": "Unaffiliated, national", 63 | "traditional_emphasis": "Multicultural" 64 | }, 65 | { 66 | "name": "Alpha Theta", 67 | "symbol": "ΑΘ", 68 | "founded": "1920", 69 | "affiliation": "Local, Dartmouth College", 70 | "traditional_emphasis": "Traditional" 71 | }, 72 | { 73 | "name": "Delta Lambda Psi", 74 | "symbol": "ΔΛΨ", 75 | "founded": "2005", 76 | "affiliation": "Local, University of California at Santa Cruz", 77 | "traditional_emphasis": "LBGTQ" 78 | }, 79 | { 80 | "name": "Zeta Delta Xi", 81 | "symbol": "ΖΔΞ", 82 | "founded": "1852", 83 | "affiliation": "Local, Brown University", 84 | "traditional_emphasis": "Traditional" 85 | }, 86 | { 87 | "name": "Kappa Gamma Psi", 88 | "symbol": "ΚΓΨ", 89 | "founded": "1913", 90 | "affiliation": "Local, Ithaca College", 91 | "traditional_emphasis": "Performing arts" 92 | }, 93 | { 94 | "name": "Phi Tau", 95 | "symbol": "ΦΤ", 96 | "founded": "1905", 97 | "affiliation": "Local, Dartmouth College", 98 | "traditional_emphasis": "Traditional" 99 | }, 100 | { 101 | "name": "Psi Upsilon", 102 | "symbol": "ΨΥ", 103 | "founded": "1833", 104 | "affiliation": "Local, Rensselaer Polytechnic Institute", 105 | "traditional_emphasis": "Traditional" 106 | } 107 | ] 108 | -------------------------------------------------------------------------------- /data/words/stopwords/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Latvian stop words", 3 | "stopWords": 4 | [ 5 | "aiz", 6 | "ap", 7 | "ar", 8 | "apakš", 9 | "ārpus", 10 | "augšpus", 11 | "bez", 12 | "caur", 13 | "dēļ", 14 | "gar", 15 | "iekš", 16 | "iz", 17 | "kopš", 18 | "labad", 19 | "lejpus", 20 | "līdz", 21 | "no", 22 | "otrpus", 23 | "pa", 24 | "par", 25 | "pār", 26 | "pēc", 27 | "pie", 28 | "pirms", 29 | "pret", 30 | "priekš", 31 | "starp", 32 | "šaipus", 33 | "uz", 34 | "viņpus", 35 | "virs", 36 | "virspus", 37 | "zem", 38 | "apakšpus", 39 | "# Conjunctions", 40 | "un", 41 | "bet", 42 | "jo", 43 | "ja", 44 | "ka", 45 | "lai", 46 | "tomēr", 47 | "tikko", 48 | "turpretī", 49 | "arī", 50 | "kaut", 51 | "gan", 52 | "tādēļ", 53 | "tā", 54 | "ne", 55 | "tikvien", 56 | "vien", 57 | "kā", 58 | "ir", 59 | "te", 60 | "vai", 61 | "kamēr", 62 | "# Particles", 63 | "diezin", 64 | "droši", 65 | "diemžēl", 66 | "nebūt", 67 | "ik", 68 | "it", 69 | "taču", 70 | "nu", 71 | "pat", 72 | "tiklab", 73 | "iekšpus", 74 | "nedz", 75 | "tik", 76 | "nevis", 77 | "turpretim", 78 | "jeb", 79 | "iekam", 80 | "iekām", 81 | "iekāms", 82 | "kolīdz", 83 | "līdzko", 84 | "tiklīdz", 85 | "jebšu", 86 | "tālab", 87 | "tāpēc", 88 | "nekā", 89 | "itin", 90 | "jā", 91 | "jau", 92 | "jel", 93 | "nē", 94 | "nezin", 95 | "tad", 96 | "tikai", 97 | "vis", 98 | "tak", 99 | "iekams", 100 | "# modal verbs", 101 | "būt ", 102 | "biju ", 103 | "biji", 104 | "bija", 105 | "bijām", 106 | "bijāt", 107 | "esmu", 108 | "esi", 109 | "esam", 110 | "esat ", 111 | "būšu ", 112 | "būsi", 113 | "būs", 114 | "būsim", 115 | "būsiet", 116 | "tikt", 117 | "tiku", 118 | "tiki", 119 | "tika", 120 | "tikām", 121 | "tikāt", 122 | "tieku", 123 | "tiec", 124 | "tiek", 125 | "tiekam", 126 | "tiekat", 127 | "tikšu", 128 | "tiks", 129 | "tiksim", 130 | "tiksiet", 131 | "tapt", 132 | "tapi", 133 | "tapāt", 134 | "topat", 135 | "tapšu", 136 | "tapsi", 137 | "taps", 138 | "tapsim", 139 | "tapsiet", 140 | "kļūt", 141 | "kļuvu", 142 | "kļuvi", 143 | "kļuva", 144 | "kļuvām", 145 | "kļuvāt", 146 | "kļūstu", 147 | "kļūsti", 148 | "kļūst", 149 | "kļūstam", 150 | "kļūstat", 151 | "kļūšu", 152 | "kļūsi", 153 | "kļūs", 154 | "kļūsim", 155 | "kļūsiet", 156 | "# verbs", 157 | "varēt", 158 | "varēju", 159 | "varējām", 160 | "varēšu", 161 | "varēsim", 162 | "var", 163 | "varēji", 164 | "varējāt", 165 | "varēsi", 166 | "varēsiet", 167 | "varat", 168 | "varēja", 169 | "varēs" 170 | ] 171 | } 172 | -------------------------------------------------------------------------------- /data/art/isms.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of modernist art isms.", 3 | "isms": [ 4 | "abstract expressionism", 5 | "academic", 6 | "action painting", 7 | "aestheticism", 8 | "art deco", 9 | "art nouveau", 10 | "avant-garde", 11 | "barbizon school", 12 | "baroque", 13 | "bauhaus", 14 | "biedermeier", 15 | "caravaggisti", 16 | "carolingian", 17 | "classicism", 18 | "cloisonnism", 19 | "cobra", 20 | "color field painting", 21 | "conceptual art", 22 | "cubism", 23 | "cubo-futurism", 24 | "dada", 25 | "dadaism", 26 | "de stijl", 27 | "deformalism", 28 | "der blaue reiter", 29 | "die brücke", 30 | "divisionism", 31 | "eclecticism", 32 | "ego-futurism", 33 | "existentialism", 34 | "expressionism", 35 | "fauvism", 36 | "fluxus", 37 | "formalism", 38 | "futurism", 39 | "geometric abstraction", 40 | "gothic art", 41 | "gründerzeit", 42 | "hard-edge painting", 43 | "historicism", 44 | "hudson river school", 45 | "humanism", 46 | "hyperrealism", 47 | "idealism", 48 | "illusionism", 49 | "immagine&poesia", 50 | "impressionism", 51 | "incoherents", 52 | "installation art", 53 | "international gothic", 54 | "intervention art", 55 | "jugendstil", 56 | "kinetic art", 57 | "land art", 58 | "les nabis", 59 | "lettrism", 60 | "lowbrow", 61 | "luminism", 62 | "lyrical abstraction", 63 | "mail art", 64 | "manierism", 65 | "mannerism", 66 | "maximalism", 67 | "merovingian", 68 | "metaphysical art ", 69 | "minimalism", 70 | "modern art", 71 | "modernism", 72 | "monumentalism", 73 | "multiculturalism", 74 | "naturalism", 75 | "neo-classicism", 76 | "neo-dada", 77 | "neo-expressionism", 78 | "neo-fauvism", 79 | "neo-geo", 80 | "neo-impressionism", 81 | "neo-minimalism", 82 | "neoclassicism", 83 | "neoism", 84 | "neue slowenische kunst", 85 | "new media art", 86 | "new objectivity", 87 | "nonconformism", 88 | "nouveau realisme", 89 | "op art", 90 | "orphism", 91 | "ottonian", 92 | "outsider art", 93 | "performance art", 94 | "perspectivism", 95 | "photorealism", 96 | "pointilism", 97 | "pop art", 98 | "post-conceptualism", 99 | "post-impressionism", 100 | "post-minimalism", 101 | "post-painterly abstraction", 102 | "post-structuralism", 103 | "postminimalism", 104 | "postmodern art", 105 | "postmodernism", 106 | "pre-raphaelites", 107 | "precisionism", 108 | "primitivism", 109 | "purism", 110 | "rayonism", 111 | "realism", 112 | "relational art", 113 | "remodernism", 114 | "renaissance", 115 | "rococo", 116 | "romanesque", 117 | "romanticism", 118 | "russian futurism", 119 | "russian symbolism", 120 | "scuola romana", 121 | "secularism", 122 | "situationist international", 123 | "social realism", 124 | "socialist realism", 125 | "sound art", 126 | "street art", 127 | "structuralism", 128 | "stuckism international", 129 | "stuckism", 130 | "superflat", 131 | "superstroke", 132 | "suprematism", 133 | "surrealism", 134 | "symbolism", 135 | "synchromism", 136 | "synthetism", 137 | "systems art", 138 | "tachism", 139 | "tachisme", 140 | "tonalism", 141 | "video art", 142 | "video game art", 143 | "vorticism", 144 | "young british artists" 145 | ] 146 | } 147 | -------------------------------------------------------------------------------- /data/societies_and_groups/fraternities/service.json: -------------------------------------------------------------------------------- 1 | { 2 | "National": [ 3 | { 4 | "name": "Alpha Phi Omega", 5 | "symbol": "ΑΦΩ", 6 | "description": "coed national fraternity (with independent organizations in United States and the Philippines)" 7 | }, 8 | { 9 | "name": "Epsilon Sigma Alpha", 10 | "symbol": "ΕΣΑ", 11 | "description": "coed national" 12 | }, 13 | { 14 | "name": "Gamma Sigma Sigma", 15 | "symbol": "ΓΣΣ", 16 | "description": "national sorority, males admitted, primarily female" 17 | }, 18 | { 19 | "name": "Omega Phi Alpha", 20 | "symbol": "ΩΦΑ", 21 | "description": "national sorority, males admitted" 22 | }, 23 | { 24 | "name": "SPURS National Honor Society", 25 | "symbol": "", 26 | "description": "defunct (October 2005) coed national, primarily female" 27 | }, 28 | { 29 | "name": "Tau Beta Sigma", 30 | "symbol": "TBΣ", 31 | "description": "Coed National Honorary Band Sorority; Founded March 26, 1946" 32 | }, 33 | { 34 | "name": "Upsilon Phi Upsilon fraternity", 35 | "symbol": "YΦY", 36 | "description": "Founded March 21, 1990 at Southern University and A&M College" 37 | } 38 | ], 39 | "Local/Regional": [ 40 | { 41 | "name": "Alpha Delta", 42 | "symbol": "ΑΔ", 43 | "description": "local, strictly male, founded at University of Maine (formerly the Sigma Xi chapter of Alpha Phi Omega)" 44 | }, 45 | { 46 | "name": "Gamma Pi Alpha sorority", 47 | "symbol": "ΓΠΑ", 48 | "description": "local, strictly female, founded at Tuskegee University in 1994" 49 | }, 50 | { 51 | "name": "Rho Pi Alpha fraternity", 52 | "symbol": "ΡΠΑ", 53 | "description": "local, strictly male, founded at Tuskegee University in 1993 {defunct}, Beta chapter at Michigan State University {defunct}, Gamma chapter at Savannah State University {active}n" 54 | }, 55 | { 56 | "name": "Alpha Tau Mu fraternity", 57 | "symbol": "ATM", 58 | "description": "coed regional, founded at Tuskegee University on September 2, 2009, Beta chapter at Auburn University on April 21, 2014" 59 | } 60 | ], 61 | "Non-collegiate": [ 62 | { 63 | "name": "Epsilon Sigma Alpha", 64 | "symbol": "ΕΣΑ", 65 | "description": "international service organization (coed collegiate division also exists)" 66 | }, 67 | { 68 | "name": "Independent Order of Odd Fellows", 69 | "symbol": "IOOF", 70 | "description": "non-collegiate international service fraternity for men and women whether professional or college students" 71 | } 72 | ], 73 | "Philippines": [ 74 | { 75 | "name": "Alpha Phi Omega", 76 | "symbol": "ΑΦΩ", 77 | "description": "co-ed national (with independent organizations in United States and the Philippines)" 78 | }, 79 | { 80 | "name": "Gamma Omicron Delta Sigma", 81 | "symbol": "ΓΟΔΣ", 82 | "description": "Inter-Society and National Service Fraternity/Sorority" 83 | }, 84 | { 85 | "name": "Epsilon Sigma Alpha", 86 | "symbol": "ΕΣΑ", 87 | "description": "international service organization" 88 | } 89 | ] 90 | } 91 | -------------------------------------------------------------------------------- /data/words/stopwords/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Slovak stop words", 3 | "stopWords": 4 | [ 5 | "aby", 6 | "aj", 7 | "ak", 8 | "ako", 9 | "ale", 10 | "alebo", 11 | "and", 12 | "ani", 13 | "asi", 14 | "až", 15 | "bez", 16 | "bol", 17 | "bola", 18 | "boli", 19 | "bolo", 20 | "bude", 21 | "budem", 22 | "budeme", 23 | "budete", 24 | "budeš", 25 | "budú", 26 | "buď", 27 | "by", 28 | "byť", 29 | "cez", 30 | "dnes", 31 | "do", 32 | "ešte", 33 | "for", 34 | "ho", 35 | "i", 36 | "iba", 37 | "ich", 38 | "iné", 39 | "iný", 40 | "ja", 41 | "je", 42 | "jeho", 43 | "jej", 44 | "ju", 45 | "k", 46 | "kam", 47 | "každá", 48 | "každé", 49 | "každí", 50 | "každý", 51 | "kde", 52 | "keď", 53 | "kto", 54 | "ktorou", 55 | "ktorá", 56 | "ktoré", 57 | "ktorí", 58 | "ktorý", 59 | "ku", 60 | "lebo", 61 | "len", 62 | "ma", 63 | "mať", 64 | "medzi", 65 | "menej", 66 | "mi", 67 | "mna", 68 | "mne", 69 | "mnou", 70 | "moja", 71 | "moje", 72 | "musieť", 73 | "my", 74 | "má", 75 | "máte", 76 | "môcť", 77 | "môj", 78 | "môže", 79 | "na", 80 | "nad", 81 | "naši", 82 | "nech", 83 | "než", 84 | "nie", 85 | "niektorý", 86 | "nič", 87 | "nová", 88 | "nové", 89 | "noví", 90 | "nový", 91 | "nám", 92 | "náš", 93 | "o", 94 | "od", 95 | "odo", 96 | "of", 97 | "on", 98 | "ona", 99 | "oni", 100 | "ono", 101 | "ony", 102 | "po", 103 | "pod", 104 | "podľa", 105 | "pokiaľ", 106 | "potom", 107 | "pre", 108 | "pred", 109 | "predo", 110 | "preto", 111 | "pretože", 112 | "prečo", 113 | "pri", 114 | "prvá", 115 | "prvé", 116 | "prví", 117 | "prvý", 118 | "práve", 119 | "pýta", 120 | "s", 121 | "sa", 122 | "si", 123 | "sme", 124 | "so", 125 | "som", 126 | "späť", 127 | "ste", 128 | "svoj", 129 | "svoje", 130 | "svojich", 131 | "svojím", 132 | "svojími", 133 | "sú", 134 | "ta", 135 | "tak", 136 | "takže", 137 | "tam", 138 | "te", 139 | "teda", 140 | "ten", 141 | "tento", 142 | "the", 143 | "tieto", 144 | "tiež", 145 | "to", 146 | "toho", 147 | "tohoto", 148 | "tom", 149 | "tomto", 150 | "tomuto", 151 | "toto", 152 | "tu", 153 | "tvoj", 154 | "tvojími", 155 | "ty", 156 | "tá", 157 | "táto", 158 | "tú", 159 | "túto", 160 | "tým", 161 | "týmto", 162 | "tě", 163 | "už", 164 | "v", 165 | "vaše", 166 | "viac", 167 | "vo", 168 | "vy", 169 | "vám", 170 | "váš", 171 | "však", 172 | "všetok", 173 | "z", 174 | "za", 175 | "zo", 176 | "áno", 177 | "a", 178 | "ďalšia", 179 | "ďalšie", 180 | "ďalší", 181 | "že", 182 | "či", 183 | "čo" 184 | ] 185 | } 186 | -------------------------------------------------------------------------------- /data/archetypes/event.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Archetypal events.", 3 | "events": [ 4 | { 5 | "name": "arrival", 6 | "synonyms": ["birth","introduction","reveal"], 7 | "qualities": [""], 8 | "nature": "neutral" 9 | }, 10 | { 11 | "name": "departure", 12 | "synonyms": ["leaving","exiting","embarking","parting"], 13 | "qualities": ["voluntary"], 14 | "nature": "neutral" 15 | }, 16 | { 17 | "name": "giving", 18 | "synonyms": ["delivery","donation","presentation","endowment"], 19 | "qualities": ["generous","thoughtful"], 20 | "nature": "good" 21 | }, 22 | { 23 | "name": "receiving", 24 | "synonyms": ["acceptance"], 25 | "qualities": [""], 26 | "nature": "neutral" 27 | }, 28 | { 29 | "name": "discovery", 30 | "synonyms": ["reveal","exposure"], 31 | "qualities": ["educational"], 32 | "nature": "neutral" 33 | }, 34 | { 35 | "name": "loss", 36 | "synonyms": ["separation","death","abandonment"], 37 | "qualities": ["involuntary"], 38 | "nature": "evil" 39 | }, 40 | { 41 | "name": "deceit", 42 | "synonyms": ["trickery","con","fool"], 43 | "qualities": ["frustrating","unexpected"], 44 | "nature": "evil" 45 | }, 46 | { 47 | "name": "victory", 48 | "synonyms": ["success","overcoming","triumph","passage"], 49 | "qualities": ["relieving"], 50 | "nature": "good" 51 | }, 52 | { 53 | "name": "defeat", 54 | "synonyms": ["fall","failure"], 55 | "qualities": ["disheartening","reducing"], 56 | "nature": "neutral" 57 | }, 58 | { 59 | "name": "reversal", 60 | "synonyms": ["turnabout"], 61 | "qualities": ["unexpected","changing"], 62 | "nature": "neutral" 63 | }, 64 | { 65 | "name": "enlightenment", 66 | "synonyms": ["awakening","rise","improvement","learning","education"], 67 | "qualities": ["positive"], 68 | "nature": "good" 69 | }, 70 | { 71 | "name": "initiation", 72 | "synonyms": ["acceptance","embracing","welcoming","joining"], 73 | "qualities": [""], 74 | "nature": "good" 75 | }, 76 | { 77 | "name": "expulsion", 78 | "synonyms": ["separation","removal","rejection","elimination"], 79 | "qualities": [""], 80 | "nature": "neutral" 81 | }, 82 | { 83 | "name": "ritual", 84 | "synonyms": ["ceremony","rite","process"], 85 | "qualities": ["formal","practiced","routine"], 86 | "nature": "neutral" 87 | }, 88 | { 89 | "name": "injury", 90 | "synonyms": ["wounding","hurting","insulting"], 91 | "qualities": [""], 92 | "nature": "evil" 93 | }, 94 | { 95 | "name": "healing", 96 | "synonyms": ["improvement","mending","joining"], 97 | "qualities": ["beneficial"], 98 | "nature": "good" 99 | }, 100 | { 101 | "name": "rebirth", 102 | "synonyms": ["renewal","return"], 103 | "qualities": [""], 104 | "nature": "good" 105 | } 106 | ] 107 | } 108 | -------------------------------------------------------------------------------- /data/corporations/newspapers.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A list of newspapers scraped in early 2013.", 3 | "newspapers": 4 | [ 5 | "The Wall Street Journal", 6 | "The New York Times", 7 | "USA Today", 8 | "Los Angeles Times", 9 | "San Jose Mercury News", 10 | "Daily News", 11 | "New York Post", 12 | "The Washington Post", 13 | "Chicago Sun-Times", 14 | "The Denver Post", 15 | "Chicago Tribune", 16 | "The Dallas Morning News", 17 | "Newsday", 18 | "Houston Chronicle", 19 | "The Orange County Register", 20 | "The Star-Ledger", 21 | "Tampa Bay Times", 22 | "The Plain Dealer", 23 | "Philadelphia Inquirer", 24 | "Star Tribune", 25 | "The Arizona Republic", 26 | "Honolulu Star-Advertiser", 27 | "Las Vegas Review-Journal", 28 | "U-T San Diego", 29 | "The Boston Globe", 30 | "The Atlanta Journal-Constitution", 31 | "The Seattle Times", 32 | "The Oregonian", 33 | "San Francisco Chronicle", 34 | "Detroit Free Press", 35 | "St. Paul Pioneer Press", 36 | "Pittsburgh Tribune-Review", 37 | "The Sacramento Bee", 38 | "Milwaukee Journal Sentinel", 39 | "The Tampa Tribune", 40 | "The Kansas City Star", 41 | "Fort Worth Star-Telegram", 42 | "Pittsburgh Post-Gazette", 43 | "The Sun", 44 | "St. Louis Post-Dispatch", 45 | "South Florida Sun-Sentinel", 46 | "Orlando Sentinel", 47 | "Arkansas Democrat-Gazette", 48 | "Investor's Business Daily", 49 | "The Indianapolis Star", 50 | "The Record", 51 | "The Miami Herald", 52 | "The Buffalo News", 53 | "San Antonio Express-News", 54 | "The Charlotte Observer", 55 | "The Press-Enterprise", 56 | "The Columbus Dispatch", 57 | "Omaha World-Herald", 58 | "The Virginian-Pilot", 59 | "The Courier-Journal", 60 | "The Cincinnati Enquirer", 61 | "Austin American-Statesman", 62 | "The Hartford Courant", 63 | "The Oklahoman", 64 | "The News & Observer", 65 | "La Opinión", 66 | "The Detroit News", 67 | "Fresno Bee", 68 | "The Providence Journal", 69 | "The Salt Lake Tribune", 70 | "Deseret News", 71 | "Richmond Times-Dispatch", 72 | "Democrat and Chronicle", 73 | "The Palm Beach Post", 74 | "The Tennessean", 75 | "Boston Herald", 76 | "Tulsa World", 77 | "The Commercial Appeal", 78 | "Daily Herald", 79 | "The Des Moines Register", 80 | "Arizona Daily Star", 81 | "Dayton Daily News", 82 | "Asbury Park Press", 83 | "The Florida Times-Union", 84 | "The Blade", 85 | "The Times of Northwest Indiana", 86 | "Wisconsin State Journal", 87 | "Albuquerque Journal", 88 | "The Post and Courier", 89 | "Lexington Herald-Leader", 90 | "Los Angeles Daily News", 91 | "The Times-Picayune", 92 | "The News Journal", 93 | "The Morning Call", 94 | "Akron Beacon Journal", 95 | "Knoxville News Sentinel", 96 | "Daily Breeze", 97 | "Press-Telegram", 98 | "Telegram & Gazette", 99 | "Intelligencer Journal", 100 | "Sarasota Herald-Tribune", 101 | "The News Tribune", 102 | "Atlantic City Press", 103 | "Chattanooga Times Free Press", 104 | "Naples Daily News", 105 | "Daytona Beach News-Journal" 106 | ] 107 | } 108 | -------------------------------------------------------------------------------- /data/sports/football/epl_teams.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Current (as of November 2016) teams in the EPL (English Premier League) and where they play", 3 | "epl_teams": [ 4 | { 5 | "name": "AFC Bournemouth", 6 | "manager": "Eddie Howe", 7 | "city": "Boscombe, Bournemouth", 8 | "stadium": "Dean Court", 9 | "code": "BOU" 10 | }, 11 | { 12 | "name": "Arsenal", 13 | "manager": "Arsene Wenger", 14 | "city": "London Borough of Islington", 15 | "stadium": "Emirates Stadium", 16 | "code": "ARS" 17 | }, 18 | { 19 | "name": "Burnley", 20 | "manager": "Sean Dyche", 21 | "city": "Burnley", 22 | "stadium": "Turf Moor", 23 | "code": "BUR" 24 | }, 25 | { 26 | "name": "Chelsea", 27 | "manager": "Antonio Conte", 28 | "city": "London Borough of Hammersmith and Fulham", 29 | "stadium": "Stamford Bridge", 30 | "code": "CHE" 31 | }, 32 | { 33 | "name": "Crystal Palace", 34 | "manager": "Alan Pardew", 35 | "city": "London Borough of Croydon", 36 | "stadium": "Selhurst Park", 37 | "code": "CRY" 38 | }, 39 | { 40 | "name": "Everton", 41 | "manager": "Ronald Koeman", 42 | "city": "Liverpool", 43 | "stadium": "Goodison Park", 44 | "code": "EVE" 45 | }, 46 | { 47 | "name": "Hull City", 48 | "manager": "Mike Phelan", 49 | "city": "Kingston upon Hull", 50 | "stadium": "KCOM Stadium", 51 | "code": "HUL" 52 | }, 53 | { 54 | "name": "Leicester City", 55 | "manager": "Claudio Renieri", 56 | "city": "Leicester", 57 | "stadium": "King Power Stadium", 58 | "code": "LEI" 59 | }, 60 | { 61 | "name": "Liverpool", 62 | "manager": "Jurgen Klopp", 63 | "city": "Liverpool", 64 | "stadium": "Anfield", 65 | "code": "LIV" 66 | }, 67 | { 68 | "name": "Manchester City", 69 | "manager": "Josep Guardiola", 70 | "city": "Manchester", 71 | "stadium": "Etihad Stadium", 72 | "code": "MCI" 73 | }, 74 | { 75 | "name": "Manchester United", 76 | "manager": "Jose Mourinho", 77 | "city": "Manchester", 78 | "stadium": "Old Trafford", 79 | "code": "MUN" 80 | }, 81 | { 82 | "name": "Middlesborough", 83 | "manager": "Aitor Karanka", 84 | "city": "Middlesborough", 85 | "stadium": "Riverside Stadium", 86 | "code": "MFC" 87 | }, 88 | { 89 | "name": "Southampton", 90 | "manager": "Claude Puel", 91 | "city": "Southampton", 92 | "stadium": "St Mary's Stadium", 93 | "code": "SOU" 94 | }, 95 | { 96 | "name": "Stoke City", 97 | "manager": "Mark Hughes", 98 | "city": "Stoke-on-Trent", 99 | "stadium": "bet365 Stadium", 100 | "code": "STK" 101 | }, 102 | { 103 | "name": "Sunderland", 104 | "manager": "David Moyes", 105 | "city": "Sunderland", 106 | "stadium": "Stadium of Light", 107 | "code": "SUN" 108 | }, 109 | { 110 | "name": "Swansea City", 111 | "manager": "Bob Bradley", 112 | "city": "Swansea, Wales", 113 | "stadium": "Liberty Stadium", 114 | "code": "SWA" 115 | }, 116 | { 117 | "name": "Tottenham Hotspur", 118 | "manager": "Maruicio Pochettino", 119 | "city": "London Borough of Haringey", 120 | "stadium": "White Hart Lane", 121 | "code": "TOT" 122 | }, 123 | { 124 | "name": "Watford", 125 | "manager": "Walter Mazzarri", 126 | "city": "Watford", 127 | "stadium": "Vicarage Road", 128 | "code": "WAT" 129 | }, 130 | { 131 | "name": "West Bromwich Albion", 132 | "manager": "Tony Pulis", 133 | "city": "West Bromwich", 134 | "stadium": "The Hawthorns", 135 | "code": "WBA" 136 | }, 137 | { 138 | "name": "West Ham United", 139 | "manager": "Slaven Bilic", 140 | "city": "London Borough of Newham", 141 | "stadium": "London Stadium", 142 | "code": "WHU" 143 | } 144 | ] 145 | } -------------------------------------------------------------------------------- /data/humans/lastNames.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Last names of people, pulled from the US Census for the 2000s.", 3 | "lastNames": [ 4 | "Smith", 5 | "Johnson", 6 | "Williams", 7 | "Brown", 8 | "Jones", 9 | "Miller", 10 | "Davis", 11 | "Garcia", 12 | "Rodriguez", 13 | "Wilson", 14 | "Martinez", 15 | "Anderson", 16 | "Taylor", 17 | "Thomas", 18 | "Hernandez", 19 | "Moore", 20 | "Martin", 21 | "Jackson", 22 | "Thompson", 23 | "White", 24 | "Lopez", 25 | "Lee", 26 | "Gonzalez", 27 | "Harris", 28 | "Clark", 29 | "Lewis", 30 | "Robinson", 31 | "Walker", 32 | "Perez", 33 | "Hall", 34 | "Young", 35 | "Allen", 36 | "Sanchez", 37 | "Wright", 38 | "King", 39 | "Scott", 40 | "Green", 41 | "Baker", 42 | "Adams", 43 | "Nelson", 44 | "Hill", 45 | "Ramirez", 46 | "Campbell", 47 | "Mitchell", 48 | "Roberts", 49 | "Carter", 50 | "Phillips", 51 | "Evans", 52 | "Turner", 53 | "Torres", 54 | "Parker", 55 | "Collins", 56 | "Edwards", 57 | "Stewart", 58 | "Flores", 59 | "Morris", 60 | "Nguyen", 61 | "Murphy", 62 | "Rivera", 63 | "Cook", 64 | "Rogers", 65 | "Morgan", 66 | "Peterson", 67 | "Cooper", 68 | "Reed", 69 | "Bailey", 70 | "Bell", 71 | "Gomez", 72 | "Kelly", 73 | "Howard", 74 | "Ward", 75 | "Cox", 76 | "Diaz", 77 | "Richardson", 78 | "Wood", 79 | "Watson", 80 | "Brooks", 81 | "Bennett", 82 | "Gray", 83 | "James", 84 | "Reyes", 85 | "Cruz", 86 | "Hughes", 87 | "Price", 88 | "Myers", 89 | "Long", 90 | "Foster", 91 | "Sanders", 92 | "Ross", 93 | "Morales", 94 | "Powell", 95 | "Sullivan", 96 | "Russell", 97 | "Ortiz", 98 | "Jenkins", 99 | "Gutierrez", 100 | "Perry", 101 | "Butler", 102 | "Barnes", 103 | "Fisher", 104 | "Henderson", 105 | "Coleman", 106 | "Simmons", 107 | "Patterson", 108 | "Jordan", 109 | "Reynolds", 110 | "Hamilton", 111 | "Graham", 112 | "Kim", 113 | "Gonzales", 114 | "Alexander", 115 | "Ramos", 116 | "Wallace", 117 | "Griffin", 118 | "West", 119 | "Cole", 120 | "Hayes", 121 | "Chavez", 122 | "Gibson", 123 | "Bryant", 124 | "Ellis", 125 | "Stevens", 126 | "Murray", 127 | "Ford", 128 | "Marshall", 129 | "Owens", 130 | "Mcdonald", 131 | "Harrison", 132 | "Ruiz", 133 | "Kennedy", 134 | "Wells", 135 | "Alvarez", 136 | "Woods", 137 | "Mendoza", 138 | "Castillo", 139 | "Olson", 140 | "Webb", 141 | "Washington", 142 | "Tucker", 143 | "Freeman", 144 | "Burns", 145 | "Henry", 146 | "Vasquez", 147 | "Snyder", 148 | "Simpson", 149 | "Crawford", 150 | "Jimenez", 151 | "Porter", 152 | "Mason", 153 | "Shaw", 154 | "Gordon", 155 | "Wagner", 156 | "Hunter", 157 | "Romero", 158 | "Hicks", 159 | "Dixon", 160 | "Hunt", 161 | "Palmer", 162 | "Robertson", 163 | "Black", 164 | "Holmes", 165 | "Stone", 166 | "Meyer", 167 | "Boyd", 168 | "Mills", 169 | "Warren", 170 | "Fox", 171 | "Rose", 172 | "Rice", 173 | "Moreno", 174 | "Schmidt", 175 | "Patel", 176 | "Ferguson", 177 | "Nichols", 178 | "Herrera", 179 | "Medina", 180 | "Ryan", 181 | "Fernandez", 182 | "Weaver", 183 | "Daniels", 184 | "Stephens", 185 | "Gardner", 186 | "Payne", 187 | "Kelley", 188 | "Dunn", 189 | "Pierce", 190 | "Arnold", 191 | "Tran", 192 | "Spencer", 193 | "Peters", 194 | "Hawkins", 195 | "Grant", 196 | "Hansen", 197 | "Castro", 198 | "Hoffman", 199 | "Hart", 200 | "Elliott", 201 | "Cunningham", 202 | "Knight", 203 | "Bradley" 204 | ] 205 | } 206 | -------------------------------------------------------------------------------- /data/religion/parody_religions.json: -------------------------------------------------------------------------------- 1 | { 2 | "Eventualism": "A satire on Scientology-like religions which appeared in the movie Schizopolis", 3 | "Invisible Pink Unicorn": "A parody of theist definitions of God. It also highlights the arbitrary and unfalsifiable nature of religious belief, in a similar way to Russell's teapot.", 4 | "Kibology": "A humorous Usenet-based satire of religion", 5 | "Landover Baptist Church": "A satiric parody of Fundamentalist Christianity.", 6 | "Last Thursdayism": "A joke version of omphalism that argues that the universe was created last Thursday, created to demonstrate problems with unfalsifiable beliefs, and the variant Next Wednesdayism inspired by John Landis's running movie gag See You Next Wednesday.", 7 | "Pastafarianism, or the Church of the Flying Spaghetti Monster": "A parody of intelligent design, Creationism, and religion in general, as a modern version of Russell's teapot.", 8 | "Tarvuism": "A spoof religion that British comedians Peter Serafinowicz and Robert Popper invented for the television show, Look Around You, that parodied instructional religious videos such as those of Scientologists and Christians.", 9 | "First Church of the Last Laugh": "The spoof religion behind the annual Saint Stupid's Day Parade in San Francisco.", 10 | "Pastafarianism": "A religion which claims to follow the Flying Spaghetti Monster, a deity composed entirely of spaghetti. It parodies Catholic councils with its First Council of Olive Garden, and Catholic saints with its scripture \"TheLooseCanon\", supposedly written by John the Blasphemer. Its name is a parody of Rastafarianism.", 11 | "Bokononism": "A fictional religion from Kurt Vonnegut's novel Cat's Cradle, which promotes harmless comforting lies called foma. Its principal text, The Books of Bokonon, is a parody of the New Testament. See also the Church of God the Utterly Indifferent in Kurt Vonnegut's The Sirens of Titan.", 12 | "Church of the SubGenius": "Founded in 1979. Often regarded as a parody of religion in general, with elements of fundamentalist Christianity, Zen, Scientology, new-age cults, pop-psychology, and motivational sales techniques amongst others, it has become a movement in its own right, inspiring several books, art exhibits, rock albums, conventions, and novelty items.", 13 | "Dudeism": "A religion based on the 1998 film, The Big Lebowski, in which the titular character, also known as \"theDude\", is revered as a guru. The adherents consider the religion a modern form of Taoism.", 14 | "Discordianism": "It is based on the book 1965 Principia Discordia. Its principal deity is the goddess of chaos Discordia (Greek Eris).", 15 | "Iglesia Maradoniana (\"ChurchofMaradona\")": "It was formed by an Argentinian group of fans of the association football player Diego Armando Maradona. The adherents baptize themselves by slapping a football, which is a reference to the 1986 \"HandofGod\" goal.", 16 | "Jediism": "In 2001 following an Internet campaign, the fictional Star Wars \"religion\" of the Jedis became a parody religion in several Commonwealth countries as 1.5% of the New Zealand, 0.37% of the Australia and 0.7% of the UK population stated their religion as Jedi in the official census (see Jedi census).", 17 | "Kopimism": "It is based on the belief that file sharing is a sacred virtue which must remain protected. It was given recognition by the Sweden government in January 2012. It was founded by a philosophy student, Isak Gerson.", 18 | "Matrixism, or The Path of the One": "A new religious movement inspired by the 1999 movie The Matrix. It appeared online in 2004. The adherents claim belief in a multilayered subjective reality and await the return of their prophet, the One.", 19 | "Church of Euthanasia": "The Church of Euthanasia is a \"non-profiteducationalfoundationdevotedtorestoringbalancebetweenHumansandtheremainingspeciesonEarth.\" The Church uses sermons, music, culture jamming, publicity stunts and direct action to highlight Earth's unsustainable population. The Church is notorious for its conflicts with Pro-life Christian activists." 20 | } 21 | -------------------------------------------------------------------------------- /data/technology/computer_sciences.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "names of technologies related to computer science", 3 | "computer_sciences": 4 | [ 5 | ".QL", 6 | "ActionScript", 7 | "ActiveRecord", 8 | "AIM", 9 | "Ajax", 10 | "Algol", 11 | "Amazon", 12 | "Angular", 13 | "Apache", 14 | "AppleScript", 15 | "AppStream", 16 | "ASPnet", 17 | "AutoHotKey", 18 | "Aviato", 19 | "AWS", 20 | "Backbone", 21 | "BASIC", 22 | "Bootstrap", 23 | "Bower", 24 | "Browserify", 25 | "Bundler", 26 | "C", 27 | "Csharp", 28 | "C+", 29 | "C++", 30 | "Canvas", 31 | "Capistrano", 32 | "Cassandra", 33 | "ClearDB", 34 | "CloudFormation", 35 | "CloudFront", 36 | "CloudSearch", 37 | "CloudTrail", 38 | "CloudWatch", 39 | "COBOL", 40 | "CodeCommit", 41 | "CodeDeploy", 42 | "CodePipeline", 43 | "CoffeeScript", 44 | "Cognito", 45 | "CouchDB", 46 | "CrunchBang", 47 | "CSS3", 48 | "Cucumber", 49 | "D3", 50 | "Dart", 51 | "Diaspora", 52 | "Discourse", 53 | "Django", 54 | "Drupal", 55 | "DynamoDB", 56 | "EBS", 57 | "EC2", 58 | "EJS", 59 | "ElacticBeanstalk", 60 | "Elasticache", 61 | "ElasticSearch", 62 | "Emacs", 63 | "Ember", 64 | "ERB", 65 | "Erlang", 66 | "Express", 67 | "Facebook", 68 | "Fedora", 69 | "Foursquare", 70 | "Flash", 71 | "Flickr", 72 | "FORTRAN", 73 | "Foundation", 74 | "FTP", 75 | "Ghost", 76 | "GitHub", 77 | "Glacier", 78 | "Gmail", 79 | "GNUemacs", 80 | "GNUlinux", 81 | "Go", 82 | "GoogleDocs", 83 | "GoogleMaps", 84 | "GrapheneDB", 85 | "Grunt", 86 | "HacketyHack", 87 | "Hadoop", 88 | "Heroku", 89 | "Hipchat", 90 | "HTML5", 91 | "ICQ", 92 | "IFTT", 93 | "ImageMagick", 94 | "Imgur", 95 | "Indiegogo", 96 | "Instagram", 97 | "IRB", 98 | "IRC", 99 | "IronCache", 100 | "Jasmine", 101 | "Java", 102 | "Javascript", 103 | "Jekyll", 104 | "JQuery", 105 | "KeenIO", 106 | "Kickstarter", 107 | "Knockout", 108 | "LaTeX", 109 | "LeapMotion", 110 | "LevelDB", 111 | "Linux", 112 | "Lisp", 113 | "Lyft", 114 | "MariaDB", 115 | "MarkDown", 116 | "Memcached", 117 | "Middleman", 118 | "Minitest", 119 | "Mocha", 120 | "MongoDB", 121 | "MySql", 122 | "Netflix", 123 | "NewRelic", 124 | "Nginx", 125 | "NLTK", 126 | "Node.js", 127 | "Nokogiri", 128 | "NoSQL", 129 | "NPM", 130 | "OAuth", 131 | "Objective-C", 132 | "OCaml", 133 | "OCR", 134 | "Octopress", 135 | "OculusRift", 136 | "OpenCV", 137 | "Opera", 138 | "Oracle", 139 | "Pandora", 140 | "Passenger", 141 | "Perl", 142 | "PGP", 143 | "PHP", 144 | "PIP", 145 | "Polymer", 146 | "Postgres", 147 | "Processing", 148 | "PubNub", 149 | "PushNotifications", 150 | "Python", 151 | "Quora", 152 | "Rack", 153 | "Rails", 154 | "React", 155 | "RedHat", 156 | "Redis", 157 | "Refinery", 158 | "Route53", 159 | "Rspec", 160 | "Ruby", 161 | "Rust", 162 | "Sails", 163 | "Scala", 164 | "Scheme", 165 | "Scratch", 166 | "Sendgrid", 167 | "SES", 168 | "Silverlight", 169 | "Sinatra", 170 | "Slack", 171 | "SNS", 172 | "Solr", 173 | "Spotify", 174 | "SpoonRocket", 175 | "Sqlite", 176 | "SQS", 177 | "SSH", 178 | "Swift", 179 | "SWF", 180 | "TCP", 181 | "TempoDB", 182 | "Tumblr", 183 | "Twilio", 184 | "Twitter", 185 | "Uber", 186 | "Ubuntu", 187 | "UbuWeb", 188 | "Unicorn", 189 | "VBScript", 190 | "Vim", 191 | "VisualBasic", 192 | "Webaudio", 193 | "Webrick", 194 | "Websockets", 195 | "Wolfram Language", 196 | "WordPress", 197 | "XTags", 198 | "Yahoo", 199 | "Yelp", 200 | "YouTube", 201 | "Zepto" 202 | ] 203 | } 204 | --------------------------------------------------------------------------------