Last active
September 16, 2024 18:30
-
-
Save donatj/592419 to your computer and use it in GitHub Desktop.
PHP Flavored Lorem Ipsum Generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $data = include('words_example.php'); | |
| $patSize = 5; | |
| foreach( $data as $word ) { | |
| for( $i = 0; $i <= strlen( $word ) - 2; $i++ ) { | |
| $j = 0; | |
| $str = ''; | |
| while( isset( $word[$i + $j] ) && strlen($str) < $patSize ) { | |
| $str .= $word[$i + $j]; | |
| if( isset( $word[$i + $j + 1 ] ) ) { | |
| $wordTree[ $str ][] = $word[$i + $j + 1 ]; | |
| } | |
| $j++; | |
| } | |
| } | |
| } | |
| function generateWord() { | |
| global $wordTree, $patSize; | |
| $word = array_rand($wordTree); | |
| for( $i = 0; $i <= 15; $i++) { | |
| $wordHold = substr($word, - $patSize); | |
| if( isset( $wordTree[ $wordHold ] ) ) { | |
| $word .= $wordTree[ $wordHold ][array_rand($wordTree[ $wordHold ])]; | |
| }else{ | |
| // THIS STUFF IS THE GOOFY | |
| $wordHold = substr($word, - ($patSize - 1)); | |
| if( isset( $wordTree[ $wordHold ] ) ) { | |
| $word .= $wordTree[ $wordHold ][array_rand($wordTree[ $wordHold ])]; | |
| }else{ | |
| return $word; | |
| } | |
| } | |
| } | |
| return $word; | |
| } | |
| $senta = 0; | |
| $sentalen = rand( 5, 15 ); | |
| for( $i = 0; $i <= 100; $i++) { | |
| if( !$senta ) { | |
| echo ' ' . ucwords(generateWord()); | |
| } | |
| $senta++; | |
| echo ' ' . generateWord(); | |
| if( $senta > $sentalen ) { | |
| echo '.'; | |
| $senta = 0; | |
| $sentalen = rand( 5, 15 ); | |
| } | |
| } | |
| echo '.'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| return [ | |
| 'aba', | |
| 'abacinate', | |
| 'abactor', | |
| 'abaculus', | |
| 'abaft', | |
| 'abampere', | |
| 'abapical', | |
| 'abarticular', | |
| 'abasement', | |
| 'abasia', | |
| 'abask', | |
| 'abatis', | |
| 'abatjour', | |
| 'abattoir', | |
| 'abature', | |
| 'abb', | |
| 'abba', | |
| 'abbatial', | |
| 'abbozzo', | |
| 'abditive', | |
| 'abdominous', | |
| 'abducent', | |
| 'abeam', | |
| 'abear', | |
| 'abecedarian', | |
| 'abecedism', | |
| 'abele', | |
| 'aberdevine', | |
| 'aberuncators', | |
| 'abessive', | |
| 'abiectic', | |
| 'abigail', | |
| 'abigeus', | |
| 'abiogenesis', | |
| 'abiotrophy', | |
| 'abirritate', | |
| 'abiturient', | |
| 'abject', | |
| 'ablactation', | |
| 'ablative', | |
| 'ablator', | |
| 'ablaut', | |
| 'ablegate', | |
| 'ablepsia', | |
| 'ablow', | |
| 'abluent', | |
| 'ablutomania', | |
| 'abnegate', | |
| 'abodement', | |
| 'aboideau', | |
| 'abolla', | |
| 'abomasum', | |
| 'aboral', | |
| 'abord', | |
| 'aborning', | |
| 'aborticide', | |
| 'abortuary', | |
| 'aboulia', | |
| 'aboulomania', | |
| 'aboutsledge', | |
| 'abra', | |
| 'abradant', | |
| 'abraid', | |
| 'abraxas', | |
| 'abreuvoir', | |
| 'abroach', | |
| 'abrosia', | |
| 'abscind', | |
| 'abscissa', | |
| 'abscission', | |
| 'absconce', | |
| 'abseil', | |
| 'absentaneous', | |
| 'absinthial', | |
| 'absinthism', | |
| 'absit', | |
| 'absolutism', | |
| 'absolutive', | |
| 'absolutory', | |
| 'absonant', | |
| 'absorbefacient', | |
| 'absorptiometer', | |
| 'absquatulate', | |
| 'absterge', | |
| 'absurdism', | |
| 'abterminal', | |
| 'abthane', | |
| 'abulia', | |
| 'abuna', | |
| 'abusion', | |
| 'abutment', | |
| 'abvolt', | |
| 'aby', | |
| 'abyssopelagic', | |
| 'academicism', | |
| 'acanaceous', | |
| 'acantha', | |
| 'acanthous', | |
| 'acapnia', | |
| 'acapnotic', | |
| 'acariasis', | |
| 'acaricide', | |
| 'acarine', | |
| 'acarology', | |
| 'acarophobia', | |
| 'acarpous', | |
| 'acatalectic', | |
| 'acatalepsy', | |
| 'acatamathesia', | |
| 'acates', | |
| 'acatour', | |
| 'acaudate', | |
| 'acaulescent', | |
| 'accelerometer', | |
| 'accend', | |
| 'accensor', | |
| 'accentor', | |
| 'acceptilation', | |
| 'accessit', | |
| 'acciaccatura', | |
| 'accidence', | |
| 'accidentalism', | |
| 'accidie', | |
| 'accinge', | |
| 'accipiter', | |
| 'accipitral', | |
| 'accipitrine', | |
| 'accismus', | |
| 'accite', | |
| 'acclinate', | |
| 'acclivity', | |
| 'accloy', | |
| 'accolade', | |
| 'accolent', | |
| 'accosted', | |
| 'accoucheur', | |
| 'accoucheuse', | |
| 'accourage', | |
| 'accourt', | |
| 'accoy', | |
| 'accrementition', | |
| 'accretion', | |
| 'accubation', | |
| 'accubitum', | |
| 'accusative', | |
| 'acedia', | |
| 'aceldama', | |
| 'aceology', | |
| 'acequia', | |
| 'acerate', | |
| 'acerbate', | |
| 'acerous', | |
| 'acersecomic', | |
| 'acervate', | |
| 'acervuline', | |
| 'acescence', | |
| 'acetabulum', | |
| 'acetarious', | |
| 'acetimeter', | |
| 'achaenocarp', | |
| 'acharné', | |
| 'achene', | |
| 'achloropsia', | |
| 'achor', | |
| 'achromatopsia', | |
| 'achroous', | |
| 'acicular', | |
| 'acidaemia', | |
| 'acidimeter', | |
| 'acidulous', | |
| 'acierate', | |
| 'acinaceous', | |
| 'acinaciform', | |
| 'aciniform', | |
| 'acinus', | |
| 'acipenser', | |
| 'aclinic', | |
| 'acock', | |
| 'acoemeti', | |
| 'acology', | |
| 'acolous', | |
| 'acolouthic', | |
| 'acopic', | |
| 'acoria', | |
| 'acosmism', | |
| 'acouasm', | |
| 'acquest', | |
| 'acracy', | |
| 'acratia', | |
| 'acrebreadth', | |
| 'acritochromacy', | |
| 'acroamatic', | |
| 'acrocephalous', | |
| 'acrography', | |
| 'acrolith', | |
| 'acrologic', | |
| 'acromegaly', | |
| 'acronical', | |
| 'acronym', | |
| 'acronyx', | |
| 'acropathy', | |
| 'acrophobia', | |
| 'acrophonic', | |
| 'acropodium', | |
| 'acroscopic', | |
| 'acroteleutic', | |
| 'acroterion', | |
| 'acrotism', | |
| 'actinism', | |
| 'actinograph', | |
| 'actinometer', | |
| 'actinotherapy', | |
| 'actuate', | |
| 'aculeate', | |
| 'aculeiform', | |
| 'acultomancy', | |
| 'acuminate', | |
| 'acutiator', | |
| 'acutorsion', | |
| 'acyanopsia', | |
| 'acyesis', | |
| 'acyrology', | |
| 'adactylous', | |
| 'adamantine', | |
| 'adamitism', | |
| 'adaxial', | |
| 'addax', | |
| 'additament', | |
| 'addititious', | |
| 'addle', | |
| 'addorsed', | |
| 'adduce', | |
| 'adeciduate', | |
| 'adeem', | |
| 'adelaster', | |
| 'adelphogamy', | |
| 'ademption', | |
| 'adenalgia', | |
| 'adenia', | |
| 'adeniform', | |
| 'adenography', | |
| 'adenoid', | |
| 'adenology', | |
| 'adenotomy', | |
| 'adespota', | |
| 'adessive', | |
| 'adevism', | |
| 'adharma', | |
| 'adhibit', | |
| 'adhocracy', | |
| 'adiabatic', | |
| 'adiaphoresis', | |
| 'adiaphorism', | |
| 'adiaphoron', | |
| 'adiapneustia', | |
| 'adiathermancy', | |
| 'adipescent', | |
| 'adipic', | |
| 'adipocere', | |
| 'adipsia', | |
| 'adit', | |
| 'adjudge', | |
| 'adjutage', | |
| 'adjutor', | |
| 'adjuvant', | |
| 'admanuensis', | |
| 'admaxillary', | |
| 'admeasurement', | |
| 'adminicle', | |
| 'adnascent', | |
| 'adnominal', | |
| 'adnomination', | |
| 'adnoun', | |
| 'adonise', | |
| 'adoptionism', | |
| 'adoral', | |
| 'adosculation', | |
| 'adoxography', | |
| 'adoxy', | |
| 'adpress', | |
| 'adrogation', | |
| 'adscititious', | |
| 'adscript', | |
| 'adsorb', | |
| 'adumbrate', | |
| 'adunc', | |
| 'aduncate', | |
| 'adust', | |
| 'advection', | |
| 'advehent', | |
| 'advenient', | |
| 'adventitious', | |
| 'adventive', | |
| 'adversaria', | |
| 'adversative', | |
| 'advert', | |
| 'advertorial', | |
| 'advesperate', | |
| 'advocaat', | |
| 'advowson', | |
| 'adynamia', | |
| 'adytum', | |
| 'aedile', | |
| 'aedoeology', | |
| 'aegilops', | |
| 'aegis', | |
| 'aegrotat', | |
| 'aeneous', | |
| 'aeolian', | |
| 'aeolipyle', | |
| 'aeolistic', | |
| 'aeolotropy', | |
| 'aeonian', | |
| 'aerenchyma', | |
| 'aeriform', | |
| 'aerious', | |
| 'aerobe', | |
| 'aerobiology', | |
| 'aerodonetics', | |
| 'aerogenesis', | |
| 'aerography', | |
| 'aerolite', | |
| 'aerolith', | |
| 'aerolithology', | |
| 'aerology', | |
| 'aeromancy', | |
| 'aerometer', | |
| 'aerophane', | |
| 'aerophilately', | |
| 'aerophobia', | |
| 'aerophore', | |
| 'aeropleustic', | |
| 'aerostat', | |
| 'aerostatics', | |
| 'aeruginous', | |
| 'aerugo', | |
| 'aesc', | |
| 'aesopian', | |
| 'aesthesia', | |
| 'aesthesiogenic', | |
| 'aestheticism', | |
| 'aestival', | |
| 'aethrioscope', | |
| 'aeviternal', | |
| 'aeviternity', | |
| 'afebrile', | |
| 'affabulation', | |
| 'affeer', | |
| 'afferent', | |
| 'affiance', | |
| 'affine', | |
| 'afflated', | |
| 'afflatus', | |
| 'afforce', | |
| 'afforest', | |
| 'affranchise', | |
| 'affray', | |
| 'affrayer', | |
| 'affreightment', | |
| 'affreux', | |
| 'affricate', | |
| 'affronté', | |
| 'affusion', | |
| 'afore', | |
| 'afterclap', | |
| 'afterdeck', | |
| 'aftergame', | |
| 'afterguard', | |
| 'afterings', | |
| 'afterpiece', | |
| 'aftershaft', | |
| 'afterwil', | |
| 'agacerie', | |
| 'agalactia', | |
| 'agalloch', | |
| 'agamist', | |
| 'agamogenesis', | |
| 'agape', | |
| 'agapeistic', | |
| 'agapet', | |
| 'agapetae', | |
| 'agapism', | |
| 'agastopia', | |
| 'agatewear', | |
| 'agathism', | |
| 'agathodaimon', | |
| 'agelast', | |
| 'agennesic', | |
| 'agenocratia', | |
| 'agentive', | |
| 'ageotropic', | |
| 'agersia', | |
| 'ageusia', | |
| 'agger', | |
| 'aggerose', | |
| 'aggiornamento', | |
| 'aggrade', | |
| 'aggrandize', | |
| 'aggrate', | |
| 'aggry', | |
| 'agio', | |
| 'agiotage', | |
| 'agist', | |
| 'agistment', | |
| 'aglet', | |
| 'agma', | |
| 'agminate', | |
| 'agnail', | |
| 'agname', | |
| 'agnation', | |
| 'agnize', | |
| 'agnomen', | |
| 'agnosic', | |
| 'agnosticism', | |
| 'agnosy', | |
| 'agoge', | |
| 'agogic', | |
| 'agomphosis', | |
| 'agone', | |
| 'agonic', | |
| 'agonism', | |
| 'agonistes', | |
| 'agonistic', | |
| 'agonistics', | |
| 'agoraphobia', | |
| 'agowilt', | |
| 'agraffe', | |
| 'agrapha', | |
| 'agraphia', | |
| 'agravic', | |
| 'agrestic', | |
| 'agriology', | |
| 'agrize', | |
| 'agrizoiatry', | |
| 'agrobiology', | |
| 'agrology', | |
| 'agromania', | |
| 'agronomics', | |
| 'agrostography', | |
| 'agrostology', | |
| 'agrypnia', | |
| 'agrypnotic', | |
| 'aguardiente', | |
| 'agyiophobia', | |
| 'agynary', | |
| 'ahimsa', | |
| 'ahull', | |
| 'ai', | |
| 'aichmophobia', | |
| 'aiger', | |
| 'aigrette', | |
| 'aiguille', | |
| 'aileron', | |
| 'ailette', | |
| 'ailuromancy', | |
| 'ailurophilia', | |
| 'ailurophobia', | |
| 'aioli', | |
| 'airscrew', | |
| 'aischrolatry', | |
| 'aisling', | |
| 'ait', | |
| 'aitchbone', | |
| 'aiué', | |
| 'akeratophorous', | |
| 'akinesia', | |
| 'ala', | |
| 'alabamine', | |
| 'alack', | |
| 'alalia', | |
| 'alameda', | |
| 'alamort', | |
| 'alannah', | |
| 'alar', | |
| 'alastrim', | |
| 'alate', | |
| 'alation', | |
| 'alaudine', | |
| 'alb', | |
| 'albarello', | |
| 'albata', | |
| 'albedo', | |
| 'albescent', | |
| 'albicant', | |
| 'albificative', | |
| 'albion', | |
| 'albocracy', | |
| 'albolith', | |
| 'albugineous', | |
| 'alcahest', | |
| 'alcatote', | |
| 'alcine', | |
| 'alcoholometer', | |
| 'alcovinometer', | |
| 'aleatoric', | |
| 'aleberry', | |
| 'alecost', | |
| 'alectormancy', | |
| 'alectryomachy', | |
| 'alectryomancy', | |
| 'alee', | |
| 'alegar', | |
| 'alembicated', | |
| 'alepine', | |
| 'alethiology', | |
| 'aleuromancy', | |
| 'alexia', | |
| 'alexipharmic', | |
| 'alfet', | |
| 'alforge', | |
| 'algedonics', | |
| 'algefacient', | |
| 'algetic', | |
| 'algicide', | |
| 'algid', | |
| 'alginuresis', | |
| 'algolagnia', | |
| 'algology', | |
| 'algophobia', | |
| 'algor', | |
| 'algraphy', | |
| 'alible', | |
| 'alidade', | |
| 'aliform', | |
| 'aligerous', | |
| 'aliped', | |
| 'aliphatic', | |
| 'aliquant', | |
| 'aliquot', | |
| 'aliter', | |
| 'alk', | |
| 'alkalimeter', | |
| 'alkanet', | |
| 'allantiasis', | |
| 'allantoid', | |
| 'allative', | |
| 'allemain', | |
| 'allemande', | |
| 'alliaceous', | |
| 'allicient', | |
| 'allision', | |
| 'allocatur', | |
| 'allochthonous', | |
| 'allodic', | |
| 'allogamy', | |
| 'allogeneous', | |
| 'allography', | |
| 'allolalia', | |
| 'allonge', | |
| 'allonym', | |
| 'allotheism', | |
| 'allotriophagy', | |
| 'allotropy', | |
| 'alluvion', | |
| 'almacantar', | |
| 'almagest', | |
| 'almandine', | |
| 'almoner', | |
| 'almuce', | |
| 'alnager', | |
| 'alogism', | |
| 'alomancy', | |
| 'alopecia', | |
| 'alopecoid', | |
| 'alow', | |
| 'alpaca', | |
| 'alpenglow', | |
| 'alpenstocker', | |
| 'alpestrine', | |
| 'alphenic', | |
| 'alphitomancy', | |
| 'alphonsin', | |
| 'alt', | |
| 'altarage', | |
| 'alterity', | |
| 'alternatim', | |
| 'altiloquence', | |
| 'altisonant', | |
| 'altitonant', | |
| 'altricial', | |
| 'aludel', | |
| 'aluminiferous', | |
| 'alveary', | |
| 'alveolate', | |
| 'alveromancy', | |
| 'alviducous', | |
| 'alvine', | |
| 'ama', | |
| 'amadelphous', | |
| 'amain', | |
| 'amanous', | |
| 'amanuensis', | |
| 'amaranth', | |
| 'amaranthine', | |
| 'amasesis', | |
| 'amasthenic', | |
| 'amathophobia', | |
| 'amaxophobia', | |
| 'ambages', | |
| 'ambeer', | |
| 'ambisinistrous', | |
| 'ambit', | |
| 'ambo', | |
| 'ambry', | |
| 'ambsace', | |
| 'ambulatory', | |
| 'ambulomancy', | |
| 'ambulophobia', | |
| 'ambustion', | |
| 'amende', | |
| 'ament', | |
| 'amerce', | |
| 'ametropia', | |
| 'amice', | |
| 'amicicide', | |
| 'amidships', | |
| 'ammeter', | |
| 'ammophilous', | |
| 'amnicolist', | |
| 'amniomancy', | |
| 'amorce', | |
| 'amoret', | |
| 'amoretto', | |
| 'ampelidious', | |
| 'ampelography', | |
| 'ampere', | |
| 'amphibiolith', | |
| 'amphibolic', | |
| 'amphibology', | |
| 'amphigean', | |
| 'amphigory', | |
| 'amphimixis', | |
| 'amphipneust', | |
| 'amphisbaena', | |
| 'amphiscian', | |
| 'amplexus', | |
| 'ampliative', | |
| 'amplivagant', | |
| 'ampulla', | |
| 'amrita', | |
| 'amygdaloid', | |
| 'amyloid', | |
| 'amyous', | |
| 'an', | |
| 'ana', | |
| 'anabasis', | |
| 'anabiosis', | |
| 'anacampserote', | |
| 'anacamptic', | |
| 'anacardic', | |
| 'anacathartic', | |
| 'anachoric', | |
| 'anaclastic', | |
| 'anaclitic', | |
| 'anacoluthon', | |
| 'anacrisis', | |
| 'anacrusis', | |
| 'anacusic', | |
| 'anadem', | |
| 'anadiplosis', | |
| 'anadromous', | |
| 'anaerectic', | |
| 'anaesthesiology', | |
| 'anagalactic', | |
| 'anaglyph', | |
| 'anaglyptics', | |
| 'anaglyptography', | |
| 'anagnorisis', | |
| 'anagogy', | |
| 'anagraphy', | |
| 'analects', | |
| 'analemma', | |
| 'analgia', | |
| 'anamnesis', | |
| 'anamorphic', | |
| 'anandrious', | |
| 'ananym', | |
| 'anapeiratic', | |
| 'anapest', | |
| 'anaphalantiasis', | |
| 'anaphia', | |
| 'anaphora', | |
| 'anapnea', | |
| 'anastasic', | |
| 'anastrophe', | |
| 'anatine', | |
| 'anatocism', | |
| 'anatreptic', | |
| 'anaudia', | |
| 'anbury', | |
| 'anchorite', | |
| 'ancillary', | |
| 'ancipitous', | |
| 'ancistroid', | |
| 'ancon', | |
| 'anconoid', | |
| 'ancoral', | |
| 'ancress', | |
| 'andiron', | |
| 'andragogy', | |
| 'androcracy', | |
| 'androlepsia', | |
| 'andromania', | |
| 'androphagy', | |
| 'aneabil', | |
| 'anele', | |
| 'anemocracy', | |
| 'anemograph', | |
| 'anemography', | |
| 'anemology', | |
| 'anemometer', | |
| 'anemophilous', | |
| 'anencephalic', | |
| 'anent', | |
| 'anergia', | |
| 'anesis', | |
| 'aneuria', | |
| 'anfractuous', | |
| 'angary', | |
| 'angelocracy', | |
| 'angelolatry', | |
| 'angelology', | |
| 'angelus', | |
| 'angiogenesis', | |
| 'angiology', | |
| 'anglomania', | |
| 'anglophilia', | |
| 'anglophobia', | |
| 'angora', | |
| 'angstrom', | |
| 'anguiform', | |
| 'anguilliform', | |
| 'anguine', | |
| 'anguine', | |
| 'anhedonia', | |
| 'anhelation', | |
| 'anhidrosis', | |
| 'aniconic', | |
| 'anicular', | |
| 'anile', | |
| 'animadvert', | |
| 'animastic', | |
| 'animism', | |
| 'anion', | |
| 'anisothenic', | |
| 'anker', | |
| 'ankus', | |
| 'ankyroid', | |
| 'anlace', | |
| 'anneal', | |
| 'annectent', | |
| 'annihilationism', | |
| 'annodated', | |
| 'annomination', | |
| 'annuent', | |
| 'annulet', | |
| 'annulose', | |
| 'anocathartic', | |
| 'anodontia', | |
| 'anodyne', | |
| 'anoesis', | |
| 'anogenic', | |
| 'anomia', | |
| 'anomic', | |
| 'anomie', | |
| 'anomphalous', | |
| 'anon', | |
| 'anonym', | |
| 'anopheline', | |
| 'anopisthographic', | |
| 'anopsia', | |
| 'anorchous', | |
| 'anosmia', | |
| 'anotic', | |
| 'ansate', | |
| 'anserine', | |
| 'anta', | |
| 'antalgic', | |
| 'antanaclasis', | |
| 'antapology', | |
| 'antarchy', | |
| 'anteambulo', | |
| 'antechapel', | |
| 'antejentacular', | |
| 'anteloquy', | |
| 'antelucan', | |
| 'antemundane', | |
| 'antenniferous', | |
| 'antepast', | |
| 'antependium', | |
| 'antephialtic', | |
| 'antepone', | |
| 'anteprandial', | |
| 'antevenient', | |
| 'anthelion', | |
| 'anthelminthic', | |
| 'anthesis', | |
| 'anthomancy', | |
| 'anthomania', | |
| 'anthophilous', | |
| 'anthorism', | |
| 'anthracomancy', | |
| 'anthrophobia', | |
| 'anthropobiology', | |
| 'anthropogenesis', | |
| 'anthropoglot', | |
| 'anthropolatry', | |
| 'anthropolith', | |
| 'anthropomancy', | |
| 'anthropopathy', | |
| 'anthropophaginian', | |
| 'anthropophagous', | |
| 'anthroposophy', | |
| 'anthropotheism', | |
| 'antibasilican', | |
| 'antiblastic', | |
| 'antibromic', | |
| 'antichresis', | |
| 'antichthon', | |
| 'anticryptic', | |
| 'antidisestablishmentarianism', | |
| 'antigalactic', | |
| 'antigropelos', | |
| 'antilapsarianism', | |
| 'antilegomena', | |
| 'antilogarithm', | |
| 'antilogism', | |
| 'antilogy', | |
| 'antimnemonic', | |
| 'antimony', | |
| 'antinomianism', | |
| 'antinomy', | |
| 'antipedobaptism', | |
| 'antiperistasis', | |
| 'antiphon', | |
| 'antiphrasis', | |
| 'antipudic', | |
| 'antiscian', | |
| 'antistrophe', | |
| 'antithalian', | |
| 'antithesis', | |
| 'antitypy', | |
| 'antonomasia', | |
| 'antre', | |
| 'antrorse', | |
| 'anuptaphobia', | |
| 'anuresis', | |
| 'anurous', | |
| 'anzactile', | |
| 'aorist', | |
| 'apaesthesia', | |
| 'apagoge', | |
| 'apanage', | |
| 'apantomancy', | |
| 'apatetic', | |
| 'apay', | |
| 'apercu', | |
| 'aperient', | |
| 'aphagia', | |
| 'aphemia', | |
| 'apheresis', | |
| 'aphesis', | |
| 'aphicide', | |
| 'aphidicide', | |
| 'aphnology', | |
| 'aphologistic', | |
| 'aphotic', | |
| 'aphrasia', | |
| 'aphrodisiomania', | |
| 'aphthong', | |
| 'apian', | |
| 'apiarian', | |
| 'apical', | |
| 'apiculture', | |
| 'apiology', | |
| 'apistia', | |
| 'apivorous', | |
| 'aplanatic', | |
| 'apocalypticism', | |
| 'apocarteresis', | |
| 'apocatastasis', | |
| 'apocatastisis', | |
| 'apocope', | |
| 'apocrisiary', | |
| 'apodal', | |
| 'apodictic', | |
| 'apodosis', | |
| 'apodysophilia', | |
| 'apograph', | |
| 'apolaustic', | |
| 'apologetics', | |
| 'aponia', | |
| 'apopemptic', | |
| 'apophasis', | |
| 'apophoret', | |
| 'apophthegm', | |
| 'aporia', | |
| 'aposiopesis', | |
| 'apositia', | |
| 'apostasy', | |
| 'apostil', | |
| 'apostrophe', | |
| 'apotelesm', | |
| 'apothegm', | |
| 'apotheosis', | |
| 'apotropaic', | |
| 'apparitor', | |
| 'appendant', | |
| 'apperception', | |
| 'appersonation', | |
| 'appetence', | |
| 'applanate', | |
| 'apport', | |
| 'appose', | |
| 'apposite', | |
| 'approbation', | |
| 'apprompt', | |
| 'appropinquity', | |
| 'appui', | |
| 'appulse', | |
| 'appurtenance', | |
| 'apricate', | |
| 'aprique', | |
| 'apse', | |
| 'apselophesia', | |
| 'apsidal', | |
| 'apterygial', | |
| 'aptotic', | |
| 'aptronym', | |
| 'apyrexy', | |
| 'aquamanile', | |
| 'aquaphobia', | |
| 'aquarelle', | |
| 'aquifer', | |
| 'aquiform', | |
| 'aquiline', | |
| 'araba', | |
| 'arachibutyrophobia', | |
| 'arachnivorous', | |
| 'arachnology', | |
| 'arachnophobia', | |
| 'araneidan', | |
| 'araneiform', | |
| 'araneous', | |
| 'araphorostic', | |
| 'aration', | |
| 'arbalest', | |
| 'arborescent', | |
| 'arboricolous', | |
| 'arboriform', | |
| 'arbrolatry', | |
| 'arbuscle', | |
| 'arbustum', | |
| 'arcanna', | |
| 'arcate', | |
| 'archaeolatry', | |
| 'archelogy', | |
| 'archet', | |
| 'archididascalian', | |
| 'archididascalos', | |
| 'archimandrite', | |
| 'archimime', | |
| 'architectonics', | |
| 'architrave', | |
| 'archology', | |
| 'arciform', | |
| 'arctician', | |
| 'arctogaeal', | |
| 'arctoid', | |
| 'arctophile', | |
| 'arctophily', | |
| 'arcuate', | |
| 'ard', | |
| 'ardass', | |
| 'arefy', | |
| 'arenaceous', | |
| 'arenoid', | |
| 'areology', | |
| 'areometer', | |
| 'areopagitic', | |
| 'aret', | |
| 'aretaics', | |
| 'arete', | |
| 'argand', | |
| 'argent', | |
| 'argentiferous', | |
| 'argentocracy', | |
| 'argil', | |
| 'argillaceous', | |
| 'argol', | |
| 'argol', | |
| 'argosy', | |
| 'arguria', | |
| 'argute', | |
| 'argyll', | |
| 'arietine', | |
| 'arietinous', | |
| 'aright', | |
| 'ariolation', | |
| 'aristarch', | |
| 'aristarchy', | |
| 'aristology', | |
| 'arithmancy', | |
| 'arithmocracy', | |
| 'arithmogram', | |
| 'arithmomania', | |
| 'armamentarium', | |
| 'armigerous', | |
| 'armillary', | |
| 'armipotent', | |
| 'armisonant', | |
| 'armomancy', | |
| 'armure', | |
| 'aroint', | |
| 'arpent', | |
| 'arpenteur', | |
| 'arrant', | |
| 'arras', | |
| 'arrasene', | |
| 'arrect', | |
| 'arrendator', | |
| 'arreptitious', | |
| 'arrestant', | |
| 'arrhizal', | |
| 'arris', | |
| 'arrogate', | |
| 'arrosive', | |
| 'arthrology', | |
| 'arthroscope', | |
| 'arundiferous', | |
| 'arundinaceous', | |
| 'arval', | |
| 'ascesis', | |
| 'asceticism', | |
| 'ascham', | |
| 'ascian', | |
| 'aseity', | |
| 'ashlar', | |
| 'ashplant', | |
| 'asinine', | |
| 'asitia', | |
| 'askefise', | |
| 'asomatous', | |
| 'asonia', | |
| 'asperge', | |
| 'aspergilliform', | |
| 'aspergillum', | |
| 'asperity', | |
| 'asperse', | |
| 'aspersory', | |
| 'aspheterism', | |
| 'aspidate', | |
| 'aspidomancy', | |
| 'asportation', | |
| 'assart', | |
| 'assecuration', | |
| 'assentation', | |
| 'asseveration', | |
| 'assibilate', | |
| 'assiduity', | |
| 'assizer', | |
| 'assocative', | |
| 'assoil', | |
| 'assot', | |
| 'assuefaction', | |
| 'assuetude', | |
| 'assurgent', | |
| 'astacology', | |
| 'astatic', | |
| 'asteism', | |
| 'asterism', | |
| 'astern', | |
| 'astheniology', | |
| 'asthenopia', | |
| 'astichous', | |
| 'astragal', | |
| 'astragalomancy', | |
| 'astraphobia', | |
| 'astrapophobia', | |
| 'astriction', | |
| 'astringe', | |
| 'astrionics', | |
| 'astrobleme', | |
| 'astrobolism', | |
| 'astrogeology', | |
| 'astrognosy', | |
| 'astrogony', | |
| 'astrolatry', | |
| 'astrologaster', | |
| 'astromancy', | |
| 'astrometeorology', | |
| 'astronomical', | |
| 'astrophile', | |
| 'astroseismology', | |
| 'astrut', | |
| 'asynartetic', | |
| 'asyndeton', | |
| 'atactic', | |
| 'ataraxia', | |
| 'atavism', | |
| 'ateknia', | |
| 'atelier', | |
| 'ateliosis', | |
| 'athanasy', | |
| 'athanor', | |
| 'atheling', | |
| 'athenaeum', | |
| 'athermic', | |
| 'athetesis', | |
| 'athetosis', | |
| 'athwart', | |
| 'athymia', | |
| 'atimy', | |
| 'atlantes', | |
| 'atlas', | |
| 'atmatertera', | |
| 'atmology', | |
| 'atmometer', | |
| 'atocia', | |
| 'atokous', | |
| 'atomism', | |
| 'atony', | |
| 'atpatruus', | |
| 'atrabiliary', | |
| 'atrabilious', | |
| 'atrament', | |
| 'atresia', | |
| 'atrichia', | |
| 'atrous', | |
| 'attainder', | |
| 'attaint', | |
| 'attemper', | |
| 'attenuate', | |
| 'atticism', | |
| 'attingent', | |
| 'attollent', | |
| 'attorn', | |
| 'attrahent', | |
| 'attrist', | |
| 'attrite', | |
| 'attuition', | |
| 'aubade', | |
| 'aubergine', | |
| 'aubin', | |
| 'auceps', | |
| 'aucupate', | |
| 'audile', | |
| 'audiology', | |
| 'audiometer', | |
| 'audiophile', | |
| 'augean', | |
| 'augend', | |
| 'aught', | |
| 'aularian', | |
| 'aulete', | |
| 'aulic', | |
| 'auncel', | |
| 'aurantiaceous', | |
| 'aureity', | |
| 'aureole', | |
| 'auricomous', | |
| 'auricular', | |
| 'auriferous', | |
| 'aurifex', | |
| 'auriform', | |
| 'aurigation', | |
| 'aurilave', | |
| 'auriphrygia', | |
| 'auriscope', | |
| 'aurochs', | |
| 'aurulent', | |
| 'auscultation', | |
| 'auslaut', | |
| 'austringer', | |
| 'austromancy', | |
| 'autarchy', | |
| 'autarkic', | |
| 'autecology', | |
| 'autocephality', | |
| 'autocoprophagy', | |
| 'autocracy', | |
| 'autodafe', | |
| 'autodidact', | |
| 'autogenesis', | |
| 'autognosis', | |
| 'autolatry', | |
| 'autology', | |
| 'automorphism', | |
| 'automysophobia', | |
| 'autonym', | |
| 'autophagy', | |
| 'autophanous', | |
| 'autophobia', | |
| 'autoschediasm', | |
| 'autosoterism', | |
| 'autotelic', | |
| 'autothaumaturgist', | |
| 'autotheism', | |
| 'autotropic', | |
| 'auxanometer', | |
| 'auxesis', | |
| 'auxology', | |
| 'auxometer', | |
| 'aval', | |
| 'avalement', | |
| 'avaunt', | |
| 'avaunt', | |
| 'aveniform', | |
| 'averruncate', | |
| 'averruncator', | |
| 'avicide', | |
| 'avicular', | |
| 'avinosis', | |
| 'avionics', | |
| 'avital', | |
| 'avizandum', | |
| 'avolitional', | |
| 'avulse', | |
| 'avuncular', | |
| 'awn', | |
| 'axilla', | |
| 'axiniform', | |
| 'axinomancy', | |
| 'axiology', | |
| 'azimuth', | |
| 'azoth', | |
| 'azuline', | |
| 'azure', | |
| 'azymous', | |
| 'bafflegab', | |
| 'balderdash', | |
| 'balductum', | |
| 'bankrupt', | |
| 'bant', | |
| 'baragouin', | |
| 'barmecide', | |
| 'bathykolpian', | |
| 'beghilos', | |
| 'bejuggle', | |
| 'bellwether', | |
| 'bezoar', | |
| 'blackguard', | |
| 'blackmail', | |
| 'blatherskite', | |
| 'bloviate', | |
| 'blurb', | |
| 'bodacious', | |
| 'bodger', | |
| 'bombilation', | |
| 'bonzer', | |
| 'boondoggle', | |
| 'bootless', | |
| 'borborygmus', | |
| 'boscage', | |
| 'boustrophedonic', | |
| 'bowdlerise', | |
| 'bridewell', | |
| 'brimborion', | |
| 'brobdingnagian', | |
| 'bromopnea', | |
| 'brummagem', | |
| 'bruxer', | |
| 'burgoo', | |
| 'cachinnatory', | |
| 'cacography', | |
| 'cad', | |
| 'cadastral', | |
| 'cadge', | |
| 'caitiff', | |
| 'calenture', | |
| 'callipygian', | |
| 'callithumpian', | |
| 'caltrop', | |
| 'camelion', | |
| 'cancrine', | |
| 'candent', | |
| 'carphology', | |
| 'carwichet', | |
| 'cataglottism', | |
| 'cataract', | |
| 'catoptromancy', | |
| 'cenatory', | |
| 'cento', | |
| 'ceraunograph', | |
| 'charabanc', | |
| 'chatoyant', | |
| 'cheapskate', | |
| 'cheatbread', | |
| 'chiliastic', | |
| 'chrestomathy', | |
| 'chthonic', | |
| 'chuckfarthing', | |
| 'circumbendibus', | |
| 'clerihew', | |
| 'clinquant', | |
| 'cockaigne', | |
| 'cockamamie', | |
| 'cockshut', | |
| 'codology', | |
| 'codswallop', | |
| 'cohobation', | |
| 'collop', | |
| 'collyrium', | |
| 'colophonian', | |
| 'conkerer', | |
| 'contumely', | |
| 'coopering', | |
| 'copacetic', | |
| 'costard', | |
| 'costus', | |
| 'coulrophobia', | |
| 'coxcomb', | |
| 'cribellate', | |
| 'crimping', | |
| 'cruciverbalist', | |
| 'cuckingstool', | |
| 'cunicular', | |
| 'cyborg', | |
| 'cymbocephalic', | |
| 'dactylonomy', | |
| 'daftdays', | |
| 'dandiprat', | |
| 'darg', | |
| 'deasil', | |
| 'deipnosophist', | |
| 'deray', | |
| 'destrier', | |
| 'didgeridoo', | |
| 'digamy', | |
| 'digladiation', | |
| 'discombobulate', | |
| 'donnybrook', | |
| 'doohickey', | |
| 'doryphore', | |
| 'dozenal', | |
| 'dracontology', | |
| 'droogish', | |
| 'dumbbell', | |
| 'dumbledore', | |
| 'dydler', | |
| 'eagre', | |
| 'edacious', | |
| 'eleemosynary', | |
| 'ell', | |
| 'empasm', | |
| 'enchiridion', | |
| 'engastrimyth', | |
| 'ensorcelled', | |
| 'epeolatry', | |
| 'ergophobia', | |
| 'esculent', | |
| 'estovers', | |
| 'esurience', | |
| 'etheromaniac', | |
| 'eyot', | |
| 'factotum', | |
| 'fanfaronade', | |
| 'fantods', | |
| 'farb', | |
| 'fardel', | |
| 'fescennine', | |
| 'fidimplicitary', | |
| 'fimbriated', | |
| 'financephalograph', | |
| 'flabbergasted', | |
| 'flagitious', | |
| 'flapdoodle', | |
| 'flavicomous', | |
| 'fletcherise', | |
| 'flibbertigibbet', | |
| 'floccinaucinihilipilification', | |
| 'florilegium', | |
| 'fogou', | |
| 'folderol', | |
| 'foofaraw', | |
| 'foudroyant', | |
| 'franglais', | |
| 'frigorific', | |
| 'frontispiece', | |
| 'fuliginous', | |
| 'funambulist', | |
| 'furbelow', | |
| 'fustigate', | |
| 'fustilugs', | |
| 'gaberlunzie', | |
| 'gadzooks', | |
| 'gafiate', | |
| 'galimatias', | |
| 'galligaskins', | |
| 'gallimaufry', | |
| 'gantlope', | |
| 'garbler', | |
| 'gargalesis', | |
| 'garth', | |
| 'gazebo', | |
| 'gazump', | |
| 'geis', | |
| 'gelotologist', | |
| 'ginglyform', | |
| 'glebe', | |
| 'gnathonic', | |
| 'gobbledygook', | |
| 'gobo', | |
| 'gomer', | |
| 'gonfalon', | |
| 'gongoozler', | |
| 'gooding', | |
| 'gorbellied', | |
| 'gormagon', | |
| 'gossypiboma', | |
| 'gowk', | |
| 'gowpen', | |
| 'grawlix', | |
| 'gremlin', | |
| 'grok', | |
| 'groze', | |
| 'guiser', | |
| 'gurning', | |
| 'haberdasher', | |
| 'haggard', | |
| 'haha', | |
| 'halcyon', | |
| 'handfasting', | |
| 'haplology', | |
| 'haptic', | |
| 'haruspex', | |
| 'hearthmoney', | |
| 'hebesphenomegacorona', | |
| 'hebetude', | |
| 'heiligenschein', | |
| 'heterography', | |
| 'higgledypiggledy', | |
| 'higgler', | |
| 'hircocervus', | |
| 'hobbledehoy', | |
| 'hocuspocus', | |
| 'hodening', | |
| 'hokeypokey', | |
| 'honeyfuggle', | |
| 'honorificabilitudinitatibus', | |
| 'hornswoggle', | |
| 'houghmagandy', | |
| 'huggermugger', | |
| 'humdudgeon', | |
| 'humicubation', | |
| 'humongous', | |
| 'hwyl', | |
| 'hyperborean', | |
| 'hypnobioscope', | |
| 'ichthyophagous', | |
| 'ignivomous', | |
| 'impignorate', | |
| 'incalescence', | |
| 'incarnadine', | |
| 'incunabulum', | |
| 'infundibulum', | |
| 'inglenook', | |
| 'ingrained', | |
| 'insinuendo', | |
| 'interrobang', | |
| 'inwit', | |
| 'isabelline', | |
| 'ishkabibble', | |
| 'ixnay', | |
| 'jackalope', | |
| 'jackanapes', | |
| 'jactitation', | |
| 'jaculation', | |
| 'janusfaced', | |
| 'jiggerypokery', | |
| 'jingoism', | |
| 'jobbernowl', | |
| 'jocund', | |
| 'jorum', | |
| 'josser', | |
| 'kakistocracy', | |
| 'katzenjammer', | |
| 'kelemenopy', | |
| 'kerfuffle', | |
| 'killick', | |
| 'kinetoscope', | |
| 'knucker', | |
| 'labretifery', | |
| 'lackadaisical', | |
| 'lagniappe', | |
| 'latrociny', | |
| 'leechcraft', | |
| 'leiotrichous', | |
| 'leucipottomy', | |
| 'lexiphanic', | |
| 'linhay', | |
| 'linseywoolsey', | |
| 'lipogrammatist', | |
| 'lippitude', | |
| 'liripipe', | |
| 'lithophone', | |
| 'lollapaloosa', | |
| 'lollygag', | |
| 'lorinery', | |
| 'lycanthropy', | |
| 'macaronic', | |
| 'machicolation', | |
| 'macilent', | |
| 'magiric', | |
| 'maieutic', | |
| 'makebate', | |
| 'malapert', | |
| 'malarkey', | |
| 'mallemaroking', | |
| 'mansuetude', | |
| 'maritorious', | |
| 'mattoid', | |
| 'maundy', | |
| 'megilp', | |
| 'merrythought', | |
| 'mesmerise', | |
| 'metemptosis', | |
| 'metoposcopist', | |
| 'mimsy', | |
| 'mithridate', | |
| 'mongo', | |
| 'mooreeffoc', | |
| 'mortsafe', | |
| 'mudlark', | |
| 'mugwump', | |
| 'muliebrious', | |
| 'mulligrubs', | |
| 'mundungus', | |
| 'musterdevillers', | |
| 'mutoscope', | |
| 'nambypamby', | |
| 'natiform', | |
| 'nepenthes', | |
| 'nescient', | |
| 'nihilartikel', | |
| 'nincompoop', | |
| 'ninnyhammer', | |
| 'nipperkin', | |
| 'nostoc', | |
| 'nubbingcheat', | |
| 'nugiperous', | |
| 'nychthemeron', | |
| 'nympholepsy', | |
| 'oaf', | |
| 'obdiplostemonous', | |
| 'obnubilate', | |
| 'oche', | |
| 'octothorpe', | |
| 'olitory', | |
| 'ombre', | |
| 'omniumgatherum', | |
| 'omphaloskepsis', | |
| 'onomasticon', | |
| 'onomatopoeia', | |
| 'onychophagist', | |
| 'oojah', | |
| 'opodeldoc', | |
| 'orismology', | |
| 'orotund', | |
| 'orrery', | |
| 'ostrobogulous', | |
| 'oxter', | |
| 'oyez', | |
| 'palimpsest', | |
| 'pallmall', | |
| 'pandiculation', | |
| 'panglossian', | |
| 'panjandrum', | |
| 'panorama', | |
| 'pantechnicon', | |
| 'paralipsis', | |
| 'paraphernalia', | |
| 'paregoric', | |
| 'paroemiological', | |
| 'pastinaceous', | |
| 'patibulary', | |
| 'pecksniffian', | |
| 'pelf', | |
| 'perverb', | |
| 'petard', | |
| 'petrichor', | |
| 'pettifogging', | |
| 'phantasmagoria', | |
| 'pharology', | |
| 'phenology', | |
| 'picadil', | |
| 'picayune', | |
| 'piepowder', | |
| 'pigwidgeon', | |
| 'pilcrow', | |
| 'pilgarlic', | |
| 'pillaloo', | |
| 'pinchbeck', | |
| 'pinguescence', | |
| 'pitmatic', | |
| 'plenilune', | |
| 'pocillovy', | |
| 'pogonotrophy', | |
| 'poodlefaker', | |
| 'popinjay', | |
| 'poppycock', | |
| 'poppysmic', | |
| 'portolan', | |
| 'potus', | |
| 'pound', | |
| 'preposterous', | |
| 'prickmedainty', | |
| 'pridian', | |
| 'protologism', | |
| 'pulchritudinous', | |
| 'purdonium', | |
| 'pusillanimous', | |
| 'pyknic', | |
| 'quidnunc', | |
| 'quillon', | |
| 'quincunx', | |
| 'quockerwodger', | |
| 'quodlibet', | |
| 'rambunctious', | |
| 'rantipole', | |
| 'rasorial', | |
| 'rebarbative', | |
| 'retronym', | |
| 'rhadamanthine', | |
| 'rhapsodomancy', | |
| 'rhinotillexomania', | |
| 'rhopalic', | |
| 'rigmarole', | |
| 'ripsnorter', | |
| 'robinsonade', | |
| 'rodomontade', | |
| 'roo', | |
| 'rumbledethumps', | |
| 'sabermetrician', | |
| 'sabrage', | |
| 'saggar', | |
| 'salmagundi', | |
| 'sapid', | |
| 'sarcophagus', | |
| 'sardoodledom', | |
| 'saturnalia', | |
| 'scacchic', | |
| 'scalene', | |
| 'scallywag', | |
| 'sciolist', | |
| 'scofflaw', | |
| 'scombroid', | |
| 'scrimshaw', | |
| 'scrumping', | |
| 'scutching', | |
| 'seersucker', | |
| 'semordnilap', | |
| 'sennight', | |
| 'sequacious', | |
| 'serendipity', | |
| 'sesquipedalian', | |
| 'sferics', | |
| 'shenanigan', | |
| 'simoleon', | |
| 'singultient', | |
| 'sisyphean', | |
| 'sitooterie', | |
| 'skedaddle', | |
| 'skewwhiff', | |
| 'skillygalee', | |
| 'skimbleskamble', | |
| 'skimmington', | |
| 'skulduggery', | |
| 'sledging', | |
| 'slubberdegullion', | |
| 'slumgullion', | |
| 'smaragdine', | |
| 'smellfeast', | |
| 'smouch', | |
| 'snarge', | |
| 'snickersnee', | |
| 'snollygoster', | |
| 'sockdolager', | |
| 'solarsail', | |
| 'sophrosyne', | |
| 'spanghew', | |
| 'spatterdashes', | |
| 'sphairistike', | |
| 'sphragistics', | |
| 'spifflicate', | |
| 'spondulicks', | |
| 'sponginghouse', | |
| 'squabash', | |
| 'stammel', | |
| 'stannator', | |
| 'steganography', | |
| 'sternutatory', | |
| 'stillicide', | |
| 'stotting', | |
| 'stramonium', | |
| 'struthonian', | |
| 'stultiloquy', | |
| 'stylite', | |
| 'subfusc', | |
| 'surrebutter', | |
| 'swazzle', | |
| 'symploce', | |
| 'synaesthete', | |
| 'syzygy', | |
| 'tabnabs', | |
| 'taghairm', | |
| 'talaria', | |
| 'tantivy', | |
| 'tatterdemalion', | |
| 'tautochrone', | |
| 'tawdry', | |
| 'teetotum', | |
| 'teleplasmic', | |
| 'tergiversate', | |
| 'termagant', | |
| 'tetrapyloctomy', | |
| 'thaumaturgy', | |
| 'thelemic', | |
| 'therianthrope', | |
| 'tiffin', | |
| 'tintinnabulation', | |
| 'titch', | |
| 'titivil', | |
| 'titubation', | |
| 'tolley', | |
| 'tontine', | |
| 'totter', | |
| 'trebuchet', | |
| 'triacle', | |
| 'tripudiate', | |
| 'triskaidekaphobia', | |
| 'truckle', | |
| 'truepenny', | |
| 'trussell', | |
| 'tufthunter', | |
| 'turducken', | |
| 'turgescent', | |
| 'turlough', | |
| 'twitterpated', | |
| 'ullage', | |
| 'ultimo', | |
| 'ultracrepidarian', | |
| 'umami', | |
| 'umquhile', | |
| 'unipedal', | |
| 'unobtanium', | |
| 'usufructuary', | |
| 'vaccary', | |
| 'vaccimulgence', | |
| 'valetudinarian', | |
| 'vellicate', | |
| 'velocipedist', | |
| 'venery', | |
| 'verecund', | |
| 'vexillology', | |
| 'vilipend', | |
| 'vinolent', | |
| 'virescent', | |
| 'volitation', | |
| 'volvelle', | |
| 'vomitorium', | |
| 'vril', | |
| 'wait', | |
| 'wassail', | |
| 'wayzgoose', | |
| 'welkin', | |
| 'whilom', | |
| 'wigg', | |
| 'willothewisp', | |
| 'willynilly', | |
| 'wiseacre', | |
| 'wittol', | |
| 'wobbegong', | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment