├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── jitsi_url_generator.js ├── roomname_generator.js └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Shawn Chin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # jitsi-url-generator 2 | 3 | See: https://shawnchin.github.io/jitsi-url-generator/ 4 | 5 | A simple UI that allows you to make simple customisations and watch how the URL changes. 6 | It only exposes a small fraction of what is possible with Jitsi, but should hopefully help build familiarity which 7 | users can then apply to other config values in the whitelist. 8 | 9 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Jitsi URL Generator 6 | 7 | 9 | 12 | 13 | 15 | 18 | 21 | 22 | 23 | 262 | 263 | 264 | 265 |
266 |

Jitsi URL Generator

267 | 268 |
269 |
270 | 271 |
272 | 273 |
274 |
275 |
276 | 277 |
278 | 279 |
280 | 281 | 282 | 283 | 285 | 286 |
287 |
288 |
289 | 290 |
291 | 292 |
293 |
294 | 295 | 296 | 297 |
298 |
299 | 300 |
301 | 302 | 303 |
304 | 305 |
306 | 307 |
308 |
309 | 310 |
311 |
312 |
User Profile
313 | 314 | 315 | 316 | 317 | 318 | 319 |
320 | 325 |
326 | 327 |
328 |
329 |
Features
330 |
331 | 332 | 335 |
336 | 337 | By default, users start at prejoin page where they enter their display name and update settings 338 | before joining a meeting. Select this to skip that page. 339 | 340 |
341 | 342 |
343 | 344 | 347 |
348 | 349 | Adjusts performance settings so no video is sent or received, allowing more bandwidth for audio call. 350 | 351 |
352 | 353 |
354 | 355 | 358 |
359 | 360 |
361 | 362 | 365 |
366 | 367 |
368 | 369 | 372 |
373 | 374 |
375 | 376 | 379 |
380 | 381 | Jitsi attempts to use as much screen real-estate as possible when displaying video in tile view. 382 | Depending on your screen geometry, this might involve cropping the displayed videos. 383 | Coupled with the face-centering feature, this usually produces good results 384 | but there maybe some use cases where this is not desirable. Check this to disable that feature. 385 | 386 |
387 | 388 |
389 | 390 | 393 |
394 | 395 | Skips the initial permissions check to get user media. Audio/video will be disabled, but can be enabled later. 396 | Useful when joining just for screen sharing, or as a passive attendee. 397 | 398 |
399 | 400 |
401 | 402 | 405 |
406 | 407 |
408 | 413 |
414 | 415 |
416 |
417 |
Interface
418 |
419 | 420 | 423 |
424 | 425 |
426 | 427 | 430 |
431 | 432 | 433 |
434 | 439 |
440 | 441 |
442 | 443 | 444 |
445 | 446 |
447 |
448 |
Customise Toolbar Buttons
449 | 450 |
451 | 452 |
453 | 455 | 458 |
459 | 460 |
461 | 462 | Things to note: 463 |
    464 |
  • Not all items are displayed even if selected e.g. if the feature is disabled in config or 465 | conditionally enabled based on user role or device used. 466 |
  • 467 |
  • 468 | It is not possible to change the order of items in the toolbar. 469 |
  • 470 |
  • 471 | It is not possible to control which items end up in the "More actions" menu. 472 |
  • 473 |
474 |
475 |
476 |
477 | 482 |
483 |
484 |
485 | 486 | 487 |
488 | 489 | 490 |
491 | 492 |
493 |
494 |
495 |

496 | 👋 Hi there. I hope you found this useful. 497 |

498 |

499 | Do note that this page exposes only a small subset of url-based 500 | config overrides afforded by Jitsi. It also makes assumptions about default config values as configured on 501 | meet.jit.si. 502 |

503 | 504 |

505 | The intent of this page is to simply illustrate how options should be formatted and composed, and offer 506 | examples of some of the more common settings. 507 |

508 | 509 |

510 | For a complete list of config values you can change, see 511 | 512 | configWhitelist.ts 513 | and 514 | 515 | interfaceConfigWhitelist.ts. Also see the 516 | 517 | config.js 518 | and 519 | 520 | interface_config.js 521 | config templates which will contain description of each option and their defaults. 522 | 523 |

524 | 525 |

526 | If you spot any issues or outdated options, do feel free to 527 | send a me PR :) 528 |

529 |
530 |
531 |
532 | 533 | 534 | 535 | 536 | 537 | -------------------------------------------------------------------------------- /jitsi_url_generator.js: -------------------------------------------------------------------------------- 1 | function JitsiUrlGenerator(callback, domain, roomName, paramGroups) { 2 | this.callback = callback; 3 | this.domain = domain || ""; 4 | this.roomName = roomName || ""; 5 | this.paramGroups = paramGroups || {}; 6 | } 7 | 8 | JitsiUrlGenerator.prototype.trigger = function () { 9 | // If domain or room name not set, trigger callback with empty url 10 | if (!this.domain || !this.roomName) { 11 | this.callback(""); 12 | return; 13 | } 14 | 15 | let params = []; 16 | for (let group of Object.values(this.paramGroups)) { 17 | params = params.concat(flattenParamGroup(group)); 18 | } 19 | 20 | let url = "https://" + this.domain + "/" + this.roomName; 21 | if (params.length > 0) { 22 | url += '#' + params.join("&"); 23 | } 24 | 25 | this.callback(url); 26 | }; 27 | 28 | 29 | JitsiUrlGenerator.prototype.updateRoomName = function (roomName) { 30 | this.roomName = roomName; 31 | this.trigger(); 32 | return this; 33 | }; 34 | 35 | JitsiUrlGenerator.prototype.updateDomain = function (domain) { 36 | this.domain = domain; 37 | this.trigger(); 38 | return this; 39 | }; 40 | 41 | JitsiUrlGenerator.prototype.updateParamGroup = function (group, params) { 42 | this.paramGroups[group] = params; 43 | this.trigger(); 44 | return this; 45 | }; 46 | 47 | function makeUrlGenerator(callback, domain, roomName, paramGroup) { 48 | let urlGen = new JitsiUrlGenerator(callback, domain, roomName, paramGroup); 49 | urlGen.trigger(); 50 | return urlGen; 51 | } 52 | 53 | 54 | function flattenParamGroup(group) { 55 | let params = []; 56 | for (let p in group) { 57 | if (group.hasOwnProperty(p)) { 58 | params.push(p + '=' + group[p]); 59 | } 60 | } 61 | return params; 62 | } 63 | -------------------------------------------------------------------------------- /roomname_generator.js: -------------------------------------------------------------------------------- 1 | const _PLURALNOUN_ = [ 2 | 'Abilities', 'Absences', 'Abundances', 'Academics', 3 | 'Academies', 'Accents', 'Acceptances', 'Accesses', 'Accidents', 4 | 'Accommodations', 'Accomplishments', 'Accordances', 'Accountabilities', 5 | 'Accountants', 'Accounts', 'Accumulations', 'Accuracies', 'Accusations', 6 | 'Accused', 'Achievements', 'Acids', 'Acquisitions', 'Acres', 'Actions', 7 | 'Activations', 'Activists', 'Activities', 'Actors', 'Actresses', 'Acts', 8 | 'Adaptations', 'Addictions', 'Additions', 'Addresses', 'Adjustments', 9 | 'Administrations', 'Administrators', 'Admissions', 'Adolescents', 10 | 'Adoptions', 'Ads', 'Adults', 'Advances', 'Advantages', 'Adventures', 11 | 'Advertisements', 'Advertisings', 'Advice', 'Advocates', 'Affairs', 12 | 'Affections', 'Aftermaths', 'Afternoons', 'Agencies', 'Agendas', 13 | 'Agents', 'Ages', 'Aggressions', 'Agreements', 'Agricultures', 'Aides', 14 | 'Alarms', 'Albums', 'Alerts', 'Aliens', 'Alignments', 15 | 'Allegations', 'Alliances', 'Allies', 'Allocations', 'Allowances', 16 | 'Alternatives', 'Aluminium', 'Amateurs', 'Ambassadors', 'Ambitions', 17 | 'Ambulances', 'Amendments', 'Amounts', 'Analogies', 'Analyses', 18 | 'Analysts', 'Ancestors', 'Anchors', 'Angels', 'Angers', 'Angles', 19 | 'Animals', 'Animations', 'Ankles', 'Anniversaries', 'Announcements', 20 | 'Answers', 'Anxieties', 'Apartments', 'Apologies', 'Apparatus', 21 | 'Appeals', 'Appearances', 'Appetites', 'Apples', 'Applicants', 22 | 'Applications', 'Appointments', 'Appreciations', 'Approaches', 23 | 'Approvals', 'Apps', 'Aprils', 'Architects', 'Architectures', 24 | 'Archives', 'Areas', 'Arenas', 'Arguments', 'Armies', 25 | 'Arrangements', 'Arrays', 'Arrests', 'Arrivals', 'Arrows', 'Articles', 26 | 'Artists', 'Arts', 'Artworks', 'Ashes', 'Aspects', 'Aspirations', 27 | 'Assaults', 'Assemblies', 'Assertions', 'Assessments', 28 | 'Assets', 'Assignments', 'Assistances', 'Assistants', 'Associations', 29 | 'Assumptions', 'Assurances', 'Asylums', 'Athletes', 'Atmospheres', 30 | 'Attachments', 'Attacks', 'Attempts', 'Attendances', 31 | 'Attentions', 'Attitudes', 'Attorneys', 'Attractions', 'Attributes', 32 | 'Auctions', 'Audiences', 'Audits', 'Augusts', 'Aunts', 'Authorities', 33 | 'Authors', 'Autonomies', 'Autos', 'Autumns', 'Availabilities', 34 | 'Averages', 'Awards', 'Awarenesses', 'Babies', 'Backdrops', 35 | 'Backgrounds', 'Backings', 'Backs', 'Backups', 'Bacterias', 'Badges', 36 | 'Bags', 'Bails', 'Balances', 'Ballets', 'Balloons', 'Ballots', 'Balls', 37 | 'Bananas', 'Bands', 'Banks', 'Banners', 'Bans', 'Bargains', 'Barrels', 38 | 'Barriers', 'Bars', 'Baseballs', 'Basements', 'Bases', 39 | 'Basketballs', 'Baskets', 'Basses', 'Bathrooms', 'Baths', 'Bats', 40 | 'Batteries', 'Battlefields', 'Battles', 'Bays', 'Beaches', 'Beams', 41 | 'Beans', 'Bears', 'Beasts', 'Beats', 'Beauties', 'Bedrooms', 'Beds', 42 | 'Beefs', 'Beers', 'Bees', 'Beginnings', 'Behalves', 'Behaviours', 43 | 'Beings', 'Beliefs', 'Bells', 'Belts', 'Benches', 'Benchmarks', 'Bends', 44 | 'Beneficiaries', 'Benefits', 'Bests', 'Bets', 'Betters', 'Biases', 45 | 'Bicycles', 'Bids', 'Bikes', 'Bills', 'Bins', 'Biographies', 46 | 'Biologies', 'Birds', 'Birthdays', 'Births', 'Biscuits', 'Bishops', 47 | 'Bites', 'Bits', 'Blades', 'Blames', 'Blankets', 'Blanks', 48 | 'Blasts', 'Blends', 'Blessings', 'Blocks', 'Blogs', 'Bloods', 'Blows', 49 | 'Blues', 'Boards', 'Boats', 'Bonds', 50 | 'Bones', 'Bonus', 'Bookings', 'Books', 'Booms', 'Boosts', 'Boots', 51 | 'Borders', 'Bosses', 'Bottles', 'Boundaries', 'Bowls', 52 | 'Bows', 'Boxes', 'Brains', 'Branches', 'Brands', 53 | 'Breaches', 'Breads', 'Breakdowns', 'Breakfasts', 'Breaks', 54 | 'Breakthroughs', 'Breathings', 'Breaths', 'Breeds', 55 | 'Brethren', 'Bricks', 'Brides', 'Bridges', 'Broadbands', 'Broadcasters', 56 | 'Broadcasts', 'Browsers', 'Brushes', 'Bubbles', 'Bucks', 57 | 'Buddies', 'Budgets', 'Buffers', 'Bugs', 'Buildings', 'Bulks', 58 | 'Bullets', 'Bunches', 'Burdens', 'Bureaucracies', 'Burials', 'Burns', 59 | 'Buses', 'Bushes', 'Businesses', 'Businessmen', 'Butters', 'Buttons', 60 | 'Cabinets', 'Cabins', 'Cables', 'Cafes', 'Cakes', 'Calculations', 61 | 'Calls', 'Calms', 'Cameras', 'Campaigns', 'Campings', 'Camps', 'Campus', 62 | 'Canals', 'Candidates', 'Candles', 'Cans', 'Canvas', 63 | 'Capabilities', 'Capacities', 'Capitalisms', 'Capitals', 'Caps', 64 | 'Captains', 'Captures', 'Carbons', 'Cards', 'Careers', 'Cares', 65 | 'Cargoes', 'Carpets', 'Carriages', 'Carrots', 'Cars', 'Cartoons', 66 | 'Cases', 'Cashes', 'Casinos', 'Castles', 'Casts', 67 | 'Catalogues', 'Catches', 'Categories', 'Cats', 'Cattle', 'Causes', 68 | 'Cautions', 'Caves', 'Cds', 'Ceilings', 'Celebrations', 'Celebrities', 69 | 'Cells', 'Cemeteries', 'Centres', 'Cents', 'Centuries', 'Ceremonies', 70 | 'Certainties', 'Certificates', 'Chains', 'Chairmen', 'Chairs', 71 | 'Challenges', 'Chambers', 'Champions', 'Championships', 'Chances', 72 | 'Changes', 'Channels', 'Chaos', 'Chapters', 'Characteristics', 73 | 'Characters', 'Charges', 'Charities', 'Charms', 'Charters', 'Charts', 74 | 'Chases', 'Chats', 'Cheats', 'Checks', 'Cheeks', 'Cheers', 'Cheeses', 75 | 'Chefs', 'Chemicals', 'Chemistries', 'Chests', 'Chickens', 'Chiefs', 76 | 'Childhoods', 'Chips', 'Chocolates', 'Choices', 'Choirs', 'Chunks', 77 | 'Churches', 'Cigarettes', 'Cinemas', 'Circles', 'Circuits', 78 | 'Circulations', 'Circumstances', 'Cities', 'Citizens', 'Citizenships', 79 | 'Civilians', 'Civilizations', 'Claims', 'Clarities', 'Clashes', 80 | 'Classes', 'Classics', 'Classifications', 'Classrooms', 'Clauses', 81 | 'Clerks', 'Clicks', 'Clients', 'Cliffs', 'Climates', 'Climbs', 82 | 'Clinics', 'Clips', 'Clocks', 'Closes', 'Closures', 'Clothes', 83 | 'Clothings', 'Cloths', 'Clouds', 'Clubs', 'Clues', 'Clusters', 84 | 'Coaches', 'Coalitions', 'Coals', 'Coasts', 'Coats', 'Cocktails', 85 | 'Codes', 'Coffees', 'Coincidences', 'Coins', 'Colds', 'Collaborations', 86 | 'Collapses', 'Colleagues', 'Collections', 'Collectors', 'Colleges', 87 | 'Collisions', 'Colonies', 'Colours', 'Columnists', 'Columns', 'Combats', 88 | 'Combinations', 'Comedies', 'Comforts', 'Comics', 'Commanders', 89 | 'Commands', 'Commentaries', 'Commentators', 'Comments', 'Commerces', 90 | 'Commercials', 'Commissioners', 'Commissions', 'Commitments', 91 | 'Committees', 'Commodities', 'Communications', 'Communities', 92 | 'Companies', 'Companions', 'Comparisons', 'Compassions', 93 | 'Compensations', 'Competences', 'Competitions', 'Competitors', 94 | 'Complaints', 'Completions', 'Complexes', 'Complexities', 'Compliances', 95 | 'Complications', 'Components', 'Composers', 'Compositions', 'Compounds', 96 | 'Compromises', 'Computers', 'Concentrations', 'Conceptions', 'Concepts', 97 | 'Concerns', 'Concerts', 'Concessions', 'Conclusions', 'Concretes', 98 | 'Conditions', 'Conducts', 'Conferences', 'Confessions', 'Confidences', 99 | 'Configurations', 'Confirmations', 'Conflicts', 'Confrontations', 100 | 'Confusions', 'Congregations', 'Connections', 'Consciences', 101 | 'Consciousnesses', 'Consensus', 'Consents', 'Consequences', 102 | 'Conservations', 'Conservatives', 'Considerations', 'Consistencies', 103 | 'Conspiracies', 'Constituencies', 'Constitutions', 'Constraints', 104 | 'Constructions', 'Consultants', 'Consultations', 'Consumers', 105 | 'Consumptions', 'Contacts', 'Containers', 'Contempts', 'Contenders', 106 | 'Contentions', 'Contents', 'Contests', 'Contexts', 'Continents', 107 | 'Contractors', 'Contracts', 'Contradictions', 'Contraries', 'Contrasts', 108 | 'Contributions', 'Contributors', 'Controls', 'Controversies', 109 | 'Conveniences', 'Conventions', 'Conversations', 'Conversions', 110 | 'Convictions', 'Cookers', 'Cookings', 'Cooks', 'Coordinations', 111 | 'Coordinators', 'Copies', 'Coppers', 'Cops', 'Copyrights', 'Cores', 112 | 'Corners', 'Corporations', 'Corrections', 'Correlations', 113 | 'Correspondences', 'Correspondents', 'Corridors', 'Corruptions', 114 | 'Costs', 'Costumes', 'Cottages', 'Cottons', 'Councillors', 'Councils', 115 | 'Counsellings', 'Counsellors', 'Counterparts', 'Counters', 'Counties', 116 | 'Countries', 'Countrysides', 'Counts', 'Couples', 'Coups', 'Courages', 117 | 'Courses', 'Courtesies', 'Courts', 'Cousins', 'Coverages', 'Covers', 118 | 'Cows', 'Cracks', 'Crafts', 'Crashes', 'Creams', 'Creations', 119 | 'Creativities', 'Creators', 'Creatures', 'Credibilities', 'Credits', 120 | 'Crews', 'Cries', 'Crises', 'Criteria', 121 | 'Criticisms', 'Critics', 'Critiques', 'Crops', 'Crosses', 'Crowds', 122 | 'Crowns', 'Cruises', 'Crystals', 'Cues', 'Cults', 'Cultures', 123 | 'Cupboards', 'Cups', 'Cures', 'Curiosities', 'Currencies', 'Currents', 124 | 'Curricula', 'Curtains', 'Custodies', 'Customers', 'Customs', 125 | 'Cuts', 'Cuttings', 'Cycles', 'Dads', 'Dairies', 'Damages', 'Dams', 126 | 'Dancers', 'Dances', 'Dancings', 'Dangers', 'Darknesses', 'Darks', 127 | 'Databases', 'Dates', 'Daughters', 'Dawns', 'Days', 128 | 'Deadlines', 'Dealers', 'Deals', 'Debates', 'Debris', 'Debts', 129 | 'Debuts', 'Decades', 'Decembers', 'DecisionMakings', 'Decisions', 130 | 'Decks', 'Declarations', 'Declines', 'Decorations', 'Decreases', 131 | 'Dedications', 'Deeds', 'Defaults', 'Defeats', 'Defects', 'Defences', 132 | 'Defenders', 'Deficiencies', 'Deficits', 'Definitions', 'Degrees', 133 | 'Delays', 'Delegates', 'Delegations', 'Delights', 'Deliveries', 134 | 'Demands', 'Democracies', 'Demons', 'Demonstrations', 'Denials', 135 | 'Densities', 'Dentists', 'Departments', 'Departures', 'Dependences', 136 | 'Deployments', 'Deposits', 'Depressions', 'Depths', 'Deputies', 137 | 'Descents', 'Descriptions', 'Deserts', 'Designers', 'Designs', 138 | 'Desires', 'Desks', 'Desktops', 'Destinations', 'Destructions', 139 | 'Details', 'Detections', 'Detectives', 'Detentions', 'Determinations', 140 | 'Developments', 'Devices', 'Devils', 'Diagnoses', 'Diagrams', 141 | 'Dialogues', 'Diamonds', 'Diaries', 'Dictators', 'Dictionaries', 142 | 'Diets', 'Differences', 'Difficulties', 'Dignities', 'Dilemmas', 143 | 'Dimensions', 'Dinners', 'Diplomats', 'Directions', 'Directories', 144 | 'Directors', 'Dirts', 'Disabilities', 'Disadvantages', 'Disagreements', 145 | 'Disappointments', 'Disciplines', 'Disclosures', 146 | 'Discounts', 'Discourses', 'Discoveries', 'Discretions', 147 | 'Discs', 'Discussions', 'Dishes', 148 | 'Disks', 'Dislikes', 'Dismissals', 'Disorders', 'Displays', 'Disposals', 149 | 'Disputes', 'Disruptions', 'Distances', 'Distinctions', 'Distresses', 150 | 'Distributions', 'Districts', 'Diversities', 'Dives', 'Divides', 151 | 'Divisions', 'Divorces', 'Doctors', 'Doctrines', 'Documentaries', 152 | 'Documentations', 'Documents', 'Dogs', 'Dollars', 'Domains', 153 | 'Dominances', 'Donations', 'Donors', 'Doors', 'Doses', 'Dots', 'Doubts', 154 | 'Downloads', 'Downtowns', 'Dozens', 'Drafts', 'Dramas', 'Drawings', 155 | 'Dreams', 'Dresses', 'Drinks', 'Drivers', 'Drives', 'Drivings', 'Drops', 156 | 'Droughts', 'Drums', 'Duos', 'Durations', 'Dusts', 'Duties', 157 | 'Dvds', 'Dynamics', 'Earnings', 'Ears', 'Earthquakes', 'Earths', 158 | 'Eases', 'Easts', 'Echoes', 'Economics', 'Economies', 'Economists', 159 | 'Edges', 'Editions', 'Editors', 'Educations', 'Educators', 160 | 'Effectivenesses', 'Effects', 'Efficiencies', 'Efforts', 'Eggs', 'Egos', 161 | 'Elbows', 'Elections', 'Electricities', 'Electronics', 'Elements', 162 | 'Elephants', 'Elites', 'Emails', 'Embarrassments', 'Embassies', 163 | 'Emergences', 'Emergencies', 'Emissions', 'Emotions', 'Emphases', 164 | 'Empires', 'Employees', 'Employers', 'Employments', 'Encounters', 165 | 'Encouragements', 'Endeavours', 'Endings', 'Endorsements', 'Ends', 166 | 'Enemies', 'Energies', 'Enforcements', 'Engagements', 'Engineerings', 167 | 'Engineers', 'Engines', 'Enquiries', 'Enterprises', 'Entertainments', 168 | 'Enthusiasms', 'Enthusiasts', 'Entities', 'Entrances', 'Entrepreneurs', 169 | 'Entries', 'Envelopes', 'Environments', 'Epidemics', 'Episodes', 170 | 'Equalities', 'Equals', 'Equations', 'Equipment', 'Equivalents', 'Eras', 171 | 'Errors', 'Escapes', 'Essays', 'Essences', 'Establishments', 'Estates', 172 | 'Estimates', 'Ethics', 'Euros', 'Evaluations', 'Evenings', 'Events', 173 | 'Evidence', 'Evils', 'Evolutions', 'Examinations', 'Examples', 'Exams', 174 | 'Excellences', 'Exceptions', 'Excesses', 'Exchanges', 'Excitements', 175 | 'Exclusions', 'Excuses', 'Executives', 'Exercises', 176 | 'Exhibitions', 'Exhibits', 'Exiles', 'Existences', 'Exits', 177 | 'Expansions', 'Expectations', 'Expeditions', 'Expenditures', 'Expenses', 178 | 'Experiences', 'Experiments', 'Expertises', 'Experts', 'Explanations', 179 | 'Exploitations', 'Explorations', 'Explosions', 'Explosives', 'Exports', 180 | 'Exposures', 'Expressions', 'Extensions', 'Extents', 'Extracts', 181 | 'Extras', 'Extremes', 'Eyes', 'Fabrics', 'Faces', 182 | 'Facilities', 'Factions', 'Factories', 'Factors', 'Facts', 'Faculties', 183 | 'Failures', 'Fairnesses', 'Faiths', 'Falls', 'Fames', 'Families', 184 | 'Fans', 'Fantasies', 'Fares', 'Farmers', 'Farmings', 'Farms', 185 | 'Fashions', 'Fates', 'Fats', 'Faults', 'Favourites', 'Favours', 'Fears', 186 | 'Feathers', 'Feats', 'Features', 'Februaries', 'Feedbacks', 'Feeds', 187 | 'Feelings', 'Feels', 'Fees', 'Feet', 'Feminists', 'Fences', 188 | 'Festivals', 'Fevers', 'Fibres', 'Fictions', 'Fields', 'Fightings', 189 | 'Fights', 'Figures', 'Files', 'FilmMakers', 'Films', 'Filters', 190 | 'Finals', 'Finances', 'Findings', 'Fines', 'Fingers', 'Finishes', 191 | 'Firefighters', 'Fires', 'Fireworks', 'Firms', 'Firsts', 192 | 'Fish', 'Fishings', 'Fitnesses', 'Fits', 'Fixes', 'Fixtures', 'Flags', 193 | 'Flames', 'Flashes', 'Flats', 'Flavours', 'Flaws', 'Fleets', 'Fleshes', 194 | 'Flexibilities', 'Flies', 'Flights', 'Floods', 'Floors', 'Flours', 195 | 'Flowers', 'Flows', 'Fluids', 'Flus', 'Flyings', 'Foci', 'Folds', 196 | 'Folks', 'Followings', 'Foods', 'Fools', 'Footages', 'Footballs', 197 | 'Forces', 'Forecasts', 'Foreigners', 'Forests', 'Forks', 'Formations', 198 | 'Formats', 'Forms', 'Formulae', 'Fortunes', 'Forums', 'Fossils', 199 | 'Foundations', 'Founders', 'Fractions', 'Fragments', 'Frames', 200 | 'Frameworks', 'Franchises', 'Frauds', 'Freedoms', 'Frequencies', 201 | 'Fridays', 'Fridges', 'Friends', 'Friendships', 'Frogs', 'Fronts', 202 | 'Fruits', 'Frustrations', 'Fuels', 'Functions', 'Fundings', 203 | 'Fundraisings', 'Funds', 'Funerals', 'Funs', 'Furnitures', 'Furs', 204 | 'Futures', 'Gains', 'Galleries', 'Gallons', 'Gamblings', 'Games', 205 | 'Gamings', 'Gaps', 'Garages', 'Gardens', 'Gases', 'Gates', 206 | 'Gatherings', 'Gazes', 'Gears', 'Genders', 'Generations', 'Genes', 207 | 'Genius', 'Genres', 'Gentlemen', 'Geographies', 'Gestures', 208 | 'Ghosts', 'Giants', 'Gifts', 'Gigs', 'Glances', 'Glasses', 'Glimpses', 209 | 'Globalizations', 'Globes', 'Glories', 'Gloves', 'Goals', 'Gods', 210 | 'Goes', 'Gold', 'Golfs', 'Goodbyes', 'Goodnesses', 'Goods', 211 | 'Governances', 'Governments', 'Governors', 'Graces', 'Grades', 212 | 'Graduates', 'Grains', 'Grandfathers', 'Grandmothers', 'Grandparents', 213 | 'Grants', 'Graphics', 'Grasps', 'Grasses', 'Graves', 'Gravities', 214 | 'Greenhouses', 'Greens', 'Greys', 'Grids', 'Griefs', 'Grins', 'Grips', 215 | 'Groceries', 'Grounds', 'Groups', 'Growths', 'Guarantees', 'Guards', 216 | 'Guerrillas', 'Guesses', 'Guests', 'Guidances', 'Guidelines', 'Guides', 217 | 'Guilts', 'Guitars', 'Guts', 'Guys', 'Gyms', 'Habitats', 218 | 'Habits', 'Hairs', 'Halls', 'Halts', 'Halves', 'Handfuls', 'Handles', 219 | 'Handlings', 'Hands', 'Happinesses', 'Harassments', 'Harbours', 220 | 'Hardwares', 'Harmonies', 'Harms', 'Harvests', 221 | 'Hats', 'Hazards', 'Headaches', 'Headlines', 'Headquarters', 'Heads', 222 | 'Healthcares', 'Healths', 'Hearings', 'Hearts', 'Heatings', 'Heats', 223 | 'Heavens', 'Heels', 'Heights', 'Helicopters', 'Hellos', 'Hells', 224 | 'Helmets', 'Helps', 'Herbs', 'Heritages', 'Heroes', 'Hierarchies', 225 | 'Highlights', 'Highs', 'Highways', 'Hills', 'Hints', 'Hips', 'Hires', 226 | 'Historians', 'Histories', 'Hits', 'Hobbies', 'Hockeys', 'Holds', 227 | 'Holes', 'Holidays', 'Homelands', 'Homes', 'Homework', 'Honesties', 228 | 'Honours', 'Hooks', 'Hopes', 'Horizons', 'Horns', 'Horrors', 'Horses', 229 | 'Hospitals', 'Hosts', 'Hotels', 'Hours', 230 | 'Households', 'Houses', 'Housings', 'Humanities', 'Humans', 'Humours', 231 | 'Hungers', 'Huntings', 'Hunts', 'Hurricanes', 'Hurries', 'Hurts', 232 | 'Hydrogens', 'Hypotheses', 'Ices', 'Icons', 'Ideals', 'Ideas', 233 | 'Identifications', 'Identities', 'Ideologies', 'Ids', 234 | 'Ignorances', 'Illusions', 'Illustrations', 'Imageries', 235 | 'Images', 'Imaginations', 'Immigrations', 'Impacts', 236 | 'Implementations', 'Implications', 'Importances', 'Imports', 237 | 'Impressions', 'Imprisonments', 'Improvements', 'Inabilities', 238 | 'Incentives', 'Inches', 'Incidences', 'Incidents', 'Inclusions', 239 | 'Incomes', 'Increases', 'Independences', 'Indications', 'Indicators', 240 | 'Indices', 'Indictments', 'Individuals', 'Industries', 'Inequalities', 241 | 'Infections', 'Inflations', 'Influences', 'Information', 242 | 'Infos', 'Infrastructures', 'Ingredients', 'Inhabitants', 'Initiatives', 243 | 'Injections', 'Injuries', 'Injustices', 'Inks', 244 | 'Innovations', 'Inputs', 'Inquiries', 'Insects', 'Insertions', 245 | 'Insiders', 'Insides', 'Insights', 'Inspections', 'Inspectors', 246 | 'Inspirations', 'Installations', 'Instances', 'Instincts', 'Institutes', 247 | 'Institutions', 'Instructions', 'Instructors', 'Instruments', 'Insults', 248 | 'Insurances', 'Intakes', 'Integrations', 'Integrities', 'Intellectuals', 249 | 'Intelligences', 'Intensities', 'Intentions', 'Intents', 'Interactions', 250 | 'Interests', 'Interfaces', 'Interferences', 'Interiors', 251 | 'Interpretations', 'Intervals', 'Interventions', 'Interviews', 252 | 'Introductions', 'Invasions', 'Inventions', 'Investigations', 253 | 'Investigators', 'Investments', 'Investors', 'Invitations', 254 | 'Involvements', 'Ironies', 'Irons', 'Islands', 'Isolations', 'Issues', 255 | 'Items', 'Its', 'Jackets', 'Jails', 'Jams', 'Januaries', 'Jazzes', 256 | 'Jeans', 'Jets', 'Jewelleries', 'Jobs', 'Joints', 'Jokes', 257 | 'Journalisms', 'Journalists', 'Journals', 'Journeys', 'Joys', 258 | 'Judgements', 'Judges', 'Juices', 'Julies', 'Jumps', 'Junctions', 259 | 'Junes', 'Juries', 'Jurisdictions', 'Justices', 'Justifications', 260 | 'Keyboards', 'Keys', 'Kicks', 'Kidneys', 'Kilometres', 261 | 'Kinds', 'Kingdoms', 'Kings', 'Kisses', 'Kitchens', 'Kits', 'Knees', 262 | 'Knives', 'Knocks', 'Knowledges', 'Labels', 'Laboratories', 'Labours', 263 | 'Labs', 'Lacks', 'Ladders', 'Lakes', 'Lamps', 264 | 'Landings', 'Landlords', 'Landmarks', 'Lands', 'Landscapes', 'Lanes', 265 | 'Languages', 'Laps', 'Laptops', 'Lasers', 'Lasts', 'Latests', 'Laughs', 266 | 'Laughters', 'Launches', 'Lawns', 'Laws', 'Lawsuits', 'Lawyers', 267 | 'Layers', 'Layouts', 'Leaders', 'Leaderships', 'Leads', 'Leaflets', 268 | 'Leagues', 'Leaks', 'Leaps', 'Learnings', 'Leathers', 269 | 'Leaves', 'Lectures', 'Lefts', 'Legacies', 'Legends', 'Legislations', 270 | 'Legislatures', 'Legs', 'Leisures', 'Lemons', 'Lengths', 'Lens', 271 | 'Lessons', 'Letters', 'Levels', 'Liberals', 'Liberations', 'Liberties', 272 | 'Libraries', 'Licences', 'Lies', 'Lifestyles', 'Lifetimes', 'Lifts', 273 | 'Lightings', 'Lights', 'Likelihoods', 'Likes', 'Limbs', 'Limitations', 274 | 'Limits', 'LineUps', 'Lines', 'Links', 'Lions', 'Lips', 'Liquids', 275 | 'Listeners', 'Listings', 'Lists', 'Literacies', 'Literatures', 'Litres', 276 | 'Litters', 'Livers', 'Lives', 'Livings', 'Loads', 'Loans', 'Lobbies', 277 | 'Locals', 'Locations', 'Locks', 'Logics', 'Logos', 'Logs', 'Looks', 278 | 'Loops', 'Lords', 'Lorries', 'Losses', 'Lotteries', 'Loves', 'Lows', 279 | 'Loyalties', 'Luck', 'Lunches', 'Lungs', 'Luxuries', 'Lyrics', 280 | 'Machineries', 'Machines', 'Magazines', 'Magics', 'Magistrates', 281 | 'Magnitudes', 'Mails', 'Mainlands', 'Mainstreams', 'Maintenances', 282 | 'Majorities', 'MakeUps', 'Makes', 'Makings', 'Malls', 283 | 'Managements', 'Managers', 'Mandates', 'Manipulations', 'Manners', 284 | 'Manufacturings', 'Manuscripts', 'Maps', 'Marathons', 285 | 'Marches', 'Margins', 'Markers', 'Marketings', 'Marketplaces', 286 | 'Markets', 'Marks', 'Marriages', 'Masks', 'Masses', 287 | 'Masters', 'Matches', 'Materials', 'Mates', 'Mathematics', 'Maths', 288 | 'Matters', 'Maximums', 'Mayors', 'Mays', 'Meals', 'Meanings', 'Means', 289 | 'Meantimes', 'Measurements', 'Measures', 'Meats', 'Mechanics', 290 | 'Mechanisms', 'Medals', 'Media', 'Medications', 'Medicines', 291 | 'Meditations', 'Meetings', 'Melodies', 'Members', 'Memberships', 292 | 'Memoirs', 'Memorials', 'Memories', 'Memos', 'Mentions', 293 | 'Mentors', 'Menus', 'Merchants', 'Mercies', 'Mergers', 'Merits', 294 | 'Messages', 'Messes', 'Metals', 'Metaphors', 'Methodologies', 'Methods', 295 | 'Metres', 'Mice', 'Middles', 'Midnights', 'Midsts', 'Migrations', 296 | 'Miles', 'Milks', 'Mills', 297 | 'Minds', 'Minerals', 'Miners', 'Mines', 'Minimums', 'Minings', 298 | 'Ministers', 'Ministries', 'Minutes', 'Miracles', 299 | 'Mirrors', 'Miseries', 'Missiles', 'Missions', 'Mistakes', 'Mixes', 300 | 'Mixtures', 'Mobiles', 'Mobilities', 'Mobs', 'Modes', 301 | 'Modifications', 'Momenta', 'Moments', 'Mondays', 'Moneys', 'Monitors', 302 | 'Monkeys', 'Monks', 'Monopolies', 'Monsters', 'Months', 'Monuments', 303 | 'Moods', 'Moons', 'Moralities', 'Morals', 'Mornings', 'Mortgages', 304 | 'Mothers', 'Motions', 'Motivations', 'Motives', 305 | 'Motorcycles', 'Motorists', 'Motors', 'Mountains', 'Mouths', 306 | 'Movements', 'Moves', 'Movies', 'Muds', 'Mums', 'Muscles', 307 | 'Museums', 'Music', 'Musicals', 'Musicians', 'Mysteries', 'Myths', 308 | 'Nails', 'Names', 'Narratives', 'Nationals', 'Nations', 309 | 'Natures', 'Navigations', 'Necessities', 'Necks', 'Needles', 'Needs', 310 | 'Negatives', 'Neglects', 'Negotiations', 'Neighbourhoods', 'Neighbours', 311 | 'Nerves', 'Nests', 'Nets', 'Networks', 'News', 'Newsletters', 312 | 'Newspapers', 'Niches', 'Nightmares', 'Nights', 'Noises', 'Nominations', 313 | 'Nominees', 'Nonsenses', 'Noons', 'Normals', 'Norms', 'Norths', 'Noses', 314 | 'Notebooks', 'Notes', 'Notices', 'Notions', 'Novelists', 'Novels', 315 | 'Novembers', 'Numbers', 'Nurseries', 'Nurses', 'Nursings', 'Nutritions', 316 | 'Nuts', 'Obesities', 'Objections', 'Objectives', 'Objects', 317 | 'Obligations', 'Observations', 'Observers', 'Obsessions', 'Obstacles', 318 | 'Occasions', 'Occupations', 'Occurrences', 'Oceans', 'Octobers', 'Odds', 319 | 'Offences', 'Offerings', 'Offers', 'Officers', 'Offices', 320 | 'Officials', 'Offspring', 'Oils', 'Onions', 'Openings', 'Operas', 321 | 'Operations', 'Operators', 'Opinions', 'Opponents', 'Opportunities', 322 | 'Opposites', 'Oppositions', 'Optimisms', 'Options', 'Oranges', 323 | 'Orchestras', 'Orders', 'Organizations', 'Organizers', 'Organs', 324 | 'Orientations', 'Originals', 'Origins', 'Outbreaks', 'Outcomes', 325 | 'Outfits', 'Outings', 'Outlets', 'Outlines', 'Outlooks', 'Outputs', 326 | 'Outrages', 'Outsiders', 'Outsides', 'Ovens', 'Owners', 'Ownerships', 327 | 'Oxygens', 'Paces', 'Packages', 'Packets', 'Packs', 'Pads', 'Pages', 328 | 'Pains', 'Painters', 'Paintings', 'Paints', 'Pairs', 'Palaces', 'Palms', 329 | 'Panels', 'Panics', 'Pans', 'Pants', 'Papers', 'Parades', 'Paragraphs', 330 | 'Parallels', 'Parameters', 'Parents', 'Parishes', 'Parkings', 'Parks', 331 | 'Parliaments', 'Participants', 'Participations', 'Parties', 'Partners', 332 | 'Partnerships', 'Parts', 'Passages', 'Passengers', 'Passes', 'Passings', 333 | 'Passions', 'Passports', 'Passwords', 'Pastors', 'Pasts', 'Patches', 334 | 'Patents', 'Paths', 'Pathways', 'Patiences', 'Patients', 'Patrols', 335 | 'Patrons', 'Patterns', 'Pauses', 'Payments', 'Pays', 'Peaces', 'Peaks', 336 | 'Peasants', 'Peers', 'Penalties', 'Pencils', 'Pennies', 'Pens', 337 | 'Pensions', 'People', 'Peoples', 'Peppers', 'Percentages', 338 | 'Perceptions', 'Performances', 'Periods', 'Permissions', 'Permits', 339 | 'Personalities', 'Personnels', 'Perspectives', 'Petitions', 'Petrols', 340 | 'Pets', 'Phases', 'Phenomena', 'Philosophers', 'Philosophies', 'Phones', 341 | 'Photographers', 'Photographies', 'Photographs', 'Photos', 'Phrases', 342 | 'Physicians', 'Physics', 'Pianos', 'Picks', 'Pictures', 'Pieces', 343 | 'Pigs', 'Piles', 'Pills', 'Pilots', 'Pinks', 'Pins', 'Pioneers', 344 | 'Pipelines', 'Pipes', 'Pirates', 'Pitches', 'Pities', 'Pits', 345 | 'Placements', 'Places', 'Planes', 'Planets', 'Plannings', 'Plans', 346 | 'Plants', 'Plastics', 'Plates', 'Platforms', 'Players', 'Plays', 347 | 'Pleas', 'Pleasures', 'Pledges', 'Plots', 'Plugs', 'Plus', 'Pockets', 348 | 'Poems', 'Poetries', 'Poets', 'Points', 'Poisons', 'Poles', 'Police', 349 | 'Policemen', 'Policies', 'Politicians', 'Politics', 'Polls', 350 | 'Pollutions', 'Ponds', 'Pools', 'Pops', 'Popularities', 'Populations', 351 | 'Portfolios', 'Portions', 'Portraits', 'Ports', 'Positions', 352 | 'Positives', 'Possessions', 'Possibilities', 'Posters', 'Posts', 353 | 'Potatoes', 'Potentials', 'Pots', 'Pounds', 'Poverties', 'Powders', 354 | 'Powers', 'Practices', 'Practitioners', 'Praises', 'Prayers', 355 | 'Precedents', 'Precisions', 'Predators', 'Predecessors', 'Predictions', 356 | 'Preferences', 'Pregnancies', 'Prejudices', 'Premises', 'Premiums', 357 | 'Preparations', 'Prescriptions', 'Presences', 'Presentations', 358 | 'Presents', 'Preservations', 'Presidencies', 'Presidents', 'Presses', 359 | 'Pressures', 'Prevalences', 'Preventions', 'Preys', 'Prices', 'Prides', 360 | 'Priests', 'Princes', 'Princesses', 'Principals', 'Principles', 361 | 'Printers', 'Printings', 'Prints', 'Priorities', 'Prisons', 362 | 'Privacies', 'Privatizations', 'Privileges', 'Prizes', 'Probabilities', 363 | 'Probes', 'Problems', 'Procedures', 'Proceedings', 'Proceeds', 364 | 'Processes', 'Processings', 'Processors', 'Producers', 'Produces', 365 | 'Productions', 'Productivities', 'Products', 'Professionals', 366 | 'Professions', 'Professors', 'Profiles', 'Profits', 'Programmes', 367 | 'Programmings', 'Programs', 'Progresses', 'Projections', 'Projects', 368 | 'Promises', 'Promotions', 'Proofs', 'Propagandas', 'Properties', 369 | 'Proportions', 'Proposals', 'Propositions', 'Prosecutions', 370 | 'Prosecutors', 'Prospects', 'Prosperities', 'Protections', 'Proteins', 371 | 'Protesters', 'Protests', 'Protocols', 'Provinces', 'Provisions', 372 | 'Psychologies', 'Psychologists', 'Publications', 'Publicities', 373 | 'Publics', 'Publishings', 'Pubs', 'Pulls', 'Pulses', 'Pumps', 'Punches', 374 | 'Punishments', 'Punks', 'Pupils', 'Purchases', 'Purples', 'Purposes', 375 | 'Pursuits', 'Pushes', 'Puzzles', 'Qualifications', 'Qualities', 376 | 'Quantities', 'Quarters', 'Queens', 'Queries', 'Questionnaires', 377 | 'Questions', 'Quests', 'Queues', 'Quotas', 'Quotations', 'Quotes', 378 | 'Races', 'Racings', 'Radars', 'Radiations', 379 | 'Radios', 'Rages', 'Raids', 'Rails', 'Railways', 'Rains', 'Rallies', 380 | 'Ranges', 'Rankings', 'Ranks', 'Rates', 'Ratings', 'Ratios', 381 | 'Rats', 'Rays', 'Reaches', 'Reactions', 'Readers', 'Readings', 382 | 'Realities', 'Realizations', 'Realms', 'Rears', 'Reasonings', 'Reasons', 383 | 'Rebellions', 'Rebels', 'Receipts', 'Receivers', 'Receptions', 384 | 'Recessions', 'Recipes', 'Recipients', 'Recognitions', 385 | 'Recommendations', 'Reconstructions', 'Recordings', 'Records', 386 | 'Recoveries', 'Recruitments', 'Recruits', 'Reductions', 387 | 'Referees', 'References', 'Referendums', 'Reflections', 'Reforms', 388 | 'Refusals', 'Regards', 'Regimes', 'Regions', 389 | 'Registers', 'Registrations', 'Regrets', 'Regulations', 'Regulators', 390 | 'Rehabilitations', 'Reigns', 'Rejections', 'Relations', 'Relationships', 391 | 'Relatives', 'Releases', 'Relevances', 'Reliabilities', 'Reliefs', 392 | 'Religions', 'Remainders', 'Remains', 'Remarks', 'Remedies', 393 | 'Reminders', 'Removals', 'Rentals', 'Rents', 'Repairs', 'Repeats', 394 | 'Replacements', 'Replies', 'Reporters', 'Reportings', 'Reports', 395 | 'Representations', 'Representatives', 'Reproductions', 'Republics', 396 | 'Reputations', 'Requests', 'Requirements', 'Rescues', 'Researchers', 397 | 'Researches', 'Reservations', 'Reserves', 'Residences', 'Residents', 398 | 'Residues', 'Resignations', 'Resistances', 'Resolutions', 'Resorts', 399 | 'Resources', 'Respects', 'Responses', 'Responsibilities', 'Restaurants', 400 | 'Restorations', 'Restraints', 'Restrictions', 'Rests', 'Results', 401 | 'Retails', 'Retirements', 'Retreats', 'Returns', 'Revelations', 402 | 'Revenges', 'Revenues', 'Reverses', 'Reviews', 'Revisions', 'Revivals', 403 | 'Revolutions', 'Rewards', 'Rhetorics', 'Rhythms', 'Rices', 'Rides', 404 | 'Rifles', 'Rights', 'Rings', 'Riots', 'Rises', 'Risks', 'Rituals', 405 | 'Rivals', 'Rivers', 'Roads', 'Robberies', 'Robots', 'Rockets', 'Rocks', 406 | 'Rods', 'Roles', 'Rolls', 'Romances', 'Roofs', 'Rooms', 'Roots', 407 | 'Ropes', 'Roses', 'Rotations', 'Rounds', 'Routes', 'Routines', 'Rows', 408 | 'Rubbers', 'Rubbishes', 'Rugbies', 'Ruins', 'Rules', 'Rulings', 409 | 'Rumours', 'Runners', 'Runnings', 'Runs', 'Rushes', 'Sacrifices', 410 | 'Safeties', 'Sailings', 'Sailors', 'Sails', 'Saints', 'Sakes', 'Salads', 411 | 'Salaries', 'Sales', 'Salts', 'Samples', 'Sanctions', 'Sands', 412 | 'Sandwiches', 'Satellites', 'Satisfactions', 'Saturdays', 'Sauces', 413 | 'Savings', 'Says', 'Scales', 'Scandals', 'Scares', 'Scenarios', 414 | 'Scenes', 'Schedules', 'Schemes', 'Scholars', 'Scholarships', 'Schools', 415 | 'Sciences', 'Scientists', 'Scopes', 'Scores', 'Scratches', 'Screams', 416 | 'Screenings', 'Screens', 'Screws', 'Scripts', 'Scrutinies', 417 | 'Sculptures', 'Seals', 'Searches', 'Seas', 'Seasons', 'Seats', 418 | 'Seconds', 'Secretaries', 'Secrets', 'Sections', 'Sectors', 419 | 'Securities', 'Seeds', 'Seekers', 'Segments', 'Selections', 'Selves', 420 | 'Seminars', 'Senators', 'Sensations', 'Senses', 'Sensitivities', 421 | 'Sentences', 'Sentiments', 'Separations', 'Septembers', 'Sequences', 422 | 'Series', 'Servants', 'Services', 'Sessions', 'SetUps', 'Sets', 423 | 'Settings', 'Settlements', 'Settlers', 'Shades', 424 | 'Shadows', 'Shakes', 'Shames', 'Shapes', 'Shareholders', 'Shares', 425 | 'Sheep', 'Sheets', 'Shells', 'Shelters', 'Shelves', 'Shifts', 426 | 'Shippings', 'Ships', 'Shirts', 'Shocks', 'Shoes', 'Shootings', 427 | 'Shoots', 'Shoppings', 'Shops', 'Shores', 'Shortages', 'Shots', 428 | 'Shoulders', 'Shouts', 'Showers', 'Shows', 'Siblings', 'Sides', 'Sighs', 429 | 'Sights', 'Signals', 'Signatures', 'Significances', 'Signs', 'Silences', 430 | 'Silks', 'Silver', 'Similarities', 'Simulations', 'Singers', 'Singings', 431 | 'Singles', 'Sins', 'Sirs', 'Sites', 'Situations', 'Sizes', 432 | 'Sketches', 'Skies', 'Skiings', 'Skills', 'Skins', 'Skirts', 'Skis', 433 | 'Skulls', 'Sleeps', 'Slices', 'Slides', 434 | 'Slogans', 'Slopes', 'Slots', 'Smartphones', 'Smells', 'Smiles', 435 | 'Smokes', 'Smokings', 'Snakes', 'Snows', 'Soaps', 'Soccers', 436 | 'Societies', 'Socks', 'Softwares', 'Soils', 'Soldiers', 'Solicitors', 437 | 'Solidarities', 'Solids', 'Solos', 'Solutions', 'Songs', 'Sons', 438 | 'Sorts', 'Souls', 'Sounds', 'Soups', 'Sources', 439 | 'Sovereignties', 'Spaces', 'Spams', 'Spans', 'Speakers', 'Specialists', 440 | 'Species', 'Specifications', 'Specimens', 'Spectacles', 'Spectators', 441 | 'Spectra', 'Speculations', 'Speeches', 'Speeds', 'Spellings', 'Spells', 442 | 'Spendings', 'Spheres', 'Spices', 'Spiders', 'Spies', 'Spines', 'Spins', 443 | 'Spirits', 'Spites', 'Splits', 'Spokesmen', 'Spokespeople', 'Sponsors', 444 | 'Sponsorships', 'Spoons', 'Sports', 'Spotlights', 'Spots', 'Spouses', 445 | 'Spreads', 'Springs', 'Squads', 'Squares', 'Stabilities', 'Stadiums', 446 | 'Staffs', 'Stages', 'Stairs', 'Stakes', 'Stalls', 'Stamps', 'Stances', 447 | 'Standards', 'Stands', 'Stars', 'Starts', 'Statements', 'States', 448 | 'Stations', 'Statistics', 'Statues', 'Status', 'Stays', 'Steams', 449 | 'Steels', 'Stems', 'Steps', 'Stereotypes', 'Sticks', 'Stimuli', 450 | 'Stocks', 'Stomachs', 'Stones', 'Stops', 'Storages', 'Stores', 451 | 'Stories', 'Storms', 'Strains', 'Strands', 'Strangers', 'Strategies', 452 | 'Streams', 'Streets', 'Strengths', 'Stresses', 'Stretches', 'Strikes', 453 | 'Strings', 'Strips', 'Strokes', 'Structures', 'Struggles', 'Students', 454 | 'Studies', 'Studios', 'Stuffs', 'Styles', 'Subjects', 'Submissions', 455 | 'Subscribers', 'Subscriptions', 'Subsidies', 'Substances', 456 | 'Substitutes', 'Substitutions', 'Suburbs', 'Successes', 'Successions', 457 | 'Successors', 'Sufferings', 'Sugars', 'Suggestions', 458 | 'Suites', 'Suits', 'Summaries', 'Summers', 'Summits', 'Sums', 'Sundays', 459 | 'Suns', 'Supermarkets', 'Supervisions', 'Supervisors', 'Supplements', 460 | 'Supplies', 'Supporters', 'Supports', 'Surfaces', 'Surgeons', 461 | 'Surgeries', 'Surges', 'Surplus', 'Surprises', 'Surveillances', 462 | 'Surveys', 'Survivals', 'Survivors', 'Suspects', 'Suspensions', 463 | 'Suspicions', 'Sweaters', 'Sweets', 'Swimmings', 'Swims', 'Swings', 464 | 'Switches', 'Swords', 'Symbols', 'Sympathies', 'Symptoms', 'Syndromes', 465 | 'Syntheses', 'Systems', 'TShirts', 'Tables', 'Tablets', 'Tackles', 466 | 'Tactics', 'Tags', 'Tails', 'Talents', 'Tales', 'Talks', 'Tanks', 467 | 'Tapes', 'Taps', 'Targets', 'Tasks', 'Tastes', 'Taxes', 'Taxis', 468 | 'Taxpayers', 'Teachers', 'Teachings', 'Teams', 'Tears', 'Teas', 469 | 'Techniques', 'Technologies', 'Teenagers', 'Teens', 'Teeth', 470 | 'Telephones', 'Televisions', 'Temperatures', 'Temples', 'Tenants', 471 | 'Tendencies', 'Tennis', 'Tensions', 'Tents', 'Tenures', 'Terminals', 472 | 'Terms', 'Terrains', 'Territories', 473 | 'Testimonies', 'Testings', 'Tests', 'Textbooks', 'Texts', 474 | 'Textures', 'Thanks', 'Theatres', 'Thefts', 'Themes', 'Theologies', 475 | 'Theories', 'Therapies', 'Therapists', 'Theses', 'Thieves', 'Things', 476 | 'Thinkings', 'Thirds', 'Thoughts', 'Threads', 'Threats', 'Thresholds', 477 | 'Throats', 'Thumbs', 'Thursdays', 'Tickets', 'Tides', 'Ties', 'Timbers', 478 | 'Times', 'Timings', 'Tins', 'Tips', 'Tissues', 'Titles', 'Tobaccos', 479 | 'Todays', 'Toes', 'Toilets', 'Tolerances', 'Tolls', 'Tomatoes', 480 | 'Tomorrows', 'Tones', 'Tongues', 'Tonights', 'Tonnes', 'Tons', 'Tools', 481 | 'Topics', 'Tops', 'Tortoises', 'Totals', 'Touches', 'Tourisms', 482 | 'Tourists', 'Tournaments', 'Tours', 'Towels', 'Towers', 'Towns', 'Toys', 483 | 'Traces', 'Tracks', 'Trademarks', 'Trades', 'Tradings', 'Traditions', 484 | 'Traffics', 'Tragedies', 'Trailers', 'Trails', 'Trainers', 'Trainings', 485 | 'Trains', 'Traits', 'Transactions', 'Transcripts', 'Transfers', 486 | 'Transformations', 'Transitions', 'Transits', 'Translations', 487 | 'Transmissions', 'Transparencies', 'Transportations', 'Transports', 488 | 'Traps', 'Traumas', 'Travellers', 'Travels', 'Treasures', 'Treaties', 489 | 'Treatments', 'Trees', 'Trends', 'Trials', 'Tribes', 'Tribunals', 490 | 'Tributes', 'Tricks', 'Tries', 'Triggers', 'Trios', 'Trips', 'Triumphs', 491 | 'Troops', 'Trophies', 'Troubles', 'Trousers', 'Trucks', 'Trustees', 492 | 'Trusts', 'Truths', 'Tsunamis', 'Tubes', 'Tuesdays', 'Tuitions', 493 | 'Tunes', 'Tunnels', 'Turnouts', 'Turnovers', 'Turns', 'Tvs', 494 | 'Twists', 'Types', 'Tyres', 'Umbrellas', 'Uncertainties', 'Uncles', 495 | 'Undergraduates', 'Understandings', 'Underwears', 'Unemployments', 496 | 'Uniforms', 'Unions', 'Unities', 'Units', 'Universes', 'Universities', 497 | 'Updates', 'Upgrades', 'Usages', 'Users', 'Uses', 'Utilities', 498 | 'Vacations', 'Vacuums', 'Validities', 'Valleys', 'Values', 'Vans', 499 | 'Variables', 'Variations', 'Varieties', 'Vegetables', 'Vehicles', 500 | 'Veins', 'Ventures', 'Venues', 'Verdicts', 'Verses', 'Versions', 501 | 'Vessels', 'Veterans', 'Vices', 'Victories', 'Videos', 502 | 'Viewers', 'Viewpoints', 'Views', 'Villagers', 'Villages', 'Violations', 503 | 'Violences', 'Virtues', 'Viruses', 'Visas', 'Visions', 'Visitors', 504 | 'Visits', 'Vitamins', 'Voices', 'Volumes', 'Volunteers', 'Votes', 505 | 'Votings', 'Vulnerabilities', 'Wages', 'Waiters', 'Waits', 'Walks', 506 | 'Walls', 'Wards', 'Warehouses', 'Warfares', 'Warmings', 'Warnings', 507 | 'Warrants', 'Warriors', 'Washes', 'Washings', 'Wastes', 508 | 'Watches', 'Waters', 'Waves', 'Ways', 'Weaknesses', 'Wealths', 509 | 'Weathers', 'Webs', 'Websites', 'Weddings', 'Wednesdays', 510 | 'Weeds', 'Weekends', 'Weeks', 'Weights', 'Welcomes', 'Welfares', 511 | 'WellBeings', 'Wells', 'Wests', 'Wheat', 'Wheels', 'Whispers', 512 | 'Wholes', 'Widows', 'Widths', 'Wildlives', 'Willingnesses', 513 | 'Wills', 'Windows', 'Winds', 'Wines', 'Wings', 'Winners', 'Wins', 514 | 'Winters', 'Wires', 'Wisdoms', 'Wishes', 'Withdrawals', 'Witnesses', 515 | 'Wits', 'Wonders', 'Woods', 'Wools', 'Words', 'Workers', 'Workforces', 516 | 'Workouts', 'Workplaces', 'Works', 'Workshops', 'Worlds', 'Worms', 517 | 'Worries', 'Worses', 'Worships', 'Worsts', 'Worths', 'Wounds', 'Wrists', 518 | 'Writers', 'Writings', 'Wrongs', 'Yards', 'Years', 'Yellows', 519 | 'Yesterdays', 'Yields', 'Zones' 520 | ]; 521 | 522 | const _VERB_ = [ 523 | 'Abolish', 'Absorb', 'Accelerate', 'Accept', 524 | 'Access', 'Accommodate', 'Accompany', 'Accomplish', 'Account', 525 | 'Accumulate', 'Accuse', 'Achieve', 'Acknowledge', 'Acquire', 'Act', 526 | 'Activate', 'Adapt', 'Add', 'Address', 'Adhere', 'Adjust', 'Administer', 527 | 'Admire', 'Admit', 'Adopt', 'Advance', 'Advertise', 'Advise', 528 | 'Advocate', 'Affect', 'Afford', 'Age', 'Agree', 'Aid', 'Aim', 'Alarm', 529 | 'Alert', 'Align', 'Allege', 'Allocate', 'Allow', 'Alter', 'Amend', 530 | 'Amount', 'Analyse', 'Announce', 'Annoy', 'Answer', 'Anticipate', 531 | 'Apologize', 'Appeal', 'Appear', 'Applaud', 'Apply', 'Appoint', 532 | 'Appreciate', 'Approach', 'Approve', 'Argue', 'Arise', 'Arm', 'Arrange', 533 | 'Arrest', 'Arrive', 'Articulate', 'Ask', 'Aspire', 534 | 'Assemble', 'Assert', 'Assess', 'Assign', 'Assist', 'Associate', 535 | 'Assume', 'Assure', 'Attach', 'Attain', 'Attempt', 'Attend', 536 | 'Attract', 'Attribute', 'Authorize', 'Average', 'Avoid', 'Await', 537 | 'Award', 'Back', 'Bake', 'Balance', 'Ban', 'Bar', 'Base', 'Bat', 538 | 'Battle', 'Be', 'Bear', 'Beat', 'Become', 'Beg', 'Begin', 'Behave', 539 | 'Believe', 'Belong', 'Bend', 'Benefit', 'Bet', 'Betray', 'Bid', 'Bill', 540 | 'Bind', 'Bite', 'Blame', 'Blast', 'Blend', 'Bless', 'Block', 541 | 'Blow', 'Board', 'Boast', 'Boil', 'Book', 'Boost', 'Border', 542 | 'Borrow', 'Bother', 'Bounce', 'Bow', 'Brand', 'Breach', 'Break', 543 | 'Breathe', 'Breed', 'Bring', 'Broadcast', 'Brush', 'Build', 'Burn', 544 | 'Burst', 'Bury', 'Buy', 'Calculate', 'Call', 'Calm', 'Camp', 'Campaign', 545 | 'Cancel', 'Capture', 'Care', 'Carry', 'Carve', 'Cast', 'Catch', 'Cater', 546 | 'Cause', 'Cease', 'Celebrate', 'Centre', 'Chain', 'Chair', 'Challenge', 547 | 'Change', 'Characterize', 'Charge', 'Chart', 'Chase', 'Chat', 'Cheat', 548 | 'Check', 'Cheer', 'Choose', 'Chop', 'Circle', 'Circulate', 'Cite', 549 | 'Claim', 'Clarify', 'Classify', 'Clean', 'Clear', 'Click', 'Climb', 550 | 'Cling', 'Close', 'Coach', 'Coincide', 'Collaborate', 'Collapse', 551 | 'Collect', 'Combat', 'Combine', 'Come', 'Comfort', 'Command', 552 | 'Commence', 'Comment', 'Commission', 'Commit', 'Communicate', 'Compare', 553 | 'Compel', 'Compensate', 'Compete', 'Compile', 'Complain', 'Complement', 554 | 'Complete', 'Comply', 'Compose', 'Comprise', 'Compromise', 'Compute', 555 | 'Conceal', 'Concede', 'Conceive', 'Concentrate', 'Concern', 'Conclude', 556 | 'Condemn', 'Conduct', 'Confer', 'Confess', 'Confine', 'Confirm', 557 | 'Conflict', 'Confront', 'Confuse', 'Congratulate', 'Connect', 'Conquer', 558 | 'Consent', 'Conserve', 'Consider', 'Consist', 'Consolidate', 559 | 'Constitute', 'Construct', 'Consult', 'Consume', 'Contact', 'Contain', 560 | 'Contemplate', 'Contend', 'Contest', 'Continue', 'Contract', 'Contrast', 561 | 'Contribute', 'Control', 'Convert', 'Convey', 'Convict', 'Convince', 562 | 'Cook', 'Cool', 'Cooperate', 'Coordinate', 'Cope', 'Copy', 'Correct', 563 | 'Correlate', 'Correspond', 'Cost', 'Count', 'Counter', 'Cover', 'Crack', 564 | 'Craft', 'Crash', 'Crawl', 'Create', 'Credit', 'Creep', 'Criticize', 565 | 'Cross', 'Cruise', 'Crush', 'Cry', 'Cultivate', 'Cure', 'Curve', 'Cut', 566 | 'Cycle', 'Damage', 'Dance', 'Dare', 'Date', 'Deal', 'Debate', 'Decide', 567 | 'Declare', 'Decline', 'Decorate', 'Decrease', 'Deem', 'Defeat', 568 | 'Defend', 'Define', 'Defy', 'Delay', 'Delete', 'Delight', 'Deliver', 569 | 'Demand', 'Demonstrate', 'Denounce', 'Deny', 'Depart', 'Depend', 570 | 'Depict', 'Deploy', 'Deposit', 'Deprive', 'Derive', 'Descend', 571 | 'Describe', 'Desert', 'Deserve', 'Design', 'Designate', 'Desire', 572 | 'Destroy', 'Detail', 'Detain', 'Detect', 'Deteriorate', 'Determine', 573 | 'Devastate', 'Develop', 'Devise', 'Devote', 'Diagnose', 'Dictate', 574 | 'Differ', 'Differentiate', 'Dig', 'Diminish', 'Dip', 'Direct', 575 | 'Disagree', 'Disappear', 'Disappoint', 'Discard', 'Discharge', 576 | 'Disclose', 'Discount', 'Discourage', 'Discover', 'Discuss', 'Dislike', 577 | 'Dismiss', 'Displace', 'Display', 'Dispose', 'Dispute', 'Disrupt', 578 | 'Dissolve', 'Distinguish', 'Distort', 'Distract', 'Distress', 579 | 'Distribute', 'Disturb', 'Dive', 'Divert', 'Divide', 'Divorce', 'Do', 580 | 'Document', 'Dominate', 'Donate', 'Double', 'Doubt', 'Download', 581 | 'Draft', 'Drag', 'Drain', 'Draw', 'Dream', 'Dress', 'Drift', 'Drink', 582 | 'Drive', 'Drop', 'Dry', 'Dub', 'Dump', 'Earn', 'Ease', 'Eat', 583 | 'Echo', 'Edit', 'Educate', 'Elect', 'Elevate', 'Eliminate', 'Email', 584 | 'Embark', 'Embed', 'Embody', 'Embrace', 'Emerge', 'Emphasize', 'Employ', 585 | 'Empower', 'Empty', 'Enable', 'Enact', 'Encompass', 'Encounter', 586 | 'Encourage', 'End', 'Endorse', 'Endure', 'Enforce', 'Engage', 'Enhance', 587 | 'Enjoy', 'Enquire', 'Enrich', 'Enrol', 'Ensue', 'Ensure', 'Enter', 588 | 'Entertain', 'Entitle', 'Equal', 'Equip', 'Erect', 'Erupt', 'Escalate', 589 | 'Escape', 'Establish', 'Estimate', 'Evacuate', 'Evaluate', 'Evoke', 590 | 'Evolve', 'Exaggerate', 'Examine', 'Exceed', 'Exchange', 'Exclude', 591 | 'Excuse', 'Execute', 'Exercise', 'Exert', 'Exhibit', 'Exist', 'Exit', 592 | 'Expand', 'Expect', 'Experience', 'Experiment', 'Expire', 'Explain', 593 | 'Explode', 'Exploit', 'Explore', 'Export', 'Expose', 'Express', 594 | 'Extend', 'Extract', 'Face', 'Facilitate', 'Fade', 'Fail', 'Fall', 595 | 'Fancy', 'Farm', 'Fasten', 'Favour', 'Fear', 'Feature', 'Feed', 'Feel', 596 | 'Fight', 'Figure', 'File', 'Fill', 'Film', 'Filter', 'Finance', 'Find', 597 | 'Fine', 'Finish', 'Fire', 'Fish', 'Fit', 'Fix', 'Flash', 'Flee', 598 | 'Float', 'Flood', 'Flourish', 'Flow', 'Fly', 'Focus', 'Fold', 'Follow', 599 | 'Forbid', 'Force', 'Forecast', 'Forge', 'Forget', 'Forgive', 'Form', 600 | 'Formulate', 'Foster', 'Found', 'Frame', 'Free', 'Freeze', 'Frighten', 601 | 'Fry', 'Fuel', 'Fulfil', 'Function', 'Fund', 'Gain', 'Gather', 'Gaze', 602 | 'Generate', 'Get', 'Give', 'Glance', 'Go', 'Govern', 'Grab', 'Grade', 603 | 'Graduate', 'Grant', 'Grasp', 'Greet', 'Grin', 'Grind', 'Grip', 'Grow', 604 | 'Guarantee', 'Guard', 'Guess', 'Guide', 'Hail', 'Halt', 'Hand', 605 | 'Handle', 'Hang', 'Happen', 'Harvest', 'Haunt', 'Have', 606 | 'Head', 'Heal', 'Hear', 'Heat', 'Heighten', 'Help', 'Hesitate', 'Hide', 607 | 'Highlight', 'Hint', 'Hire', 'Hit', 'Hold', 'Honour', 'Hook', 'Hope', 608 | 'Host', 'House', 'Hunt', 'Hurry', 'Identify', 'Ignore', 609 | 'Illustrate', 'Imagine', 'Impact', 'Implement', 'Imply', 'Import', 610 | 'Impose', 'Impress', 'Improve', 'Include', 'Incorporate', 611 | 'Increase', 'Incur', 'Indicate', 'Induce', 'Indulge', 'Infect', 'Infer', 612 | 'Inflict', 'Influence', 'Inform', 'Inherit', 'Inhibit', 'Initiate', 613 | 'Inject', 'Injure', 'Insert', 'Insist', 'Inspect', 'Inspire', 'Install', 614 | 'Instruct', 'Insult', 'Integrate', 'Intend', 'Intensify', 'Interact', 615 | 'Interest', 'Interfere', 'Interpret', 'Interrupt', 'Intervene', 616 | 'Interview', 'Introduce', 'Invade', 'Invent', 'Invest', 'Investigate', 617 | 'Invite', 'Invoke', 'Involve', 'Iron', 'Isolate', 'Issue', 618 | 'Join', 'Joke', 'Judge', 'Jump', 'Justify', 'Keep', 'Key', 'Kick', 619 | 'Kiss', 'Knock', 'Know', 'Label', 'Lack', 'Land', 620 | 'Last', 'Laugh', 'Launch', 'Lay', 'Lead', 'Leak', 'Lean', 'Leap', 621 | 'Learn', 'Leave', 'Lecture', 'Lend', 'Let', 'Level', 'License', 'Lift', 622 | 'Light', 'Like', 'Limit', 'Line', 'Linger', 'Link', 'List', 'Listen', 623 | 'Live', 'Load', 'Lobby', 'Locate', 'Lock', 'Log', 'Look', 'Loom', 624 | 'Lose', 'Love', 'Lower', 'Mail', 'Maintain', 'Make', 'Manage', 625 | 'Manifest', 'Manipulate', 'Manufacture', 'Map', 'March', 'Mark', 626 | 'Market', 'Marry', 'Master', 'Match', 'Mate', 'Matter', 'Mature', 627 | 'Maximize', 'Mean', 'Measure', 'Meet', 'Melt', 'Mention', 'Merge', 628 | 'Mind', 'Minimize', 'Miss', 'Mistake', 'Mix', 'Mobilize', 'Model', 629 | 'Modify', 'Monitor', 'Motivate', 'Mount', 'Move', 'Multiply', 630 | 'Name', 'Narrow', 'Need', 'Neglect', 'Negotiate', 'Nod', 'Nominate', 631 | 'Note', 'Notice', 'Notify', 'Number', 'Obey', 'Object', 'Oblige', 632 | 'Observe', 'Obsess', 'Obtain', 'Occupy', 'Occur', 'Offend', 'Offer', 633 | 'Open', 'Operate', 'Oppose', 'Opt', 'Order', 'Organize', 'Originate', 634 | 'Outline', 'Outrage', 'Overcome', 'Overlook', 'Oversee', 'Overturn', 635 | 'Overwhelm', 'Owe', 'Own', 'Pace', 'Pack', 'Package', 'Paint', 'Park', 636 | 'Participate', 'Pass', 'Patrol', 'Pause', 'Pay', 'Perceive', 'Perform', 637 | 'Permit', 'Persist', 'Persuade', 'Phone', 'Photograph', 'Pick', 638 | 'Picture', 'Pile', 'Pin', 'Pioneer', 'Place', 'Plan', 'Plant', 'Play', 639 | 'Plead', 'Please', 'Pledge', 'Plot', 'Plug', 'Plunge', 'Point', 640 | 'Pop', 'Portray', 'Pose', 'Position', 'Possess', 'Post', 641 | 'Postpone', 'Pour', 'Power', 'Practise', 'Praise', 'Pray', 'Preach', 642 | 'Precede', 'Predict', 'Prefer', 'Prepare', 'Prescribe', 'Present', 643 | 'Preserve', 'Preside', 'Press', 'Presume', 'Pretend', 'Prevail', 644 | 'Prevent', 'Price', 'Print', 'Probe', 'Proceed', 'Process', 'Proclaim', 645 | 'Produce', 'Program', 'Progress', 'Prohibit', 'Project', 'Promise', 646 | 'Promote', 'Prompt', 'Pronounce', 'Propose', 'Prosecute', 'Protect', 647 | 'Protest', 'Prove', 'Provide', 'Provoke', 'Publish', 'Pull', 'Pump', 648 | 'Punch', 'Punish', 'Purchase', 'Pursue', 'Push', 'Put', 'Qualify', 649 | 'Question', 'Queue', 'Quit', 'Quote', 'Race', 'Raid', 'Rain', 'Raise', 650 | 'Rally', 'Range', 'Rank', 'Rate', 'Reach', 'React', 'Read', 651 | 'Realize', 'Reassure', 'Rebuild', 'Recall', 'Receive', 'Reckon', 652 | 'Recognize', 'Recommend', 'Record', 'Recount', 'Recover', 'Recruit', 653 | 'Recycle', 'Reduce', 'Refer', 'Reflect', 'Reform', 'Refuse', 'Regain', 654 | 'Regard', 'Register', 'Regret', 'Regulate', 'Reign', 'Reinforce', 655 | 'Reject', 'Relate', 'Relax', 'Release', 'Relieve', 'Rely', 'Remain', 656 | 'Remark', 'Remember', 'Remind', 'Remove', 'Render', 'Renew', 'Rent', 657 | 'Repair', 'Repeat', 'Replace', 'Reply', 'Report', 'Represent', 658 | 'Reproduce', 'Request', 'Require', 'Rescue', 'Research', 'Resemble', 659 | 'Reserve', 'Reside', 'Resign', 'Resist', 'Resolve', 'Respect', 660 | 'Respond', 'Rest', 'Restore', 'Restrict', 'Result', 'Resume', 'Retain', 661 | 'Retire', 'Retreat', 'Retrieve', 'Return', 'Reveal', 'Reverse', 662 | 'Review', 'Revise', 'Revive', 'Reward', 'Rid', 'Ride', 'Ring', 'Rip', 663 | 'Rise', 'Risk', 'Rob', 'Rock', 'Roll', 'Rotate', 'Rub', 'Ruin', 'Rule', 664 | 'Run', 'Rush', 'Sack', 'Sacrifice', 'Sail', 'Sample', 'Satisfy', 'Save', 665 | 'Say', 'Scan', 'Scare', 'Schedule', 'Score', 'Scratch', 'Scream', 666 | 'Screen', 'Screw', 'Seal', 'Search', 'Seat', 'Secure', 'See', 'Seek', 667 | 'Seize', 'Select', 'Sell', 'Send', 'Sense', 'Sentence', 'Separate', 668 | 'Serve', 'Set', 'Settle', 'Shake', 'Shape', 'Share', 'Shatter', 'Shed', 669 | 'Shelter', 'Shift', 'Shine', 'Ship', 'Shock', 'Shoot', 'Shop', 'Shout', 670 | 'Show', 'Shrink', 'Shrug', 'Shut', 'Sigh', 'Sign', 'Signal', 'Simulate', 671 | 'Sing', 'Sink', 'Sit', 'Ski', 'Skip', 'Slam', 'Slap', 'Slash', 'Sleep', 672 | 'Slice', 'Slide', 'Slip', 'Slope', 'Slow', 'Smash', 'Smell', 'Smile', 673 | 'Smoke', 'Snap', 'Snow', 'Soak', 'Soar', 'Solve', 'Sort', 'Sound', 674 | 'Span', 'Spare', 'Spark', 'Speak', 'Specialize', 'Specify', 'Speculate', 675 | 'Speed', 'Spell', 'Spend', 'Spill', 'Spin', 'Split', 'Spoil', 'Sponsor', 676 | 'Spot', 'Spread', 'Spring', 'Spy', 'Squeeze', 'Stab', 'Stabilize', 677 | 'Stage', 'Stand', 'Star', 'Stare', 'Start', 'Starve', 'State', 'Stay', 678 | 'Steal', 'Steer', 'Stem', 'Step', 'Stick', 'Stimulate', 'Stir', 'Stop', 679 | 'Store', 'Strengthen', 'Stress', 'Stretch', 'Strike', 'Strip', 'Strive', 680 | 'Structure', 'Struggle', 'Study', 'Stuff', 'Stumble', 'Stun', 'Submit', 681 | 'Substitute', 'Succeed', 'Sue', 'Suffer', 'Suggest', 'Suit', 682 | 'Sum', 'Summarize', 'Supervise', 'Supplement', 'Supply', 'Support', 683 | 'Suppose', 'Suppress', 'Surge', 'Surprise', 'Surrender', 'Surround', 684 | 'Survey', 'Survive', 'Suspect', 'Suspend', 'Sustain', 'Swallow', 685 | 'Swear', 'Sweep', 'Swim', 'Swing', 'Switch', 'Tackle', 'Tag', 'Take', 686 | 'Talk', 'Tap', 'Target', 'Taste', 'Tax', 'Teach', 'Tear', 'Telephone', 687 | 'Tell', 'Tempt', 'Tend', 'Term', 'Terminate', 'Terrify', 'Test', 688 | 'Testify', 'Text', 'Thank', 'Think', 'Thrive', 'Throw', 689 | 'Tidy', 'Tie', 'Tighten', 'Time', 'Tip', 'Title', 'Tolerate', 'Top', 690 | 'Toss', 'Total', 'Touch', 'Tour', 'Trace', 'Track', 'Trade', 691 | 'Trail', 'Train', 'Transfer', 'Transform', 'Translate', 'Transmit', 692 | 'Transport', 'Trap', 'Travel', 'Treat', 'Trick', 'Trigger', 'Trip', 693 | 'Trouble', 'Trust', 'Try', 'Turn', 'Twist', 'Type', 'Undergo', 694 | 'Undermine', 'Understand', 'Undertake', 'Unfold', 'Unify', 'Unite', 695 | 'Unveil', 'Update', 'Upgrade', 'Uphold', 'Upset', 'Urge', 'Use', 696 | 'Utilize', 'Value', 'Vanish', 'Vary', 'Venture', 'Verify', 'View', 697 | 'Visit', 'Volunteer', 'Vote', 'Vow', 'Wait', 'Wake', 'Walk', 698 | 'Wander', 'Want', 'Warm', 'Warn', 'Warrant', 'Wash', 'Waste', 'Watch', 699 | 'Water', 'Wave', 'Weaken', 'Wear', 'Weave', 'Weigh', 'Welcome', 'Whip', 700 | 'Whisper', 'Widen', 'Win', 'Wind', 'Wipe', 'Wish', 'Withdraw', 701 | 'Witness', 'Wonder', 'Work', 'Worry', 'Worship', 'Wound', 'Wrap', 702 | 'Write', 'Yell', 'Yield' 703 | ]; 704 | 705 | const _ADVERB_ = [ 706 | 'About', 'Above', 'Abroad', 'Absently', 'Absolutely', 'Accidentally', 707 | 'Accordingly', 'Accurately', 'Accusingly', 'Across', 'Actually', 708 | 'Additionally', 'Adequately', 'Adorably', 'After', 'Afterwards', 709 | 'Again', 'Ago', 'Ahead', 'Alike', 'All', 'Allegedly', 'AllTheTime', 710 | 'Almost', 'Alone', 'Along', 'Already', 'Also', 'Altogether', 'Always', 711 | 'Amazingly', 'Angrily', 'Annually', 'Anxiously', 'Any', 'Anyway', 712 | 'Anywhere', 'Apart', 'Appallingly', 'Apparently', 'Appropriately', 713 | 'Approximately', 'Arguably', 'Around', 'Articulately', 'As', 'Aside', 714 | 'Astonishingly', 'Automatically', 'Away', 'Back', 'Backwards', 'Badly', 715 | 'Barely', 'Basically', 'Beautifully', 'Before', 'Behind', 'Below', 716 | 'Besides', 'Best', 'Better', 'Between', 'Beyond', 'Blindly', 'Bravely', 717 | 'Briefly', 'Brightly', 'Briskly', 'Broadly', 'By', 'Calmly', 718 | 'Carefully', 'Casually', 'Cautiously', 'Certainly', 'Cheaply', 'Clearly', 719 | 'Cleverly', 'Close', 'Closely', 'Commonly', 'Completely', 720 | 'Consequently', 'Considerably', 'Consistently', 'Constantly', 721 | 'Continually', 'Correctly', 'Crazily', 'Critically', 'Curiously', 722 | 'Currently', 'Cynically', 'Daily', 'Dangerously', 'Deeply', 723 | 'Definitely', 'Deliberately', 'Delicately', 'Desperately', 724 | 'Differently', 'Directly', 'Discreetly', 'Double', 'Down', 725 | 'Downstairs', 'Downtown', 'Downwards', 'Dramatically', 'Each', 726 | 'Eagerly', 'Early', 'Easily', 'East', 'Effectively', 'Efficiently', 727 | 'Either', 'Else', 'Elsewhere', 'Emotionally', 'Enough', 'Entirely', 728 | 'Equally', 'Especially', 'Essentially', 'Euphoricly', 'Even', 'Evenly', 729 | 'Eventually', 'Ever', 'Everywhere', 'Exactly', 'Exclusively', 730 | 'Expectantly', 'Explicitly', 'Extensively', 'Extra', 'Extremely', 731 | 'Fairly', 'Far', 'Fast', 'Ferociously', 'Fiercely', 'Finally', 'Finely', 732 | 'Firmly', 'First', 'Firstly', 'Flatly', 'Forever', 'Formerly', 'Forth', 733 | 'Fortunately', 'Forward', 'Frankly', 'Free', 'Freely', 'Frequently', 734 | 'Frighteningly', 'FullTime', 'Fully', 'Fundamentally', 'Further', 735 | 'Furthermore', 'Generally', 'Gently', 'Genuinely', 'Gloriously', 736 | 'Gradually', 'Greatly', 'Grimly', 'Guiltily', 'Half', 'Halfway', 737 | 'Happily', 'Hard', 'Hardly', 'Hastily', 'Heavily', 'Hence', 'Here', 738 | 'Heroically', 'High', 'Highly', 'Home', 'Hopefully', 'Hourly', 'How', 739 | 'However', 'Humbly', 'Hysterically', 'Immediately', 'Immensely', 740 | 'Impartially', 'Impolitely', 'In', 'Increasingly', 'Incredibly', 741 | 'Indeed', 'Indifferently', 'Indoors', 'Inevitably', 'Initially', 742 | 'Inside', 'Instantly', 'Instead', 'Intensely', 'Ironically', 743 | 'Jealously', 'Jovially', 'Just', 'Kindly', 'Largely', 'Last', 'Late', 744 | 'Lately', 'Later', 'Lazily', 'Least', 'Left', 'Less', 'Lightly', 745 | 'Likewise', 'Literally', 'Little', 'Live', 'Long', 'LongTerm', 'Lot', 746 | 'Loud', 'Loudly', 'Lovingly', 'Low', 'Loyally', 'Magnificently', 747 | 'Mainly', 'Maybe', 'Meanwhile', 'Merely', 'Merrily', 748 | 'Mightily', 'Miserably', 'More', 'Moreover', 'Most', 'Mostly', 'Much', 749 | 'Mysteriously', 'Namely', 'Naturally', 'Near', 'Nearby', 'Nearly', 750 | 'Necessarily', 'Neither', 'Nervously', 'Never', 'Nevertheless', 'Newly', 751 | 'Next', 'Nicely', 'Nonetheless', 'Nor', 'Normally', 'North', 'Not', 752 | 'NOT', 'Notably', 'Now', 'Nowadays', 'Nowhere', 753 | 'Objectively', 'Obnoxiously', 'Obsessively', 'Obviously', 754 | 'Occasionally', 'Off', 'Often', 'Ok', 'On', 'Once', 'Online', 'Only', 755 | 'Openly', 'Opposite', 'Originally', 'Otherwise', 'Out', 'Outdoors', 756 | 'Outside', 'Over', 'Overall', 'Overly', 'Overnight', 'Overseas', 757 | 'Painfully', 'Partially', 'Particularly', 'Partly', 'Past', 'Patiently', 758 | 'Perfectly', 'Perhaps', 'Permanently', 'Personally', 'Playfully', 759 | 'Politely', 'Poorly', 'Possibly', 'Potentially', 'Precisely', 760 | 'Predominantly', 'Presently', 'Presumably', 'Pretty', 'Previously', 761 | 'Primarily', 'Probably', 'Promptly', 'Properly', 'Purely', 'Quickly', 762 | 'Quietly', 'Quite', 'Randomly', 'Rapidly', 'Rarely', 'Rather', 763 | 'Readily', 'Really', 'Reasonably', 'Recently', 'Recklessly', 764 | 'Regardless', 'Regularly', 'Relatively', 'Remarkably', 'Remorsefully', 765 | 'Reportedly', 'Respectively', 'Responsibly', 'Right', 'Roughly', 766 | 'Round', 'Rudely', 'Ruthlessly', 'Sadly', 'Same', 'Scornfully', 767 | 'Seamlessly', 'Second', 'Secondly', 'Seemingly', 'Seldom', 'Selfishly', 768 | 'Seriously', 'Severely', 'Shakily', 'Sharply', 'Shortly', 'Sideways', 769 | 'Significantly', 'Silently', 'Similarly', 'Simply', 'Simultaneously', 770 | 'Since', 'Sleepily', 'Slightly', 'Slowly', 'Slyly', 'Smoothly', 'So', 771 | 'Softly', 'Solely', 'Solemnly', 'Somehow', 'Sometime', 'Sometimes', 772 | 'Somewhat', 'Somewhere', 'Soon', 'South', 'Specifically', 'Steadily', 773 | 'Sternly', 'Still', 'Straight', 'Strangely', 'Strictly', 'Strongly', 774 | 'Stunningly', 'Subsequently', 'Substantially', 'Successfully', 775 | 'Suddenly', 'Sufficiently', 'Supposedly', 'Sure', 'Surely', 776 | 'Temporarily', 'Tenderly', 'Terribly', 'Thankfully', 'That', 'Then', 777 | 'There', 'Thereafter', 'Thereby', 'Therefore', 'This', 'Thoroughly', 778 | 'Though', 'Thoughtfully', 'Through', 'Throughout', 'Thus', 'Tightly', 779 | 'Today', 'Together', 'Tomorrow', 'Tonight', 'Too', 'Totally', 'Truly', 780 | 'Twice', 'Typically', 'Ultimately', 'Under', 'Underground', 781 | 'Undoubtedly', 'Uneasily', 'Unfortunately', 'Up', 'Upstairs', 'Upwards', 782 | 'Usually', 'Utterly', 'Vanishingly', 'Very', 'Warmly', 783 | 'Way', 'Weakly', 'Wearily', 'Weekly', 'Weirdly', 'Well', 'West', 784 | 'Whatever', 'Whatsoever', 'When', 'Where', 'Whereby', 'Wholly', 'Why', 785 | 'Wickedly', 'Widely', 'Wildly', 'Wisely', 'Wonderfully', 'Worldwide', 786 | 'Worse', 'Worst', 'Wrong', 'Yearly', 'Yesterday', 'Yet' 787 | ]; 788 | 789 | const _ADJECTIVE_ = [ 790 | 'Able', 'Absent', 'Absolute', 'Abstract', 'Absurd', 'Academic', 791 | 'Acceptable', 'Accessible', 'Accountable', 'Accurate', 'Acid', 'Active', 792 | 'Actual', 'Acute', 'Additional', 'Adequate', 'Adjacent', 793 | 'Administrative', 'Adult', 'Advance', 'Advanced', 'Adverse', 794 | 'Aesthetic', 'Affordable', 'Afraid', 'Aged', 795 | 'Agricultural', 'Alert', 'Alien', 'Alike', 'Alive', 796 | 'Alone', 'Alternative', 'Amateur', 'Amazed', 'Amazing', 'Ambitious', 797 | 'Amusing', 'Ancient', 'Angry', 'Annoyed', 'Annoying', 'Annual', 798 | 'Anonymous', 'Anxious', 'Apparent', 'Appealing', 'Applicable', 799 | 'Appropriate', 'Arbitrary', 'Architectural', 'Artificial', 800 | 'Artistic', 'Ashamed', 'Asleep', 'Assistant', 'Associated', 801 | 'Astonishing', 'Attractive', 'Audio', 'Authentic', 'Automatic', 802 | 'Available', 'Average', 'Aware', 'Awful', 'Awkward', 'Back', 'Bad', 803 | 'Balanced', 'Bare', 'Based', 'Basic', 'Beautiful', 'Beloved', 804 | 'Beneficial', 'Bent', 'Best', 'Better', 'Big', 'Biological', 'Bitter', 805 | 'Bizarre', 'Blank', 'Blind', 'Blonde', 'Blue', 'Bold', 'Bored', 806 | 'Boring', 'Bottom', 'Bound', 'Brave', 'Brief', 'Bright', 'Brilliant', 807 | 'Broad', 'Broken', 'Brown', 'Busy', 'Calm', 'Capable', 808 | 'Capital', 'Capitalist', 'Careful', 'Careless', 'Casual', 'Cautious', 809 | 'Central', 'Certain', 'Challenging', 'Characteristic', 'Charming', 810 | 'Cheap', 'Cheerful', 'Chemical', 'Chief', 'Chronic', 'Civic', 'Civil', 811 | 'Civilian', 'Classic', 'Classical', 'Clean', 'Clear', 'Clever', 812 | 'Clinical', 'Close', 'Closed', 'Coastal', 'Cognitive', 'Cold', 813 | 'Collective', 'Colonial', 'Coloured', 'Colourful', 'Comfortable', 814 | 'Comic', 'Commercial', 'Common', 'Communist', 'Comparable', 815 | 'Comparative', 'Compelling', 'Competent', 'Competitive', 'Complete', 816 | 'Complex', 'Complicated', 'Comprehensive', 'Compulsory', 'Concerned', 817 | 'Concrete', 'Confident', 'Confused', 'Confusing', 'Congressional', 818 | 'Connected', 'Conscious', 'Consecutive', 'Conservative', 'Considerable', 819 | 'Consistent', 'Constant', 'Constitutional', 'Contemporary', 'Content', 820 | 'Continuous', 'Contrary', 'Controversial', 'Convenient', 'Conventional', 821 | 'Convinced', 'Convincing', 'Cool', 'Cooperative', 'Core', 'Corporate', 822 | 'Correct', 'Corresponding', 'Costly', 'Countless', 'Covered', 823 | 'Cream', 'Creative', 'Credible', 'Critical', 824 | 'Crowded', 'Crucial', 'Crude', 'Cruel', 'Cult', 'Cultural', 'Curious', 825 | 'Curly', 'Current', 'Curved', 'Cute', 'Cynical', 'Daily', 'Dairy', 826 | 'Damaging', 'Dangerous', 'Dark', 'Dead', 'Dear', 'Decent', 827 | 'Decisive', 'Dedicated', 'Deep', 'Defensive', 'Definite', 'Deliberate', 828 | 'Delicate', 'Delicious', 'Delighted', 'Democratic', 'Dense', 829 | 'Dependent', 'Depressed', 'Depressing', 'Desirable', 'Desperate', 830 | 'Destructive', 'Detailed', 'Determined', 'Different', 'Difficult', 831 | 'Digital', 'Diplomatic', 'Direct', 'Dirty', 'Disabled', 'Disappointed', 832 | 'Disappointing', 'Disastrous', 'Dishonest', 'Distant', 'Distinct', 833 | 'Distinctive', 'Disturbing', 'Diverse', 'Divine', 'Divorced', 834 | 'Domestic', 'Dominant', 'Double', 'Downstairs', 'Downtown', 'Dramatic', 835 | 'Dressed', 'Driving', 'Dry', 'Dual', 'Due', 'Dull', 'Dumb', 836 | 'Dynamic', 'Eager', 'Early', 'East', 'Eastern', 'Easy', 'Ecological', 837 | 'Economic', 'Editorial', 'Educated', 'Educational', 'Effective', 838 | 'Efficient', 'Elaborate', 'Elderly', 'Electoral', 'Electric', 839 | 'Electrical', 'Electronic', 'Elegant', 'Elementary', 'Eligible', 840 | 'Embarrassed', 'Embarrassing', 'Emotional', 'Empirical', 'Empty', 841 | 'Encouraging', 'Endless', 'Engaged', 'Engaging', 'Enjoyable', 842 | 'Enormous', 'Entertaining', 'Enthusiastic', 'Entire', 'Environmental', 843 | 'Equal', 'Equivalent', 'Essential', 'Eternal', 'Ethical', 'Ethnic', 844 | 'Even', 'Everyday', 'Evident', 'Evil', 'Evolutionary', 'Exact', 845 | 'Excellent', 'Exceptional', 'Excess', 'Excessive', 'Excited', 846 | 'Exciting', 'Exclusive', 'Executive', 'Exotic', 'Expected', 'Expensive', 847 | 'Experienced', 'Experimental', 'Expert', 'Explicit', 'Explosive', 848 | 'Extensive', 'External', 'Extra', 'Extraordinary', 'Extreme', 849 | 'Fabulous', 'Failed', 'Fair', 'Fake', 'False', 'Familiar', 'Family', 850 | 'Famous', 'Fancy', 'Fantastic', 'Far', 'Fascinating', 'Fashionable', 851 | 'Fast', 'Fat', 'Fatal', 'Favourable', 'Favourite', 'Federal', 'Fellow', 852 | 'Feminist', 'Few', 'Fierce', 'Final', 'Financial', 'Fine', 853 | 'Firm', 'Fit', 'Fixed', 'Flat', 'Flawed', 'Flexible', 'Flying', 854 | 'Folding', 'Folk', 'Following', 'Fond', 'Foreign', 'Formal', 'Former', 855 | 'Forthcoming', 'Fortunate', 'Forward', 'Fragile', 'Free', 'Frequent', 856 | 'Fresh', 'Friendly', 'Frightened', 'Frightening', 'Front', 'Frozen', 857 | 'Frustrated', 'Frustrating', 'Full', 'FullTime', 'Fun', 'Functional', 858 | 'Fundamental', 'Funny', 'Furious', 'Further', 'Future', 859 | 'General', 'Generic', 'Generous', 'Genetic', 'Gentle', 'Genuine', 860 | 'Giant', 'Glad', 'Global', 'Glorious', 'Gold', 'Golden', 'Good', 861 | 'Gorgeous', 'Grand', 'Graphic', 'Grateful', 'Grave', 'Great', 'Green', 862 | 'Grey', 'Gross', 'Guilty', 'Handy', 'Happy', 'Hard', 'Harmful', 'Harsh', 863 | 'Healthy', 'Heavy', 'Helpful', 'Hidden', 'High', 'HighProfile', 864 | 'Hilarious', 'Historic', 'Historical', 'Hollow', 'Holy', 'Home', 865 | 'Homeless', 'Honest', 'Hopeful', 'Horrible', 'Hot', 'Huge', 866 | 'Human', 'Humanitarian', 'Humble', 'Humorous', 'Hungry', 'Hurt', 867 | 'Ideal', 'Identical', 'Ideological', 'Ill', 'Illegal', 'Imaginary', 868 | 'Immediate', 'Immense', 'Imminent', 'Immune', 'Impatient', 'Important', 869 | 'Impossible', 'Impressed', 'Impressive', 'Inadequate', 'Inappropriate', 870 | 'Inclined', 'Included', 'Incorrect', 'Incredible', 'Independent', 871 | 'Indigenous', 'Indirect', 'Individual', 'Indoor', 'Industrial', 872 | 'Inevitable', 'Infamous', 'Influential', 'Informal', 'Inherent', 873 | 'Initial', 'Injured', 'Inner', 'Innocent', 'Innovative', 'Inside', 874 | 'Instant', 'Institutional', 'Instrumental', 'Insufficient', 'Intact', 875 | 'Integral', 'Integrated', 'Intellectual', 'Intelligent', 'Intended', 876 | 'Intense', 'Intensive', 'Interactive', 'Interested', 'Interesting', 877 | 'Interim', 'Interior', 'Intermediate', 'Internal', 'International', 878 | 'Intimate', 'Intriguing', 'Invisible', 'Involved', 'Ironic', 879 | 'Irrelevant', 'Isolated', 'Joint', 'Judicial', 'Junior', 'Just', 'Keen', 880 | 'Key', 'Kind', 'Large', 'LargeScale', 'Late', 'Later', 'Latest', 881 | 'Latter', 'Lazy', 'Leading', 'Left', 'Legal', 'Legendary', 882 | 'Legislative', 'Legitimate', 'Lengthy', 'Lesser', 883 | 'Level', 'Liable', 'Liberal', 'Lifelong', 'Light', 'Likely', 'Limited', 884 | 'Linear', 'Liquid', 'Literary', 'Little', 'Live', 'Lively', 'Living', 885 | 'Local', 'Located', 'Logical', 'Lonely', 'Long', 'LongStanding', 886 | 'LongTerm', 'LongTime', 'Loose', 'Lost', 'Loud', 'Lovely', 'Low', 887 | 'Loyal', 'Lucky', 'Luxury', 'Mad', 'Magic', 'Magical', 'Magnetic', 888 | 'Magnificent', 'Main', 'Mainstream', 'Major', 'Mandatory', 889 | 'Marginal', 'Marine', 'Married', 'Martial', 'Mass', 'Massive', 890 | 'Matching', 'Material', 'Mathematical', 'Mature', 'Maximum', 891 | 'Meaningful', 'Mechanical', 'Medical', 'Medieval', 'Medium', 892 | 'Memorable', 'Mental', 'Mere', 'Middle', 'Mild', 893 | 'Minimal', 'Minimum', 'Minute', 'Miserable', 'Misleading', 894 | 'Missing', 'Mixed', 'Mobile', 'Moderate', 'Modern', 'Modest', 'Monthly', 895 | 'Moral', 'Motor', 'Moving', 'Multiple', 'Municipal', 'Musical', 896 | 'Mutual', 'Mysterious', 'Narrative', 'Narrow', 897 | 'National', 'Nationwide', 'Native', 'Natural', 'Naval', 'Near', 898 | 'Nearby', 'Neat', 'Necessary', 'Negative', 'Neighbouring', 'Nervous', 899 | 'Net', 'Neutral', 'New', 'Next', 'Nice', 'Noble', 'Noisy', 'NonProfit', 900 | 'Normal', 'North', 'Northern', 'Notable', 'Notorious', 'Novel', 901 | 'Nuclear', 'Numerous', 'Objective', 'Obvious', 'Occasional', 'Odd', 902 | 'Offensive', 'Official', 'Ok', 'Old', 'OldFashioned', 'Ongoing', 903 | 'Online', 'Only', 'Open', 'Operational', 'Opposed', 'Opposite', 904 | 'Optical', 'Optimistic', 'Orange', 'Ordinary', 'Organic', 905 | 'Organizational', 'Organized', 'Original', 'Other', 'Outdoor', 'Outer', 906 | 'Outside', 'Outstanding', 'Overall', 'Overseas', 'Overwhelming', 'Own', 907 | 'Painful', 'Pale', 'Parallel', 'Parental', 'Parliamentary', 'PartTime', 908 | 'Partial', 'Particular', 'Passionate', 'Passive', 'Past', 'Patient', 909 | 'Peaceful', 'Peculiar', 'Perfect', 'Permanent', 'Persistent', 910 | 'Personal', 'Philosophical', 'Physical', 'Pink', 'Plain', 'Plastic', 911 | 'Pleasant', 'Pleased', 'Plus', 'Pointed', 'Poisonous', 'Polite', 912 | 'Political', 'Poor', 'Pop', 'Popular', 'Positive', 'Possible', 913 | 'PostWar', 'Potential', 'Powerful', 'Practical', 'Precious', 'Precise', 914 | 'Predictable', 'Preliminary', 'Premier', 'Prepared', 915 | 'Present', 'Presidential', 'Prestigious', 'Pretty', 'Previous', 916 | 'Primary', 'Prime', 'Principal', 'Prior', 'Private', 'Probable', 917 | 'Problematic', 'Productive', 'Professional', 'Profitable', 'Profound', 918 | 'Progressive', 'Prominent', 'Promising', 'Pronounced', 'Proper', 919 | 'Prospective', 'Protective', 'Proud', 'Provincial', 'Psychiatric', 920 | 'Psychological', 'Public', 'Pure', 'Purple', 'Qualified', 'Quick', 921 | 'Quiet', 'Radical', 'Random', 'Rapid', 'Rare', 922 | 'Rational', 'Raw', 'Ready', 'Real', 'Realistic', 'Rear', 'Reasonable', 923 | 'Recent', 'Red', 'Regional', 'Regular', 'Regulatory', 'Related', 924 | 'Relative', 'Relaxed', 'Relaxing', 'Relevant', 'Reliable', 'Relieved', 925 | 'Religious', 'Reluctant', 'Remarkable', 'Remote', 'Renowned', 926 | 'Repeated', 'Representative', 'Resident', 'Residential', 'Respective', 927 | 'Responsible', 'Retired', 'Reverse', 'Revolutionary', 'Rich', 928 | 'Ridiculous', 'Right', 'Risky', 'Rival', 'Robust', 'Romantic', 'Rough', 929 | 'Round', 'Routine', 'Royal', 'Rubber', 'Rude', 'Rural', 'Sacred', 'Sad', 930 | 'Safe', 'Same', 'Satisfied', 'Scary', 'Scattered', 931 | 'Sceptical', 'Scientific', 'Secondary', 'Secret', 'Secular', 'Secure', 932 | 'Selective', 'Senior', 'Sensible', 'Sensitive', 'Separate', 'Serial', 933 | 'Serious', 'Severe', 'Shallow', 'Shaped', 'Sharp', 934 | 'Sheer', 'Shiny', 'Shocked', 'Shocking', 'Short', 'ShortTerm', 'Shut', 935 | 'Shy', 'Significant', 'Silent', 'Silly', 'Silver', 'Similar', 936 | 'Simple', 'Sincere', 'Single', 'Situated', 'Ski', 'Skilled', 'Slight', 937 | 'Slow', 'Small', 'Smart', 'Smooth', 'SoCalled', 'Social', 'Socialist', 938 | 'Soft', 'Solar', 'Sole', 'Solid', 'Solo', 'Sophisticated', 939 | 'Sound', 'South', 'Spare', 'Special', 'Specialist', 940 | 'Specialized', 'Specific', 'Spectacular', 'Spicy', 'Spiritual', 941 | 'Spoken', 'Sporting', 'Square', 'Stable', 'Standard', 'Standing', 942 | 'Stark', 'State', 'Statistical', 'Steady', 'Steep', 'Sticky', 'Stiff', 943 | 'Still', 'Straight', 'Straightforward', 'Strange', 'Strategic', 944 | 'Strict', 'Striking', 'Strong', 'Structural', 'Stunning', 945 | 'Subject', 'Subsequent', 'Substantial', 'Subtle', 'Suburban', 946 | 'Successful', 'Successive', 'Sudden', 'Sufficient', 'Suitable', 'Super', 947 | 'Superb', 'Superior', 'Supportive', 'Supreme', 'Sure', 'Surgical', 948 | 'Surprised', 'Surprising', 'Surrounding', 'Suspicious', 'Sustainable', 949 | 'Sweet', 'Symbolic', 'Sympathetic', 'Systematic', 'Tactical', 950 | 'Talented', 'Tall', 'Technical', 'Technological', 951 | 'Temporary', 'Tender', 'Terminal', 'Terrible', 'Terrific', 'Theatrical', 952 | 'Theoretical', 'Thick', 'Thin', 'Thirsty', 'Thorough', 953 | 'ThoughtProvoking', 'Thoughtful', 'Thrilled', 'Tidy', 'Tight', 954 | 'Timely', 'Tiny', 'Tired', 'Top', 'Total', 'Tough', 'Toxic', 'Toy', 955 | 'Traditional', 'Transparent', 'Tremendous', 'Tribal', 956 | 'Tropical', 'True', 'Twin', 'Typical', 'Ultimate', 957 | 'Unable', 'Unacceptable', 'Uncomfortable', 'Underground', 958 | 'Underlying', 'Unemployed', 'Unexpected', 'Unfair', 'Unfortunate', 959 | 'Unique', 'United', 'Universal', 'Unknown', 'Unlikely', 960 | 'Unnecessary', 'Unpleasant', 'Unprecedented', 'Unusual', 'Upcoming', 961 | 'Upper', 'Upset', 'Upstairs', 'Urban', 'Urgent', 'Used', 'Useful', 962 | 'Useless', 'Usual', 'Vague', 'Valid', 'Valuable', 'Variable', 'Varied', 963 | 'Various', 'Vast', 'Verbal', 'Vertical', 'Very', 'Viable', 'Vibrant', 964 | 'Virtual', 'Visible', 'Visual', 'Vital', 'Vocal', 965 | 'Voluntary', 'Vulnerable', 'Warm', 'Waste', 'Weak', 'Wealthy', 'Weekly', 966 | 'Weird', 'Welcome', 'Well', 'West', 'Western', 'Wet', 'White', 'Whole', 967 | 'Wide', 'Widespread', 'Wild', 'Willing', 'Wise', 'Wonderful', 'Wooden', 968 | 'Working', 'Worldwide', 'Worried', 'Worse', 'Worst', 'Worth', 969 | 'Worthwhile', 'Worthy', 'Written', 'Wrong', 'Yellow' 970 | ]; 971 | 972 | const BUCKETS = [_ADJECTIVE_, _PLURALNOUN_, _VERB_, _ADVERB_]; 973 | 974 | function randomInt(min, max) { 975 | return Math.floor(Math.random() * (max - min + 1)) + min; 976 | } 977 | 978 | function getRandomElement(arr) { 979 | return arr[randomInt(0, arr.length - 1)]; 980 | } 981 | 982 | function randomRoomName() { 983 | return ( 984 | getRandomElement(_ADJECTIVE_) + 985 | getRandomElement(_PLURALNOUN_) + 986 | getRandomElement(_VERB_) + 987 | getRandomElement(_ADVERB_) 988 | ) 989 | } 990 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .divider { 2 | height: 2rem; 3 | background-color: rgba(0, 0, 0, .1); 4 | border: solid rgba(0, 0, 0, .15); 5 | border-width: 1px 0; 6 | box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15); 7 | } 8 | 9 | @media (min-width: 992px) { 10 | .rounded-lg-3 { 11 | border-radius: .3rem; 12 | } 13 | } 14 | 15 | #monster { 16 | cursor: pointer; 17 | } 18 | --------------------------------------------------------------------------------