unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#40818] [PATCH] gnu: Add bsd-games.
@ 2020-04-24 13:54 Vitaliy Shatrov via Guix-patches via
  2020-06-16 13:17 ` Nicolas Goaziou
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-04-24 13:54 UTC (permalink / raw)
  To: 40818


[-- Attachment #1.1: Type: text/plain, Size: 459 bytes --]

Hi.
The most important thing to review is rights.  This package assumes that all score-files and save-games are placed in /var/tmp/bsd-games.   The first user owns the files, and the wrapper script do `chmod ug+w`.  If the SETGUID approach, despite the games age is better, i'll rework this.  Though sys-admin (or the first user) can simply change the permissions, or group to restrict the access.

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #1.2: Type: text/html, Size: 754 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-bsd-games.patch --]
[-- Type: text/x-patch; name="0001-gnu-Add-bsd-games.patch", Size: 964742 bytes --]

From 17085e907738f1d92879e05e482a375821ac50c4 Mon Sep 17 00:00:00 2001
From: Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
Date: Fri, 24 Apr 2020 20:18:31 +0700
Subject: [PATCH] gnu: Add bsd-games.

* gnu/packages/games.scm (bsd-games): a new variable.

New patches, taken from Arch and Debian:
* gnu/packages/patches/bsd-games-2.17-64bit.patch
* gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
* gnu/packages/patches/bsd-games-fix-number-test.patch
* gnu/packages/patches/bsd-games-gamescreen.h.patch
* gnu/packages/patches/bsd-games-getline.patch
* gnu/packages/patches/bsd-games-null-check.patch
* gnu/packages/patches/bsd-games-number.c.patch
* gnu/packages/patches/bsd-games-stdio.h.patch

New patches:
* gnu/packages/patches/bsd-games-add-configure-config.patch
* gnu/packages/patches/bsd-games-add-word-list.patch
* gnu/packages/patches/bsd-games-add-wrapper.patch
* gnu/packages/patches/bsd-games-dont-install-empty-files.patch
* gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
---
 gnu/packages/games.scm                        |   136 +
 .../patches/bsd-games-2.17-64bit.patch        |    43 +
 .../bsd-games-add-configure-config.patch      |    17 +
 .../patches/bsd-games-add-word-list.patch     | 77659 ++++++++++++++++
 .../patches/bsd-games-add-wrapper.patch       |   217 +
 .../patches/bsd-games-bad-ntohl-cast.patch    |    22 +
 .../bsd-games-dont-install-empty-files.patch  |    87 +
 .../patches/bsd-games-fix-number-test.patch   |    32 +
 .../patches/bsd-games-gamescreen.h.patch      |    15 +
 gnu/packages/patches/bsd-games-getline.patch  |   194 +
 .../patches/bsd-games-null-check.patch        |    24 +
 gnu/packages/patches/bsd-games-number.c.patch |   156 +
 gnu/packages/patches/bsd-games-stdio.h.patch  |    14 +
 ...bsd-games-use-anthology-style-naming.patch |   641 +
 14 files changed, 79257 insertions(+)
 create mode 100644 gnu/packages/patches/bsd-games-2.17-64bit.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-configure-config.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-word-list.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-wrapper.patch
 create mode 100644 gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
 create mode 100644 gnu/packages/patches/bsd-games-dont-install-empty-files.patch
 create mode 100644 gnu/packages/patches/bsd-games-fix-number-test.patch
 create mode 100644 gnu/packages/patches/bsd-games-gamescreen.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-getline.patch
 create mode 100644 gnu/packages/patches/bsd-games-null-check.patch
 create mode 100644 gnu/packages/patches/bsd-games-number.c.patch
 create mode 100644 gnu/packages/patches/bsd-games-stdio.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-use-anthology-style-naming.patch

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 10b3a072b9..e4e4981f1a 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -447,6 +447,142 @@ possible, while battling many vicious aliens.")
                    license:lgpl2.1+
                    license:bsd-2))))
 
+(define-public bsd-games
+  (package
+    (name "bsd-games")
+    (version "2.17.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://ibiblio.org/pub/linux/games/bsd-games-2.17.tar.gz")
+       (sha256
+        (base32
+         "0q7zdyyfvn15y0w4g54kq3gza89h61py727m8slmw73cxx594vq6"))
+       (patches
+        (search-patches
+         ;; thanks Arch, and Debian
+         "bsd-games-2.17-64bit.patch"
+         "bsd-games-bad-ntohl-cast.patch"
+         "bsd-games-gamescreen.h.patch"
+         "bsd-games-getline.patch"
+         "bsd-games-null-check.patch"
+         "bsd-games-number.c.patch"
+         "bsd-games-stdio.h.patch"
+         "bsd-games-fix-number-test.patch"
+         ;; Guix customizations
+         "bsd-games-add-word-list.patch"
+         "bsd-games-add-configure-config.patch"
+         "bsd-games-dont-install-empty-files.patch"
+         "bsd-games-add-wrapper.patch"
+         "bsd-games-use-anthology-style-naming.patch"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("flex" ,flex)
+       ("bison" ,bison)))
+    (inputs
+     `(("curses" ,ncurses)
+       ("pager" ,less)
+       ("openssl" ,openssl)))  ;used only by 'factor'
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version))
+                    (man (string-append out "/share/man"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    (save-files "/var/tmp/bsd-games"))
+               (substitute* "configure"
+                 (("/usr/share/man") man)
+                 (("/usr/share/doc/bsd-games") doc)
+                 (("/usr/share/[^\n/]*") static-data)
+                 (("/var/games") save-files)
+                 (("/usr/bin/less") (which "less"))
+                 (("(/usr/bin|/usr/games)") bin))
+               ;; Make our wrapper-script work.
+               (substitute* "wrapper"
+                 (("STATIC_DATA") static-data)
+                 (("SAVE_FILES") save-files))
+               ;; For both boggle and hangman.
+               (install-file "words" static-data)
+               (invoke "./configure"))
+             #t))
+         (add-before 'install 'patch-install
+           ;;; Some games need a writable directory containing pre-maded files.
+           ;;; The files get installed to the Store.  The wrapper do the rest.
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    (save-files "/var/tmp/bsd-games"))
+               ;; We can't install to /var.
+               (substitute* "Makeconfig" ((save-files) static-data)))
+             #t))
+         (add-after 'install 'install-documents
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version)))
+               (rename-file "fortune/Notes" "fortune-Notes")
+               (rename-file "fortune/README" "fortune-README")
+               (rename-file "phantasia/COPYRIGHT" "phantasia-COPYRIGHT")
+               (for-each
+                (lambda(file) (install-file file doc))
+                '("AUTHORS" "BUGS" "README" "SECURITY" "THANKS"
+                  "fortune-Notes" "fortune-README" "phantasia-COPYRIGHT")))
+             #t)))))
+    (home-page "https://github.com/vattam/BSDGames")
+    (synopsis "Collection of the old text-based games and amusements")
+    (description
+     "The BSD-games:
+
+Action: atc (keep the airplanes safe), hack (explore the dangerous Dungeon),
+hunt (kill the others for the Pair of Boots, multi-player only), robots (avoid
+the evil robots), sail (game of naval warfare with wooden ships), snake (steal
+the $$ from the cave, anger the snake, and get out alive), tetris (game of
+lining up the falling bricks of different shapes), and worm (eat, grow big,
+and neither bite your tail, nor ram the wall).
+
+Amusements: banner (prints a large banner), bcd & morse & ppt (print a punch
+card, or paper tape, or Morse codes), caesar & rot13 (ciphers and deciphers
+the input), factor (factorizes a number), fortune (prints some random
+message), number (translates numbers into text), pig (translates from English
+to Pig Latin), pom (should print the Moon's phase), primes (generates primes),
+rain & worms (plays an screen-saver in terminal), random (prints randomly
+choosen lines from files, or returns a random exit-code), and wtf (explains
+what do some acronyms mean).
+
+Board: backgammon (lead the men out of board faster than the friend do),
+boggle (find the words in the square of letters), dab (game of dots and
+boxes), gomoku (game of five in a row), hangman (guess a word before man is
+hanged), and monop (game of monopoly, hot-seat only).  Also the card-games:
+canfield, cribbage, fish (juniors game), and mille.
+
+Quests: adventure (search for treasures with the help of wizard),
+battlestar (explore the world around, starting from dying spaceship),
+phantasia (role-play as an rogue), trek (hunt the Klingons, and save the
+Federation), and wump (hunt the big smelly Wumpus in a dark cave).
+
+Quizes: arithmetic, and quiz.")
+    ;; "Auxiliary and data files, distributed with the games in NetBSD, but
+    ;; not bearing copyright notices, probably fall under the terms of the UCB
+    ;; or NetBSD copyrights and licences.  The file "fortune/Notes" contains a
+    ;; warning in regard to the fortune databases."
+    (license (list
+              ;; Most games.  Files: countmail/countmail.6, dab/dab.6,
+              ;; lib/strlcpy.c, wargames/wargames.6
+              license:bsd-3
+              ;; dab and hunt.  Files: adventure/extern.h,
+              ;; backgammon/backgammon/backlocal.h, caesar/rot13.in,
+              ;; countmail/countmail, dm/utmpentry.c, dm/utmpentry.h,
+              ;; hack/extern.h, robots/auto.c, sail/display.h,
+              ;; sail/restart.h, wargames/wargames
+              license:bsd-4
+              ;; wtf
+              license:public-domain
+              ;; phantasia (all but phantasia/pathnames.h.in, which is bsd-3)
+              (license:fsf-free "file:///phantasia/COPYRIGHT")))))
+
 (define-public cataclysm-dda
   (package
     (name "cataclysm-dda")
diff --git a/gnu/packages/patches/bsd-games-2.17-64bit.patch b/gnu/packages/patches/bsd-games-2.17-64bit.patch
new file mode 100644
index 0000000000..a56ea8454b
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-2.17-64bit.patch
@@ -0,0 +1,43 @@
+David Leverton writes about adventure/crc.c:
+
+The 'adventure' game from the games-misc/bsd-games-2.13 package crashes 
+when saving the game on AMD64 (and probably other 64-bit systems, but I 
+haven't checked).  Find attached to fix this.
+
+http://bugs.gentoo.org/show_bug.cgi?id=77032
+
+
+About utmpentry.c:
+
+the utmpx structure defines the ut_tv member a little differently on 
+64bit hosts so that a 32bit and 64bit structure can be shared.  So the 
+ut_tv is a custom 32bit structure rather than the native 64bit timeval 
+structure.  Work around is to assign the submembers instead.
+
+http://bugs.gentoo.org/show_bug.cgi?id=102667
+
+--- bsd-games/adventure/crc.c
++++ bsd-games/adventure/crc.c
+@@ -134,7 +134,8 @@
+ 				if (step >= sizeof(crctab) / sizeof(crctab[0]))
+ 					step = 0;
+ 			}
+-			crcval = (crcval << 8) ^ crctab[i];
++			/* Mask to 32 bits. */
++			crcval = ((crcval << 8) ^ crctab[i]) & 0xffffffff;
+ 		}
+-	return crcval & 0xffffffff;	/* Mask to 32 bits. */
++	return crcval;
+ }
+--- bsd-games/dm/utmpentry.c
++++ bsd-games/dm/utmpentry.c
+@@ -291,7 +291,8 @@
+ 	e->line[sizeof(e->line) - 1] = '\0';
+ 	(void)strncpy(e->host, up->ut_host, sizeof(up->ut_host));
+ 	e->name[sizeof(e->host) - 1] = '\0';
+-	e->tv = up->ut_tv;
++	e->tv.tv_sec = up->ut_tv.tv_sec;
++	e->tv.tv_usec = up->ut_tv.tv_usec;
+ 	adjust_size(e);
+ }
+ #endif
diff --git a/gnu/packages/patches/bsd-games-add-configure-config.patch b/gnu/packages/patches/bsd-games-add-configure-config.patch
new file mode 100644
index 0000000000..d61deeae47
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-configure-config.patch
@@ -0,0 +1,17 @@
+Remove a few 'setenv's from the definition.
+
+diff -Naur bsd-games-2.17/config.params bsd-games-patch/config.params
+--- bsd-games-2.17/config.params	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/config.params	2020-04-22 20:49:40.809695248 +0700
+@@ -0,0 +1,11 @@
++bsd_games_cfg_do_chown=n
++bsd_games_cfg_non_interactive=y
++# The offensive fortunes shown only if requested by user.
++bsd_games_cfg_offensive_fortunes=y
++# Fix some man-pages: cfscores, morse, ppt, rot13, snscore, teachgammon.
++bsd_games_cfg_use_dot_so=syml
++# Don't build dm, countmail, and wargames.
++# Wargames isn't convenient as a game launcher.
++# dm is a toy to restrict access to bsd-games.
++# countmail require some BSD-package called `from`.
++bsd_games_cfg_no_build_dirs="wargames dm countmail"
diff --git a/gnu/packages/patches/bsd-games-add-word-list.patch b/gnu/packages/patches/bsd-games-add-word-list.patch
new file mode 100644
index 0000000000..67d8616867
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-word-list.patch
@@ -0,0 +1,77659 @@
+This adds a word-list needed by two games, boggle and hangman.
+The list should be an "lower-case ASCII" file, with one word a line.
+
+The file 'american-english' was taken from Arch Linux package 'words'.
+The list was produced with `cat american-english |grep -vE '[^a-z]' > words`.
+
+diff -Naur bsd-games-2.17/words bsd-games-patch/words
+--- bsd-games-2.17/words	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/words	2020-04-18 00:58:13.312572569 +0700
+@@ -0,0 +1,77649 @@
++a
++aah
++aardvark
++aardvarks
++ab
++aback
++abacus
++abacuses
++abaft
++abalone
++abalones
++abandon
++abandoned
++abandoning
++abandonment
++abandons
++abase
++abased
++abasement
++abases
++abash
++abashed
++abashedly
++abashes
++abashing
++abashment
++abasing
++abate
++abated
++abatement
++abates
++abating
++abattoir
++abattoirs
++abbe
++abbes
++abbess
++abbesses
++abbey
++abbeys
++abbot
++abbots
++abbr
++abbrev
++abbreviate
++abbreviated
++abbreviates
++abbreviating
++abbreviation
++abbreviations
++abbrevs
++abdicate
++abdicated
++abdicates
++abdicating
++abdication
++abdications
++abdomen
++abdomens
++abdominal
++abduct
++abducted
++abductee
++abductees
++abducting
++abduction
++abductions
++abductor
++abductors
++abducts
++abeam
++abed
++aberrant
++aberration
++aberrational
++aberrations
++abet
++abets
++abetted
++abetting
++abettor
++abettors
++abeyance
++abhor
++abhorred
++abhorrence
++abhorrent
++abhorrently
++abhorring
++abhors
++abidance
++abide
++abides
++abiding
++abidingly
++abilities
++ability
++abject
++abjection
++abjectly
++abjectness
++abjuration
++abjurations
++abjuratory
++abjure
++abjured
++abjurer
++abjurers
++abjures
++abjuring
++ablate
++ablated
++ablates
++ablating
++ablation
++ablations
++ablative
++ablatives
++ablaze
++able
++abler
++ablest
++abloom
++ablution
++ablutions
++ably
++abnegate
++abnegated
++abnegates
++abnegating
++abnegation
++abnormal
++abnormalities
++abnormality
++abnormally
++aboard
++abode
++abodes
++abolish
++abolished
++abolishes
++abolishing
++abolition
++abolitionism
++abolitionist
++abolitionists
++abominable
++abominably
++abominate
++abominated
++abominates
++abominating
++abomination
++abominations
++aboriginal
++aboriginals
++aborigine
++aborigines
++aborning
++abort
++aborted
++aborting
++abortion
++abortionist
++abortionists
++abortions
++abortive
++abortively
++aborts
++abound
++abounded
++abounding
++abounds
++about
++above
++aboveboard
++abracadabra
++abrade
++abraded
++abrades
++abrading
++abrasion
++abrasions
++abrasive
++abrasively
++abrasiveness
++abrasives
++abreast
++abridge
++abridged
++abridges
++abridging
++abridgment
++abridgments
++abroad
++abrogate
++abrogated
++abrogates
++abrogating
++abrogation
++abrogations
++abrogator
++abrogators
++abrupt
++abrupter
++abruptest
++abruptly
++abruptness
++abs
++abscess
++abscessed
++abscesses
++abscessing
++abscissa
++abscissas
++abscission
++abscond
++absconded
++absconder
++absconders
++absconding
++absconds
++abseil
++abseiled
++abseiling
++abseils
++absence
++absences
++absent
++absented
++absentee
++absenteeism
++absentees
++absenting
++absently
++absentminded
++absentmindedly
++absentmindedness
++absents
++absinthe
++absolute
++absolutely
++absoluteness
++absolutes
++absolutest
++absolution
++absolutism
++absolutist
++absolutists
++absolve
++absolved
++absolves
++absolving
++absorb
++absorbance
++absorbed
++absorbency
++absorbent
++absorbents
++absorbing
++absorbingly
++absorbs
++absorption
++absorptive
++abstain
++abstained
++abstainer
++abstainers
++abstaining
++abstains
++abstemious
++abstemiously
++abstemiousness
++abstention
++abstentions
++abstinence
++abstinent
++abstract
++abstracted
++abstractedly
++abstractedness
++abstracting
++abstraction
++abstractions
++abstractly
++abstractness
++abstractnesses
++abstracts
++abstruse
++abstrusely
++abstruseness
++absurd
++absurder
++absurdest
++absurdist
++absurdists
++absurdities
++absurdity
++absurdly
++absurdness
++abundance
++abundances
++abundant
++abundantly
++abuse
++abused
++abuser
++abusers
++abuses
++abusing
++abusive
++abusively
++abusiveness
++abut
++abutment
++abutments
++abuts
++abutted
++abutting
++abuzz
++abysmal
++abysmally
++abyss
++abyssal
++abysses
++ac
++acacia
++acacias
++academe
++academia
++academic
++academical
++academically
++academician
++academicians
++academics
++academies
++academy
++acanthus
++acanthuses
++accede
++acceded
++accedes
++acceding
++accelerate
++accelerated
++accelerates
++accelerating
++acceleration
++accelerations
++accelerator
++accelerators
++accent
++accented
++accenting
++accents
++accentual
++accentuate
++accentuated
++accentuates
++accentuating
++accentuation
++accept
++acceptability
++acceptable
++acceptableness
++acceptably
++acceptance
++acceptances
++acceptation
++acceptations
++accepted
++accepting
++accepts
++access
++accessed
++accesses
++accessibility
++accessible
++accessibly
++accessing
++accession
++accessioned
++accessioning
++accessions
++accessories
++accessorize
++accessorized
++accessorizes
++accessorizing
++accessory
++accident
++accidental
++accidentally
++accidentals
++accidents
++acclaim
++acclaimed
++acclaiming
++acclaims
++acclamation
++acclimate
++acclimated
++acclimates
++acclimating
++acclimation
++acclimatization
++acclimatize
++acclimatized
++acclimatizes
++acclimatizing
++acclivities
++acclivity
++accolade
++accolades
++accommodate
++accommodated
++accommodates
++accommodating
++accommodatingly
++accommodation
++accommodations
++accompanied
++accompanies
++accompaniment
++accompaniments
++accompanist
++accompanists
++accompany
++accompanying
++accomplice
++accomplices
++accomplish
++accomplished
++accomplishes
++accomplishing
++accomplishment
++accomplishments
++accord
++accordance
++accordant
++accorded
++according
++accordingly
++accordion
++accordionist
++accordionists
++accordions
++accords
++accost
++accosted
++accosting
++accosts
++account
++accountability
++accountable
++accountancy
++accountant
++accountants
++accounted
++accounting
++accounts
++accouter
++accoutered
++accoutering
++accouterments
++accouters
++accredit
++accreditation
++accredited
++accrediting
++accredits
++accretion
++accretions
++accrual
++accruals
++accrue
++accrued
++accrues
++accruing
++acct
++acculturate
++acculturated
++acculturates
++acculturating
++acculturation
++accumulate
++accumulated
++accumulates
++accumulating
++accumulation
++accumulations
++accumulative
++accumulator
++accumulators
++accuracy
++accurate
++accurately
++accurateness
++accursed
++accursedness
++accusation
++accusations
++accusative
++accusatives
++accusatory
++accuse
++accused
++accuser
++accusers
++accuses
++accusing
++accusingly
++accustom
++accustomed
++accustoming
++accustoms
++ace
++aced
++acerbate
++acerbated
++acerbates
++acerbating
++acerbic
++acerbically
++acerbity
++aces
++acetaminophen
++acetate
++acetates
++acetic
++acetone
++acetonic
++acetyl
++acetylene
++ache
++ached
++achene
++achenes
++aches
++achier
++achiest
++achievable
++achieve
++achieved
++achievement
++achievements
++achiever
++achievers
++achieves
++achieving
++aching
++achingly
++achoo
++achromatic
++achy
++acid
++acidic
++acidified
++acidifies
++acidify
++acidifying
++acidity
++acidly
++acidosis
++acids
++acidulous
++acing
++acknowledge
++acknowledged
++acknowledges
++acknowledging
++acknowledgment
++acknowledgments
++acme
++acmes
++acne
++acolyte
++acolytes
++aconite
++aconites
++acorn
++acorns
++acoustic
++acoustical
++acoustically
++acoustics
++acquaint
++acquaintance
++acquaintances
++acquaintanceship
++acquainted
++acquainting
++acquaints
++acquiesce
++acquiesced
++acquiescence
++acquiescent
++acquiescently
++acquiesces
++acquiescing
++acquirable
++acquire
++acquired
++acquirement
++acquirer
++acquirers
++acquires
++acquiring
++acquisition
++acquisitions
++acquisitive
++acquisitively
++acquisitiveness
++acquit
++acquits
++acquittal
++acquittals
++acquitted
++acquitting
++acre
++acreage
++acreages
++acres
++acrid
++acrider
++acridest
++acridity
++acridly
++acridness
++acrimonious
++acrimoniously
++acrimoniousness
++acrimony
++acrobat
++acrobatic
++acrobatically
++acrobatics
++acrobats
++acronym
++acronyms
++acrophobia
++acropolis
++acropolises
++across
++acrostic
++acrostics
++acrylamide
++acrylic
++acrylics
++act
++acted
++acting
++actinium
++action
++actionable
++actions
++activate
++activated
++activates
++activating
++activation
++activator
++activators
++active
++actively
++activeness
++actives
++activism
++activist
++activists
++activities
++activity
++actor
++actors
++actress
++actresses
++acts
++actual
++actualities
++actuality
++actualization
++actualize
++actualized
++actualizes
++actualizing
++actually
++actuarial
++actuaries
++actuary
++actuate
++actuated
++actuates
++actuating
++actuation
++actuator
++actuators
++acuity
++acumen
++acupressure
++acupuncture
++acupuncturist
++acupuncturists
++acute
++acutely
++acuteness
++acuter
++acutes
++acutest
++acyclovir
++acyl
++ad
++adage
++adages
++adagio
++adagios
++adamant
++adamantly
++adapt
++adaptability
++adaptable
++adaptation
++adaptations
++adapted
++adapter
++adapters
++adapting
++adaption
++adaptions
++adaptive
++adapts
++add
++addable
++added
++addend
++addenda
++addends
++addendum
++adder
++adders
++addict
++addicted
++addicting
++addiction
++addictions
++addictive
++addicts
++adding
++addition
++additional
++additionally
++additions
++additive
++additives
++addle
++addled
++addles
++addling
++address
++addressable
++addressed
++addressee
++addressees
++addresses
++addressing
++adds
++adduce
++adduced
++adduces
++adducing
++adenine
++adenocarcinoma
++adenoid
++adenoidal
++adenoids
++adept
++adeptly
++adeptness
++adepts
++adequacy
++adequate
++adequately
++adequateness
++adhere
++adhered
++adherence
++adherent
++adherents
++adheres
++adhering
++adhesion
++adhesive
++adhesiveness
++adhesives
++adiabatic
++adieu
++adieus
++adios
++adipose
++adj
++adjacency
++adjacent
++adjacently
++adjectival
++adjectivally
++adjective
++adjectives
++adjoin
++adjoined
++adjoining
++adjoins
++adjourn
++adjourned
++adjourning
++adjournment
++adjournments
++adjourns
++adjudge
++adjudged
++adjudges
++adjudging
++adjudicate
++adjudicated
++adjudicates
++adjudicating
++adjudication
++adjudications
++adjudicative
++adjudicator
++adjudicators
++adjudicatory
++adjunct
++adjuncts
++adjuration
++adjurations
++adjure
++adjured
++adjures
++adjuring
++adjust
++adjustable
++adjusted
++adjuster
++adjusters
++adjusting
++adjustment
++adjustments
++adjusts
++adjutant
++adjutants
++adman
++admen
++admin
++administer
++administered
++administering
++administers
++administrate
++administrated
++administrates
++administrating
++administration
++administrations
++administrative
++administratively
++administrator
++administrators
++admins
++admirable
++admirably
++admiral
++admirals
++admiralty
++admiration
++admire
++admired
++admirer
++admirers
++admires
++admiring
++admiringly
++admissibility
++admissible
++admissibly
++admission
++admissions
++admit
++admits
++admittance
++admitted
++admittedly
++admitting
++admix
++admixed
++admixes
++admixing
++admixture
++admixtures
++admonish
++admonished
++admonishes
++admonishing
++admonishment
++admonishments
++admonition
++admonitions
++admonitory
++ado
++adobe
++adobes
++adolescence
++adolescences
++adolescent
++adolescents
++adopt
++adoptable
++adopted
++adopter
++adopters
++adopting
++adoption
++adoptions
++adoptive
++adopts
++adorable
++adorableness
++adorably
++adoration
++adore
++adored
++adorer
++adorers
++adores
++adoring
++adoringly
++adorn
++adorned
++adorning
++adornment
++adornments
++adorns
++adrenal
++adrenaline
++adrenals
++adrenergic
++adrift
++adroit
++adroitly
++adroitness
++ads
++adsorb
++adsorbed
++adsorbent
++adsorbents
++adsorbing
++adsorbs
++adsorption
++adsorptions
++adulate
++adulated
++adulates
++adulating
++adulation
++adulator
++adulators
++adulatory
++adult
++adulterant
++adulterants
++adulterate
++adulterated
++adulterates
++adulterating
++adulteration
++adulterer
++adulterers
++adulteress
++adulteresses
++adulteries
++adulterous
++adultery
++adulthood
++adults
++adumbrate
++adumbrated
++adumbrates
++adumbrating
++adumbration
++adv
++advance
++advanced
++advancement
++advancements
++advances
++advancing
++advantage
++advantaged
++advantageous
++advantageously
++advantages
++advantaging
++advent
++adventitious
++adventitiously
++advents
++adventure
++adventured
++adventurer
++adventurers
++adventures
++adventuresome
++adventuress
++adventuresses
++adventuring
++adventurism
++adventurist
++adventurists
++adventurous
++adventurously
++adventurousness
++adverb
++adverbial
++adverbially
++adverbials
++adverbs
++adversarial
++adversaries
++adversary
++adverse
++adversely
++adverseness
++adverser
++adversest
++adversities
++adversity
++advert
++adverted
++adverting
++advertise
++advertised
++advertisement
++advertisements
++advertiser
++advertisers
++advertises
++advertising
++advertorial
++advertorials
++adverts
++advice
++advisability
++advisable
++advisably
++advise
++advised
++advisedly
++advisement
++adviser
++advisers
++advises
++advising
++advisories
++advisory
++advocacy
++advocate
++advocated
++advocates
++advocating
++advt
++adware
++adze
++adzes
++aegis
++aerate
++aerated
++aerates
++aerating
++aeration
++aerator
++aerators
++aerial
++aerialist
++aerialists
++aerially
++aerials
++aerie
++aeries
++aerobatic
++aerobatics
++aerobic
++aerobically
++aerobics
++aerodrome
++aerodromes
++aerodynamic
++aerodynamically
++aerodynamics
++aerogram
++aerograms
++aeronautic
++aeronautical
++aeronautics
++aerosol
++aerosols
++aerospace
++aesthete
++aesthetes
++aesthetic
++aesthetically
++aestheticism
++aesthetics
++afar
++affability
++affable
++affably
++affair
++affairs
++affect
++affectation
++affectations
++affected
++affectedly
++affecting
++affectingly
++affection
++affectionate
++affectionately
++affections
++affects
++afferent
++affiance
++affianced
++affiances
++affiancing
++affidavit
++affidavits
++affiliate
++affiliated
++affiliates
++affiliating
++affiliation
++affiliations
++affinities
++affinity
++affirm
++affirmation
++affirmations
++affirmative
++affirmatively
++affirmatives
++affirmed
++affirming
++affirms
++affix
++affixed
++affixes
++affixing
++afflatus
++afflict
++afflicted
++afflicting
++affliction
++afflictions
++afflicts
++affluence
++affluent
++affluently
++afford
++affordability
++affordable
++affordably
++afforded
++affording
++affords
++afforest
++afforestation
++afforested
++afforesting
++afforests
++affray
++affrays
++affront
++affronted
++affronting
++affronts
++afghan
++afghans
++aficionado
++aficionados
++afield
++afire
++aflame
++afloat
++aflutter
++afoot
++aforementioned
++aforesaid
++aforethought
++afoul
++afraid
++afresh
++aft
++after
++afterbirth
++afterbirths
++afterburner
++afterburners
++aftercare
++aftereffect
++aftereffects
++afterglow
++afterglows
++afterimage
++afterimages
++afterlife
++afterlives
++aftermarket
++aftermarkets
++aftermath
++aftermaths
++afternoon
++afternoons
++afters
++aftershave
++aftershaves
++aftershock
++aftershocks
++aftertaste
++aftertastes
++afterthought
++afterthoughts
++afterward
++afterwards
++afterword
++afterwords
++again
++against
++agape
++agar
++agate
++agates
++agave
++age
++aged
++ageism
++ageist
++ageists
++ageless
++agelessly
++agelessness
++agencies
++agency
++agenda
++agendas
++agent
++agents
++ageratum
++ages
++agglomerate
++agglomerated
++agglomerates
++agglomerating
++agglomeration
++agglomerations
++agglutinate
++agglutinated
++agglutinates
++agglutinating
++agglutination
++agglutinations
++aggrandize
++aggrandized
++aggrandizement
++aggrandizes
++aggrandizing
++aggravate
++aggravated
++aggravates
++aggravating
++aggravatingly
++aggravation
++aggravations
++aggregate
++aggregated
++aggregates
++aggregating
++aggregation
++aggregations
++aggregator
++aggregators
++aggression
++aggressive
++aggressively
++aggressiveness
++aggressor
++aggressors
++aggrieve
++aggrieved
++aggrieves
++aggrieving
++aggro
++aghast
++agile
++agilely
++agility
++aging
++agings
++agitate
++agitated
++agitates
++agitating
++agitation
++agitations
++agitator
++agitators
++agitprop
++agleam
++aglitter
++aglow
++agnostic
++agnosticism
++agnostics
++ago
++agog
++agonies
++agonist
++agonists
++agonize
++agonized
++agonizes
++agonizing
++agonizingly
++agony
++agoraphobia
++agoraphobic
++agoraphobics
++agrarian
++agrarianism
++agrarians
++agree
++agreeable
++agreeableness
++agreeably
++agreed
++agreeing
++agreement
++agreements
++agrees
++agribusiness
++agribusinesses
++agricultural
++agriculturalist
++agriculturalists
++agriculturally
++agriculture
++agriculturist
++agriculturists
++agronomic
++agronomist
++agronomists
++agronomy
++aground
++ague
++ah
++aha
++ahchoo
++ahead
++ahem
++ahoy
++aid
++aide
++aided
++aides
++aiding
++aids
++aigrette
++aigrettes
++ail
++ailed
++aileron
++ailerons
++ailing
++ailment
++ailments
++ails
++aim
++aimed
++aiming
++aimless
++aimlessly
++aimlessness
++aims
++air
++airbag
++airbags
++airbase
++airbases
++airbed
++airbeds
++airborne
++airbrush
++airbrushed
++airbrushes
++airbrushing
++airbus
++airbuses
++aircraft
++aircraftman
++aircraftmen
++aircrew
++aircrews
++airdrome
++airdromes
++airdrop
++airdropped
++airdropping
++airdrops
++aired
++airfare
++airfares
++airfield
++airfields
++airflow
++airfoil
++airfoils
++airfreight
++airguns
++airhead
++airheads
++airier
++airiest
++airily
++airiness
++airing
++airings
++airless
++airlessness
++airletters
++airlift
++airlifted
++airlifting
++airlifts
++airline
++airliner
++airliners
++airlines
++airlock
++airlocks
++airmail
++airmailed
++airmailing
++airmails
++airman
++airmen
++airplane
++airplanes
++airplay
++airport
++airports
++airs
++airship
++airships
++airshow
++airshows
++airsick
++airsickness
++airspace
++airspeed
++airstrike
++airstrikes
++airstrip
++airstrips
++airtight
++airtime
++airwaves
++airway
++airways
++airwoman
++airwomen
++airworthiness
++airworthy
++airy
++aisle
++aisles
++aitch
++aitches
++ajar
++aka
++akimbo
++akin
++alabaster
++alack
++alacrity
++alarm
++alarmed
++alarming
++alarmingly
++alarmist
++alarmists
++alarms
++alas
++alb
++albacore
++albacores
++albatross
++albatrosses
++albeit
++albinism
++albino
++albinos
++albs
++album
++albumen
++albumin
++albuminous
++albums
++alchemist
++alchemists
++alchemy
++alcohol
++alcoholic
++alcoholically
++alcoholics
++alcoholism
++alcohols
++alcove
++alcoves
++alder
++alderman
++aldermen
++alders
++alderwoman
++alderwomen
++ale
++aleatory
++alehouse
++alehouses
++alembic
++alembics
++alert
++alerted
++alerting
++alertly
++alertness
++alerts
++ales
++alewife
++alewives
++alfalfa
++alfresco
++alga
++algae
++algal
++algebra
++algebraic
++algebraically
++algebras
++algorithm
++algorithmic
++algorithms
++alias
++aliased
++aliases
++aliasing
++alibi
++alibied
++alibiing
++alibis
++alien
++alienable
++alienate
++alienated
++alienates
++alienating
++alienation
++aliened
++aliening
++alienist
++alienists
++aliens
++alight
++alighted
++alighting
++alights
++align
++aligned
++aligner
++aligners
++aligning
++alignment
++alignments
++aligns
++alike
++aliment
++alimentary
++alimented
++alimenting
++aliments
++alimony
++alive
++aliveness
++aliyah
++aliyahs
++alkali
++alkalies
++alkaline
++alkalinity
++alkalize
++alkalized
++alkalizes
++alkalizing
++alkaloid
++alkaloids
++alkyd
++alkyds
++all
++allay
++allayed
++allaying
++allays
++allegation
++allegations
++allege
++alleged
++allegedly
++alleges
++allegiance
++allegiances
++alleging
++allegoric
++allegorical
++allegorically
++allegories
++allegorist
++allegorists
++allegory
++allegretto
++allegrettos
++allegro
++allegros
++allele
++alleles
++alleluia
++alleluias
++allergen
++allergenic
++allergens
++allergic
++allergically
++allergies
++allergist
++allergists
++allergy
++alleviate
++alleviated
++alleviates
++alleviating
++alleviation
++alley
++alleys
++alleyway
++alleyways
++alliance
++alliances
++allied
++allies
++alligator
++alligators
++alliterate
++alliterated
++alliterates
++alliterating
++alliteration
++alliterations
++alliterative
++alliteratively
++allocate
++allocated
++allocates
++allocating
++allocation
++allocations
++allot
++allotment
++allotments
++allots
++allotted
++allotting
++allover
++allow
++allowable
++allowably
++allowance
++allowances
++allowed
++allowing
++allows
++alloy
++alloyed
++alloying
++alloys
++allspice
++allude
++alluded
++alludes
++alluding
++allure
++allured
++allurement
++allurements
++allures
++alluring
++alluringly
++allusion
++allusions
++allusive
++allusively
++allusiveness
++alluvial
++alluvium
++alluviums
++ally
++allying
++almanac
++almanacs
++almighty
++almond
++almonds
++almoner
++almoners
++almost
++alms
++almshouse
++almshouses
++aloe
++aloes
++aloft
++aloha
++alohas
++alone
++along
++alongshore
++alongside
++aloof
++aloofly
++aloofness
++aloud
++alp
++alpaca
++alpacas
++alpha
++alphabet
++alphabetic
++alphabetical
++alphabetically
++alphabetization
++alphabetizations
++alphabetize
++alphabetized
++alphabetizer
++alphabetizers
++alphabetizes
++alphabetizing
++alphabets
++alphanumeric
++alphanumerical
++alphanumerically
++alphas
++alpine
++alpines
++alps
++already
++alright
++also
++alt
++altar
++altarpiece
++altarpieces
++altars
++alter
++alterable
++alteration
++alterations
++altercation
++altercations
++altered
++altering
++alternate
++alternated
++alternately
++alternates
++alternating
++alternation
++alternations
++alternative
++alternatively
++alternatives
++alternator
++alternators
++alters
++although
++altimeter
++altimeters
++altitude
++altitudes
++alto
++altogether
++altos
++altruism
++altruist
++altruistic
++altruistically
++altruists
++alts
++alum
++alumina
++aluminum
++alumna
++alumnae
++alumni
++alumnus
++alums
++alveolar
++alveolars
++always
++am
++amalgam
++amalgamate
++amalgamated
++amalgamates
++amalgamating
++amalgamation
++amalgamations
++amalgams
++amanuenses
++amanuensis
++amaranth
++amaranths
++amaretto
++amaryllis
++amaryllises
++amass
++amassed
++amasses
++amassing
++amateur
++amateurish
++amateurishly
++amateurishness
++amateurism
++amateurs
++amatory
++amaze
++amazed
++amazement
++amazes
++amazing
++amazingly
++amazon
++amazonian
++amazons
++ambassador
++ambassadorial
++ambassadors
++ambassadorship
++ambassadorships
++ambassadress
++ambassadresses
++amber
++ambergris
++ambiance
++ambiances
++ambidexterity
++ambidextrous
++ambidextrously
++ambient
++ambiguities
++ambiguity
++ambiguous
++ambiguously
++ambit
++ambition
++ambitions
++ambitious
++ambitiously
++ambitiousness
++ambivalence
++ambivalent
++ambivalently
++amble
++ambled
++ambler
++amblers
++ambles
++ambling
++ambrosia
++ambrosial
++ambulance
++ambulanceman
++ambulancemen
++ambulances
++ambulancewoman
++ambulancewomen
++ambulant
++ambulate
++ambulated
++ambulates
++ambulating
++ambulation
++ambulations
++ambulatories
++ambulatory
++ambuscade
++ambuscaded
++ambuscades
++ambuscading
++ambush
++ambushed
++ambushes
++ambushing
++ameliorate
++ameliorated
++ameliorates
++ameliorating
++amelioration
++ameliorative
++amen
++amenability
++amenable
++amenably
++amend
++amendable
++amended
++amending
++amendment
++amendments
++amends
++amenities
++amenity
++amerce
++amerced
++amercement
++amercements
++amerces
++amercing
++americium
++amethyst
++amethysts
++amiability
++amiable
++amiably
++amicability
++amicable
++amicably
++amid
++amide
++amides
++amidship
++amidships
++amigo
++amigos
++amine
++amines
++amino
++amiss
++amity
++ammeter
++ammeters
++ammo
++ammonia
++ammonium
++ammunition
++amnesia
++amnesiac
++amnesiacs
++amnesic
++amnesics
++amnestied
++amnesties
++amnesty
++amnestying
++amniocenteses
++amniocentesis
++amnion
++amnions
++amniotic
++amoeba
++amoebae
++amoebas
++amoebic
++amok
++among
++amontillado
++amontillados
++amoral
++amorality
++amorally
++amorous
++amorously
++amorousness
++amorphous
++amorphously
++amorphousness
++amortizable
++amortization
++amortizations
++amortize
++amortized
++amortizes
++amortizing
++amount
++amounted
++amounting
++amounts
++amour
++amours
++amoxicillin
++amp
++amperage
++ampere
++amperes
++ampersand
++ampersands
++amphetamine
++amphetamines
++amphibian
++amphibians
++amphibious
++amphibiously
++amphitheater
++amphitheaters
++amphora
++amphorae
++ampicillin
++ample
++ampler
++amplest
++amplification
++amplifications
++amplified
++amplifier
++amplifiers
++amplifies
++amplify
++amplifying
++amplitude
++amplitudes
++amply
++amps
++ampule
++ampules
++amputate
++amputated
++amputates
++amputating
++amputation
++amputations
++amputee
++amputees
++amt
++amulet
++amulets
++amuse
++amused
++amusement
++amusements
++amuses
++amusing
++amusingly
++amylase
++amyloid
++an
++anabolism
++anachronism
++anachronisms
++anachronistic
++anachronistically
++anaconda
++anacondas
++anaerobe
++anaerobes
++anaerobic
++anaerobically
++anagram
++anagrams
++anal
++analgesia
++analgesic
++analgesics
++anally
++analog
++analogical
++analogically
++analogies
++analogize
++analogized
++analogizes
++analogizing
++analogous
++analogously
++analogousness
++analogs
++analogue
++analogues
++analogy
++analysand
++analysands
++analyses
++analysis
++analyst
++analysts
++analytic
++analytical
++analytically
++analyzable
++analyze
++analyzed
++analyzer
++analyzers
++analyzes
++analyzing
++anapest
++anapestic
++anapestics
++anapests
++anarchic
++anarchically
++anarchism
++anarchist
++anarchistic
++anarchists
++anarchy
++anathema
++anathemas
++anathematize
++anathematized
++anathematizes
++anathematizing
++anatomic
++anatomical
++anatomically
++anatomies
++anatomist
++anatomists
++anatomize
++anatomized
++anatomizes
++anatomizing
++anatomy
++ancestor
++ancestors
++ancestral
++ancestrally
++ancestress
++ancestresses
++ancestries
++ancestry
++anchor
++anchorage
++anchorages
++anchored
++anchoring
++anchorite
++anchorites
++anchorman
++anchormen
++anchorpeople
++anchorperson
++anchorpersons
++anchors
++anchorwoman
++anchorwomen
++anchovies
++anchovy
++ancient
++ancienter
++ancientest
++anciently
++ancientness
++ancients
++ancillaries
++ancillary
++and
++andante
++andantes
++andiron
++andirons
++androgen
++androgenic
++androgynous
++androgyny
++android
++androids
++anecdotal
++anecdotally
++anecdote
++anecdotes
++anemia
++anemic
++anemically
++anemometer
++anemometers
++anemone
++anemones
++anent
++anesthesia
++anesthesiologist
++anesthesiologists
++anesthesiology
++anesthetic
++anesthetics
++anesthetist
++anesthetists
++anesthetization
++anesthetizations
++anesthetize
++anesthetized
++anesthetizes
++anesthetizing
++aneurysm
++aneurysms
++anew
++angel
++angelfish
++angelfishes
++angelic
++angelica
++angelical
++angelically
++angels
++anger
++angered
++angering
++angers
++angina
++angioplasties
++angioplasty
++angiosperm
++angiosperms
++angle
++angled
++angler
++anglers
++angles
++angleworm
++angleworms
++anglicism
++anglicisms
++anglicize
++anglicized
++anglicizes
++anglicizing
++angling
++anglophile
++anglophiles
++anglophone
++anglophones
++angora
++angoras
++angostura
++angrier
++angriest
++angrily
++angry
++angst
++angstrom
++angstroms
++anguish
++anguished
++anguishes
++anguishing
++angular
++angularities
++angularity
++angulation
++anhydrous
++aniline
++animadversion
++animadversions
++animadvert
++animadverted
++animadverting
++animadverts
++animal
++animalcule
++animalcules
++animals
++animate
++animated
++animatedly
++animates
++animating
++animation
++animations
++animator
++animators
++anime
++animism
++animist
++animistic
++animists
++animosities
++animosity
++animus
++anion
++anionic
++anions
++anise
++aniseed
++anisette
++ankh
++ankhs
++ankle
++anklebone
++anklebones
++ankles
++anklet
++anklets
++annalist
++annalists
++annals
++anneal
++annealed
++annealing
++anneals
++annelid
++annelids
++annex
++annexation
++annexations
++annexed
++annexes
++annexing
++annihilate
++annihilated
++annihilates
++annihilating
++annihilation
++annihilator
++annihilators
++anniversaries
++anniversary
++annotate
++annotated
++annotates
++annotating
++annotation
++annotations
++annotative
++annotator
++annotators
++announce
++announced
++announcement
++announcements
++announcer
++announcers
++announces
++announcing
++annoy
++annoyance
++annoyances
++annoyed
++annoying
++annoyingly
++annoys
++annual
++annualized
++annually
++annuals
++annuitant
++annuitants
++annuities
++annuity
++annul
++annular
++annulled
++annulling
++annulment
++annulments
++annuls
++annunciation
++annunciations
++anode
++anodes
++anodize
++anodized
++anodizes
++anodizing
++anodyne
++anodynes
++anoint
++anointed
++anointing
++anointment
++anoints
++anomalies
++anomalous
++anomalously
++anomaly
++anon
++anons
++anonymity
++anonymous
++anonymously
++anopheles
++anorak
++anoraks
++anorectic
++anorectics
++anorexia
++anorexic
++anorexics
++another
++ans
++answer
++answerable
++answered
++answering
++answerphone
++answerphones
++answers
++ant
++antacid
++antacids
++antagonism
++antagonisms
++antagonist
++antagonistic
++antagonistically
++antagonists
++antagonize
++antagonized
++antagonizes
++antagonizing
++antarctic
++ante
++anteater
++anteaters
++antebellum
++antecedence
++antecedent
++antecedents
++antechamber
++antechambers
++anted
++antedate
++antedated
++antedates
++antedating
++antediluvian
++anteing
++antelope
++antelopes
++antenatal
++antenna
++antennae
++antennas
++anterior
++anteroom
++anterooms
++antes
++anthem
++anthems
++anther
++anthers
++anthill
++anthills
++anthologies
++anthologist
++anthologists
++anthologize
++anthologized
++anthologizes
++anthologizing
++anthology
++anthracite
++anthrax
++anthropocentric
++anthropoid
++anthropoids
++anthropological
++anthropologically
++anthropologist
++anthropologists
++anthropology
++anthropomorphic
++anthropomorphically
++anthropomorphism
++anthropomorphize
++anthropomorphous
++anti
++antiabortion
++antiabortionist
++antiabortionists
++antiaircraft
++antibacterial
++antibacterials
++antibiotic
++antibiotics
++antibodies
++antibody
++antic
++anticancer
++anticipate
++anticipated
++anticipates
++anticipating
++anticipation
++anticipations
++anticipatory
++anticked
++anticking
++anticlerical
++anticlimactic
++anticlimactically
++anticlimax
++anticlimaxes
++anticline
++anticlines
++anticlockwise
++anticoagulant
++anticoagulants
++anticommunism
++anticommunist
++anticommunists
++antics
++anticyclone
++anticyclones
++anticyclonic
++antidemocratic
++antidepressant
++antidepressants
++antidote
++antidotes
++antifascist
++antifascists
++antifreeze
++antigen
++antigenic
++antigenicity
++antigens
++antihero
++antiheroes
++antihistamine
++antihistamines
++antiknock
++antilabor
++antilogarithm
++antilogarithms
++antimacassar
++antimacassars
++antimalarial
++antimatter
++antimicrobial
++antimissile
++antimony
++antineutrino
++antineutrinos
++antineutron
++antineutrons
++antinuclear
++antioxidant
++antioxidants
++antiparticle
++antiparticles
++antipasti
++antipasto
++antipastos
++antipathetic
++antipathies
++antipathy
++antipersonnel
++antiperspirant
++antiperspirants
++antiphon
++antiphonal
++antiphonally
++antiphonals
++antiphons
++antipodal
++antipodals
++antipodean
++antipodeans
++antipodes
++antipollution
++antipoverty
++antiproton
++antiprotons
++antiquarian
++antiquarianism
++antiquarians
++antiquaries
++antiquary
++antiquate
++antiquated
++antiquates
++antiquating
++antique
++antiqued
++antiques
++antiquing
++antiquities
++antiquity
++antirrhinum
++antirrhinums
++antis
++antiscience
++antisemitic
++antisemitism
++antisepsis
++antiseptic
++antiseptically
++antiseptics
++antiserum
++antiserums
++antislavery
++antisocial
++antisocially
++antispasmodic
++antispasmodics
++antisubmarine
++antitank
++antitheses
++antithesis
++antithetic
++antithetical
++antithetically
++antitoxin
++antitoxins
++antitrust
++antivenin
++antivenins
++antivenom
++antiviral
++antivirals
++antivirus
++antivivisectionist
++antivivisectionists
++antiwar
++antler
++antlered
++antlers
++antonym
++antonymous
++antonyms
++antrum
++ants
++antsier
++antsiest
++antsy
++anus
++anuses
++anvil
++anvils
++anxieties
++anxiety
++anxious
++anxiously
++anxiousness
++any
++anybodies
++anybody
++anyhow
++anymore
++anyone
++anyplace
++anything
++anythings
++anytime
++anyway
++anyways
++anywhere
++anywise
++aorta
++aortas
++aortic
++apace
++apart
++apartheid
++apartment
++apartments
++apathetic
++apathetically
++apathy
++apatite
++ape
++aped
++apelike
++aperitif
++aperitifs
++aperture
++apertures
++apes
++apex
++apexes
++aphasia
++aphasic
++aphasics
++aphelia
++aphelion
++aphelions
++aphid
++aphids
++aphorism
++aphorisms
++aphoristic
++aphoristically
++aphrodisiac
++aphrodisiacs
++apiaries
++apiarist
++apiarists
++apiary
++apical
++apically
++apiece
++aping
++apish
++apishly
++aplenty
++aplomb
++apocalypse
++apocalypses
++apocalyptic
++apocrypha
++apocryphal
++apocryphally
++apogee
++apogees
++apolitical
++apolitically
++apologetic
++apologetically
++apologia
++apologias
++apologies
++apologist
++apologists
++apologize
++apologized
++apologizes
++apologizing
++apology
++apoplectic
++apoplexies
++apoplexy
++apoptosis
++apoptotic
++apostasies
++apostasy
++apostate
++apostates
++apostatize
++apostatized
++apostatizes
++apostatizing
++apostle
++apostles
++apostleship
++apostolic
++apostrophe
++apostrophes
++apothecaries
++apothecary
++apothegm
++apothegms
++apotheoses
++apotheosis
++app
++appall
++appalled
++appalling
++appallingly
++appalls
++appaloosa
++appaloosas
++apparatchik
++apparatchiks
++apparatus
++apparatuses
++apparel
++appareled
++appareling
++apparels
++apparent
++apparently
++apparition
++apparitions
++appeal
++appealed
++appealing
++appealingly
++appeals
++appear
++appearance
++appearances
++appeared
++appearing
++appears
++appease
++appeased
++appeasement
++appeasements
++appeaser
++appeasers
++appeases
++appeasing
++appellant
++appellants
++appellate
++appellation
++appellations
++append
++appendage
++appendages
++appendectomies
++appendectomy
++appended
++appendices
++appendicitis
++appending
++appendix
++appendixes
++appends
++appertain
++appertained
++appertaining
++appertains
++appetite
++appetites
++appetizer
++appetizers
++appetizing
++appetizingly
++applaud
++applauded
++applauder
++applauders
++applauding
++applauds
++applause
++apple
++applejack
++apples
++applesauce
++applet
++applets
++appliance
++appliances
++applicability
++applicable
++applicably
++applicant
++applicants
++application
++applications
++applicator
++applicators
++applied
++applier
++appliers
++applies
++applique
++appliqued
++appliqueing
++appliques
++apply
++applying
++appoint
++appointed
++appointee
++appointees
++appointing
++appointive
++appointment
++appointments
++appoints
++apportion
++apportioned
++apportioning
++apportionment
++apportions
++appose
++apposed
++apposes
++apposing
++apposite
++appositely
++appositeness
++apposition
++appositive
++appositives
++appraisal
++appraisals
++appraise
++appraised
++appraiser
++appraisers
++appraises
++appraising
++appreciable
++appreciably
++appreciate
++appreciated
++appreciates
++appreciating
++appreciation
++appreciations
++appreciative
++appreciatively
++appreciator
++appreciators
++appreciatory
++apprehend
++apprehended
++apprehending
++apprehends
++apprehension
++apprehensions
++apprehensive
++apprehensively
++apprehensiveness
++apprentice
++apprenticed
++apprentices
++apprenticeship
++apprenticeships
++apprenticing
++apprise
++apprised
++apprises
++apprising
++approach
++approachable
++approached
++approaches
++approaching
++approbation
++approbations
++appropriate
++appropriated
++appropriately
++appropriateness
++appropriates
++appropriating
++appropriation
++appropriations
++appropriator
++appropriators
++approval
++approvals
++approve
++approved
++approves
++approving
++approvingly
++approx
++approximate
++approximated
++approximately
++approximates
++approximating
++approximation
++approximations
++apps
++appurtenance
++appurtenances
++appurtenant
++apricot
++apricots
++apron
++aprons
++apropos
++apse
++apses
++apt
++apter
++aptest
++aptitude
++aptitudes
++aptly
++aptness
++aqua
++aquaculture
++aqualung
++aqualungs
++aquamarine
++aquamarines
++aquanaut
++aquanauts
++aquaplane
++aquaplaned
++aquaplanes
++aquaplaning
++aquarium
++aquariums
++aquas
++aquatic
++aquatically
++aquatics
++aquatint
++aquatints
++aquavit
++aqueduct
++aqueducts
++aqueous
++aquifer
++aquifers
++aquiline
++arabesque
++arabesques
++arability
++arable
++arachnid
++arachnids
++arachnophobia
++arbiter
++arbiters
++arbitrage
++arbitraged
++arbitrager
++arbitragers
++arbitrages
++arbitrageur
++arbitrageurs
++arbitraging
++arbitrament
++arbitraments
++arbitrarily
++arbitrariness
++arbitrary
++arbitrate
++arbitrated
++arbitrates
++arbitrating
++arbitration
++arbitrator
++arbitrators
++arbor
++arboreal
++arboretum
++arboretums
++arbors
++arborvitae
++arborvitaes
++arbutus
++arbutuses
++arc
++arcade
++arcades
++arcane
++arced
++arch
++archaeological
++archaeologically
++archaeologist
++archaeologists
++archaeology
++archaic
++archaically
++archaism
++archaisms
++archaist
++archaists
++archangel
++archangels
++archbishop
++archbishopric
++archbishoprics
++archbishops
++archdeacon
++archdeacons
++archdiocesan
++archdiocese
++archdioceses
++archduchess
++archduchesses
++archduke
++archdukes
++arched
++archenemies
++archenemy
++archer
++archers
++archery
++arches
++archest
++archetypal
++archetype
++archetypes
++archfiend
++archfiends
++archiepiscopal
++arching
++archipelago
++archipelagos
++architect
++architectonic
++architectonics
++architects
++architectural
++architecturally
++architecture
++architectures
++architrave
++architraves
++archival
++archive
++archived
++archives
++archiving
++archivist
++archivists
++archly
++archness
++archway
++archways
++arcing
++arcs
++arctic
++arctics
++ardent
++ardently
++ardor
++ardors
++arduous
++arduously
++arduousness
++are
++area
++areal
++areas
++arena
++arenas
++ares
++argent
++arginine
++argon
++argosies
++argosy
++argot
++argots
++arguable
++arguably
++argue
++argued
++arguer
++arguers
++argues
++arguing
++argument
++argumentation
++argumentative
++argumentatively
++argumentativeness
++arguments
++argyle
++argyles
++aria
++arias
++arid
++aridity
++aridly
++aright
++arise
++arisen
++arises
++arising
++aristocracies
++aristocracy
++aristocrat
++aristocratic
++aristocratically
++aristocrats
++arithmetic
++arithmetical
++arithmetically
++arithmetician
++arithmeticians
++ark
++arks
++arm
++armada
++armadas
++armadillo
++armadillos
++armament
++armaments
++armature
++armatures
++armband
++armbands
++armchair
++armchairs
++armed
++armful
++armfuls
++armhole
++armholes
++armies
++arming
++armistice
++armistices
++armlet
++armlets
++armload
++armloads
++armor
++armored
++armorer
++armorers
++armorial
++armories
++armoring
++armors
++armory
++armpit
++armpits
++armrest
++armrests
++arms
++army
++aroma
++aromas
++aromatherapist
++aromatherapists
++aromatherapy
++aromatic
++aromatically
++aromatics
++arose
++around
++arousal
++arouse
++aroused
++arouses
++arousing
++arpeggio
++arpeggios
++arr
++arraign
++arraigned
++arraigning
++arraignment
++arraignments
++arraigns
++arrange
++arranged
++arrangement
++arrangements
++arranger
++arrangers
++arranges
++arranging
++arrant
++arras
++arrases
++array
++arrayed
++arraying
++arrays
++arrears
++arrest
++arrested
++arresting
++arrests
++arrhythmia
++arrhythmic
++arrhythmical
++arrival
++arrivals
++arrive
++arrived
++arrives
++arriving
++arrogance
++arrogant
++arrogantly
++arrogate
++arrogated
++arrogates
++arrogating
++arrogation
++arrow
++arrowhead
++arrowheads
++arrowroot
++arrows
++arroyo
++arroyos
++arsed
++arsenal
++arsenals
++arsenic
++arsing
++arson
++arsonist
++arsonists
++art
++arterial
++arteries
++arteriole
++arterioles
++arteriosclerosis
++artery
++artful
++artfully
++artfulness
++arthritic
++arthritics
++arthritis
++arthropod
++arthropods
++arthroscope
++arthroscopes
++arthroscopic
++arthroscopy
++artichoke
++artichokes
++article
++articled
++articles
++articulacy
++articular
++articulate
++articulated
++articulately
++articulateness
++articulates
++articulating
++articulation
++articulations
++artier
++artiest
++artifact
++artifacts
++artifice
++artificer
++artificers
++artifices
++artificial
++artificiality
++artificially
++artillery
++artilleryman
++artillerymen
++artiness
++artisan
++artisans
++artist
++artiste
++artistes
++artistic
++artistically
++artistry
++artists
++artless
++artlessly
++artlessness
++arts
++artsier
++artsiest
++artsy
++artwork
++artworks
++arty
++arugula
++arum
++arums
++as
++asap
++asbestos
++ascend
++ascendance
++ascendancy
++ascendant
++ascendants
++ascended
++ascending
++ascends
++ascension
++ascensions
++ascent
++ascents
++ascertain
++ascertainable
++ascertained
++ascertaining
++ascertainment
++ascertains
++ascetic
++ascetically
++asceticism
++ascetics
++ascot
++ascots
++ascribable
++ascribe
++ascribed
++ascribes
++ascribing
++ascription
++aseptic
++aseptically
++asexual
++asexuality
++asexually
++ash
++ashamed
++ashamedly
++ashcan
++ashcans
++ashed
++ashen
++ashes
++ashier
++ashiest
++ashing
++ashlar
++ashlars
++ashore
++ashram
++ashrams
++ashtray
++ashtrays
++ashy
++aside
++asides
++asinine
++asininely
++asininities
++asininity
++ask
++askance
++asked
++askew
++asking
++asks
++aslant
++asleep
++asocial
++asp
++asparagus
++aspartame
++aspect
++aspects
++aspen
++aspens
++asperities
++asperity
++aspersion
++aspersions
++asphalt
++asphalted
++asphalting
++asphalts
++asphodel
++asphodels
++asphyxia
++asphyxiate
++asphyxiated
++asphyxiates
++asphyxiating
++asphyxiation
++asphyxiations
++aspic
++aspics
++aspidistra
++aspidistras
++aspirant
++aspirants
++aspirate
++aspirated
++aspirates
++aspirating
++aspiration
++aspirations
++aspirator
++aspirators
++aspire
++aspired
++aspires
++aspirin
++aspiring
++aspirins
++asps
++ass
++assail
++assailable
++assailant
++assailants
++assailed
++assailing
++assails
++assassin
++assassinate
++assassinated
++assassinates
++assassinating
++assassination
++assassinations
++assassins
++assault
++assaulted
++assaulter
++assaulting
++assaults
++assay
++assayed
++assayer
++assayers
++assaying
++assays
++assemblage
++assemblages
++assemble
++assembled
++assembler
++assemblers
++assembles
++assemblies
++assembling
++assembly
++assemblyman
++assemblymen
++assemblywoman
++assemblywomen
++assent
++assented
++assenting
++assents
++assert
++asserted
++asserting
++assertion
++assertions
++assertive
++assertively
++assertiveness
++asserts
++asses
++assess
++assessed
++assesses
++assessing
++assessment
++assessments
++assessor
++assessors
++asset
++assets
++asseverate
++asseverated
++asseverates
++asseverating
++asseveration
++asshole
++assholes
++assiduity
++assiduous
++assiduously
++assiduousness
++assign
++assignable
++assignation
++assignations
++assigned
++assignee
++assigner
++assigners
++assigning
++assignment
++assignments
++assignor
++assignors
++assigns
++assimilate
++assimilated
++assimilates
++assimilating
++assimilation
++assist
++assistance
++assistant
++assistants
++assisted
++assisting
++assistive
++assists
++assize
++assizes
++assn
++assoc
++associate
++associated
++associates
++associating
++association
++associations
++associative
++assonance
++assonant
++assonants
++assort
++assorted
++assorting
++assortment
++assortments
++assorts
++asst
++assuage
++assuaged
++assuages
++assuaging
++assumable
++assume
++assumed
++assumes
++assuming
++assumption
++assumptions
++assumptive
++assurance
++assurances
++assure
++assured
++assuredly
++assureds
++assures
++assuring
++astatine
++aster
++asterisk
++asterisked
++asterisking
++asterisks
++astern
++asteroid
++asteroids
++asters
++asthma
++asthmatic
++asthmatically
++asthmatics
++astigmatic
++astigmatism
++astigmatisms
++astir
++astonish
++astonished
++astonishes
++astonishing
++astonishingly
++astonishment
++astound
++astounded
++astounding
++astoundingly
++astounds
++astraddle
++astrakhan
++astral
++astray
++astride
++astringency
++astringent
++astringently
++astringents
++astrolabe
++astrolabes
++astrologer
++astrologers
++astrological
++astrologically
++astrologist
++astrologists
++astrology
++astronaut
++astronautic
++astronautical
++astronautics
++astronauts
++astronomer
++astronomers
++astronomic
++astronomical
++astronomically
++astronomy
++astrophysical
++astrophysicist
++astrophysicists
++astrophysics
++astute
++astutely
++astuteness
++astuter
++astutest
++asunder
++asylum
++asylums
++asymmetric
++asymmetrical
++asymmetrically
++asymmetries
++asymmetry
++asymptomatic
++asymptotic
++asymptotically
++asynchronous
++asynchronously
++at
++atavism
++atavist
++atavistic
++atavists
++ataxia
++ataxic
++ataxics
++ate
++atelier
++ateliers
++atheism
++atheist
++atheistic
++atheists
++atherosclerosis
++atherosclerotic
++athirst
++athlete
++athletes
++athletic
++athletically
++athleticism
++athletics
++athwart
++atilt
++atishoo
++atlas
++atlases
++atmosphere
++atmospheres
++atmospheric
++atmospherically
++atmospherics
++atoll
++atolls
++atom
++atomic
++atomically
++atomize
++atomized
++atomizer
++atomizers
++atomizes
++atomizing
++atoms
++atonal
++atonality
++atonally
++atone
++atoned
++atonement
++atones
++atoning
++atop
++atria
++atrial
++atrioventricular
++atrium
++atrocious
++atrociously
++atrociousness
++atrocities
++atrocity
++atrophied
++atrophies
++atrophy
++atrophying
++atropine
++attach
++attachable
++attache
++attached
++attaches
++attaching
++attachment
++attachments
++attack
++attacked
++attacker
++attackers
++attacking
++attacks
++attain
++attainability
++attainable
++attainder
++attained
++attaining
++attainment
++attainments
++attains
++attar
++attempt
++attempted
++attempting
++attempts
++attend
++attendance
++attendances
++attendant
++attendants
++attended
++attendee
++attendees
++attender
++attenders
++attending
++attends
++attention
++attentions
++attentive
++attentively
++attentiveness
++attenuate
++attenuated
++attenuates
++attenuating
++attenuation
++attest
++attestation
++attestations
++attested
++attesting
++attests
++attic
++attics
++attire
++attired
++attires
++attiring
++attitude
++attitudes
++attitudinal
++attitudinize
++attitudinized
++attitudinizes
++attitudinizing
++attn
++attorney
++attorneys
++attract
++attractable
++attractant
++attractants
++attracted
++attracting
++attraction
++attractions
++attractive
++attractively
++attractiveness
++attracts
++attributable
++attribute
++attributed
++attributes
++attributing
++attribution
++attributions
++attributive
++attributively
++attributives
++attrition
++attune
++attuned
++attunes
++attuning
++atty
++atwitter
++atypical
++atypically
++aubergine
++aubergines
++auburn
++auction
++auctioned
++auctioneer
++auctioneers
++auctioning
++auctions
++audacious
++audaciously
++audaciousness
++audacity
++audibility
++audible
++audibles
++audibly
++audience
++audiences
++audio
++audiological
++audiologist
++audiologists
++audiology
++audiometer
++audiometers
++audiophile
++audiophiles
++audios
++audiotape
++audiotapes
++audiovisual
++audiovisuals
++audit
++audited
++auditing
++audition
++auditioned
++auditioning
++auditions
++auditor
++auditorium
++auditoriums
++auditors
++auditory
++audits
++auger
++augers
++aught
++aughts
++augment
++augmentation
++augmentations
++augmentative
++augmented
++augmenter
++augmenters
++augmenting
++augments
++augur
++augured
++auguries
++auguring
++augurs
++augury
++august
++auguster
++augustest
++augustly
++augustness
++auk
++auks
++aunt
++auntie
++aunties
++aunts
++aura
++aural
++aurally
++auras
++aureole
++aureoles
++aureus
++auricle
++auricles
++auricular
++aurora
++auroras
++auscultate
++auscultated
++auscultates
++auscultating
++auscultation
++auscultations
++auspice
++auspices
++auspicious
++auspiciously
++auspiciousness
++austere
++austerely
++austerer
++austerest
++austerities
++austerity
++austral
++authentic
++authentically
++authenticate
++authenticated
++authenticates
++authenticating
++authentication
++authentications
++authenticity
++author
++authored
++authoress
++authoresses
++authorial
++authoring
++authoritarian
++authoritarianism
++authoritarians
++authoritative
++authoritatively
++authoritativeness
++authorities
++authority
++authorization
++authorizations
++authorize
++authorized
++authorizes
++authorizing
++authors
++authorship
++autism
++autistic
++auto
++autobahn
++autobahns
++autobiographer
++autobiographers
++autobiographic
++autobiographical
++autobiographically
++autobiographies
++autobiography
++autoclave
++autoclaves
++autocracies
++autocracy
++autocrat
++autocratic
++autocratically
++autocrats
++autocross
++autodidact
++autodidacts
++autograph
++autographed
++autographing
++autographs
++autoimmune
++autoimmunity
++automaker
++automakers
++automate
++automated
++automates
++automatic
++automatically
++automatics
++automating
++automation
++automatism
++automatize
++automatized
++automatizes
++automatizing
++automaton
++automatons
++automobile
++automobiled
++automobiles
++automobiling
++automotive
++autonomic
++autonomous
++autonomously
++autonomy
++autopilot
++autopilots
++autopsied
++autopsies
++autopsy
++autopsying
++autos
++autosuggestion
++autoworker
++autoworkers
++autumn
++autumnal
++autumns
++aux
++auxiliaries
++auxiliary
++auxin
++av
++avail
++availability
++available
++availed
++availing
++avails
++avalanche
++avalanches
++avarice
++avaricious
++avariciously
++avast
++avatar
++avatars
++avaunt
++avdp
++ave
++avenge
++avenged
++avenger
++avengers
++avenges
++avenging
++avenue
++avenues
++aver
++average
++averaged
++averagely
++averages
++averaging
++averred
++averring
++avers
++averse
++aversion
++aversions
++avert
++averted
++averting
++averts
++avg
++avian
++aviaries
++aviary
++aviation
++aviator
++aviators
++aviatrices
++aviatrix
++aviatrixes
++avid
++avidity
++avidly
++avionic
++avionics
++avitaminosis
++avocado
++avocados
++avocation
++avocational
++avocations
++avoid
++avoidable
++avoidably
++avoidance
++avoided
++avoiding
++avoids
++avoirdupois
++avouch
++avouched
++avouches
++avouching
++avow
++avowal
++avowals
++avowed
++avowedly
++avowing
++avows
++avuncular
++avuncularly
++aw
++await
++awaited
++awaiting
++awaits
++awake
++awaken
++awakened
++awakening
++awakenings
++awakens
++awakes
++awaking
++award
++awarded
++awardee
++awardees
++awarding
++awards
++aware
++awareness
++awash
++away
++awe
++awed
++aweigh
++awes
++awesome
++awesomely
++awesomeness
++awestruck
++awful
++awfuller
++awfullest
++awfully
++awfulness
++awhile
++awing
++awkward
++awkwarder
++awkwardest
++awkwardly
++awkwardness
++awl
++awls
++awn
++awning
++awnings
++awns
++awoke
++awoken
++awry
++ax
++axed
++axes
++axial
++axially
++axing
++axiom
++axiomatic
++axiomatically
++axioms
++axis
++axle
++axles
++axletree
++axletrees
++axolotl
++axolotls
++axon
++axons
++ayah
++ayahs
++ayatollah
++ayatollahs
++aye
++ayes
++azalea
++azaleas
++azimuth
++azimuths
++azure
++azures
++b
++baa
++baaed
++baaing
++baas
++babble
++babbled
++babbler
++babblers
++babbles
++babbling
++babe
++babel
++babels
++babes
++babied
++babier
++babies
++babiest
++baboon
++baboons
++babushka
++babushkas
++baby
++babyhood
++babying
++babyish
++babysat
++babysit
++babysits
++babysitter
++babysitters
++babysitting
++baccalaureate
++baccalaureates
++baccarat
++bacchanal
++bacchanalia
++bacchanalian
++bacchanalians
++bacchanals
++baccy
++bachelor
++bachelorhood
++bachelors
++bacillary
++bacilli
++bacillus
++back
++backache
++backaches
++backbench
++backbenches
++backbit
++backbite
++backbiter
++backbiters
++backbites
++backbiting
++backbitten
++backboard
++backboards
++backbone
++backbones
++backbreaking
++backchat
++backcloth
++backcloths
++backcomb
++backcombed
++backcombing
++backcombs
++backdate
++backdated
++backdates
++backdating
++backdoor
++backdrop
++backdrops
++backed
++backer
++backers
++backfield
++backfields
++backfire
++backfired
++backfires
++backfiring
++backgammon
++background
++backgrounder
++backgrounders
++backgrounds
++backhand
++backhanded
++backhandedly
++backhander
++backhanders
++backhanding
++backhands
++backhoe
++backhoes
++backing
++backings
++backlash
++backlashes
++backless
++backlog
++backlogged
++backlogging
++backlogs
++backpack
++backpacked
++backpacker
++backpackers
++backpacking
++backpacks
++backpedal
++backpedaled
++backpedaling
++backpedals
++backrest
++backrests
++backroom
++backrooms
++backs
++backscratching
++backseat
++backseats
++backside
++backsides
++backslapper
++backslappers
++backslapping
++backslash
++backslashes
++backslid
++backslide
++backslider
++backsliders
++backslides
++backsliding
++backspace
++backspaced
++backspaces
++backspacing
++backspin
++backstabber
++backstabbers
++backstabbing
++backstage
++backstair
++backstairs
++backstop
++backstopped
++backstopping
++backstops
++backstories
++backstory
++backstreet
++backstreets
++backstretch
++backstretches
++backstroke
++backstroked
++backstrokes
++backstroking
++backtalk
++backtrack
++backtracked
++backtracking
++backtracks
++backup
++backups
++backward
++backwardly
++backwardness
++backwards
++backwash
++backwater
++backwaters
++backwoods
++backwoodsman
++backwoodsmen
++backyard
++backyards
++bacon
++bacteria
++bacterial
++bactericidal
++bactericide
++bactericides
++bacteriologic
++bacteriological
++bacteriologist
++bacteriologists
++bacteriology
++bacterium
++bad
++badder
++baddest
++baddie
++baddies
++bade
++badge
++badger
++badgered
++badgering
++badgers
++badges
++badinage
++badlands
++badly
++badman
++badmen
++badminton
++badmouth
++badmouthed
++badmouthing
++badmouths
++badness
++baffle
++baffled
++bafflement
++baffler
++bafflers
++baffles
++baffling
++bag
++bagatelle
++bagatelles
++bagel
++bagels
++bagful
++bagfuls
++baggage
++bagged
++baggie
++baggier
++baggies
++baggiest
++baggily
++bagginess
++bagging
++baggy
++bagpipe
++bagpiper
++bagpipers
++bagpipes
++bags
++baguette
++baguettes
++bah
++baht
++bahts
++bail
++bailable
++bailed
++bailey
++baileys
++bailiff
++bailiffs
++bailing
++bailiwick
++bailiwicks
++bailout
++bailouts
++bails
++bailsman
++bailsmen
++bairn
++bairns
++bait
++baited
++baiting
++baits
++baize
++bake
++baked
++baker
++bakeries
++bakers
++bakery
++bakes
++bakeshop
++bakeshops
++baking
++baklava
++baksheesh
++balaclava
++balaclavas
++balalaika
++balalaikas
++balance
++balanced
++balances
++balancing
++balboa
++balboas
++balconies
++balcony
++bald
++balded
++balder
++balderdash
++baldest
++baldfaced
++baldies
++balding
++baldly
++baldness
++baldric
++baldrics
++balds
++baldy
++bale
++baled
++baleen
++baleful
++balefully
++balefulness
++baler
++balers
++bales
++baling
++balk
++balked
++balkier
++balkiest
++balking
++balks
++balky
++ball
++ballad
++balladeer
++balladeers
++balladry
++ballads
++ballast
++ballasted
++ballasting
++ballasts
++ballcock
++ballcocks
++balled
++ballerina
++ballerinas
++ballet
++balletic
++ballets
++ballgame
++ballgames
++ballgirl
++ballgirls
++ballgown
++ballgowns
++balling
++ballistic
++ballistics
++balloon
++ballooned
++ballooning
++balloonist
++balloonists
++balloons
++ballot
++balloted
++balloting
++ballots
++ballpark
++ballparks
++ballplayer
++ballplayers
++ballpoint
++ballpoints
++ballroom
++ballrooms
++balls
++ballsed
++ballses
++ballsier
++ballsiest
++ballsing
++ballsy
++bally
++ballyhoo
++ballyhooed
++ballyhooing
++ballyhoos
++balm
++balmier
++balmiest
++balminess
++balms
++balmy
++baloney
++balsa
++balsam
++balsamic
++balsams
++balsas
++baluster
++balusters
++balustrade
++balustrades
++bamboo
++bamboos
++bamboozle
++bamboozled
++bamboozles
++bamboozling
++ban
++banal
++banalities
++banality
++banally
++banana
++bananas
++band
++bandage
++bandaged
++bandages
++bandaging
++bandanna
++bandannas
++bandbox
++bandboxes
++bandeau
++bandeaux
++banded
++bandied
++bandier
++bandies
++bandiest
++banding
++bandit
++banditry
++bandits
++bandleader
++bandleaders
++bandmaster
++bandmasters
++bandoleer
++bandoleers
++bands
++bandsman
++bandsmen
++bandstand
++bandstands
++bandwagon
++bandwagons
++bandwidth
++bandwidths
++bandy
++bandying
++bane
++baneful
++banes
++bang
++banged
++banger
++banging
++bangle
++bangles
++bangs
++bani
++banish
++banished
++banishes
++banishing
++banishment
++banister
++banisters
++banjo
++banjoist
++banjoists
++banjos
++bank
++bankable
++bankbook
++bankbooks
++bankcard
++bankcards
++banked
++banker
++bankers
++banking
++banknote
++banknotes
++bankroll
++bankrolled
++bankrolling
++bankrolls
++bankrupt
++bankruptcies
++bankruptcy
++bankrupted
++bankrupting
++bankrupts
++banks
++banned
++banner
++banners
++banning
++bannock
++bannocks
++banns
++banquet
++banqueted
++banqueter
++banqueters
++banqueting
++banquets
++banquette
++banquettes
++bans
++banshee
++banshees
++bantam
++bantams
++bantamweight
++bantamweights
++banter
++bantered
++bantering
++banteringly
++banters
++banyan
++banyans
++banzai
++banzais
++baobab
++baobabs
++bap
++baps
++baptism
++baptismal
++baptisms
++baptist
++baptisteries
++baptistery
++baptists
++baptize
++baptized
++baptizer
++baptizers
++baptizes
++baptizing
++bar
++barb
++barbacoa
++barbarian
++barbarianism
++barbarianisms
++barbarians
++barbaric
++barbarically
++barbarism
++barbarisms
++barbarities
++barbarity
++barbarize
++barbarized
++barbarizes
++barbarizing
++barbarous
++barbarously
++barbecue
++barbecued
++barbecues
++barbecuing
++barbed
++barbel
++barbell
++barbells
++barbels
++barber
++barbered
++barbering
++barberries
++barberry
++barbers
++barbershop
++barbershops
++barbie
++barbies
++barbing
++barbiturate
++barbiturates
++barbs
++barbwire
++barcarole
++barcaroles
++bard
++bardic
++bards
++bare
++bareback
++barebacked
++bared
++barefaced
++barefacedly
++barefoot
++barefooted
++barehanded
++bareheaded
++barelegged
++barely
++bareness
++barer
++bares
++barest
++barf
++barfed
++barfing
++barflies
++barfly
++barfs
++bargain
++bargained
++bargainer
++bargainers
++bargaining
++bargains
++barge
++barged
++bargeman
++bargemen
++barges
++barging
++barhop
++barhopped
++barhopping
++barhops
++baring
++barista
++baristas
++baritone
++baritones
++barium
++bark
++barked
++barkeep
++barkeeper
++barkeepers
++barkeeps
++barker
++barkers
++barking
++barks
++barley
++barmaid
++barmaids
++barman
++barmen
++barmier
++barmiest
++barmy
++barn
++barnacle
++barnacled
++barnacles
++barney
++barneys
++barns
++barnstorm
++barnstormed
++barnstormer
++barnstormers
++barnstorming
++barnstorms
++barnyard
++barnyards
++barometer
++barometers
++barometric
++barometrically
++baron
++baronage
++baronages
++baroness
++baronesses
++baronet
++baronetcies
++baronetcy
++baronets
++baronial
++baronies
++barons
++barony
++baroque
++barque
++barques
++barrack
++barracked
++barracking
++barracks
++barracuda
++barracudas
++barrage
++barraged
++barrages
++barraging
++barre
++barred
++barrel
++barreled
++barreling
++barrels
++barren
++barrener
++barrenest
++barrenness
++barrens
++barres
++barrette
++barrettes
++barricade
++barricaded
++barricades
++barricading
++barrier
++barriers
++barring
++barrings
++barrio
++barrios
++barrister
++barristers
++barroom
++barrooms
++barrow
++barrows
++bars
++bartender
++bartenders
++barter
++bartered
++barterer
++barterers
++bartering
++barters
++baryon
++baryons
++basal
++basally
++basalt
++basaltic
++base
++baseball
++baseballs
++baseboard
++baseboards
++based
++baseless
++baseline
++baselines
++basely
++baseman
++basemen
++basement
++basements
++baseness
++baser
++bases
++basest
++bash
++bashed
++bashes
++bashful
++bashfully
++bashfulness
++bashing
++basic
++basically
++basics
++basil
++basilica
++basilicas
++basilisk
++basilisks
++basin
++basinful
++basinfuls
++basing
++basins
++basis
++bask
++basked
++basket
++basketball
++basketballs
++basketry
++baskets
++basketwork
++basking
++basks
++basque
++basques
++bass
++basses
++basset
++bassets
++bassinet
++bassinets
++bassist
++bassists
++basso
++bassoon
++bassoonist
++bassoonists
++bassoons
++bassos
++basswood
++basswoods
++bast
++bastard
++bastardization
++bastardizations
++bastardize
++bastardized
++bastardizes
++bastardizing
++bastards
++bastardy
++baste
++basted
++baster
++basters
++bastes
++basting
++bastion
++bastions
++bat
++batch
++batched
++batches
++batching
++bate
++bated
++bates
++bath
++bathe
++bathed
++bather
++bathers
++bathes
++bathetic
++bathhouse
++bathhouses
++bathing
++bathmat
++bathmats
++bathos
++bathrobe
++bathrobes
++bathroom
++bathrooms
++baths
++bathtub
++bathtubs
++bathwater
++bathyscaphe
++bathyscaphes
++bathysphere
++bathyspheres
++batik
++batiks
++bating
++batiste
++batman
++batmen
++baton
++batons
++bats
++batsman
++batsmen
++battalion
++battalions
++batted
++batten
++battened
++battening
++battens
++batter
++battered
++batterer
++batterers
++batteries
++battering
++batterings
++batters
++battery
++battier
++battiest
++batting
++battle
++battleaxe
++battleaxes
++battled
++battledore
++battledores
++battledress
++battlefield
++battlefields
++battlefront
++battlefronts
++battleground
++battlegrounds
++battlement
++battlements
++battler
++battlers
++battles
++battleship
++battleships
++battling
++batty
++bauble
++baubles
++baud
++bauds
++bauxite
++bawd
++bawdier
++bawdiest
++bawdily
++bawdiness
++bawds
++bawdy
++bawl
++bawled
++bawling
++bawls
++bay
++bayberries
++bayberry
++bayed
++baying
++bayonet
++bayoneted
++bayoneting
++bayonets
++bayou
++bayous
++bays
++bazaar
++bazaars
++bazillion
++bazillions
++bazooka
++bazookas
++bbl
++bdrm
++be
++beach
++beachcomber
++beachcombers
++beached
++beaches
++beachfront
++beachhead
++beachheads
++beaching
++beachwear
++beacon
++beacons
++bead
++beaded
++beadier
++beadiest
++beading
++beadle
++beadles
++beads
++beady
++beagle
++beagles
++beak
++beaked
++beaker
++beakers
++beaks
++beam
++beamed
++beaming
++beams
++bean
++beanbag
++beanbags
++beaned
++beanfeast
++beanfeasts
++beanie
++beanies
++beaning
++beanpole
++beanpoles
++beans
++beansprout
++beansprouts
++beanstalk
++beanstalks
++bear
++bearable
++bearably
++beard
++bearded
++bearding
++beardless
++beards
++bearer
++bearers
++bearing
++bearings
++bearish
++bearishly
++bearishness
++bearlike
++bears
++bearskin
++bearskins
++beast
++beastlier
++beastliest
++beastliness
++beastly
++beasts
++beat
++beatable
++beaten
++beater
++beaters
++beatific
++beatifically
++beatification
++beatifications
++beatified
++beatifies
++beatify
++beatifying
++beating
++beatings
++beatitude
++beatitudes
++beatnik
++beatniks
++beats
++beau
++beaus
++beaut
++beauteous
++beauteously
++beautician
++beauticians
++beauties
++beautification
++beautified
++beautifier
++beautifiers
++beautifies
++beautiful
++beautifully
++beautify
++beautifying
++beauts
++beauty
++beaver
++beavered
++beavering
++beavers
++bebop
++bebops
++becalm
++becalmed
++becalming
++becalms
++became
++because
++beck
++beckon
++beckoned
++beckoning
++beckons
++becks
++becloud
++beclouded
++beclouding
++beclouds
++become
++becomes
++becoming
++becomingly
++becquerel
++becquerels
++bed
++bedaub
++bedaubed
++bedaubing
++bedaubs
++bedazzle
++bedazzled
++bedazzlement
++bedazzles
++bedazzling
++bedbug
++bedbugs
++bedchamber
++bedchambers
++bedclothes
++bedded
++bedder
++bedding
++bedeck
++bedecked
++bedecking
++bedecks
++bedevil
++bedeviled
++bedeviling
++bedevilment
++bedevils
++bedfellow
++bedfellows
++bedhead
++bedheads
++bedim
++bedimmed
++bedimming
++bedims
++bedizen
++bedizened
++bedizening
++bedizens
++bedlam
++bedlams
++bedpan
++bedpans
++bedpost
++bedposts
++bedraggle
++bedraggled
++bedraggles
++bedraggling
++bedridden
++bedrock
++bedrocks
++bedroll
++bedrolls
++bedroom
++bedrooms
++beds
++bedside
++bedsides
++bedsit
++bedsits
++bedsitter
++bedsitters
++bedsore
++bedsores
++bedspread
++bedspreads
++bedstead
++bedsteads
++bedtime
++bedtimes
++bee
++beebread
++beech
++beeches
++beechnut
++beechnuts
++beef
++beefburger
++beefburgers
++beefcake
++beefcakes
++beefed
++beefier
++beefiest
++beefiness
++beefing
++beefs
++beefsteak
++beefsteaks
++beefy
++beehive
++beehives
++beekeeper
++beekeepers
++beekeeping
++beeline
++beelines
++been
++beep
++beeped
++beeper
++beepers
++beeping
++beeps
++beer
++beerier
++beeriest
++beers
++beery
++bees
++beeswax
++beet
++beetle
++beetled
++beetles
++beetling
++beetroot
++beetroots
++beets
++beeves
++befall
++befallen
++befalling
++befalls
++befell
++befit
++befits
++befitted
++befitting
++befittingly
++befog
++befogged
++befogging
++befogs
++before
++beforehand
++befoul
++befouled
++befouling
++befouls
++befriend
++befriended
++befriending
++befriends
++befuddle
++befuddled
++befuddlement
++befuddles
++befuddling
++beg
++began
++begat
++beget
++begets
++begetter
++begetters
++begetting
++beggar
++beggared
++beggaring
++beggarly
++beggars
++beggary
++begged
++begging
++begin
++beginner
++beginners
++beginning
++beginnings
++begins
++begone
++begonia
++begonias
++begot
++begotten
++begrime
++begrimed
++begrimes
++begriming
++begrudge
++begrudged
++begrudges
++begrudging
++begrudgingly
++begs
++beguile
++beguiled
++beguilement
++beguiler
++beguilers
++beguiles
++beguiling
++beguilingly
++beguine
++beguines
++begum
++begums
++begun
++behalf
++behalves
++behave
++behaved
++behaves
++behaving
++behavior
++behavioral
++behaviorally
++behaviorism
++behaviorist
++behaviorists
++behaviors
++behead
++beheaded
++beheading
++beheads
++beheld
++behemoth
++behemoths
++behest
++behests
++behind
++behindhand
++behinds
++behold
++beholden
++beholder
++beholders
++beholding
++beholds
++behoove
++behooved
++behooves
++behooving
++beige
++being
++beings
++bejewel
++bejeweled
++bejeweling
++bejewels
++belabor
++belabored
++belaboring
++belabors
++belated
++belatedly
++belay
++belayed
++belaying
++belays
++belch
++belched
++belches
++belching
++beleaguer
++beleaguered
++beleaguering
++beleaguers
++belfries
++belfry
++belie
++belied
++belief
++beliefs
++belies
++believable
++believably
++believe
++believed
++believer
++believers
++believes
++believing
++belittle
++belittled
++belittlement
++belittles
++belittling
++bell
++belladonna
++bellboy
++bellboys
++belle
++belled
++belles
++belletrist
++belletristic
++belletrists
++bellhop
++bellhops
++bellicose
++bellicosity
++bellied
++bellies
++belligerence
++belligerency
++belligerent
++belligerently
++belligerents
++belling
++bellman
++bellmen
++bellow
++bellowed
++bellowing
++bellows
++bells
++bellwether
++bellwethers
++belly
++bellyache
++bellyached
++bellyaches
++bellyaching
++bellybutton
++bellybuttons
++bellyful
++bellyfuls
++bellying
++belong
++belonged
++belonging
++belongings
++belongs
++beloved
++beloveds
++below
++belt
++belted
++belting
++belts
++beltway
++beltways
++beluga
++belugas
++belying
++bemire
++bemired
++bemires
++bemiring
++bemoan
++bemoaned
++bemoaning
++bemoans
++bemuse
++bemused
++bemusedly
++bemusement
++bemuses
++bemusing
++bench
++benched
++benches
++benching
++benchmark
++benchmarks
++bend
++bendable
++bender
++benders
++bendier
++bendiest
++bending
++bends
++bendy
++beneath
++benedictine
++benediction
++benedictions
++benedictory
++benefaction
++benefactions
++benefactor
++benefactors
++benefactress
++benefactresses
++benefice
++beneficence
++beneficent
++beneficently
++benefices
++beneficial
++beneficially
++beneficiaries
++beneficiary
++benefit
++benefited
++benefiting
++benefits
++benevolence
++benevolences
++benevolent
++benevolently
++benighted
++benightedly
++benign
++benignant
++benignity
++benignly
++bent
++bents
++bentwood
++benumb
++benumbed
++benumbing
++benumbs
++benzene
++benzine
++benzyl
++bequeath
++bequeathed
++bequeathing
++bequeaths
++bequest
++bequests
++berate
++berated
++berates
++berating
++bereave
++bereaved
++bereavement
++bereavements
++bereaves
++bereaving
++bereft
++beret
++berets
++berg
++bergs
++beriberi
++berk
++berkelium
++berks
++berm
++berms
++berried
++berries
++berry
++berrying
++berrylike
++berserk
++berth
++berthed
++berthing
++berths
++beryl
++beryllium
++beryls
++beseech
++beseecher
++beseechers
++beseeches
++beseeching
++beseechingly
++beseem
++beseemed
++beseeming
++beseems
++beset
++besets
++besetting
++beside
++besides
++besiege
++besieged
++besieger
++besiegers
++besieges
++besieging
++besmear
++besmeared
++besmearing
++besmears
++besmirch
++besmirched
++besmirches
++besmirching
++besom
++besoms
++besot
++besots
++besotted
++besotting
++besought
++bespangle
++bespangled
++bespangles
++bespangling
++bespatter
++bespattered
++bespattering
++bespatters
++bespeak
++bespeaking
++bespeaks
++bespectacled
++bespoke
++bespoken
++best
++bested
++bestial
++bestiality
++bestially
++bestiaries
++bestiary
++besting
++bestir
++bestirred
++bestirring
++bestirs
++bestow
++bestowal
++bestowals
++bestowed
++bestowing
++bestows
++bestrew
++bestrewed
++bestrewing
++bestrewn
++bestrews
++bestridden
++bestride
++bestrides
++bestriding
++bestrode
++bests
++bestseller
++bestsellers
++bestselling
++bet
++beta
++betake
++betaken
++betakes
++betaking
++betas
++betcha
++betel
++bethink
++bethinking
++bethinks
++bethought
++betide
++betided
++betides
++betiding
++betimes
++betoken
++betokened
++betokening
++betokens
++betook
++betray
++betrayal
++betrayals
++betrayed
++betrayer
++betrayers
++betraying
++betrays
++betroth
++betrothal
++betrothals
++betrothed
++betrothing
++betroths
++bets
++better
++bettered
++bettering
++betterment
++betters
++betting
++bettor
++bettors
++between
++betwixt
++bevel
++beveled
++beveling
++bevels
++beverage
++beverages
++bevies
++bevvies
++bevvy
++bevy
++bewail
++bewailed
++bewailing
++bewails
++beware
++bewared
++bewares
++bewaring
++bewhiskered
++bewigged
++bewilder
++bewildered
++bewildering
++bewilderingly
++bewilderment
++bewilders
++bewitch
++bewitched
++bewitches
++bewitching
++bewitchingly
++bewitchment
++bey
++beyond
++beys
++bezel
++bezels
++bf
++bhaji
++bi
++biannual
++biannually
++bias
++biased
++biases
++biasing
++biathlon
++biathlons
++bib
++bible
++bibles
++biblical
++bibliographer
++bibliographers
++bibliographic
++bibliographical
++bibliographically
++bibliographies
++bibliography
++bibliophile
++bibliophiles
++bibs
++bibulous
++bicameral
++bicameralism
++bicarb
++bicarbonate
++bicarbonates
++bicarbs
++bicentenaries
++bicentenary
++bicentennial
++bicentennials
++bicep
++biceps
++bicker
++bickered
++bickerer
++bickerers
++bickering
++bickers
++biconcave
++biconvex
++bicuspid
++bicuspids
++bicycle
++bicycled
++bicycler
++bicyclers
++bicycles
++bicycling
++bicyclist
++bicyclists
++bid
++biddable
++bidden
++bidder
++bidders
++biddies
++bidding
++biddy
++bide
++bides
++bidet
++bidets
++biding
++bidirectional
++bidirectionally
++bids
++biennial
++biennially
++biennials
++biennium
++bienniums
++bier
++biers
++biff
++biffed
++biffing
++biffs
++bifocal
++bifocals
++bifurcate
++bifurcated
++bifurcates
++bifurcating
++bifurcation
++bifurcations
++big
++bigamist
++bigamists
++bigamous
++bigamy
++bigger
++biggest
++biggie
++biggies
++biggish
++bighead
++bigheads
++bighearted
++bigheartedness
++bighorn
++bighorns
++bight
++bights
++bigmouth
++bigmouths
++bigness
++bigot
++bigoted
++bigotries
++bigotry
++bigots
++bigwig
++bigwigs
++bijou
++bijoux
++bike
++biked
++biker
++bikers
++bikes
++biking
++bikini
++bikinis
++bilabial
++bilabials
++bilateral
++bilaterally
++bilberries
++bilberry
++bile
++bilge
++bilges
++bilingual
++bilingualism
++bilingually
++bilinguals
++bilious
++biliousness
++bilirubin
++bilk
++bilked
++bilker
++bilkers
++bilking
++bilks
++bill
++billable
++billboard
++billboards
++billed
++billet
++billeted
++billeting
++billets
++billfold
++billfolds
++billhook
++billhooks
++billiard
++billiards
++billies
++billing
++billings
++billingsgate
++billion
++billionaire
++billionaires
++billions
++billionth
++billionths
++billow
++billowed
++billowing
++billows
++billowy
++bills
++billy
++billycan
++billycans
++bimbo
++bimbos
++bimetallic
++bimetallics
++bimetallism
++bimonthlies
++bimonthly
++bin
++binaries
++binary
++bind
++binder
++binderies
++binders
++bindery
++binding
++bindings
++binds
++bindweed
++binge
++binged
++binges
++bingo
++binman
++binmen
++binnacle
++binnacles
++binned
++binning
++binocular
++binoculars
++binomial
++binomials
++bins
++bio
++biochemical
++biochemically
++biochemicals
++biochemist
++biochemistry
++biochemists
++biodegradability
++biodegradable
++biodegrade
++biodegraded
++biodegrades
++biodegrading
++biodiversity
++bioethics
++biofeedback
++biog
++biographer
++biographers
++biographic
++biographical
++biographically
++biographies
++biography
++biol
++biologic
++biological
++biologically
++biologist
++biologists
++biology
++biomass
++biomedical
++bionic
++bionically
++bionics
++biophysical
++biophysicist
++biophysicists
++biophysics
++biopic
++biopics
++biopsied
++biopsies
++biopsy
++biopsying
++bioreactor
++bioreactors
++biorhythm
++biorhythms
++bios
++biosensor
++biosensors
++biosphere
++biospheres
++biosynthesis
++biotech
++biotechnological
++biotechnology
++biotin
++bipartisan
++bipartisanship
++bipartite
++biped
++bipedal
++bipeds
++biplane
++biplanes
++bipolar
++bipolarity
++biracial
++birch
++birched
++birches
++birching
++bird
++birdbath
++birdbaths
++birdbrain
++birdbrained
++birdbrains
++birdcage
++birdcages
++birded
++birder
++birders
++birdhouse
++birdhouses
++birdie
++birdied
++birdieing
++birdies
++birding
++birdlike
++birdlime
++birds
++birdseed
++birdsong
++birdwatcher
++birdwatchers
++birdying
++biretta
++birettas
++birth
++birthday
++birthdays
++birthed
++birther
++birthers
++birthing
++birthmark
++birthmarks
++birthplace
++birthplaces
++birthrate
++birthrates
++birthright
++birthrights
++births
++birthstone
++birthstones
++bis
++biscuit
++biscuits
++bisect
++bisected
++bisecting
++bisection
++bisections
++bisector
++bisectors
++bisects
++bisexual
++bisexuality
++bisexually
++bisexuals
++bishop
++bishopric
++bishoprics
++bishops
++bismuth
++bison
++bisque
++bistro
++bistros
++bit
++bitch
++bitched
++bitches
++bitchier
++bitchiest
++bitchily
++bitchiness
++bitching
++bitchy
++bitcoin
++bitcoins
++bite
++biter
++biters
++bites
++biting
++bitingly
++bitmap
++bitmaps
++bits
++bitten
++bitter
++bitterer
++bitterest
++bitterly
++bittern
++bitterness
++bitterns
++bitters
++bittersweet
++bittersweets
++bittier
++bittiest
++bitty
++bitumen
++bituminous
++bivalent
++bivalve
++bivalves
++bivouac
++bivouacked
++bivouacking
++bivouacs
++biweeklies
++biweekly
++biyearly
++biz
++bizarre
++bizarrely
++bk
++bl
++blab
++blabbed
++blabber
++blabbered
++blabbering
++blabbermouth
++blabbermouths
++blabbers
++blabbing
++blabs
++black
++blackamoor
++blackamoors
++blackball
++blackballed
++blackballing
++blackballs
++blackberries
++blackberry
++blackberrying
++blackbird
++blackbirds
++blackboard
++blackboards
++blackcurrant
++blackcurrants
++blacked
++blacken
++blackened
++blackening
++blackens
++blacker
++blackest
++blackface
++blackguard
++blackguards
++blackhead
++blackheads
++blacking
++blackish
++blackjack
++blackjacked
++blackjacking
++blackjacks
++blackleg
++blacklegs
++blacklist
++blacklisted
++blacklisting
++blacklists
++blackly
++blackmail
++blackmailed
++blackmailer
++blackmailers
++blackmailing
++blackmails
++blackness
++blackout
++blackouts
++blacks
++blacksmith
++blacksmiths
++blacksnake
++blacksnakes
++blackthorn
++blackthorns
++blacktop
++blacktopped
++blacktopping
++blacktops
++bladder
++bladders
++blade
++bladed
++blades
++blag
++blagged
++blagging
++blags
++blah
++blahs
++blamable
++blame
++blamed
++blameless
++blamelessly
++blamelessness
++blamer
++blames
++blameworthiness
++blameworthy
++blaming
++blammo
++blanch
++blanched
++blanches
++blanching
++blancmange
++blancmanges
++bland
++blander
++blandest
++blandish
++blandished
++blandishes
++blandishing
++blandishment
++blandishments
++blandly
++blandness
++blank
++blanked
++blanker
++blankest
++blanket
++blanketed
++blanketing
++blankets
++blanking
++blankly
++blankness
++blanks
++blare
++blared
++blares
++blaring
++blarney
++blarneyed
++blarneying
++blarneys
++blase
++blaspheme
++blasphemed
++blasphemer
++blasphemers
++blasphemes
++blasphemies
++blaspheming
++blasphemous
++blasphemously
++blasphemy
++blast
++blasted
++blaster
++blasters
++blasting
++blastoff
++blastoffs
++blasts
++blat
++blatancies
++blatancy
++blatant
++blatantly
++blather
++blathered
++blathering
++blathers
++blats
++blaze
++blazed
++blazer
++blazers
++blazes
++blazing
++blazon
++blazoned
++blazoning
++blazons
++bldg
++bleach
++bleached
++bleacher
++bleachers
++bleaches
++bleaching
++bleak
++bleaker
++bleakest
++bleakly
++bleakness
++blear
++blearier
++bleariest
++blearily
++bleariness
++bleary
++bleat
++bleated
++bleating
++bleats
++bled
++bleed
++bleeder
++bleeders
++bleeding
++bleeds
++bleep
++bleeped
++bleeper
++bleepers
++bleeping
++bleeps
++blemish
++blemished
++blemishes
++blemishing
++blench
++blenched
++blenches
++blenching
++blend
++blended
++blender
++blenders
++blending
++blends
++bless
++blessed
++blessedly
++blessedness
++blesses
++blessing
++blessings
++bletch
++blew
++blight
++blighted
++blighter
++blighters
++blighting
++blights
++blimey
++blimp
++blimpish
++blimps
++blind
++blinded
++blinder
++blinders
++blindest
++blindfold
++blindfolded
++blindfolding
++blindfolds
++blinding
++blindingly
++blindly
++blindness
++blinds
++blindside
++blindsided
++blindsides
++blindsiding
++bling
++blini
++blinis
++blink
++blinked
++blinker
++blinkered
++blinkering
++blinkers
++blinking
++blinks
++blintz
++blintze
++blintzes
++blip
++blips
++bliss
++blissful
++blissfully
++blissfulness
++blister
++blistered
++blistering
++blisteringly
++blisters
++blistery
++blithe
++blithely
++blitheness
++blither
++blithering
++blithesome
++blithest
++blitz
++blitzed
++blitzes
++blitzing
++blitzkrieg
++blitzkriegs
++blivet
++blivets
++blizzard
++blizzards
++bloat
++bloated
++bloater
++bloaters
++bloating
++bloats
++bloatware
++blob
++blobbed
++blobbing
++blobs
++bloc
++block
++blockade
++blockaded
++blockader
++blockaders
++blockades
++blockading
++blockage
++blockages
++blockbuster
++blockbusters
++blockbusting
++blocked
++blocker
++blockers
++blockhead
++blockheads
++blockhouse
++blockhouses
++blocking
++blocks
++blocs
++blog
++blogged
++blogger
++bloggers
++blogging
++blogs
++bloke
++blokes
++blokish
++blond
++blonde
++blonder
++blondes
++blondest
++blondish
++blondness
++blonds
++blood
++bloodbath
++bloodbaths
++bloodcurdling
++blooded
++bloodhound
++bloodhounds
++bloodied
++bloodier
++bloodies
++bloodiest
++bloodily
++bloodiness
++blooding
++bloodless
++bloodlessly
++bloodlessness
++bloodletting
++bloodline
++bloodlines
++bloodmobile
++bloodmobiles
++bloods
++bloodshed
++bloodshot
++bloodstain
++bloodstained
++bloodstains
++bloodstock
++bloodstream
++bloodstreams
++bloodsucker
++bloodsuckers
++bloodsucking
++bloodthirstier
++bloodthirstiest
++bloodthirstily
++bloodthirstiness
++bloodthirsty
++bloody
++bloodying
++bloom
++bloomed
++bloomer
++bloomers
++blooming
++blooms
++bloop
++blooped
++blooper
++bloopers
++blooping
++bloops
++blossom
++blossomed
++blossoming
++blossoms
++blossomy
++blot
++blotch
++blotched
++blotches
++blotchier
++blotchiest
++blotching
++blotchy
++blots
++blotted
++blotter
++blotters
++blotting
++blotto
++blouse
++bloused
++blouses
++blousing
++blow
++blower
++blowers
++blowflies
++blowfly
++blowgun
++blowguns
++blowhard
++blowhards
++blowhole
++blowholes
++blowier
++blowiest
++blowing
++blowjob
++blowjobs
++blowlamp
++blowlamps
++blown
++blowout
++blowouts
++blowpipe
++blowpipes
++blows
++blowtorch
++blowtorches
++blowup
++blowups
++blowy
++blowzier
++blowziest
++blowzy
++blubber
++blubbered
++blubbering
++blubbers
++blubbery
++bludgeon
++bludgeoned
++bludgeoning
++bludgeons
++blue
++bluebell
++bluebells
++blueberries
++blueberry
++bluebird
++bluebirds
++bluebonnet
++bluebonnets
++bluebottle
++bluebottles
++blued
++bluefish
++bluefishes
++bluegill
++bluegills
++bluegrass
++blueish
++bluejacket
++bluejackets
++bluejeans
++blueness
++bluenose
++bluenoses
++bluepoint
++bluepoints
++blueprint
++blueprinted
++blueprinting
++blueprints
++bluer
++blues
++bluesier
++bluesiest
++bluest
++bluestocking
++bluestockings
++bluesy
++bluet
++bluets
++bluff
++bluffed
++bluffer
++bluffers
++bluffest
++bluffing
++bluffly
++bluffness
++bluffs
++bluing
++bluish
++blunder
++blunderbuss
++blunderbusses
++blundered
++blunderer
++blunderers
++blundering
++blunders
++blunt
++blunted
++blunter
++bluntest
++blunting
++bluntly
++bluntness
++blunts
++blur
++blurb
++blurbs
++blurred
++blurrier
++blurriest
++blurriness
++blurring
++blurry
++blurs
++blurt
++blurted
++blurting
++blurts
++blush
++blushed
++blusher
++blushers
++blushes
++blushing
++bluster
++blustered
++blusterer
++blusterers
++blustering
++blusterous
++blusters
++blustery
++blvd
++boa
++boar
++board
++boarded
++boarder
++boarders
++boarding
++boardinghouse
++boardinghouses
++boardroom
++boardrooms
++boards
++boardwalk
++boardwalks
++boars
++boas
++boast
++boasted
++boaster
++boasters
++boastful
++boastfully
++boastfulness
++boasting
++boasts
++boat
++boated
++boater
++boaters
++boathouse
++boathouses
++boating
++boatload
++boatloads
++boatman
++boatmen
++boats
++boatswain
++boatswains
++boatyard
++boatyards
++bob
++bobbed
++bobbies
++bobbin
++bobbing
++bobbins
++bobble
++bobbled
++bobbles
++bobbling
++bobby
++bobbysoxer
++bobbysoxers
++bobcat
++bobcats
++bobolink
++bobolinks
++bobs
++bobsled
++bobsledded
++bobsledder
++bobsledders
++bobsledding
++bobsleds
++bobsleigh
++bobsleighs
++bobtail
++bobtails
++bobwhite
++bobwhites
++boccie
++bock
++bod
++bodacious
++bode
++boded
++bodega
++bodegas
++bodes
++bodge
++bodged
++bodges
++bodging
++bodice
++bodices
++bodied
++bodies
++bodily
++boding
++bodkin
++bodkins
++bods
++body
++bodybuilder
++bodybuilders
++bodybuilding
++bodyguard
++bodyguards
++bodysuit
++bodysuits
++bodywork
++boffin
++boffins
++boffo
++bog
++boga
++bogey
++bogeyed
++bogeying
++bogeyman
++bogeymen
++bogeys
++bogged
++boggier
++boggiest
++bogging
++boggle
++boggled
++boggles
++boggling
++boggy
++bogie
++bogies
++bogon
++bogosity
++bogs
++bogus
++bogyman
++bogymen
++bohemian
++bohemianism
++bohemians
++boil
++boiled
++boiler
++boilermaker
++boilermakers
++boilerplate
++boilers
++boiling
++boilings
++boils
++boink
++boinked
++boinking
++boinks
++boisterous
++boisterously
++boisterousness
++bola
++bolas
++bold
++bolder
++boldest
++boldface
++boldfaced
++boldly
++boldness
++bole
++bolero
++boleros
++boles
++bolivar
++bolivares
++bolivars
++boll
++bollard
++bollards
++bollix
++bollixed
++bollixes
++bollixing
++bollocking
++bollockings
++bollocks
++bolls
++bologna
++bolshie
++bolster
++bolstered
++bolstering
++bolsters
++bolt
++bolted
++bolthole
++boltholes
++bolting
++bolts
++bolus
++boluses
++bomb
++bombard
++bombarded
++bombardier
++bombardiers
++bombarding
++bombardment
++bombardments
++bombards
++bombast
++bombastic
++bombastically
++bombed
++bomber
++bombers
++bombing
++bombings
++bombproof
++bombs
++bombshell
++bombshells
++bombsite
++bombsites
++bonanza
++bonanzas
++bonbon
++bonbons
++bonce
++bonces
++bond
++bondage
++bonded
++bondholder
++bondholders
++bonding
++bondman
++bondmen
++bonds
++bondsman
++bondsmen
++bondwoman
++bondwomen
++bone
++boned
++bonehead
++boneheaded
++boneheads
++boneless
++boner
++boners
++bones
++boneshaker
++boneshakers
++boneyard
++bonfire
++bonfires
++bong
++bonged
++bonging
++bongo
++bongos
++bongs
++bonhomie
++bonier
++boniest
++boniness
++boning
++bonito
++bonitos
++bonk
++bonked
++bonkers
++bonking
++bonks
++bonnet
++bonnets
++bonnier
++bonniest
++bonny
++bonobo
++bonobos
++bonsai
++bonus
++bonuses
++bony
++boo
++boob
++boobed
++boobies
++boobing
++boobs
++booby
++boodle
++boodles
++booed
++booger
++boogers
++boogeyman
++boogeymen
++boogie
++boogied
++boogieing
++boogieman
++boogies
++boohoo
++boohooed
++boohooing
++boohoos
++booing
++book
++bookable
++bookbinder
++bookbinderies
++bookbinders
++bookbindery
++bookbinding
++bookcase
++bookcases
++booked
++bookend
++bookends
++bookie
++bookies
++booking
++bookings
++bookish
++bookkeeper
++bookkeepers
++bookkeeping
++booklet
++booklets
++bookmaker
++bookmakers
++bookmaking
++bookmark
++bookmarked
++bookmarking
++bookmarks
++bookmobile
++bookmobiles
++bookplate
++bookplates
++books
++bookseller
++booksellers
++bookshelf
++bookshelves
++bookshop
++bookshops
++bookstall
++bookstalls
++bookstore
++bookstores
++bookworm
++bookworms
++boom
++boombox
++boomboxes
++boomed
++boomer
++boomerang
++boomeranged
++boomeranging
++boomerangs
++boomers
++booming
++booms
++boon
++boondocks
++boondoggle
++boondoggled
++boondoggler
++boondogglers
++boondoggles
++boondoggling
++boonies
++boons
++boor
++boorish
++boorishly
++boorishness
++boorishnesses
++boors
++boos
++boost
++boosted
++booster
++boosters
++boosting
++boosts
++boot
++bootblack
++bootblacks
++booted
++bootee
++bootees
++booth
++booths
++booties
++booting
++bootlace
++bootlaces
++bootleg
++bootlegged
++bootlegger
++bootleggers
++bootlegging
++bootlegs
++bootless
++boots
++bootstrap
++bootstrapped
++bootstrapping
++bootstraps
++booty
++booze
++boozed
++boozer
++boozers
++boozes
++boozier
++booziest
++boozing
++boozy
++bop
++bopped
++bopping
++bops
++borax
++bordello
++bordellos
++border
++bordered
++bordering
++borderland
++borderlands
++borderline
++borderlines
++borders
++bore
++bored
++boredom
++borehole
++boreholes
++borer
++borers
++bores
++boring
++boringly
++born
++borne
++boron
++borough
++boroughs
++borrow
++borrowed
++borrower
++borrowers
++borrowing
++borrowings
++borrows
++borscht
++borstal
++borstals
++borzoi
++borzois
++bosh
++bosom
++bosoms
++bosomy
++boss
++bossed
++bosses
++bossier
++bossiest
++bossily
++bossiness
++bossing
++bossism
++bossy
++bot
++botanic
++botanical
++botanically
++botanist
++botanists
++botany
++botch
++botched
++botcher
++botchers
++botches
++botching
++both
++bother
++botheration
++bothered
++bothering
++bothers
++bothersome
++botnet
++botnets
++bots
++bottle
++bottled
++bottleneck
++bottlenecks
++bottler
++bottlers
++bottles
++bottling
++bottom
++bottomed
++bottoming
++bottomless
++bottoms
++botulinum
++botulism
++boudoir
++boudoirs
++bouffant
++bouffants
++bougainvillea
++bougainvilleas
++bough
++boughs
++bought
++bouillabaisse
++bouillabaisses
++bouillon
++bouillons
++boulder
++boulders
++boules
++boulevard
++boulevards
++bounce
++bounced
++bouncer
++bouncers
++bounces
++bouncier
++bounciest
++bouncily
++bounciness
++bouncing
++bouncy
++bound
++boundaries
++boundary
++bounded
++bounden
++bounder
++bounders
++bounding
++boundless
++boundlessly
++boundlessness
++bounds
++bounteous
++bounteously
++bounteousness
++bounties
++bountiful
++bountifully
++bountifulness
++bounty
++bouquet
++bouquets
++bourbon
++bourbons
++bourgeois
++bourgeoisie
++boustrophedon
++bout
++boutique
++boutiques
++boutonniere
++boutonnieres
++bouts
++bouzouki
++bouzoukis
++bovine
++bovines
++bovver
++bow
++bowdlerization
++bowdlerizations
++bowdlerize
++bowdlerized
++bowdlerizes
++bowdlerizing
++bowed
++bowel
++bowels
++bower
++bowers
++bowing
++bowl
++bowled
++bowleg
++bowlegged
++bowlegs
++bowler
++bowlers
++bowlful
++bowlfuls
++bowline
++bowlines
++bowling
++bowls
++bowman
++bowmen
++bows
++bowsprit
++bowsprits
++bowstring
++bowstrings
++bowwow
++bowwows
++box
++boxcar
++boxcars
++boxed
++boxen
++boxer
++boxers
++boxes
++boxier
++boxiest
++boxing
++boxlike
++boxroom
++boxrooms
++boxwood
++boxy
++boy
++boycott
++boycotted
++boycotting
++boycotts
++boyfriend
++boyfriends
++boyhood
++boyhoods
++boyish
++boyishly
++boyishness
++boys
++boysenberries
++boysenberry
++bozo
++bozos
++bpm
++bps
++bra
++brace
++braced
++bracelet
++bracelets
++bracer
++bracero
++braceros
++bracers
++braces
++bracing
++bracken
++bracket
++bracketed
++bracketing
++brackets
++brackish
++brackishness
++bract
++bracts
++brad
++bradawl
++bradawls
++brads
++bradycardia
++brae
++braes
++brag
++braggadocio
++braggadocios
++braggart
++braggarts
++bragged
++bragger
++braggers
++bragging
++brags
++braid
++braided
++braiding
++braids
++braille
++brain
++brainchild
++brainchildren
++brained
++brainier
++brainiest
++braininess
++braining
++brainless
++brainlessly
++brainpower
++brains
++brainstorm
++brainstormed
++brainstorming
++brainstorms
++brainteaser
++brainteasers
++brainwash
++brainwashed
++brainwashes
++brainwashing
++brainwave
++brainwaves
++brainy
++braise
++braised
++braises
++braising
++brake
++braked
++brakeman
++brakemen
++brakes
++braking
++bramble
++brambles
++brambly
++bran
++branch
++branched
++branches
++branching
++branchlike
++brand
++branded
++brander
++branders
++brandied
++brandies
++branding
++brandish
++brandished
++brandishes
++brandishing
++brands
++brandy
++brandying
++bras
++brash
++brasher
++brashest
++brashly
++brashness
++brass
++brasserie
++brasseries
++brasses
++brassier
++brassiere
++brassieres
++brassiest
++brassily
++brassiness
++brassy
++brat
++brats
++brattier
++brattiest
++bratty
++bratwurst
++bratwursts
++bravado
++brave
++braved
++bravely
++braveness
++braver
++bravery
++braves
++bravest
++braving
++bravo
++bravos
++bravura
++bravuras
++brawl
++brawled
++brawler
++brawlers
++brawling
++brawls
++brawn
++brawnier
++brawniest
++brawniness
++brawny
++bray
++brayed
++braying
++brays
++braze
++brazed
++brazen
++brazened
++brazening
++brazenly
++brazenness
++brazens
++brazer
++brazers
++brazes
++brazier
++braziers
++brazing
++breach
++breached
++breaches
++breaching
++bread
++breadbasket
++breadbaskets
++breadboard
++breadboards
++breadbox
++breadboxes
++breadcrumb
++breadcrumbs
++breaded
++breadfruit
++breadfruits
++breading
++breadline
++breadlines
++breads
++breadth
++breadths
++breadwinner
++breadwinners
++break
++breakable
++breakables
++breakage
++breakages
++breakaway
++breakaways
++breakdown
++breakdowns
++breaker
++breakers
++breakfast
++breakfasted
++breakfasting
++breakfasts
++breakfront
++breakfronts
++breaking
++breakneck
++breakout
++breakouts
++breakpoints
++breaks
++breakthrough
++breakthroughs
++breakup
++breakups
++breakwater
++breakwaters
++bream
++breams
++breast
++breastbone
++breastbones
++breasted
++breastfed
++breastfeed
++breastfeeding
++breastfeeds
++breasting
++breastplate
++breastplates
++breasts
++breaststroke
++breaststrokes
++breastwork
++breastworks
++breath
++breathable
++breathalyze
++breathalyzed
++breathalyzer
++breathalyzers
++breathalyzes
++breathalyzing
++breathe
++breathed
++breather
++breathers
++breathes
++breathier
++breathiest
++breathing
++breathless
++breathlessly
++breathlessness
++breaths
++breathtaking
++breathtakingly
++breathy
++bred
++breech
++breeches
++breed
++breeder
++breeders
++breeding
++breeds
++breeze
++breezed
++breezes
++breezeway
++breezeways
++breezier
++breeziest
++breezily
++breeziness
++breezing
++breezy
++brethren
++breve
++breves
++brevet
++brevets
++brevetted
++brevetting
++breviaries
++breviary
++brevity
++brew
++brewed
++brewer
++breweries
++brewers
++brewery
++brewing
++brewpub
++brewpubs
++brews
++bribe
++bribed
++briber
++bribers
++bribery
++bribes
++bribing
++brick
++brickbat
++brickbats
++bricked
++brickie
++brickies
++bricking
++bricklayer
++bricklayers
++bricklaying
++bricks
++brickwork
++brickyard
++brickyards
++bridal
++bridals
++bride
++bridegroom
++bridegrooms
++brides
++bridesmaid
++bridesmaids
++bridge
++bridgeable
++bridged
++bridgehead
++bridgeheads
++bridges
++bridgework
++bridging
++bridle
++bridled
++bridles
++bridleway
++bridleways
++bridling
++brie
++brief
++briefcase
++briefcases
++briefed
++briefer
++briefest
++briefing
++briefings
++briefly
++briefness
++briefs
++brier
++briers
++brig
++brigade
++brigades
++brigadier
++brigadiers
++brigand
++brigandage
++brigands
++brigantine
++brigantines
++bright
++brighten
++brightened
++brightener
++brighteners
++brightening
++brightens
++brighter
++brightest
++brightly
++brightness
++brights
++brigs
++brill
++brilliance
++brilliancy
++brilliant
++brilliantine
++brilliantly
++brilliants
++brim
++brimful
++brimless
++brimmed
++brimming
++brims
++brimstone
++brindle
++brindled
++brine
++bring
++bringer
++bringers
++bringing
++brings
++brinier
++briniest
++brininess
++brink
++brinkmanship
++brinks
++briny
++brioche
++brioches
++briquette
++briquettes
++brisk
++brisked
++brisker
++briskest
++brisket
++briskets
++brisking
++briskly
++briskness
++brisks
++bristle
++bristled
++bristles
++bristlier
++bristliest
++bristling
++bristly
++britches
++brittle
++brittleness
++brittler
++brittlest
++bro
++broach
++broached
++broaches
++broaching
++broad
++broadband
++broadcast
++broadcaster
++broadcasters
++broadcasting
++broadcasts
++broadcloth
++broaden
++broadened
++broadening
++broadens
++broader
++broadest
++broadloom
++broadly
++broadminded
++broadness
++broads
++broadsheet
++broadsheets
++broadside
++broadsided
++broadsides
++broadsiding
++broadsword
++broadswords
++brocade
++brocaded
++brocades
++brocading
++broccoli
++brochette
++brochettes
++brochure
++brochures
++brogan
++brogans
++brogue
++brogues
++broil
++broiled
++broiler
++broilers
++broiling
++broils
++broke
++broken
++brokenhearted
++brokenheartedly
++brokenly
++brokenness
++broker
++brokerage
++brokerages
++brokered
++brokering
++brokers
++brollies
++brolly
++bromide
++bromides
++bromidic
++bromine
++bronc
++bronchi
++bronchial
++bronchitic
++bronchitis
++bronchus
++bronco
++broncobuster
++broncobusters
++broncos
++broncs
++brontosaur
++brontosaurs
++brontosaurus
++brontosauruses
++bronze
++bronzed
++bronzes
++bronzing
++brooch
++brooches
++brood
++brooded
++brooder
++brooders
++broodier
++broodiest
++broodily
++broodiness
++brooding
++broodingly
++broodmare
++broodmares
++broods
++broody
++brook
++brooked
++brooking
++brooklet
++brooklets
++brooks
++broom
++brooms
++broomstick
++broomsticks
++bros
++broth
++brothel
++brothels
++brother
++brotherhood
++brotherhoods
++brotherliness
++brotherly
++brothers
++broths
++brougham
++broughams
++brought
++brouhaha
++brouhahas
++brow
++browbeat
++browbeaten
++browbeating
++browbeats
++brown
++browned
++browner
++brownest
++brownfield
++brownie
++brownies
++browning
++brownish
++brownness
++brownout
++brownouts
++browns
++brownstone
++brownstones
++brows
++browse
++browsed
++browser
++browsers
++browses
++browsing
++brr
++bruin
++bruins
++bruise
++bruised
++bruiser
++bruisers
++bruises
++bruising
++bruit
++bruited
++bruiting
++bruits
++brunch
++brunched
++brunches
++brunching
++brunet
++brunets
++brunette
++brunettes
++brunt
++brush
++brushed
++brushes
++brushing
++brushoff
++brushoffs
++brushstroke
++brushstrokes
++brushwood
++brushwork
++brusque
++brusquely
++brusqueness
++brusquer
++brusquest
++brutal
++brutalities
++brutality
++brutalization
++brutalize
++brutalized
++brutalizes
++brutalizing
++brutally
++brute
++brutes
++brutish
++brutishly
++brutishness
++bu
++bub
++bubble
++bubbled
++bubblegum
++bubbles
++bubblier
++bubbliest
++bubbling
++bubbly
++bubo
++buboes
++bubs
++buccaneer
++buccaneered
++buccaneering
++buccaneers
++buck
++buckaroo
++buckaroos
++buckboard
++buckboards
++bucked
++bucket
++bucketed
++bucketful
++bucketfuls
++bucketing
++buckets
++buckeye
++buckeyes
++bucking
++buckle
++buckled
++buckler
++bucklers
++buckles
++buckling
++buckram
++bucks
++bucksaw
++bucksaws
++buckshot
++buckskin
++buckskins
++buckteeth
++bucktooth
++bucktoothed
++buckwheat
++buckyball
++buckyballs
++bucolic
++bucolically
++bucolics
++bud
++budded
++buddies
++budding
++buddings
++buddy
++budge
++budged
++budgerigar
++budgerigars
++budges
++budget
++budgetary
++budgeted
++budgeting
++budgets
++budgie
++budgies
++budging
++buds
++buff
++buffalo
++buffaloed
++buffaloes
++buffaloing
++buffed
++buffer
++buffered
++buffering
++buffers
++buffet
++buffeted
++buffeting
++buffetings
++buffets
++buffing
++buffoon
++buffoonery
++buffoonish
++buffoons
++buffs
++bug
++bugaboo
++bugaboos
++bugbear
++bugbears
++bugged
++bugger
++buggered
++buggering
++buggers
++buggery
++buggier
++buggies
++buggiest
++bugging
++buggy
++bugle
++bugled
++bugler
++buglers
++bugles
++bugling
++bugs
++build
++builder
++builders
++building
++buildings
++builds
++buildup
++buildups
++built
++builtin
++bulb
++bulbous
++bulbs
++bulge
++bulged
++bulges
++bulgier
++bulgiest
++bulging
++bulgy
++bulimarexia
++bulimia
++bulimic
++bulimics
++bulk
++bulked
++bulkhead
++bulkheads
++bulkier
++bulkiest
++bulkiness
++bulking
++bulks
++bulky
++bull
++bulldog
++bulldogged
++bulldogging
++bulldogs
++bulldoze
++bulldozed
++bulldozer
++bulldozers
++bulldozes
++bulldozing
++bulled
++bullet
++bulleted
++bulletin
++bulletined
++bulletining
++bulletins
++bulletproof
++bulletproofed
++bulletproofing
++bulletproofs
++bullets
++bullfight
++bullfighter
++bullfighters
++bullfighting
++bullfights
++bullfinch
++bullfinches
++bullfrog
++bullfrogs
++bullhead
++bullheaded
++bullheadedly
++bullheadedness
++bullheads
++bullhorn
++bullhorns
++bullied
++bullies
++bulling
++bullion
++bullish
++bullishly
++bullishness
++bullock
++bullocks
++bullpen
++bullpens
++bullring
++bullrings
++bulls
++bullseye
++bullshit
++bullshits
++bullshitted
++bullshitter
++bullshitters
++bullshitting
++bullwhip
++bullwhips
++bully
++bullying
++bulrush
++bulrushes
++bulwark
++bulwarks
++bum
++bumbag
++bumbags
++bumble
++bumblebee
++bumblebees
++bumbled
++bumbler
++bumblers
++bumbles
++bumbling
++bumf
++bummed
++bummer
++bummers
++bummest
++bumming
++bump
++bumped
++bumper
++bumpers
++bumph
++bumpier
++bumpiest
++bumpiness
++bumping
++bumpkin
++bumpkins
++bumps
++bumptious
++bumptiously
++bumptiousness
++bumpy
++bums
++bun
++bunch
++bunched
++bunches
++bunchier
++bunchiest
++bunching
++bunchy
++bunco
++buncoed
++buncoing
++buncos
++bundle
++bundled
++bundles
++bundling
++bung
++bungalow
++bungalows
++bunged
++bungee
++bungees
++bunghole
++bungholes
++bunging
++bungle
++bungled
++bungler
++bunglers
++bungles
++bungling
++bungs
++bunion
++bunions
++bunk
++bunked
++bunker
++bunkers
++bunkhouse
++bunkhouses
++bunking
++bunks
++bunkum
++bunnies
++bunny
++buns
++bunt
++bunted
++bunting
++buntings
++bunts
++buoy
++buoyancy
++buoyant
++buoyantly
++buoyed
++buoying
++buoys
++bur
++burble
++burbled
++burbles
++burbling
++burbs
++burden
++burdened
++burdening
++burdens
++burdensome
++burdock
++bureau
++bureaucracies
++bureaucracy
++bureaucrat
++bureaucratic
++bureaucratically
++bureaucratization
++bureaucratize
++bureaucratized
++bureaucratizes
++bureaucratizing
++bureaucrats
++bureaus
++burg
++burgeon
++burgeoned
++burgeoning
++burgeons
++burger
++burgers
++burgh
++burgher
++burghers
++burghs
++burglar
++burglaries
++burglarize
++burglarized
++burglarizes
++burglarizing
++burglarproof
++burglars
++burglary
++burgle
++burgled
++burgles
++burgling
++burgomaster
++burgomasters
++burgs
++burgundies
++burgundy
++burial
++burials
++buried
++buries
++burka
++burkas
++burl
++burlap
++burled
++burlesque
++burlesqued
++burlesques
++burlesquing
++burlier
++burliest
++burliness
++burls
++burly
++burn
++burnable
++burnables
++burned
++burner
++burners
++burning
++burnish
++burnished
++burnisher
++burnishers
++burnishes
++burnishing
++burnoose
++burnooses
++burnout
++burnouts
++burns
++burnt
++burp
++burped
++burping
++burps
++burr
++burred
++burring
++burrito
++burritos
++burro
++burros
++burrow
++burrowed
++burrower
++burrowers
++burrowing
++burrows
++burrs
++burs
++bursa
++bursae
++bursar
++bursaries
++bursars
++bursary
++bursitis
++burst
++bursting
++bursts
++bury
++burying
++bus
++busbies
++busboy
++busboys
++busby
++bused
++buses
++busgirl
++busgirls
++bush
++bushed
++bushel
++busheled
++busheling
++bushels
++bushes
++bushier
++bushiest
++bushiness
++bushing
++bushings
++bushman
++bushmaster
++bushmasters
++bushmen
++bushwhack
++bushwhacked
++bushwhacker
++bushwhackers
++bushwhacking
++bushwhacks
++bushy
++busied
++busier
++busies
++busiest
++busily
++business
++businesses
++businesslike
++businessman
++businessmen
++businessperson
++businesspersons
++businesswoman
++businesswomen
++busing
++busk
++busked
++busker
++buskers
++buskin
++busking
++buskins
++busks
++busload
++busloads
++buss
++bust
++busted
++buster
++busters
++bustier
++bustiers
++bustiest
++busting
++bustle
++bustled
++bustles
++bustling
++busts
++busty
++busy
++busybodies
++busybody
++busying
++busyness
++busywork
++but
++butane
++butch
++butcher
++butchered
++butcheries
++butchering
++butchers
++butchery
++butches
++butler
++butlers
++buts
++butt
++butte
++butted
++butter
++butterball
++butterballs
++buttercream
++buttercup
++buttercups
++buttered
++butterfat
++butterfingered
++butterfingers
++butterflied
++butterflies
++butterfly
++butterflying
++butterier
++butteries
++butteriest
++buttering
++buttermilk
++butternut
++butternuts
++butters
++butterscotch
++buttery
++buttes
++butties
++butting
++buttock
++buttocks
++button
++buttoned
++buttonhole
++buttonholed
++buttonholes
++buttonholing
++buttoning
++buttons
++buttonwood
++buttonwoods
++buttress
++buttressed
++buttresses
++buttressing
++butts
++butty
++buxom
++buy
++buyback
++buybacks
++buyer
++buyers
++buying
++buyout
++buyouts
++buys
++buzz
++buzzard
++buzzards
++buzzed
++buzzer
++buzzers
++buzzes
++buzzing
++buzzkill
++buzzkills
++buzzword
++buzzwords
++bx
++bxs
++by
++bye
++byes
++bygone
++bygones
++bylaw
++bylaws
++byline
++bylines
++bypass
++bypassed
++bypasses
++bypassing
++bypath
++bypaths
++byplay
++byproduct
++byproducts
++byre
++byres
++byroad
++byroads
++bystander
++bystanders
++byte
++bytes
++byway
++byways
++byword
++bywords
++byzantine
++c
++ca
++cab
++cabal
++caballero
++caballeros
++cabals
++cabana
++cabanas
++cabaret
++cabarets
++cabbage
++cabbages
++cabbed
++cabbies
++cabbing
++cabby
++cabdriver
++cabdrivers
++caber
++cabers
++cabin
++cabinet
++cabinetmaker
++cabinetmakers
++cabinetmaking
++cabinetry
++cabinets
++cabinetwork
++cabins
++cable
++cablecast
++cablecasting
++cablecasts
++cabled
++cablegram
++cablegrams
++cables
++cabling
++cabochon
++cabochons
++caboodle
++caboose
++cabooses
++cabriolet
++cabriolets
++cabs
++cabstand
++cabstands
++cacao
++cacaos
++cache
++cached
++cachepot
++cachepots
++caches
++cachet
++cachets
++caching
++cackle
++cackled
++cackler
++cacklers
++cackles
++cackling
++cacophonies
++cacophonous
++cacophony
++cacti
++cactus
++cad
++cadaver
++cadaverous
++cadavers
++caddie
++caddied
++caddies
++caddish
++caddishly
++caddishness
++caddying
++cadence
++cadenced
++cadences
++cadenza
++cadenzas
++cadet
++cadets
++cadge
++cadged
++cadger
++cadgers
++cadges
++cadging
++cadmium
++cadre
++cadres
++cads
++caducei
++caduceus
++caesura
++caesuras
++cafe
++cafes
++cafeteria
++cafeterias
++cafetiere
++cafetieres
++caff
++caffeinated
++caffeine
++caffs
++caftan
++caftans
++cage
++caged
++cages
++cagey
++cagier
++cagiest
++cagily
++caginess
++caging
++cagoule
++cagoules
++cahoot
++cahoots
++caiman
++caimans
++cairn
++cairns
++caisson
++caissons
++caitiff
++caitiffs
++cajole
++cajoled
++cajolement
++cajoler
++cajolers
++cajolery
++cajoles
++cajoling
++cake
++caked
++cakes
++cakewalk
++cakewalks
++caking
++cal
++calabash
++calabashes
++calaboose
++calabooses
++calamari
++calamaris
++calamine
++calamities
++calamitous
++calamitously
++calamity
++calcareous
++calciferous
++calcification
++calcified
++calcifies
++calcify
++calcifying
++calcimine
++calcimined
++calcimines
++calcimining
++calcine
++calcined
++calcines
++calcining
++calcite
++calcium
++calculable
++calculate
++calculated
++calculatedly
++calculates
++calculating
++calculatingly
++calculation
++calculations
++calculative
++calculator
++calculators
++calculi
++calculus
++caldera
++calderas
++calendar
++calendared
++calendaring
++calendars
++calf
++calfskin
++caliber
++calibers
++calibrate
++calibrated
++calibrates
++calibrating
++calibration
++calibrations
++calibrator
++calibrators
++calico
++calicoes
++californium
++caliper
++calipered
++calipering
++calipers
++caliph
++caliphate
++caliphates
++caliphs
++calisthenic
++calisthenics
++calk
++calked
++calking
++calks
++call
++calla
++callable
++callas
++callback
++callbacks
++called
++caller
++callers
++calligrapher
++calligraphers
++calligraphic
++calligraphist
++calligraphists
++calligraphy
++calling
++callings
++calliope
++calliopes
++callosities
++callosity
++callous
++calloused
++callouses
++callousing
++callously
++callousness
++callow
++callower
++callowest
++callowness
++calls
++callus
++callused
++calluses
++callusing
++calm
++calmed
++calmer
++calmest
++calming
++calmly
++calmness
++calms
++caloric
++calorie
++calories
++calorific
++calumet
++calumets
++calumniate
++calumniated
++calumniates
++calumniating
++calumniation
++calumniator
++calumniators
++calumnies
++calumnious
++calumny
++calve
++calved
++calves
++calving
++calypso
++calypsos
++calyx
++calyxes
++cam
++camaraderie
++camber
++cambered
++cambering
++cambers
++cambial
++cambium
++cambiums
++cambric
++camcorder
++camcorders
++came
++camel
++camelhair
++camellia
++camellias
++camels
++cameo
++cameos
++camera
++cameraman
++cameramen
++cameras
++camerawoman
++camerawomen
++camerawork
++camiknickers
++camisole
++camisoles
++camouflage
++camouflaged
++camouflager
++camouflagers
++camouflages
++camouflaging
++camp
++campaign
++campaigned
++campaigner
++campaigners
++campaigning
++campaigns
++campanile
++campaniles
++campanologist
++campanologists
++campanology
++camped
++camper
++campers
++campfire
++campfires
++campground
++campgrounds
++camphor
++campier
++campiest
++camping
++camps
++campsite
++campsites
++campus
++campuses
++campy
++cams
++camshaft
++camshafts
++can
++canal
++canalization
++canalize
++canalized
++canalizes
++canalizing
++canals
++canape
++canapes
++canard
++canards
++canaries
++canary
++canasta
++cancan
++cancans
++cancel
++canceled
++canceler
++cancelers
++canceling
++cancellation
++cancellations
++cancels
++cancer
++cancerous
++cancers
++candelabra
++candelabras
++candelabrum
++candid
++candida
++candidacies
++candidacy
++candidate
++candidates
++candidature
++candidatures
++candidly
++candidness
++candied
++candies
++candle
++candled
++candlelight
++candlelit
++candlepower
++candler
++candlers
++candles
++candlestick
++candlesticks
++candlewick
++candlewicks
++candling
++candor
++candy
++candyfloss
++candying
++cane
++canebrake
++canebrakes
++caned
++caner
++caners
++canes
++canine
++canines
++caning
++canister
++canisters
++canker
++cankered
++cankering
++cankerous
++cankers
++cannabis
++cannabises
++canned
++cannelloni
++canneries
++cannery
++cannibal
++cannibalism
++cannibalistic
++cannibalization
++cannibalize
++cannibalized
++cannibalizes
++cannibalizing
++cannibals
++cannier
++canniest
++cannily
++canniness
++canning
++cannon
++cannonade
++cannonaded
++cannonades
++cannonading
++cannonball
++cannonballs
++cannoned
++cannoning
++cannons
++cannot
++canny
++canoe
++canoed
++canoeing
++canoeist
++canoeists
++canoes
++canola
++canon
++canonical
++canonically
++canonization
++canonizations
++canonize
++canonized
++canonizes
++canonizing
++canons
++canoodle
++canoodled
++canoodles
++canoodling
++canopied
++canopies
++canopy
++canopying
++cans
++canst
++cant
++cantabile
++cantaloupe
++cantaloupes
++cantankerous
++cantankerously
++cantankerousness
++cantata
++cantatas
++canted
++canteen
++canteens
++canter
++cantered
++cantering
++canters
++canticle
++canticles
++cantilever
++cantilevered
++cantilevering
++cantilevers
++canting
++canto
++canton
++cantonal
++cantonment
++cantonments
++cantons
++cantor
++cantors
++cantos
++cants
++canvas
++canvasback
++canvasbacks
++canvased
++canvases
++canvasing
++canvass
++canvassed
++canvasser
++canvassers
++canvasses
++canvassing
++canyon
++canyoning
++canyons
++cap
++capabilities
++capability
++capable
++capably
++capacious
++capaciously
++capaciousness
++capacitance
++capacities
++capacitor
++capacitors
++capacity
++caparison
++caparisoned
++caparisoning
++caparisons
++cape
++caped
++caper
++capered
++capering
++capers
++capes
++capeskin
++capillaries
++capillarity
++capillary
++capital
++capitalism
++capitalist
++capitalistic
++capitalistically
++capitalists
++capitalization
++capitalize
++capitalized
++capitalizes
++capitalizing
++capitally
++capitals
++capitation
++capitations
++capitol
++capitols
++capitulate
++capitulated
++capitulates
++capitulating
++capitulation
++capitulations
++caplet
++caplets
++capo
++capon
++capons
++capos
++capped
++capping
++cappuccino
++cappuccinos
++caprice
++caprices
++capricious
++capriciously
++capriciousness
++caps
++capsicum
++capsicums
++capsize
++capsized
++capsizes
++capsizing
++capstan
++capstans
++capstone
++capstones
++capsular
++capsule
++capsuled
++capsules
++capsuling
++capsulize
++capsulized
++capsulizes
++capsulizing
++capt
++captain
++captaincies
++captaincy
++captained
++captaining
++captains
++caption
++captioned
++captioning
++captions
++captious
++captiously
++captiousness
++captivate
++captivated
++captivates
++captivating
++captivation
++captivator
++captivators
++captive
++captives
++captivities
++captivity
++captor
++captors
++capture
++captured
++captures
++capturing
++car
++carafe
++carafes
++caramel
++caramelize
++caramelized
++caramelizes
++caramelizing
++caramels
++carapace
++carapaces
++carat
++carats
++caravan
++caravans
++caravansaries
++caravansary
++caravel
++caravels
++caraway
++caraways
++carbide
++carbides
++carbine
++carbines
++carbohydrate
++carbohydrates
++carbolic
++carbon
++carbonaceous
++carbonate
++carbonated
++carbonates
++carbonating
++carbonation
++carboniferous
++carbonize
++carbonized
++carbonizes
++carbonizing
++carbons
++carborundum
++carboy
++carboys
++carbs
++carbuncle
++carbuncles
++carbuncular
++carburetor
++carburetors
++carcass
++carcasses
++carcinogen
++carcinogenic
++carcinogenicity
++carcinogenics
++carcinogens
++carcinoma
++carcinomas
++card
++cardamom
++cardamoms
++cardamon
++cardamons
++cardboard
++carded
++carder
++carders
++cardholder
++cardholders
++cardiac
++cardie
++cardies
++cardigan
++cardigans
++cardinal
++cardinally
++cardinals
++carding
++cardio
++cardiogram
++cardiograms
++cardiograph
++cardiographs
++cardiologist
++cardiologists
++cardiology
++cardiomyopathy
++cardiopulmonary
++cardiovascular
++cards
++cardsharp
++cardsharper
++cardsharpers
++cardsharps
++care
++cared
++careen
++careened
++careening
++careens
++career
++careered
++careering
++careerism
++careerist
++careerists
++careers
++carefree
++careful
++carefuller
++carefullest
++carefully
++carefulness
++caregiver
++caregivers
++careless
++carelessly
++carelessness
++carer
++carers
++cares
++caress
++caressed
++caresses
++caressing
++caret
++caretaker
++caretakers
++carets
++careworn
++carfare
++cargo
++cargoes
++carhop
++carhops
++caribou
++caribous
++caricature
++caricatured
++caricatures
++caricaturing
++caricaturist
++caricaturists
++caries
++carillon
++carillons
++caring
++carious
++carjack
++carjacked
++carjacker
++carjackers
++carjacking
++carjackings
++carjacks
++carload
++carloads
++carmine
++carmines
++carnage
++carnal
++carnality
++carnally
++carnation
++carnations
++carnelian
++carnelians
++carnies
++carnival
++carnivals
++carnivora
++carnivore
++carnivores
++carnivorous
++carnivorously
++carnivorousness
++carny
++carob
++carobs
++carol
++caroled
++caroler
++carolers
++caroling
++carols
++carom
++caromed
++caroming
++caroms
++carotene
++carotid
++carotids
++carousal
++carousals
++carouse
++caroused
++carousel
++carousels
++carouser
++carousers
++carouses
++carousing
++carp
++carpal
++carpals
++carped
++carpel
++carpels
++carpenter
++carpentered
++carpentering
++carpenters
++carpentry
++carper
++carpers
++carpet
++carpetbag
++carpetbagged
++carpetbagger
++carpetbaggers
++carpetbagging
++carpetbags
++carpeted
++carpeting
++carpets
++carpi
++carping
++carpool
++carpooled
++carpooling
++carpools
++carport
++carports
++carps
++carpus
++carrel
++carrels
++carriage
++carriages
++carriageway
++carriageways
++carried
++carrier
++carriers
++carries
++carrion
++carrot
++carrots
++carroty
++carry
++carryall
++carryalls
++carrycot
++carrycots
++carrying
++carryout
++carryover
++carryovers
++cars
++carsick
++carsickness
++cart
++cartage
++carted
++cartel
++cartels
++carter
++carters
++carthorse
++carthorses
++cartilage
++cartilages
++cartilaginous
++carting
++cartload
++cartloads
++cartographer
++cartographers
++cartographic
++cartography
++carton
++cartons
++cartoon
++cartooned
++cartooning
++cartoonist
++cartoonists
++cartoons
++cartridge
++cartridges
++carts
++cartwheel
++cartwheeled
++cartwheeling
++cartwheels
++carve
++carved
++carver
++carveries
++carvers
++carvery
++carves
++carving
++carvings
++caryatid
++caryatids
++casaba
++casabas
++cascade
++cascaded
++cascades
++cascading
++cascara
++cascaras
++case
++casebook
++casebooks
++cased
++caseharden
++casehardened
++casehardening
++casehardens
++casein
++caseload
++caseloads
++casement
++casements
++cases
++casework
++caseworker
++caseworkers
++cash
++cashback
++cashbook
++cashbooks
++cashed
++cashes
++cashew
++cashews
++cashier
++cashiered
++cashiering
++cashiers
++cashing
++cashless
++cashmere
++casing
++casings
++casino
++casinos
++cask
++casket
++caskets
++casks
++cassava
++cassavas
++casserole
++casseroled
++casseroles
++casseroling
++cassette
++cassettes
++cassia
++cassias
++cassock
++cassocks
++cassowaries
++cassowary
++cast
++castanet
++castanets
++castaway
++castaways
++caste
++castellated
++caster
++casters
++castes
++castigate
++castigated
++castigates
++castigating
++castigation
++castigator
++castigators
++casting
++castings
++castle
++castled
++castles
++castling
++castoff
++castoffs
++castor
++castors
++castrate
++castrated
++castrates
++castrating
++castration
++castrations
++casts
++casual
++casually
++casualness
++casuals
++casualties
++casualty
++casuist
++casuistic
++casuistry
++casuists
++cat
++cataclysm
++cataclysmal
++cataclysmic
++cataclysms
++catacomb
++catacombs
++catafalque
++catafalques
++catalepsy
++cataleptic
++cataleptics
++catalog
++cataloged
++cataloger
++catalogers
++cataloging
++catalogs
++catalpa
++catalpas
++catalyses
++catalysis
++catalyst
++catalysts
++catalytic
++catalyze
++catalyzed
++catalyzes
++catalyzing
++catamaran
++catamarans
++catapult
++catapulted
++catapulting
++catapults
++cataract
++cataracts
++catarrh
++catastrophe
++catastrophes
++catastrophic
++catastrophically
++catatonia
++catatonic
++catatonics
++catbird
++catbirds
++catboat
++catboats
++catcall
++catcalled
++catcalling
++catcalls
++catch
++catchall
++catchalls
++catcher
++catchers
++catches
++catchier
++catchiest
++catching
++catchings
++catchment
++catchments
++catchpenny
++catchphrase
++catchphrases
++catchword
++catchwords
++catchy
++catechism
++catechisms
++catechist
++catechists
++catechize
++catechized
++catechizes
++catechizing
++categorical
++categorically
++categories
++categorization
++categorizations
++categorize
++categorized
++categorizes
++categorizing
++category
++cater
++catercorner
++catered
++caterer
++caterers
++catering
++caterings
++caterpillar
++caterpillars
++caters
++caterwaul
++caterwauled
++caterwauling
++caterwauls
++catfish
++catfishes
++catgut
++catharses
++catharsis
++cathartic
++cathartics
++cathedral
++cathedrals
++catheter
++catheterize
++catheterized
++catheterizes
++catheterizing
++catheters
++cathode
++cathodes
++cathodic
++catholic
++catholicity
++cation
++cations
++catkin
++catkins
++catlike
++catnap
++catnapped
++catnapping
++catnaps
++catnip
++cats
++catsuit
++catsuits
++cattail
++cattails
++catted
++catteries
++cattery
++cattier
++cattiest
++cattily
++cattiness
++catting
++cattle
++cattleman
++cattlemen
++catty
++catwalk
++catwalks
++caucus
++caucused
++caucuses
++caucusing
++caudal
++caudally
++caught
++cauldron
++cauldrons
++cauliflower
++cauliflowers
++caulk
++caulked
++caulker
++caulkers
++caulking
++caulks
++causal
++causalities
++causality
++causally
++causation
++causative
++cause
++caused
++causeless
++causer
++causerie
++causeries
++causers
++causes
++causeway
++causeways
++causing
++caustic
++caustically
++causticity
++caustics
++cauterization
++cauterize
++cauterized
++cauterizes
++cauterizing
++caution
++cautionary
++cautioned
++cautioning
++cautions
++cautious
++cautiously
++cautiousness
++cavalcade
++cavalcades
++cavalier
++cavalierly
++cavaliers
++cavalries
++cavalry
++cavalryman
++cavalrymen
++cave
++caveat
++caveats
++caved
++caveman
++cavemen
++caver
++cavern
++cavernous
++cavernously
++caverns
++cavers
++caves
++caviar
++cavil
++caviled
++caviler
++cavilers
++caviling
++cavilings
++cavils
++caving
++cavitation
++cavities
++cavity
++cavort
++cavorted
++cavorting
++cavorts
++caw
++cawed
++cawing
++caws
++cay
++cayenne
++cays
++cayuse
++cayuses
++cc
++cease
++ceased
++ceasefire
++ceasefires
++ceaseless
++ceaselessly
++ceaselessness
++ceases
++ceasing
++ceca
++cecal
++cecum
++cedar
++cedars
++cede
++ceded
++ceder
++ceders
++cedes
++cedilla
++cedillas
++ceding
++ceilidh
++ceilidhs
++ceiling
++ceilings
++celandine
++celeb
++celebrant
++celebrants
++celebrate
++celebrated
++celebrates
++celebrating
++celebration
++celebrations
++celebrator
++celebrators
++celebratory
++celebrities
++celebrity
++celebs
++celeriac
++celerity
++celery
++celesta
++celestas
++celestial
++celestially
++celibacy
++celibate
++celibates
++cell
++cellar
++cellars
++celled
++cellist
++cellists
++cellmate
++cellmates
++cello
++cellophane
++cellos
++cellphone
++cellphones
++cells
++cellular
++cellulars
++cellulite
++cellulitis
++celluloid
++cellulose
++cement
++cemented
++cementer
++cementers
++cementing
++cements
++cementum
++cemeteries
++cemetery
++cenobite
++cenobites
++cenobitic
++cenotaph
++cenotaphs
++censer
++censers
++censor
++censored
++censorial
++censoring
++censorious
++censoriously
++censoriousness
++censors
++censorship
++censurable
++censure
++censured
++censurer
++censurers
++censures
++censuring
++census
++censused
++censuses
++censusing
++cent
++centaur
++centaurs
++centavo
++centavos
++centenarian
++centenarians
++centenaries
++centenary
++centennial
++centennially
++centennials
++center
++centerboard
++centerboards
++centered
++centerfold
++centerfolds
++centering
++centerpiece
++centerpieces
++centers
++centigrade
++centigram
++centigrams
++centiliter
++centiliters
++centime
++centimes
++centimeter
++centimeters
++centipede
++centipedes
++central
++centralism
++centralist
++centrality
++centralization
++centralize
++centralized
++centralizer
++centralizers
++centralizes
++centralizing
++centrally
++centrals
++centrifugal
++centrifugally
++centrifuge
++centrifuged
++centrifuges
++centrifuging
++centripetal
++centripetally
++centrism
++centrist
++centrists
++cents
++centuries
++centurion
++centurions
++century
++cephalic
++ceramic
++ceramicist
++ceramicists
++ceramics
++ceramist
++ceramists
++cereal
++cereals
++cerebellar
++cerebellum
++cerebellums
++cerebra
++cerebral
++cerebrate
++cerebrated
++cerebrates
++cerebrating
++cerebration
++cerebrovascular
++cerebrum
++cerebrums
++cerement
++cerements
++ceremonial
++ceremonially
++ceremonials
++ceremonies
++ceremonious
++ceremoniously
++ceremoniousness
++ceremony
++cerise
++cerium
++cermet
++cert
++certain
++certainly
++certainties
++certainty
++certifiable
++certifiably
++certificate
++certificated
++certificates
++certificating
++certification
++certifications
++certified
++certifies
++certify
++certifying
++certitude
++certitudes
++certs
++cerulean
++cervical
++cervices
++cervix
++cesarean
++cesareans
++cesium
++cessation
++cessations
++cession
++cessions
++cesspit
++cesspits
++cesspool
++cesspools
++cetacean
++cetaceans
++cf
++cg
++ch
++chad
++chads
++chafe
++chafed
++chafes
++chaff
++chaffed
++chaffinch
++chaffinches
++chaffing
++chaffs
++chafing
++chagrin
++chagrined
++chagrining
++chagrins
++chain
++chained
++chaining
++chains
++chainsaw
++chainsawed
++chainsawing
++chainsaws
++chair
++chaired
++chairing
++chairlift
++chairlifts
++chairman
++chairmanship
++chairmanships
++chairmen
++chairperson
++chairpersons
++chairs
++chairwoman
++chairwomen
++chaise
++chaises
++chalcedony
++chalet
++chalets
++chalice
++chalices
++chalk
++chalkboard
++chalkboards
++chalked
++chalkier
++chalkiest
++chalkiness
++chalking
++chalks
++chalky
++challenge
++challenged
++challenger
++challengers
++challenges
++challenging
++challis
++chamber
++chambered
++chamberlain
++chamberlains
++chambermaid
++chambermaids
++chambers
++chambray
++chameleon
++chameleons
++chamois
++chamomile
++chamomiles
++champ
++champagne
++champagnes
++champed
++champers
++champing
++champion
++championed
++championing
++champions
++championship
++championships
++champs
++chance
++chanced
++chancel
++chancelleries
++chancellery
++chancellor
++chancellors
++chancellorship
++chancels
++chanceries
++chancery
++chances
++chancier
++chanciest
++chanciness
++chancing
++chancre
++chancres
++chancy
++chandelier
++chandeliers
++chandler
++chandlers
++change
++changeability
++changeable
++changeableness
++changeably
++changed
++changeless
++changelessly
++changeling
++changelings
++changeover
++changeovers
++changer
++changers
++changes
++changing
++channel
++channeled
++channeling
++channelization
++channelize
++channelized
++channelizes
++channelizing
++channels
++chanson
++chansons
++chant
++chanted
++chanter
++chanters
++chanteuse
++chanteuses
++chantey
++chanteys
++chanticleer
++chanticleers
++chanting
++chants
++chaos
++chaotic
++chaotically
++chap
++chaparral
++chaparrals
++chapati
++chapatis
++chapatti
++chapattis
++chapbook
++chapbooks
++chapeau
++chapeaus
++chapel
++chapels
++chaperon
++chaperonage
++chaperoned
++chaperoning
++chaperons
++chaplain
++chaplaincies
++chaplaincy
++chaplains
++chaplet
++chaplets
++chapped
++chappies
++chapping
++chappy
++chaps
++chapter
++chapters
++char
++charabanc
++charabancs
++character
++characterful
++characteristic
++characteristically
++characteristics
++characterization
++characterizations
++characterize
++characterized
++characterizes
++characterizing
++characterless
++characters
++charade
++charades
++charbroil
++charbroiled
++charbroiling
++charbroils
++charcoal
++charcoals
++chard
++chardonnay
++chardonnays
++charge
++chargeable
++charged
++charger
++chargers
++charges
++charging
++charier
++chariest
++charily
++chariness
++chariot
++charioteer
++charioteers
++chariots
++charisma
++charismatic
++charismatics
++charitable
++charitableness
++charitably
++charities
++charity
++charladies
++charlady
++charlatan
++charlatanism
++charlatanry
++charlatans
++charlie
++charlies
++charm
++charmed
++charmer
++charmers
++charming
++charmingly
++charmless
++charms
++charred
++charring
++chars
++chart
++charted
++charter
++chartered
++charterer
++charterers
++chartering
++charters
++charting
++chartreuse
++charts
++charwoman
++charwomen
++chary
++chase
++chased
++chaser
++chasers
++chases
++chasing
++chasm
++chasms
++chassis
++chaste
++chastely
++chasten
++chastened
++chasteness
++chastening
++chastens
++chaster
++chastest
++chastise
++chastised
++chastisement
++chastisements
++chastiser
++chastisers
++chastises
++chastising
++chastity
++chasuble
++chasubles
++chat
++chateau
++chateaus
++chateaux
++chatelaine
++chatelaines
++chatline
++chatlines
++chatroom
++chats
++chatted
++chattel
++chattels
++chatter
++chatterbox
++chatterboxes
++chattered
++chatterer
++chatterers
++chattering
++chatters
++chattier
++chattiest
++chattily
++chattiness
++chatting
++chatty
++chauffeur
++chauffeured
++chauffeuring
++chauffeurs
++chauvinism
++chauvinist
++chauvinistic
++chauvinistically
++chauvinists
++cheap
++cheapen
++cheapened
++cheapening
++cheapens
++cheaper
++cheapest
++cheaply
++cheapness
++cheapo
++cheapskate
++cheapskates
++cheat
++cheated
++cheater
++cheaters
++cheating
++cheats
++check
++checkbook
++checkbooks
++checkbox
++checked
++checker
++checkerboard
++checkerboards
++checkered
++checkering
++checkers
++checking
++checklist
++checklists
++checkmate
++checkmated
++checkmates
++checkmating
++checkoff
++checkoffs
++checkout
++checkouts
++checkpoint
++checkpoints
++checkroom
++checkrooms
++checks
++checksum
++checkup
++checkups
++cheddar
++cheek
++cheekbone
++cheekbones
++cheeked
++cheekier
++cheekiest
++cheekily
++cheekiness
++cheeking
++cheeks
++cheeky
++cheep
++cheeped
++cheeping
++cheeps
++cheer
++cheered
++cheerer
++cheerers
++cheerful
++cheerfuller
++cheerfullest
++cheerfully
++cheerfulness
++cheerier
++cheeriest
++cheerily
++cheeriness
++cheering
++cheerio
++cheerios
++cheerleader
++cheerleaders
++cheerless
++cheerlessly
++cheerlessness
++cheers
++cheery
++cheese
++cheeseboard
++cheeseboards
++cheeseburger
++cheeseburgers
++cheesecake
++cheesecakes
++cheesecloth
++cheesed
++cheeseparing
++cheeses
++cheesier
++cheesiest
++cheesiness
++cheesing
++cheesy
++cheetah
++cheetahs
++chef
++chefs
++chem
++chemical
++chemically
++chemicals
++chemise
++chemises
++chemist
++chemistry
++chemists
++chemo
++chemotherapeutic
++chemotherapy
++chemurgy
++chenille
++cherish
++cherished
++cherishes
++cherishing
++cheroot
++cheroots
++cherries
++cherry
++chert
++cherub
++cherubic
++cherubim
++cherubs
++chervil
++chess
++chessboard
++chessboards
++chessman
++chessmen
++chest
++chested
++chesterfield
++chesterfields
++chestful
++chestfuls
++chestier
++chestiest
++chestnut
++chestnuts
++chests
++chesty
++chevalier
++chevaliers
++cheviot
++chevron
++chevrons
++chew
++chewed
++chewer
++chewers
++chewier
++chewiest
++chewiness
++chewing
++chews
++chewy
++chg
++chge
++chi
++chiaroscuro
++chic
++chicane
++chicaneries
++chicanery
++chicanes
++chicer
++chicest
++chichi
++chichis
++chick
++chickadee
++chickadees
++chicken
++chickened
++chickenfeed
++chickenhearted
++chickening
++chickenpox
++chickens
++chickenshit
++chickenshits
++chickpea
++chickpeas
++chicks
++chickweed
++chicle
++chicness
++chicories
++chicory
++chide
++chided
++chides
++chiding
++chidingly
++chief
++chiefdom
++chiefer
++chiefest
++chiefly
++chiefs
++chieftain
++chieftains
++chieftainship
++chieftainships
++chiffon
++chiffonier
++chiffoniers
++chigger
++chiggers
++chignon
++chignons
++chihuahua
++chihuahuas
++chilblain
++chilblains
++child
++childbearing
++childbirth
++childbirths
++childcare
++childhood
++childhoods
++childish
++childishly
++childishness
++childless
++childlessness
++childlike
++childminder
++childminders
++childminding
++childproof
++childproofed
++childproofing
++childproofs
++children
++chili
++chilies
++chill
++chilled
++chiller
++chillers
++chillest
++chillier
++chilliest
++chilliness
++chilling
++chillingly
++chillings
++chillness
++chills
++chilly
++chime
++chimed
++chimer
++chimera
++chimeras
++chimeric
++chimerical
++chimers
++chimes
++chiming
++chimney
++chimneys
++chimp
++chimpanzee
++chimpanzees
++chimps
++chin
++china
++chinaware
++chinchilla
++chinchillas
++chine
++chines
++chink
++chinked
++chinking
++chinks
++chinless
++chinned
++chinning
++chino
++chinos
++chins
++chinstrap
++chinstraps
++chintz
++chintzier
++chintziest
++chintzy
++chinwag
++chinwags
++chip
++chipboard
++chipmunk
++chipmunks
++chipolata
++chipolatas
++chipped
++chipper
++chippers
++chippie
++chippies
++chipping
++chippings
++chippy
++chips
++chirography
++chiropodist
++chiropodists
++chiropody
++chiropractic
++chiropractics
++chiropractor
++chiropractors
++chirp
++chirped
++chirpier
++chirpiest
++chirpily
++chirpiness
++chirping
++chirps
++chirpy
++chirrup
++chirruped
++chirruping
++chirrups
++chis
++chisel
++chiseled
++chiseler
++chiselers
++chiseling
++chisels
++chit
++chitchat
++chitchats
++chitchatted
++chitchatting
++chitin
++chitinous
++chitosan
++chits
++chitterlings
++chivalrous
++chivalrously
++chivalrousness
++chivalry
++chive
++chives
++chivied
++chivies
++chivy
++chivying
++chlamydia
++chlamydiae
++chlamydias
++chloral
++chlordane
++chloride
++chlorides
++chlorinate
++chlorinated
++chlorinates
++chlorinating
++chlorination
++chlorine
++chlorofluorocarbon
++chlorofluorocarbons
++chloroform
++chloroformed
++chloroforming
++chloroforms
++chlorophyll
++chloroplast
++chloroplasts
++chm
++choc
++chock
++chockablock
++chocked
++chocking
++chocks
++chocoholic
++chocoholics
++chocolate
++chocolates
++chocolaty
++chocs
++choice
++choicer
++choices
++choicest
++choir
++choirboy
++choirboys
++choirmaster
++choirmasters
++choirs
++choke
++chokecherries
++chokecherry
++choked
++choker
++chokers
++chokes
++choking
++cholecystectomy
++cholecystitis
++choler
++cholera
++choleric
++cholesterol
++chomp
++chomped
++chomper
++chompers
++chomping
++chomps
++choose
++chooser
++choosers
++chooses
++choosier
++choosiest
++choosiness
++choosing
++choosy
++chop
++chophouse
++chophouses
++chopped
++chopper
++choppered
++choppering
++choppers
++choppier
++choppiest
++choppily
++choppiness
++chopping
++choppy
++chops
++chopstick
++chopsticks
++choral
++chorale
++chorales
++chorally
++chorals
++chord
++chordal
++chordate
++chordates
++chords
++chore
++chorea
++choreograph
++choreographed
++choreographer
++choreographers
++choreographic
++choreographically
++choreographing
++choreographs
++choreography
++chores
++chorister
++choristers
++choroid
++choroids
++chortle
++chortled
++chortler
++chortlers
++chortles
++chortling
++chorus
++chorused
++choruses
++chorusing
++chose
++chosen
++chow
++chowder
++chowders
++chowed
++chowing
++chows
++chrism
++christen
++christened
++christening
++christenings
++christens
++christian
++christology
++chromatic
++chromatically
++chromatin
++chromatography
++chrome
++chromed
++chromes
++chroming
++chromium
++chromosomal
++chromosome
++chromosomes
++chronic
++chronically
++chronicle
++chronicled
++chronicler
++chroniclers
++chronicles
++chronicling
++chronograph
++chronographs
++chronological
++chronologically
++chronologies
++chronologist
++chronologists
++chronology
++chronometer
++chronometers
++chrysalis
++chrysalises
++chrysanthemum
++chrysanthemums
++chub
++chubbier
++chubbiest
++chubbiness
++chubby
++chubs
++chuck
++chucked
++chuckhole
++chuckholes
++chucking
++chuckle
++chuckled
++chuckles
++chuckling
++chucks
++chuffed
++chug
++chugged
++chugging
++chugs
++chukka
++chukkas
++chum
++chummed
++chummier
++chummiest
++chummily
++chumminess
++chumming
++chummy
++chump
++chumps
++chums
++chunder
++chundered
++chundering
++chunders
++chunk
++chunked
++chunkier
++chunkiest
++chunkiness
++chunking
++chunks
++chunky
++chunter
++chuntered
++chuntering
++chunters
++church
++churches
++churchgoer
++churchgoers
++churchgoing
++churchman
++churchmen
++churchwarden
++churchwardens
++churchwoman
++churchwomen
++churchyard
++churchyards
++churl
++churlish
++churlishly
++churlishness
++churls
++churn
++churned
++churner
++churners
++churning
++churns
++chute
++chutes
++chutney
++chutneys
++chutzpah
++chyme
++ciabatta
++ciabattas
++ciao
++ciaos
++cicada
++cicadas
++cicatrices
++cicatrix
++cicerone
++cicerones
++ciceroni
++cider
++ciders
++cigar
++cigarette
++cigarettes
++cigarillo
++cigarillos
++cigars
++cilantro
++cilia
++cilium
++cinch
++cinched
++cinches
++cinching
++cinchona
++cinchonas
++cincture
++cinctures
++cinder
++cindered
++cindering
++cinders
++cine
++cinema
++cinemas
++cinematic
++cinematographer
++cinematographers
++cinematographic
++cinematography
++cinnabar
++cinnamon
++cipher
++ciphered
++ciphering
++ciphers
++cir
++circa
++circadian
++circle
++circled
++circles
++circlet
++circlets
++circling
++circuit
++circuital
++circuited
++circuiting
++circuitous
++circuitously
++circuitousness
++circuitry
++circuits
++circuity
++circular
++circularity
++circularize
++circularized
++circularizes
++circularizing
++circularly
++circulars
++circulate
++circulated
++circulates
++circulating
++circulation
++circulations
++circulatory
++circumcise
++circumcised
++circumcises
++circumcising
++circumcision
++circumcisions
++circumference
++circumferences
++circumferential
++circumflex
++circumflexes
++circumlocution
++circumlocutions
++circumlocutory
++circumnavigate
++circumnavigated
++circumnavigates
++circumnavigating
++circumnavigation
++circumnavigations
++circumpolar
++circumscribe
++circumscribed
++circumscribes
++circumscribing
++circumscription
++circumscriptions
++circumspect
++circumspection
++circumspectly
++circumstance
++circumstanced
++circumstances
++circumstancing
++circumstantial
++circumstantially
++circumvent
++circumvented
++circumventing
++circumvention
++circumvents
++circus
++circuses
++cirque
++cirques
++cirrhosis
++cirrhotic
++cirrhotics
++cirri
++cirrus
++cistern
++cisterns
++cit
++citadel
++citadels
++citation
++citations
++cite
++cited
++cites
++cities
++citified
++citing
++citizen
++citizenry
++citizens
++citizenship
++citric
++citron
++citronella
++citrons
++citrus
++citruses
++city
++citywide
++civet
++civets
++civic
++civically
++civics
++civil
++civilian
++civilians
++civilities
++civility
++civilization
++civilizations
++civilize
++civilized
++civilizes
++civilizing
++civilly
++civvies
++ck
++cl
++clack
++clacked
++clacking
++clacks
++clad
++cladding
++claim
++claimable
++claimant
++claimants
++claimed
++claimer
++claimers
++claiming
++claims
++clairvoyance
++clairvoyant
++clairvoyants
++clam
++clambake
++clambakes
++clamber
++clambered
++clamberer
++clamberers
++clambering
++clambers
++clammed
++clammier
++clammiest
++clammily
++clamminess
++clamming
++clammy
++clamor
++clamored
++clamoring
++clamorous
++clamors
++clamp
++clampdown
++clampdowns
++clamped
++clamping
++clamps
++clams
++clan
++clandestine
++clandestinely
++clang
++clanged
++clanger
++clangers
++clanging
++clangor
++clangorous
++clangorously
++clangs
++clank
++clanked
++clanking
++clanks
++clannish
++clannishness
++clans
++clansman
++clansmen
++clanswoman
++clanswomen
++clap
++clapboard
++clapboarded
++clapboarding
++clapboards
++clapped
++clapper
++clapperboard
++clapperboards
++clappers
++clapping
++claps
++claptrap
++claque
++claques
++claret
++clarets
++clarification
++clarifications
++clarified
++clarifies
++clarify
++clarifying
++clarinet
++clarinetist
++clarinetists
++clarinets
++clarion
++clarioned
++clarioning
++clarions
++clarity
++clash
++clashed
++clashes
++clashing
++clasp
++clasped
++clasping
++clasps
++class
++classed
++classes
++classic
++classical
++classically
++classicism
++classicist
++classicists
++classics
++classier
++classiest
++classifiable
++classification
++classifications
++classified
++classifieds
++classifier
++classifiers
++classifies
++classify
++classifying
++classiness
++classing
++classless
++classlessness
++classmate
++classmates
++classroom
++classrooms
++classwork
++classy
++clatter
++clattered
++clattering
++clatters
++clausal
++clause
++clauses
++claustrophobia
++claustrophobic
++clavichord
++clavichords
++clavicle
++clavicles
++clavier
++claviers
++claw
++clawed
++clawing
++claws
++clay
++clayey
++clayier
++clayiest
++clean
++cleanable
++cleaned
++cleaner
++cleaners
++cleanest
++cleaning
++cleanings
++cleanlier
++cleanliest
++cleanliness
++cleanly
++cleanness
++cleans
++cleanse
++cleansed
++cleanser
++cleansers
++cleanses
++cleansing
++cleanup
++cleanups
++clear
++clearance
++clearances
++cleared
++clearer
++clearest
++clearheaded
++clearing
++clearinghouse
++clearinghouses
++clearings
++clearly
++clearness
++clears
++clearway
++clearways
++cleat
++cleats
++cleavage
++cleavages
++cleave
++cleaved
++cleaver
++cleavers
++cleaves
++cleaving
++clef
++clefs
++cleft
++clefts
++clematis
++clematises
++clemency
++clement
++clementine
++clementines
++clemently
++clench
++clenched
++clenches
++clenching
++clerestories
++clerestory
++clergies
++clergy
++clergyman
++clergymen
++clergywoman
++clergywomen
++cleric
++clerical
++clericalism
++clerically
++clerics
++clerk
++clerked
++clerking
++clerks
++clerkship
++clever
++cleverer
++cleverest
++cleverly
++cleverness
++clevis
++clevises
++clew
++clewed
++clewing
++clews
++cliche
++cliched
++cliches
++click
++clickable
++clicked
++clicker
++clickers
++clicking
++clicks
++client
++clientele
++clienteles
++clients
++cliff
++cliffhanger
++cliffhangers
++cliffhanging
++cliffs
++clifftop
++clifftops
++clii
++climacteric
++climactic
++climate
++climates
++climatic
++climatically
++climatologist
++climatologists
++climatology
++climax
++climaxed
++climaxes
++climaxing
++climb
++climbable
++climbed
++climber
++climbers
++climbing
++climbs
++clime
++climes
++clinch
++clinched
++clincher
++clinchers
++clinches
++clinching
++cling
++clinger
++clingers
++clingfilm
++clingier
++clingiest
++clinging
++clings
++clingy
++clinic
++clinical
++clinically
++clinician
++clinicians
++clinics
++clink
++clinked
++clinker
++clinkers
++clinking
++clinks
++cliometric
++cliometrician
++cliometricians
++cliometrics
++clip
++clipboard
++clipboards
++clipped
++clipper
++clippers
++clipping
++clippings
++clips
++clique
++cliques
++cliquey
++cliquish
++cliquishly
++cliquishness
++clit
++clitoral
++clitorides
++clitoris
++clitorises
++clits
++clix
++cloaca
++cloacae
++cloak
++cloaked
++cloaking
++cloakroom
++cloakrooms
++cloaks
++clobber
++clobbered
++clobbering
++clobbers
++cloche
++cloches
++clock
++clocked
++clocking
++clocks
++clockwise
++clockwork
++clockworks
++clod
++cloddish
++clodhopper
++clodhoppers
++clods
++clog
++clogged
++clogging
++clogs
++cloisonne
++cloister
++cloistered
++cloistering
++cloisters
++cloistral
++clomp
++clomped
++clomping
++clomps
++clonal
++clone
++cloned
++clones
++cloning
++clonk
++clonked
++clonking
++clonks
++clop
++clopped
++clopping
++clops
++close
++closed
++closefisted
++closely
++closemouthed
++closeness
++closeout
++closeouts
++closer
++closes
++closest
++closet
++closeted
++closeting
++closets
++closeup
++closeups
++closing
++closings
++closure
++closures
++clot
++cloth
++clothe
++clothed
++clothes
++clotheshorse
++clotheshorses
++clothesline
++clotheslines
++clothespin
++clothespins
++clothier
++clothiers
++clothing
++cloths
++clots
++clotted
++clotting
++cloture
++clotures
++cloud
++cloudburst
++cloudbursts
++clouded
++cloudier
++cloudiest
++cloudiness
++clouding
++cloudless
++clouds
++cloudy
++clout
++clouted
++clouting
++clouts
++clove
++cloven
++clover
++cloverleaf
++cloverleafs
++cloverleaves
++clovers
++cloves
++clown
++clowned
++clowning
++clownish
++clownishly
++clownishness
++clowns
++cloy
++cloyed
++cloying
++cloyingly
++cloys
++club
++clubbable
++clubbed
++clubber
++clubbers
++clubbing
++clubfeet
++clubfoot
++clubfooted
++clubhouse
++clubhouses
++clubland
++clubs
++cluck
++clucked
++clucking
++clucks
++clue
++clued
++clueless
++clues
++cluing
++clump
++clumped
++clumpier
++clumpiest
++clumping
++clumps
++clumpy
++clumsier
++clumsiest
++clumsily
++clumsiness
++clumsy
++clung
++clunk
++clunked
++clunker
++clunkers
++clunkier
++clunkiest
++clunking
++clunks
++clunky
++cluster
++clustered
++clustering
++clusters
++clutch
++clutched
++clutches
++clutching
++clutter
++cluttered
++cluttering
++clutters
++clvi
++clvii
++clxi
++clxii
++clxiv
++clxix
++clxvi
++clxvii
++cm
++cnidarian
++cnidarians
++co
++coach
++coached
++coaches
++coaching
++coachload
++coachloads
++coachman
++coachmen
++coachwork
++coadjutor
++coadjutors
++coagulant
++coagulants
++coagulate
++coagulated
++coagulates
++coagulating
++coagulation
++coagulator
++coagulators
++coal
++coaled
++coalesce
++coalesced
++coalescence
++coalescent
++coalesces
++coalescing
++coalface
++coalfaces
++coalfield
++coalfields
++coaling
++coalition
++coalitionist
++coalitionists
++coalitions
++coalmine
++coalmines
++coals
++coarse
++coarsely
++coarsen
++coarsened
++coarseness
++coarsening
++coarsens
++coarser
++coarsest
++coast
++coastal
++coasted
++coaster
++coasters
++coastguard
++coastguards
++coasting
++coastline
++coastlines
++coasts
++coat
++coated
++coating
++coatings
++coatroom
++coatrooms
++coats
++coattail
++coattails
++coauthor
++coauthored
++coauthoring
++coauthors
++coax
++coaxed
++coaxer
++coaxers
++coaxes
++coaxial
++coaxing
++coaxingly
++cob
++cobalt
++cobber
++cobbers
++cobble
++cobbled
++cobbler
++cobblers
++cobbles
++cobblestone
++cobblestones
++cobbling
++cobnut
++cobnuts
++cobra
++cobras
++cobs
++cobweb
++cobwebbed
++cobwebbier
++cobwebbiest
++cobwebby
++cobwebs
++coca
++cocaine
++cocci
++coccis
++coccus
++coccyges
++coccyx
++cochineal
++cochlea
++cochleae
++cochlear
++cochleas
++cock
++cockade
++cockades
++cockamamie
++cockatiel
++cockatiels
++cockatoo
++cockatoos
++cockatrice
++cockatrices
++cockchafer
++cockchafers
++cockcrow
++cockcrows
++cocked
++cockerel
++cockerels
++cockeyed
++cockfight
++cockfighting
++cockfights
++cockier
++cockiest
++cockily
++cockiness
++cocking
++cockle
++cockles
++cockleshell
++cockleshells
++cockney
++cockneys
++cockpit
++cockpits
++cockroach
++cockroaches
++cocks
++cockscomb
++cockscombs
++cocksucker
++cocksuckers
++cocksure
++cocktail
++cocktails
++cocky
++coco
++cocoa
++cocoas
++coconut
++coconuts
++cocoon
++cocooned
++cocooning
++cocoons
++cocos
++cod
++coda
++codas
++codded
++codding
++coddle
++coddled
++coddles
++coddling
++code
++coded
++codeine
++codependency
++codependent
++codependents
++coder
++coders
++codes
++codex
++codfish
++codfishes
++codger
++codgers
++codices
++codicil
++codicils
++codification
++codifications
++codified
++codifier
++codifiers
++codifies
++codify
++codifying
++coding
++codon
++codons
++codpiece
++codpieces
++cods
++codswallop
++coed
++coeds
++coeducation
++coeducational
++coefficient
++coefficients
++coelenterate
++coelenterates
++coequal
++coequally
++coequals
++coerce
++coerced
++coercer
++coercers
++coerces
++coercing
++coercion
++coercive
++coeval
++coevally
++coevals
++coexist
++coexisted
++coexistence
++coexistent
++coexisting
++coexists
++coextensive
++coffee
++coffeecake
++coffeecakes
++coffeehouse
++coffeehouses
++coffeemaker
++coffeemakers
++coffeepot
++coffeepots
++coffees
++coffer
++cofferdam
++cofferdams
++coffers
++coffin
++coffined
++coffining
++coffins
++cog
++cogency
++cogent
++cogently
++cogitate
++cogitated
++cogitates
++cogitating
++cogitation
++cogitations
++cogitative
++cogitator
++cogitators
++cognac
++cognacs
++cognate
++cognates
++cognition
++cognitional
++cognitive
++cognitively
++cognizable
++cognizance
++cognizant
++cognomen
++cognomens
++cognoscente
++cognoscenti
++cogs
++cogwheel
++cogwheels
++cohabit
++cohabitant
++cohabitants
++cohabitation
++cohabited
++cohabiting
++cohabits
++coheir
++coheirs
++cohere
++cohered
++coherence
++coherency
++coherent
++coherently
++coheres
++cohering
++cohesion
++cohesive
++cohesively
++cohesiveness
++coho
++cohort
++cohorts
++cohos
++coif
++coiffed
++coiffing
++coiffure
++coiffured
++coiffures
++coiffuring
++coifs
++coil
++coiled
++coiling
++coils
++coin
++coinage
++coinages
++coincide
++coincided
++coincidence
++coincidences
++coincident
++coincidental
++coincidentally
++coincides
++coinciding
++coined
++coiner
++coiners
++coining
++coins
++coinsurance
++coir
++coital
++coitus
++coke
++coked
++cokes
++coking
++col
++cola
++colander
++colanders
++colas
++cold
++coldblooded
++colder
++coldest
++coldly
++coldness
++colds
++coleslaw
++coleus
++coleuses
++coley
++coleys
++colic
++colicky
++coliseum
++coliseums
++colitis
++coll
++collaborate
++collaborated
++collaborates
++collaborating
++collaboration
++collaborationist
++collaborations
++collaborative
++collaboratively
++collaborator
++collaborators
++collage
++collagen
++collages
++collapse
++collapsed
++collapses
++collapsible
++collapsing
++collar
++collarbone
++collarbones
++collard
++collards
++collared
++collaring
++collarless
++collars
++collate
++collated
++collateral
++collateralize
++collaterally
++collates
++collating
++collation
++collations
++collator
++collators
++colleague
++colleagues
++collect
++collected
++collectedly
++collectible
++collectibles
++collecting
++collection
++collections
++collective
++collectively
++collectives
++collectivism
++collectivist
++collectivists
++collectivization
++collectivize
++collectivized
++collectivizes
++collectivizing
++collector
++collectors
++collects
++colleen
++colleens
++college
++colleges
++collegiality
++collegian
++collegians
++collegiate
++collide
++collided
++collider
++colliders
++collides
++colliding
++collie
++collier
++collieries
++colliers
++colliery
++collies
++collision
++collisions
++collocate
++collocated
++collocates
++collocating
++collocation
++collocations
++colloid
++colloidal
++colloids
++colloq
++colloquial
++colloquialism
++colloquialisms
++colloquially
++colloquies
++colloquium
++colloquiums
++colloquy
++collude
++colluded
++colludes
++colluding
++collusion
++collusive
++cologne
++colognes
++colon
++colonel
++colonelcy
++colonels
++colones
++colonial
++colonialism
++colonialist
++colonialists
++colonially
++colonials
++colonies
++colonist
++colonists
++colonization
++colonize
++colonized
++colonizer
++colonizers
++colonizes
++colonizing
++colonnade
++colonnaded
++colonnades
++colonoscopies
++colonoscopy
++colons
++colony
++colophon
++colophons
++color
++colorant
++colorants
++coloration
++coloratura
++coloraturas
++colorblind
++colorblindness
++colored
++coloreds
++colorfast
++colorfastness
++colorful
++colorfully
++colorfulness
++coloring
++colorist
++colorists
++colorization
++colorize
++colorized
++colorizes
++colorizing
++colorless
++colorlessly
++colorlessness
++colors
++colorway
++colorways
++colossal
++colossally
++colossi
++colossus
++colostomies
++colostomy
++colostrum
++cols
++colt
++coltish
++colts
++columbine
++columbines
++column
++columnar
++columned
++columnist
++columnists
++columns
++com
++coma
++comaker
++comakers
++comas
++comatose
++comb
++combat
++combatant
++combatants
++combated
++combating
++combative
++combativeness
++combats
++combed
++comber
++combers
++combination
++combinations
++combine
++combined
++combiner
++combiners
++combines
++combing
++combings
++combining
++combo
++combos
++combs
++combust
++combusted
++combustibility
++combustible
++combustibles
++combusting
++combustion
++combustive
++combusts
++come
++comeback
++comebacks
++comedian
++comedians
++comedic
++comedienne
++comediennes
++comedies
++comedown
++comedowns
++comedy
++comelier
++comeliest
++comeliness
++comely
++comer
++comers
++comes
++comestible
++comestibles
++comet
++comets
++comeuppance
++comeuppances
++comfier
++comfiest
++comfit
++comfits
++comfort
++comfortable
++comfortableness
++comfortably
++comforted
++comforter
++comforters
++comforting
++comfortingly
++comfortless
++comforts
++comfy
++comic
++comical
++comicality
++comically
++comics
++coming
++comings
++comity
++comm
++comma
++command
++commandant
++commandants
++commanded
++commandeer
++commandeered
++commandeering
++commandeers
++commander
++commanders
++commanding
++commandment
++commandments
++commando
++commandos
++commands
++commas
++commemorate
++commemorated
++commemorates
++commemorating
++commemoration
++commemorations
++commemorative
++commemorator
++commemorators
++commence
++commenced
++commencement
++commencements
++commences
++commencing
++commend
++commendable
++commendably
++commendation
++commendations
++commendatory
++commended
++commending
++commends
++commensurable
++commensurate
++commensurately
++comment
++commentaries
++commentary
++commentate
++commentated
++commentates
++commentating
++commentator
++commentators
++commented
++commenting
++comments
++commerce
++commercial
++commercialism
++commercialization
++commercialize
++commercialized
++commercializes
++commercializing
++commercially
++commercials
++commie
++commies
++commingle
++commingled
++commingles
++commingling
++commiserate
++commiserated
++commiserates
++commiserating
++commiseration
++commiserations
++commiserative
++commissar
++commissariat
++commissariats
++commissaries
++commissars
++commissary
++commission
++commissionaire
++commissionaires
++commissioned
++commissioner
++commissioners
++commissioning
++commissions
++commit
++commitment
++commitments
++commits
++committal
++committals
++committed
++committee
++committeeman
++committeemen
++committees
++committeewoman
++committeewomen
++committer
++committers
++committing
++commode
++commodes
++commodification
++commodious
++commodiously
++commodities
++commodity
++commodore
++commodores
++common
++commonalities
++commonality
++commonalty
++commoner
++commoners
++commonest
++commonly
++commonness
++commonplace
++commonplaces
++commons
++commonsense
++commonweal
++commonwealth
++commonwealths
++commotion
++commotions
++communal
++communally
++commune
++communed
++communes
++communicability
++communicable
++communicably
++communicant
++communicants
++communicate
++communicated
++communicates
++communicating
++communication
++communications
++communicative
++communicator
++communicators
++communing
++communion
++communions
++communique
++communiques
++communism
++communist
++communistic
++communists
++communities
++community
++commutable
++commutation
++commutations
++commutative
++commutator
++commutators
++commute
++commuted
++commuter
++commuters
++commutes
++commuting
++comp
++compact
++compacted
++compacter
++compactest
++compacting
++compaction
++compactly
++compactness
++compactor
++compactors
++compacts
++companies
++companion
++companionable
++companionably
++companions
++companionship
++companionway
++companionways
++company
++comparability
++comparable
++comparably
++comparative
++comparatively
++comparatives
++compare
++compared
++compares
++comparing
++comparison
++comparisons
++compartment
++compartmental
++compartmentalization
++compartmentalize
++compartmentalized
++compartmentalizes
++compartmentalizing
++compartments
++compass
++compassed
++compasses
++compassing
++compassion
++compassionate
++compassionately
++compatibility
++compatible
++compatibles
++compatibly
++compatriot
++compatriots
++comped
++compeer
++compeers
++compel
++compelled
++compelling
++compellingly
++compels
++compendious
++compendium
++compendiums
++compensate
++compensated
++compensates
++compensating
++compensation
++compensations
++compensatory
++compere
++compered
++comperes
++compering
++compete
++competed
++competence
++competences
++competencies
++competency
++competent
++competently
++competes
++competing
++competition
++competitions
++competitive
++competitively
++competitiveness
++competitor
++competitors
++compilation
++compilations
++compile
++compiled
++compiler
++compilers
++compiles
++compiling
++comping
++complacence
++complacency
++complacent
++complacently
++complain
++complainant
++complainants
++complained
++complainer
++complainers
++complaining
++complains
++complaint
++complaints
++complaisance
++complaisant
++complaisantly
++complected
++complement
++complementary
++complemented
++complementing
++complements
++complete
++completed
++completely
++completeness
++completer
++completes
++completest
++completing
++completion
++completions
++complex
++complexes
++complexion
++complexional
++complexioned
++complexions
++complexities
++complexity
++complexly
++compliance
++compliant
++compliantly
++complicate
++complicated
++complicatedly
++complicates
++complicating
++complication
++complications
++complicit
++complicity
++complied
++complies
++compliment
++complimentary
++complimented
++complimenting
++compliments
++comply
++complying
++compo
++component
++components
++comport
++comported
++comporting
++comportment
++comports
++compos
++compose
++composed
++composedly
++composer
++composers
++composes
++composing
++composite
++composited
++compositely
++composites
++compositing
++composition
++compositions
++compositor
++compositors
++compost
++composted
++composting
++composts
++composure
++compote
++compotes
++compound
++compoundable
++compounded
++compounding
++compounds
++comprehend
++comprehended
++comprehending
++comprehends
++comprehensibility
++comprehensible
++comprehensibly
++comprehension
++comprehensions
++comprehensive
++comprehensively
++comprehensiveness
++comprehensives
++compress
++compressed
++compresses
++compressible
++compressing
++compression
++compressor
++compressors
++comprise
++comprised
++comprises
++comprising
++compromise
++compromised
++compromises
++compromising
++comps
++comptroller
++comptrollers
++compulsion
++compulsions
++compulsive
++compulsively
++compulsiveness
++compulsories
++compulsorily
++compulsory
++compunction
++compunctions
++computation
++computational
++computationally
++computations
++compute
++computed
++computer
++computerate
++computerization
++computerize
++computerized
++computerizes
++computerizing
++computers
++computes
++computing
++comrade
++comradely
++comrades
++comradeship
++con
++concatenate
++concatenated
++concatenates
++concatenating
++concatenation
++concatenations
++concave
++concavely
++concaveness
++concavities
++concavity
++conceal
++concealable
++concealed
++concealer
++concealers
++concealing
++concealment
++conceals
++concede
++conceded
++concedes
++conceding
++conceit
++conceited
++conceitedly
++conceitedness
++conceits
++conceivable
++conceivably
++conceive
++conceived
++conceives
++conceiving
++concentrate
++concentrated
++concentrates
++concentrating
++concentration
++concentrations
++concentric
++concentrically
++concept
++conception
++conceptional
++conceptions
++concepts
++conceptual
++conceptualization
++conceptualizations
++conceptualize
++conceptualized
++conceptualizes
++conceptualizing
++conceptually
++concern
++concerned
++concernedly
++concerning
++concerns
++concert
++concerted
++concertedly
++concertgoer
++concertgoers
++concertina
++concertinaed
++concertinaing
++concertinas
++concerting
++concertize
++concertized
++concertizes
++concertizing
++concertmaster
++concertmasters
++concerto
++concertos
++concerts
++concession
++concessionaire
++concessionaires
++concessional
++concessionary
++concessions
++conch
++conchie
++conchies
++conchs
++concierge
++concierges
++conciliate
++conciliated
++conciliates
++conciliating
++conciliation
++conciliator
++conciliators
++conciliatory
++concise
++concisely
++conciseness
++conciser
++concisest
++concision
++conclave
++conclaves
++conclude
++concluded
++concludes
++concluding
++conclusion
++conclusions
++conclusive
++conclusively
++conclusiveness
++concoct
++concocted
++concocting
++concoction
++concoctions
++concocts
++concomitant
++concomitantly
++concomitants
++concord
++concordance
++concordances
++concordant
++concordat
++concordats
++concourse
++concourses
++concrete
++concreted
++concretely
++concreteness
++concretes
++concreting
++concretion
++concretions
++concubinage
++concubine
++concubines
++concupiscence
++concupiscent
++concur
++concurred
++concurrence
++concurrences
++concurrency
++concurrent
++concurrently
++concurring
++concurs
++concuss
++concussed
++concusses
++concussing
++concussion
++concussions
++concussive
++condemn
++condemnation
++condemnations
++condemnatory
++condemned
++condemner
++condemners
++condemning
++condemns
++condensate
++condensates
++condensation
++condensations
++condense
++condensed
++condenser
++condensers
++condenses
++condensing
++condescend
++condescended
++condescending
++condescendingly
++condescends
++condescension
++condign
++condiment
++condiments
++condition
++conditional
++conditionality
++conditionally
++conditionals
++conditioned
++conditioner
++conditioners
++conditioning
++conditions
++condo
++condole
++condoled
++condolence
++condolences
++condoles
++condoling
++condom
++condominium
++condominiums
++condoms
++condone
++condoned
++condones
++condoning
++condor
++condors
++condos
++conduce
++conduced
++conduces
++conducing
++conducive
++conduct
++conductance
++conducted
++conductibility
++conductible
++conducting
++conduction
++conductive
++conductivity
++conductor
++conductors
++conductress
++conductresses
++conducts
++conduit
++conduits
++cone
++coned
++cones
++coneys
++confab
++confabbed
++confabbing
++confabs
++confabulate
++confabulated
++confabulates
++confabulating
++confabulation
++confabulations
++confection
++confectioner
++confectioneries
++confectioners
++confectionery
++confections
++confederacies
++confederacy
++confederate
++confederated
++confederates
++confederating
++confederation
++confederations
++confer
++conferee
++conferees
++conference
++conferences
++conferencing
++conferment
++conferments
++conferrable
++conferral
++conferred
++conferrer
++conferrers
++conferring
++confers
++confess
++confessed
++confessedly
++confesses
++confessing
++confession
++confessional
++confessionals
++confessions
++confessor
++confessors
++confetti
++confidant
++confidante
++confidantes
++confidants
++confide
++confided
++confidence
++confidences
++confident
++confidential
++confidentiality
++confidentially
++confidently
++confider
++confiders
++confides
++confiding
++confidingly
++configurable
++configuration
++configurations
++configure
++configured
++configures
++configuring
++confine
++confined
++confinement
++confinements
++confines
++confining
++confirm
++confirmation
++confirmations
++confirmatory
++confirmed
++confirming
++confirms
++confiscate
++confiscated
++confiscates
++confiscating
++confiscation
++confiscations
++confiscator
++confiscators
++confiscatory
++conflagration
++conflagrations
++conflate
++conflated
++conflates
++conflating
++conflation
++conflations
++conflict
++conflicted
++conflicting
++conflicts
++confluence
++confluences
++confluent
++conform
++conformable
++conformance
++conformation
++conformations
++conformed
++conformer
++conformers
++conforming
++conformism
++conformist
++conformists
++conformity
++conforms
++confound
++confounded
++confounding
++confounds
++confraternities
++confraternity
++confrere
++confreres
++confront
++confrontation
++confrontational
++confrontations
++confronted
++confronting
++confronts
++confuse
++confused
++confusedly
++confuser
++confusers
++confuses
++confusing
++confusingly
++confusion
++confusions
++confutation
++confute
++confuted
++confutes
++confuting
++conga
++congaed
++congaing
++congas
++congeal
++congealed
++congealing
++congealment
++congeals
++congenial
++congeniality
++congenially
++congenital
++congenitally
++conger
++congeries
++congers
++congest
++congested
++congesting
++congestion
++congestive
++congests
++conglomerate
++conglomerated
++conglomerates
++conglomerating
++conglomeration
++conglomerations
++congrats
++congratulate
++congratulated
++congratulates
++congratulating
++congratulation
++congratulations
++congratulatory
++congregant
++congregants
++congregate
++congregated
++congregates
++congregating
++congregation
++congregational
++congregationalism
++congregationalist
++congregationalists
++congregations
++congress
++congresses
++congressional
++congressman
++congressmen
++congresspeople
++congressperson
++congresspersons
++congresswoman
++congresswomen
++congruence
++congruent
++congruently
++congruities
++congruity
++congruous
++conic
++conical
++conically
++conics
++conifer
++coniferous
++conifers
++coning
++conj
++conjectural
++conjecture
++conjectured
++conjectures
++conjecturing
++conjoin
++conjoined
++conjoiner
++conjoiners
++conjoining
++conjoins
++conjoint
++conjointly
++conjugal
++conjugally
++conjugate
++conjugated
++conjugates
++conjugating
++conjugation
++conjugations
++conjunct
++conjunction
++conjunctions
++conjunctiva
++conjunctivas
++conjunctive
++conjunctives
++conjunctivitis
++conjuncts
++conjuncture
++conjunctures
++conjuration
++conjurations
++conjure
++conjured
++conjurer
++conjurers
++conjures
++conjuring
++conk
++conked
++conker
++conkers
++conking
++conks
++conman
++connect
++connectable
++connected
++connecting
++connection
++connections
++connective
++connectives
++connectivity
++connector
++connectors
++connects
++conned
++conning
++conniption
++conniptions
++connivance
++connive
++connived
++conniver
++connivers
++connives
++conniving
++connoisseur
++connoisseurs
++connotation
++connotations
++connotative
++connote
++connoted
++connotes
++connoting
++connubial
++conquer
++conquerable
++conquered
++conquering
++conqueror
++conquerors
++conquers
++conquest
++conquests
++conquistador
++conquistadors
++cons
++consanguineous
++consanguinity
++conscience
++conscienceless
++consciences
++conscientious
++conscientiously
++conscientiousness
++conscious
++consciously
++consciousness
++consciousnesses
++conscript
++conscripted
++conscripting
++conscription
++conscripts
++consecrate
++consecrated
++consecrates
++consecrating
++consecration
++consecrations
++consecutive
++consecutively
++consed
++consensual
++consensus
++consensuses
++consent
++consented
++consenting
++consents
++consequence
++consequences
++consequent
++consequential
++consequentially
++consequently
++conservancies
++conservancy
++conservation
++conservationism
++conservationist
++conservationists
++conservatism
++conservative
++conservatively
++conservatives
++conservatoire
++conservatoires
++conservator
++conservatories
++conservators
++conservatory
++conserve
++conserved
++conserves
++conserving
++conses
++consider
++considerable
++considerably
++considerate
++considerately
++considerateness
++consideration
++considerations
++considered
++considering
++considers
++consign
++consigned
++consignee
++consignees
++consigning
++consignment
++consignments
++consignor
++consignors
++consigns
++consing
++consist
++consisted
++consistence
++consistences
++consistencies
++consistency
++consistent
++consistently
++consisting
++consistories
++consistory
++consists
++consolable
++consolation
++consolations
++consolatory
++console
++consoled
++consoles
++consolidate
++consolidated
++consolidates
++consolidating
++consolidation
++consolidations
++consolidator
++consolidators
++consoling
++consolingly
++consomme
++consonance
++consonances
++consonant
++consonantly
++consonants
++consort
++consorted
++consortia
++consorting
++consortium
++consorts
++conspectus
++conspectuses
++conspicuous
++conspicuously
++conspicuousness
++conspiracies
++conspiracy
++conspirator
++conspiratorial
++conspiratorially
++conspirators
++conspire
++conspired
++conspires
++conspiring
++constable
++constables
++constabularies
++constabulary
++constancy
++constant
++constantly
++constants
++constellation
++constellations
++consternation
++constipate
++constipated
++constipates
++constipating
++constipation
++constituencies
++constituency
++constituent
++constituents
++constitute
++constituted
++constitutes
++constituting
++constitution
++constitutional
++constitutionalism
++constitutionality
++constitutionally
++constitutionals
++constitutions
++constitutive
++constrain
++constrained
++constraining
++constrains
++constraint
++constraints
++constrict
++constricted
++constricting
++constriction
++constrictions
++constrictive
++constrictor
++constrictors
++constricts
++construable
++construct
++constructed
++constructing
++construction
++constructional
++constructionist
++constructionists
++constructions
++constructive
++constructively
++constructiveness
++constructor
++constructors
++constructs
++construe
++construed
++construes
++construing
++consubstantiation
++consul
++consular
++consulate
++consulates
++consuls
++consulship
++consult
++consultancies
++consultancy
++consultant
++consultants
++consultation
++consultations
++consultative
++consulted
++consulting
++consults
++consumable
++consumables
++consume
++consumed
++consumer
++consumerism
++consumerist
++consumerists
++consumers
++consumes
++consuming
++consummate
++consummated
++consummately
++consummates
++consummating
++consummation
++consummations
++consumption
++consumptive
++consumptives
++cont
++contact
++contactable
++contacted
++contacting
++contacts
++contagion
++contagions
++contagious
++contagiously
++contagiousness
++contain
++containable
++contained
++container
++containerization
++containerize
++containerized
++containerizes
++containerizing
++containers
++containing
++containment
++contains
++contaminant
++contaminants
++contaminate
++contaminated
++contaminates
++contaminating
++contamination
++contaminator
++contaminators
++contd
++contemn
++contemned
++contemning
++contemns
++contemplate
++contemplated
++contemplates
++contemplating
++contemplation
++contemplative
++contemplatively
++contemplatives
++contemporaneity
++contemporaneous
++contemporaneously
++contemporaries
++contemporary
++contempt
++contemptible
++contemptibly
++contemptuous
++contemptuously
++contemptuousness
++contend
++contended
++contender
++contenders
++contending
++contends
++content
++contented
++contentedly
++contentedness
++contenting
++contention
++contentions
++contentious
++contentiously
++contentiousness
++contently
++contentment
++contents
++conterminous
++conterminously
++contest
++contestable
++contestant
++contestants
++contested
++contesting
++contests
++context
++contexts
++contextual
++contextualization
++contextualize
++contextualized
++contextualizes
++contextualizing
++contextually
++contiguity
++contiguous
++contiguously
++continence
++continent
++continental
++continentals
++continents
++contingencies
++contingency
++contingent
++contingently
++contingents
++continua
++continual
++continually
++continuance
++continuances
++continuation
++continuations
++continue
++continued
++continues
++continuing
++continuities
++continuity
++continuous
++continuously
++continuum
++contort
++contorted
++contorting
++contortion
++contortionist
++contortionists
++contortions
++contorts
++contour
++contoured
++contouring
++contours
++contra
++contraband
++contrabassoon
++contrabassoons
++contraception
++contraceptive
++contraceptives
++contract
++contracted
++contractible
++contractile
++contractility
++contracting
++contraction
++contractions
++contractor
++contractors
++contracts
++contractual
++contractually
++contradict
++contradicted
++contradicting
++contradiction
++contradictions
++contradictory
++contradicts
++contradistinction
++contradistinctions
++contraflow
++contraflows
++contrail
++contrails
++contraindicate
++contraindicated
++contraindicates
++contraindicating
++contraindication
++contraindications
++contralto
++contraltos
++contraption
++contraptions
++contrapuntal
++contrapuntally
++contrarian
++contrarianism
++contrarians
++contraries
++contrariety
++contrarily
++contrariness
++contrariwise
++contrary
++contrast
++contrasted
++contrasting
++contrasts
++contravene
++contravened
++contravenes
++contravening
++contravention
++contraventions
++contretemps
++contribute
++contributed
++contributes
++contributing
++contribution
++contributions
++contributor
++contributors
++contributory
++contrite
++contritely
++contriteness
++contrition
++contrivance
++contrivances
++contrive
++contrived
++contriver
++contrivers
++contrives
++contriving
++control
++controllable
++controlled
++controller
++controllers
++controlling
++controls
++controversial
++controversially
++controversies
++controversy
++controvert
++controverted
++controvertible
++controverting
++controverts
++contumacious
++contumaciously
++contumacy
++contumelies
++contumelious
++contumely
++contuse
++contused
++contuses
++contusing
++contusion
++contusions
++conundrum
++conundrums
++conurbation
++conurbations
++convalesce
++convalesced
++convalescence
++convalescences
++convalescent
++convalescents
++convalesces
++convalescing
++convection
++convectional
++convective
++convector
++convectors
++convene
++convened
++convener
++conveners
++convenes
++convenience
++conveniences
++convenient
++conveniently
++convening
++convent
++conventicle
++conventicles
++convention
++conventional
++conventionality
++conventionalize
++conventionalized
++conventionalizes
++conventionalizing
++conventionally
++conventioneer
++conventioneers
++conventions
++convents
++converge
++converged
++convergence
++convergences
++convergent
++converges
++converging
++conversant
++conversation
++conversational
++conversationalist
++conversationalists
++conversationally
++conversations
++converse
++conversed
++conversely
++converses
++conversing
++conversion
++conversions
++convert
++converted
++converter
++converters
++convertibility
++convertible
++convertibles
++converting
++converts
++convex
++convexity
++convexly
++convey
++conveyable
++conveyance
++conveyances
++conveyancing
++conveyed
++conveying
++conveyor
++conveyors
++conveys
++convict
++convicted
++convicting
++conviction
++convictions
++convicts
++convince
++convinced
++convinces
++convincing
++convincingly
++convivial
++conviviality
++convivially
++convocation
++convocations
++convoke
++convoked
++convokes
++convoking
++convoluted
++convolution
++convolutions
++convoy
++convoyed
++convoying
++convoys
++convulse
++convulsed
++convulses
++convulsing
++convulsion
++convulsions
++convulsive
++convulsively
++cony
++coo
++cooed
++cooing
++cook
++cookbook
++cookbooks
++cooked
++cooker
++cookeries
++cookers
++cookery
++cookhouse
++cookhouses
++cookie
++cookies
++cooking
++cookout
++cookouts
++cooks
++cookware
++cookwares
++cool
++coolant
++coolants
++cooled
++cooler
++coolers
++coolest
++coolie
++coolies
++cooling
++coolly
++coolness
++cools
++coon
++coons
++coonskin
++coonskins
++coop
++cooped
++cooper
++cooperage
++cooperate
++cooperated
++cooperates
++cooperating
++cooperation
++cooperative
++cooperatively
++cooperativeness
++cooperatives
++cooperator
++cooperators
++coopered
++coopering
++coopers
++cooping
++coops
++coordinate
++coordinated
++coordinately
++coordinates
++coordinating
++coordination
++coordinator
++coordinators
++coos
++coot
++cootie
++cooties
++coots
++cop
++copacetic
++copay
++cope
++coped
++copes
++copied
++copier
++copiers
++copies
++copilot
++copilots
++coping
++copings
++copious
++copiously
++copiousness
++copped
++copper
++copperhead
++copperheads
++copperplate
++coppers
++coppery
++copping
++copra
++cops
++copse
++copses
++copter
++copters
++copula
++copulas
++copulate
++copulated
++copulates
++copulating
++copulation
++copulative
++copulatives
++copy
++copybook
++copybooks
++copycat
++copycats
++copycatted
++copycatting
++copying
++copyist
++copyists
++copyleft
++copyright
++copyrighted
++copyrighting
++copyrights
++copywriter
++copywriters
++coquetries
++coquetry
++coquette
++coquetted
++coquettes
++coquetting
++coquettish
++coquettishly
++cor
++coracle
++coracles
++coral
++corals
++corbel
++corbels
++cord
++cordage
++corded
++cordial
++cordiality
++cordially
++cordials
++cordillera
++cordilleras
++cording
++cordite
++cordless
++cordon
++cordoned
++cordoning
++cordons
++cordovan
++cords
++corduroy
++corduroys
++core
++cored
++coreligionist
++coreligionists
++corer
++corers
++cores
++corespondent
++corespondents
++corgi
++corgis
++coriander
++coring
++cork
++corkage
++corked
++corker
++corkers
++corking
++corks
++corkscrew
++corkscrewed
++corkscrewing
++corkscrews
++corm
++cormorant
++cormorants
++corms
++corn
++cornball
++cornballs
++cornbread
++corncob
++corncobs
++corncrake
++corncrakes
++cornea
++corneal
++corneas
++corned
++corner
++cornered
++cornering
++corners
++cornerstone
++cornerstones
++cornet
++cornets
++cornfield
++cornfields
++cornflakes
++cornflour
++cornflower
++cornflowers
++cornice
++cornices
++cornier
++corniest
++cornily
++corniness
++corning
++cornmeal
++cornrow
++cornrowed
++cornrowing
++cornrows
++corns
++cornstalk
++cornstalks
++cornstarch
++cornucopia
++cornucopias
++corny
++corolla
++corollaries
++corollary
++corollas
++corona
++coronal
++coronals
++coronaries
++coronary
++coronas
++coronation
++coronations
++coroner
++coroners
++coronet
++coronets
++corp
++corpora
++corporal
++corporals
++corporate
++corporately
++corporation
++corporations
++corporatism
++corporeal
++corporeality
++corporeally
++corps
++corpse
++corpses
++corpsman
++corpsmen
++corpulence
++corpulent
++corpus
++corpuscle
++corpuscles
++corpuscular
++corr
++corral
++corralled
++corralling
++corrals
++correct
++correctable
++corrected
++correcter
++correctest
++correcting
++correction
++correctional
++corrections
++corrective
++correctives
++correctly
++correctness
++corrector
++corrects
++correlate
++correlated
++correlates
++correlating
++correlation
++correlations
++correlative
++correlatives
++correspond
++corresponded
++correspondence
++correspondences
++correspondent
++correspondents
++corresponding
++correspondingly
++corresponds
++corridor
++corridors
++corrie
++corries
++corroborate
++corroborated
++corroborates
++corroborating
++corroboration
++corroborations
++corroborative
++corroborator
++corroborators
++corroboratory
++corrode
++corroded
++corrodes
++corroding
++corrosion
++corrosive
++corrosively
++corrosives
++corrugate
++corrugated
++corrugates
++corrugating
++corrugation
++corrugations
++corrupt
++corrupted
++corrupter
++corruptest
++corruptibility
++corruptible
++corrupting
++corruption
++corruptions
++corruptly
++corruptness
++corrupts
++corsage
++corsages
++corsair
++corsairs
++corset
++corseted
++corseting
++corsets
++cortege
++corteges
++cortex
++cortical
++cortices
++cortisone
++corundum
++coruscate
++coruscated
++coruscates
++coruscating
++coruscation
++corvette
++corvettes
++cos
++cosh
++coshed
++coshes
++coshing
++cosign
++cosignatories
++cosignatory
++cosigned
++cosigner
++cosigners
++cosigning
++cosigns
++cosine
++cosines
++cosmetic
++cosmetically
++cosmetician
++cosmeticians
++cosmetics
++cosmetologist
++cosmetologists
++cosmetology
++cosmic
++cosmically
++cosmogonies
++cosmogonist
++cosmogonists
++cosmogony
++cosmological
++cosmologies
++cosmologist
++cosmologists
++cosmology
++cosmonaut
++cosmonauts
++cosmopolitan
++cosmopolitanism
++cosmopolitans
++cosmos
++cosmoses
++cosplay
++cosponsor
++cosponsored
++cosponsoring
++cosponsors
++cosset
++cosseted
++cosseting
++cossets
++cossetted
++cossetting
++cost
++costar
++costarred
++costarring
++costars
++costed
++costing
++costings
++costlier
++costliest
++costliness
++costly
++costs
++costume
++costumed
++costumer
++costumers
++costumes
++costumier
++costumiers
++costuming
++cot
++cotangent
++cotangents
++cote
++coterie
++coteries
++coterminous
++cotes
++cotillion
++cotillions
++cots
++cottage
++cottager
++cottagers
++cottages
++cottaging
++cottar
++cottars
++cotter
++cotters
++cotton
++cottoned
++cottoning
++cottonmouth
++cottonmouths
++cottons
++cottonseed
++cottonseeds
++cottontail
++cottontails
++cottonwood
++cottonwoods
++cottony
++cotyledon
++cotyledons
++couch
++couched
++couches
++couchette
++couchettes
++couching
++cougar
++cougars
++cough
++coughed
++coughing
++coughs
++could
++coulee
++coulees
++coulis
++coulomb
++coulombs
++council
++councilman
++councilmen
++councilor
++councilors
++councilperson
++councilpersons
++councils
++councilwoman
++councilwomen
++counsel
++counseled
++counseling
++counselings
++counselor
++counselors
++counsels
++count
++countable
++countably
++countdown
++countdowns
++counted
++countenance
++countenanced
++countenances
++countenancing
++counter
++counteract
++counteracted
++counteracting
++counteraction
++counteractions
++counteractive
++counteracts
++counterargument
++counterarguments
++counterattack
++counterattacked
++counterattacking
++counterattacks
++counterbalance
++counterbalanced
++counterbalances
++counterbalancing
++counterblast
++counterblasts
++counterclaim
++counterclaimed
++counterclaiming
++counterclaims
++counterclockwise
++counterculture
++countercultures
++countered
++counterespionage
++counterexample
++counterexamples
++counterfactual
++counterfeit
++counterfeited
++counterfeiter
++counterfeiters
++counterfeiting
++counterfeits
++counterfoil
++counterfoils
++countering
++counterinsurgencies
++counterinsurgency
++counterintelligence
++counterman
++countermand
++countermanded
++countermanding
++countermands
++countermeasure
++countermeasures
++countermelodies
++countermelody
++countermen
++countermove
++countermoves
++counteroffensive
++counteroffensives
++counteroffer
++counteroffers
++counterpane
++counterpanes
++counterpart
++counterparts
++counterpetition
++counterpoint
++counterpointed
++counterpointing
++counterpoints
++counterpoise
++counterpoised
++counterpoises
++counterpoising
++counterproductive
++counterrevolution
++counterrevolutionaries
++counterrevolutionary
++counterrevolutions
++counters
++countersign
++countersignature
++countersignatures
++countersigned
++countersigning
++countersigns
++countersink
++countersinking
++countersinks
++counterspies
++counterspy
++counterstroke
++counterstrokes
++countersunk
++countertenor
++countertenors
++countervail
++countervailed
++countervailing
++countervails
++counterweight
++counterweights
++countess
++countesses
++counties
++counting
++countless
++countries
++countrified
++country
++countryman
++countrymen
++countryside
++countrysides
++countrywide
++countrywoman
++countrywomen
++counts
++county
++countywide
++coup
++coupe
++coupes
++couple
++coupled
++couples
++couplet
++couplets
++coupling
++couplings
++coupon
++coupons
++coups
++courage
++courageous
++courageously
++courageousness
++courgette
++courgettes
++courier
++couriered
++couriering
++couriers
++course
++coursebook
++coursebooks
++coursed
++courser
++coursers
++courses
++coursework
++coursing
++court
++courted
++courteous
++courteously
++courteousness
++courtesan
++courtesans
++courtesies
++courtesy
++courthouse
++courthouses
++courtier
++courtiers
++courting
++courtlier
++courtliest
++courtliness
++courtly
++courtroom
++courtrooms
++courts
++courtship
++courtships
++courtyard
++courtyards
++couscous
++cousin
++cousins
++couture
++couturier
++couturiers
++cove
++coven
++covenant
++covenanted
++covenanting
++covenants
++covens
++cover
++coverage
++coverall
++coveralls
++covered
++covering
++coverings
++coverlet
++coverlets
++covers
++covert
++covertly
++covertness
++coverts
++coves
++covet
++coveted
++coveting
++covetous
++covetously
++covetousness
++covets
++covey
++coveys
++cow
++coward
++cowardice
++cowardliness
++cowardly
++cowards
++cowbell
++cowbells
++cowbird
++cowbirds
++cowboy
++cowboys
++cowcatcher
++cowcatchers
++cowed
++cower
++cowered
++cowering
++cowers
++cowgirl
++cowgirls
++cowhand
++cowhands
++cowherd
++cowherds
++cowhide
++cowhides
++cowing
++cowl
++cowlick
++cowlicks
++cowling
++cowlings
++cowls
++cowman
++cowmen
++coworker
++coworkers
++cowpat
++cowpats
++cowpoke
++cowpokes
++cowpox
++cowpuncher
++cowpunchers
++cowrie
++cowries
++cows
++cowshed
++cowsheds
++cowslip
++cowslips
++cox
++coxcomb
++coxcombs
++coxed
++coxes
++coxing
++coxswain
++coxswains
++coy
++coyer
++coyest
++coyly
++coyness
++coyote
++coyotes
++coypu
++coypus
++cozen
++cozenage
++cozened
++cozening
++cozens
++cozier
++cozies
++coziest
++cozily
++coziness
++cozy
++cpd
++cpl
++cps
++crab
++crabbed
++crabber
++crabbers
++crabbier
++crabbiest
++crabbily
++crabbiness
++crabbing
++crabby
++crabgrass
++crablike
++crabs
++crabwise
++crack
++crackdown
++crackdowns
++cracked
++cracker
++crackerjack
++crackerjacks
++crackers
++crackhead
++crackheads
++cracking
++crackings
++crackle
++crackled
++crackles
++crackling
++cracklings
++crackly
++crackpot
++crackpots
++cracks
++crackup
++crackups
++cradle
++cradled
++cradles
++cradling
++craft
++crafted
++craftier
++craftiest
++craftily
++craftiness
++crafting
++crafts
++craftsman
++craftsmanship
++craftsmen
++craftspeople
++craftswoman
++craftswomen
++crafty
++crag
++craggier
++craggiest
++cragginess
++craggy
++crags
++cram
++crammed
++crammer
++crammers
++cramming
++cramp
++cramped
++cramping
++crampon
++crampons
++cramps
++crams
++cranberries
++cranberry
++crane
++craned
++cranes
++cranial
++craning
++cranium
++craniums
++crank
++crankcase
++crankcases
++cranked
++crankier
++crankiest
++crankily
++crankiness
++cranking
++cranks
++crankshaft
++crankshafts
++cranky
++crannied
++crannies
++cranny
++crap
++crape
++crapes
++crapped
++crapper
++crappers
++crappie
++crappier
++crappies
++crappiest
++crapping
++crappy
++craps
++crapshooter
++crapshooters
++crash
++crashed
++crashes
++crashing
++crass
++crasser
++crassest
++crassly
++crassness
++crate
++crated
++crater
++cratered
++cratering
++craters
++crates
++crating
++cravat
++cravats
++crave
++craved
++craven
++cravenly
++cravenness
++cravens
++craves
++craving
++cravings
++craw
++crawdad
++crawdads
++crawl
++crawled
++crawler
++crawlers
++crawlier
++crawlies
++crawliest
++crawling
++crawls
++crawlspace
++crawlspaces
++crawly
++craws
++cray
++crayfish
++crayfishes
++crayola
++crayolas
++crayon
++crayoned
++crayoning
++crayons
++crays
++craze
++crazed
++crazes
++crazier
++crazies
++craziest
++crazily
++craziness
++crazing
++crazy
++creak
++creaked
++creakier
++creakiest
++creakily
++creakiness
++creaking
++creaks
++creaky
++cream
++creamed
++creamer
++creameries
++creamers
++creamery
++creamier
++creamiest
++creamily
++creaminess
++creaming
++creams
++creamy
++crease
++creased
++creases
++creasing
++create
++created
++creates
++creating
++creation
++creationism
++creationisms
++creationist
++creationists
++creations
++creative
++creatively
++creativeness
++creatives
++creativity
++creator
++creators
++creature
++creatures
++creche
++creches
++cred
++credence
++credential
++credentialed
++credentialing
++credentials
++credenza
++credenzas
++credibility
++credible
++credibly
++credit
++creditable
++creditably
++credited
++crediting
++creditor
++creditors
++credits
++creditworthiness
++creditworthy
++credo
++credos
++credulity
++credulous
++credulously
++credulousness
++creed
++creeds
++creek
++creeks
++creel
++creels
++creep
++creeper
++creepers
++creepier
++creepiest
++creepily
++creepiness
++creeping
++creeps
++creepy
++cremains
++cremate
++cremated
++cremates
++cremating
++cremation
++cremations
++crematoria
++crematories
++crematorium
++crematoriums
++crematory
++creme
++cremes
++crenelate
++crenelated
++crenelates
++crenelating
++crenelation
++crenelations
++creole
++creoles
++creosote
++creosoted
++creosotes
++creosoting
++crepe
++crepes
++crept
++crepuscular
++crescendo
++crescendos
++crescent
++crescents
++cress
++crest
++crested
++crestfallen
++cresting
++crestless
++crests
++cretaceous
++cretin
++cretinism
++cretinous
++cretins
++cretonne
++crevasse
++crevasses
++crevice
++crevices
++crew
++crewed
++crewel
++crewelwork
++crewing
++crewman
++crewmen
++crews
++crib
++cribbage
++cribbed
++cribber
++cribbers
++cribbing
++cribs
++crick
++cricked
++cricket
++cricketer
++cricketers
++cricketing
++crickets
++cricking
++cricks
++cried
++crier
++criers
++cries
++crikey
++crime
++crimes
++criminal
++criminality
++criminalize
++criminalized
++criminalizes
++criminalizing
++criminally
++criminals
++criminologist
++criminologists
++criminology
++crimp
++crimped
++crimping
++crimps
++crimson
++crimsoned
++crimsoning
++crimsons
++cringe
++cringed
++cringes
++cringing
++crinkle
++crinkled
++crinkles
++crinklier
++crinkliest
++crinkling
++crinkly
++crinoline
++crinolines
++cripes
++cripple
++crippled
++crippler
++cripplers
++cripples
++crippleware
++crippling
++cripplingly
++crises
++crisis
++crisp
++crispbread
++crispbreads
++crisped
++crisper
++crispest
++crispier
++crispiest
++crispiness
++crisping
++crisply
++crispness
++crisps
++crispy
++crisscross
++crisscrossed
++crisscrosses
++crisscrossing
++criteria
++criterion
++critic
++critical
++criticality
++critically
++criticism
++criticisms
++criticize
++criticized
++criticizer
++criticizers
++criticizes
++criticizing
++critics
++critique
++critiqued
++critiques
++critiquing
++critter
++critters
++croak
++croaked
++croakier
++croakiest
++croaking
++croaks
++croaky
++crochet
++crocheted
++crocheter
++crocheters
++crocheting
++crochets
++crock
++crocked
++crockery
++crocks
++crocodile
++crocodiles
++crocus
++crocuses
++croft
++crofter
++crofters
++crofting
++crofts
++croissant
++croissants
++crone
++crones
++cronies
++crony
++cronyism
++crook
++crooked
++crookeder
++crookedest
++crookedly
++crookedness
++crooking
++crookneck
++crooknecks
++crooks
++croon
++crooned
++crooner
++crooners
++crooning
++croons
++crop
++cropland
++croplands
++cropped
++cropper
++croppers
++cropping
++crops
++croquet
++croquette
++croquettes
++crosier
++crosiers
++cross
++crossbar
++crossbars
++crossbeam
++crossbeams
++crossbones
++crossbow
++crossbowman
++crossbowmen
++crossbows
++crossbred
++crossbreed
++crossbreeding
++crossbreeds
++crosscheck
++crosschecked
++crosschecking
++crosschecks
++crosscurrent
++crosscurrents
++crosscut
++crosscuts
++crosscutting
++crossed
++crosser
++crosses
++crossest
++crossfire
++crossfires
++crosshatch
++crosshatched
++crosshatches
++crosshatching
++crossing
++crossings
++crossly
++crossness
++crossover
++crossovers
++crosspatch
++crosspatches
++crosspiece
++crosspieces
++crossroad
++crossroads
++crosstown
++crosswalk
++crosswalks
++crosswind
++crosswinds
++crosswise
++crossword
++crosswords
++crotch
++crotches
++crotchet
++crotchets
++crotchety
++crouch
++crouched
++crouches
++crouching
++croup
++croupier
++croupiers
++croupiest
++croupy
++crouton
++croutons
++crow
++crowbar
++crowbars
++crowd
++crowded
++crowdfund
++crowdfunded
++crowdfunding
++crowdfunds
++crowding
++crowds
++crowed
++crowfeet
++crowfoot
++crowfoots
++crowing
++crown
++crowned
++crowning
++crowns
++crows
++crucial
++crucially
++crucible
++crucibles
++crucified
++crucifies
++crucifix
++crucifixes
++crucifixion
++crucifixions
++cruciform
++cruciforms
++crucify
++crucifying
++crud
++cruddier
++cruddiest
++cruddy
++crude
++crudely
++crudeness
++cruder
++crudest
++crudites
++crudities
++crudity
++cruel
++crueler
++cruelest
++cruelly
++cruelness
++cruelties
++cruelty
++cruet
++cruets
++cruft
++crufted
++crufts
++crufty
++cruise
++cruised
++cruiser
++cruisers
++cruises
++cruising
++cruller
++crullers
++crumb
++crumbed
++crumbier
++crumbiest
++crumbing
++crumble
++crumbled
++crumbles
++crumblier
++crumbliest
++crumbliness
++crumbling
++crumbly
++crumbs
++crumby
++crummier
++crummiest
++crumminess
++crummy
++crumpet
++crumpets
++crumple
++crumpled
++crumples
++crumpling
++crunch
++crunched
++cruncher
++crunches
++crunchier
++crunchiest
++crunchiness
++crunching
++crunchy
++crupper
++cruppers
++crusade
++crusaded
++crusader
++crusaders
++crusades
++crusading
++cruse
++cruses
++crush
++crushed
++crusher
++crushers
++crushes
++crushing
++crushingly
++crust
++crustacean
++crustaceans
++crustal
++crusted
++crustier
++crustiest
++crustily
++crustiness
++crusting
++crusts
++crusty
++crutch
++crutches
++crux
++cruxes
++cry
++crybabies
++crybaby
++crying
++cryings
++cryogenic
++cryogenics
++cryonics
++cryosurgery
++crypt
++cryptic
++cryptically
++cryptogram
++cryptograms
++cryptographer
++cryptographers
++cryptography
++crypts
++crystal
++crystalline
++crystallization
++crystallize
++crystallized
++crystallizes
++crystallizing
++crystallographic
++crystallography
++crystals
++cs
++ct
++ctn
++ctr
++cu
++cub
++cubbyhole
++cubbyholes
++cube
++cubed
++cuber
++cubers
++cubes
++cubic
++cubical
++cubicle
++cubicles
++cubing
++cubism
++cubist
++cubists
++cubit
++cubits
++cuboid
++cuboids
++cubs
++cuckold
++cuckolded
++cuckolding
++cuckoldry
++cuckolds
++cuckoo
++cuckoos
++cucumber
++cucumbers
++cud
++cuddle
++cuddled
++cuddles
++cuddlier
++cuddliest
++cuddling
++cuddly
++cudgel
++cudgeled
++cudgeling
++cudgelings
++cudgels
++cuds
++cue
++cued
++cues
++cuff
++cuffed
++cuffing
++cuffs
++cuing
++cuisine
++cuisines
++culinary
++cull
++culled
++culling
++culls
++culminate
++culminated
++culminates
++culminating
++culmination
++culminations
++culotte
++culottes
++culpability
++culpable
++culpably
++culprit
++culprits
++cult
++cultism
++cultist
++cultists
++cultivable
++cultivar
++cultivars
++cultivatable
++cultivate
++cultivated
++cultivates
++cultivating
++cultivation
++cultivator
++cultivators
++cults
++cultural
++culturally
++culture
++cultured
++cultures
++culturing
++culvert
++culverts
++cum
++cumber
++cumbered
++cumbering
++cumbers
++cumbersome
++cumbersomeness
++cumbrous
++cumin
++cummerbund
++cummerbunds
++cumming
++cums
++cumulative
++cumulatively
++cumuli
++cumulonimbi
++cumulonimbus
++cumulus
++cuneiform
++cunnilingus
++cunning
++cunninger
++cunningest
++cunningly
++cunt
++cunts
++cup
++cupboard
++cupboards
++cupcake
++cupcakes
++cupful
++cupfuls
++cupid
++cupidity
++cupids
++cupola
++cupolaed
++cupolas
++cuppa
++cuppas
++cupped
++cupping
++cupric
++cups
++cur
++curability
++curable
++curacao
++curacies
++curacy
++curare
++curate
++curated
++curates
++curating
++curative
++curatives
++curator
++curatorial
++curators
++curb
++curbed
++curbing
++curbs
++curbside
++curbstone
++curbstones
++curd
++curdle
++curdled
++curdles
++curdling
++curds
++cure
++cured
++curer
++curers
++cures
++curettage
++curfew
++curfews
++curia
++curiae
++curie
++curies
++curing
++curio
++curios
++curiosities
++curiosity
++curious
++curiously
++curiousness
++curium
++curl
++curled
++curler
++curlers
++curlew
++curlews
++curlicue
++curlicued
++curlicues
++curlicuing
++curlier
++curliest
++curliness
++curling
++curls
++curly
++curmudgeon
++curmudgeonly
++curmudgeons
++currant
++currants
++currencies
++currency
++current
++currently
++currents
++curricula
++curricular
++curriculum
++curried
++curries
++curry
++currycomb
++currycombed
++currycombing
++currycombs
++currying
++curs
++curse
++cursed
++cursedly
++curses
++cursing
++cursive
++cursively
++cursor
++cursorily
++cursoriness
++cursors
++cursory
++curt
++curtail
++curtailed
++curtailing
++curtailment
++curtailments
++curtails
++curtain
++curtained
++curtaining
++curtains
++curter
++curtest
++curtly
++curtness
++curtsied
++curtsies
++curtsy
++curtsying
++curvaceous
++curvaceousness
++curvature
++curvatures
++curve
++curved
++curves
++curvier
++curviest
++curving
++curvy
++cushier
++cushiest
++cushion
++cushioned
++cushioning
++cushions
++cushy
++cusp
++cuspid
++cuspidor
++cuspidors
++cuspids
++cusps
++cuss
++cussed
++cussedly
++cussedness
++cusses
++cussing
++custard
++custards
++custodial
++custodian
++custodians
++custodianship
++custody
++custom
++customarily
++customary
++customer
++customers
++customhouse
++customhouses
++customization
++customize
++customized
++customizes
++customizing
++customs
++cut
++cutaneous
++cutaway
++cutaways
++cutback
++cutbacks
++cute
++cutely
++cuteness
++cuter
++cutesier
++cutesiest
++cutest
++cutesy
++cutey
++cuteys
++cuticle
++cuticles
++cutie
++cuties
++cutlass
++cutlasses
++cutler
++cutlers
++cutlery
++cutlet
++cutlets
++cutoff
++cutoffs
++cutout
++cutouts
++cuts
++cutter
++cutters
++cutthroat
++cutthroats
++cutting
++cuttingly
++cuttings
++cuttlefish
++cuttlefishes
++cutup
++cutups
++cutworm
++cutworms
++cw
++cwt
++cyan
++cyanide
++cyberbullies
++cyberbully
++cybercafe
++cybercafes
++cybernetic
++cybernetics
++cyberpunk
++cyberpunks
++cybersex
++cyberspace
++cyberspaces
++cyborg
++cyborgs
++cyclamen
++cyclamens
++cycle
++cycled
++cycles
++cyclic
++cyclical
++cyclically
++cycling
++cyclist
++cyclists
++cyclometer
++cyclometers
++cyclone
++cyclones
++cyclonic
++cyclopedia
++cyclopedias
++cyclopes
++cyclops
++cyclotron
++cyclotrons
++cygnet
++cygnets
++cylinder
++cylinders
++cylindrical
++cymbal
++cymbalist
++cymbalists
++cymbals
++cynic
++cynical
++cynically
++cynicism
++cynics
++cynosure
++cynosures
++cypress
++cypresses
++cyst
++cystic
++cystitis
++cysts
++cytokines
++cytologist
++cytologists
++cytology
++cytoplasm
++cytoplasmic
++cytosine
++czar
++czarina
++czarinas
++czarism
++czarist
++czarists
++czars
++d
++dab
++dabbed
++dabber
++dabbers
++dabbing
++dabble
++dabbled
++dabbler
++dabblers
++dabbles
++dabbling
++dabs
++dace
++daces
++dacha
++dachas
++dachshund
++dachshunds
++dactyl
++dactylic
++dactylics
++dactyls
++dad
++dadaism
++dadaist
++dadaists
++daddies
++daddy
++dado
++dadoes
++dads
++daemon
++daemonic
++daemons
++daffier
++daffiest
++daffiness
++daffodil
++daffodils
++daffy
++daft
++dafter
++daftest
++daftly
++daftness
++dag
++dagger
++daggers
++dago
++dagoes
++dagos
++dags
++daguerreotype
++daguerreotyped
++daguerreotypes
++daguerreotyping
++dahlia
++dahlias
++dailies
++dailiness
++daily
++daintier
++dainties
++daintiest
++daintily
++daintiness
++dainty
++daiquiri
++daiquiris
++dairies
++dairy
++dairying
++dairymaid
++dairymaids
++dairyman
++dairymen
++dairywoman
++dairywomen
++dais
++daises
++daisies
++daisy
++dale
++dales
++dalliance
++dalliances
++dallied
++dallier
++dalliers
++dallies
++dally
++dallying
++dalmatian
++dalmatians
++dam
++damage
++damageable
++damaged
++damages
++damaging
++damask
++damasked
++damasking
++damasks
++dame
++dames
++dammed
++damming
++dammit
++damn
++damnable
++damnably
++damnation
++damned
++damnedest
++damning
++damns
++damp
++damped
++dampen
++dampened
++dampener
++dampeners
++dampening
++dampens
++damper
++dampers
++dampest
++damping
++damply
++dampness
++damps
++dams
++damsel
++damselflies
++damselfly
++damsels
++damson
++damsons
++dance
++danced
++dancer
++dancers
++dances
++dancing
++dandelion
++dandelions
++dander
++dandier
++dandies
++dandiest
++dandified
++dandifies
++dandify
++dandifying
++dandle
++dandled
++dandles
++dandling
++dandruff
++dandy
++dang
++danged
++danger
++dangerous
++dangerously
++dangers
++danging
++dangle
++dangled
++dangler
++danglers
++dangles
++dangling
++dangs
++danish
++danishes
++dank
++danker
++dankest
++dankly
++dankness
++danseuse
++danseuses
++dapper
++dapperer
++dapperest
++dapple
++dappled
++dapples
++dappling
++dare
++dared
++daredevil
++daredevilry
++daredevils
++darer
++darers
++dares
++daresay
++daring
++daringly
++dark
++darken
++darkened
++darkener
++darkeners
++darkening
++darkens
++darker
++darkest
++darkie
++darkies
++darkly
++darkness
++darkroom
++darkrooms
++darling
++darlings
++darn
++darned
++darneder
++darnedest
++darner
++darners
++darning
++darns
++dart
++dartboard
++dartboards
++darted
++darter
++darters
++darting
++darts
++dash
++dashboard
++dashboards
++dashed
++dasher
++dashers
++dashes
++dashiki
++dashikis
++dashing
++dashingly
++dastard
++dastardliness
++dastardly
++dastards
++data
++database
++databases
++datatype
++date
++datebook
++datebooks
++dated
++dateless
++dateline
++datelined
++datelines
++datelining
++dater
++daters
++dates
++dating
++dative
++datives
++datum
++daub
++daubed
++dauber
++daubers
++daubing
++daubs
++daughter
++daughterly
++daughters
++daunt
++daunted
++daunting
++dauntingly
++dauntless
++dauntlessly
++dauntlessness
++daunts
++dauphin
++dauphins
++davenport
++davenports
++davit
++davits
++dawdle
++dawdled
++dawdler
++dawdlers
++dawdles
++dawdling
++dawn
++dawned
++dawning
++dawns
++day
++daybed
++daybeds
++daybreak
++daycare
++daydream
++daydreamed
++daydreamer
++daydreamers
++daydreaming
++daydreams
++daylight
++daylights
++daylong
++days
++daytime
++daze
++dazed
++dazedly
++dazes
++dazing
++dazzle
++dazzled
++dazzler
++dazzlers
++dazzles
++dazzling
++dazzlingly
++db
++dbl
++dc
++dd
++dded
++dding
++dds
++deacon
++deaconess
++deaconesses
++deacons
++deactivate
++deactivated
++deactivates
++deactivating
++deactivation
++dead
++deadbeat
++deadbeats
++deadbolt
++deadbolts
++deaden
++deadened
++deadening
++deadens
++deader
++deadest
++deadhead
++deadheaded
++deadheading
++deadheads
++deadlier
++deadliest
++deadline
++deadlines
++deadliness
++deadlock
++deadlocked
++deadlocking
++deadlocks
++deadly
++deadpan
++deadpanned
++deadpanning
++deadpans
++deadwood
++deaf
++deafen
++deafened
++deafening
++deafeningly
++deafens
++deafer
++deafest
++deafness
++deal
++dealer
++dealers
++dealership
++dealerships
++dealing
++dealings
++deals
++dealt
++dean
++deaneries
++deanery
++deans
++deanship
++dear
++dearer
++dearest
++dearests
++dearies
++dearly
++dearness
++dears
++dearth
++dearths
++deary
++death
++deathbed
++deathbeds
++deathblow
++deathblows
++deathless
++deathlessly
++deathlike
++deathly
++deaths
++deathtrap
++deathtraps
++deathwatch
++deathwatches
++deaves
++deb
++debacle
++debacles
++debar
++debark
++debarkation
++debarked
++debarking
++debarks
++debarment
++debarred
++debarring
++debars
++debase
++debased
++debasement
++debasements
++debases
++debasing
++debatable
++debate
++debated
++debater
++debaters
++debates
++debating
++debauch
++debauched
++debauchee
++debauchees
++debaucheries
++debauchery
++debauches
++debauching
++debenture
++debentures
++debilitate
++debilitated
++debilitates
++debilitating
++debilitation
++debilities
++debility
++debit
++debited
++debiting
++debits
++debonair
++debonairly
++debonairness
++debouch
++debouched
++debouches
++debouching
++debridement
++debrief
++debriefed
++debriefing
++debriefings
++debriefs
++debris
++debs
++debt
++debtor
++debtors
++debts
++debug
++debugged
++debugger
++debuggers
++debugging
++debugs
++debunk
++debunked
++debunking
++debunks
++debut
++debutante
++debutantes
++debuted
++debuting
++debuts
++decade
++decadence
++decadency
++decadent
++decadently
++decadents
++decades
++decaf
++decaff
++decaffeinate
++decaffeinated
++decaffeinates
++decaffeinating
++decaffs
++decafs
++decagon
++decagons
++decal
++decals
++decamp
++decamped
++decamping
++decampment
++decamps
++decant
++decanted
++decanter
++decanters
++decanting
++decants
++decapitate
++decapitated
++decapitates
++decapitating
++decapitation
++decapitations
++decapitator
++decapitators
++decathlete
++decathletes
++decathlon
++decathlons
++decay
++decayed
++decaying
++decays
++decease
++deceased
++deceases
++deceasing
++decedent
++decedents
++deceit
++deceitful
++deceitfully
++deceitfulness
++deceits
++deceive
++deceived
++deceiver
++deceivers
++deceives
++deceiving
++deceivingly
++decelerate
++decelerated
++decelerates
++decelerating
++deceleration
++decelerator
++decelerators
++decencies
++decency
++decennial
++decennials
++decent
++decently
++decentralization
++decentralize
++decentralized
++decentralizes
++decentralizing
++deception
++deceptions
++deceptive
++deceptively
++deceptiveness
++decibel
++decibels
++decidable
++decide
++decided
++decidedly
++decider
++deciders
++decides
++deciding
++deciduous
++deciliter
++deciliters
++decimal
++decimalization
++decimals
++decimate
++decimated
++decimates
++decimating
++decimation
++decimeter
++decimeters
++decipher
++decipherable
++deciphered
++deciphering
++deciphers
++decision
++decisions
++decisive
++decisively
++decisiveness
++deck
++deckchair
++deckchairs
++decked
++deckhand
++deckhands
++decking
++deckle
++deckles
++decks
++declaim
++declaimed
++declaimer
++declaimers
++declaiming
++declaims
++declamation
++declamations
++declamatory
++declarable
++declaration
++declarations
++declarative
++declaratory
++declare
++declared
++declarer
++declarers
++declares
++declaring
++declassification
++declassified
++declassifies
++declassify
++declassifying
++declaw
++declawed
++declawing
++declaws
++declension
++declensions
++declination
++decline
++declined
++decliner
++decliners
++declines
++declining
++declivities
++declivity
++decode
++decoded
++decoder
++decoders
++decodes
++decoding
++decolletage
++decolletages
++decollete
++decolonization
++decolonize
++decolonized
++decolonizes
++decolonizing
++decommission
++decommissioned
++decommissioning
++decommissions
++decompose
++decomposed
++decomposes
++decomposing
++decomposition
++decompress
++decompressed
++decompresses
++decompressing
++decompression
++decongestant
++decongestants
++deconstruct
++deconstructed
++deconstructing
++deconstruction
++deconstructionism
++deconstructionist
++deconstructionists
++deconstructions
++deconstructs
++decontaminate
++decontaminated
++decontaminates
++decontaminating
++decontamination
++decontrol
++decontrolled
++decontrolling
++decontrols
++decor
++decorate
++decorated
++decorates
++decorating
++decoration
++decorations
++decorative
++decoratively
++decorator
++decorators
++decorous
++decorously
++decorousness
++decors
++decorum
++decoupage
++decoupaged
++decoupages
++decoupaging
++decouple
++decoupled
++decouples
++decoupling
++decoy
++decoyed
++decoying
++decoys
++decrease
++decreased
++decreases
++decreasing
++decreasingly
++decree
++decreed
++decreeing
++decrees
++decrement
++decremented
++decrements
++decrepit
++decrepitude
++decrescendo
++decrescendos
++decried
++decries
++decriminalization
++decriminalize
++decriminalized
++decriminalizes
++decriminalizing
++decry
++decrying
++decryption
++dedicate
++dedicated
++dedicates
++dedicating
++dedication
++dedications
++dedicator
++dedicators
++dedicatory
++deduce
++deduced
++deduces
++deducible
++deducing
++deduct
++deducted
++deductible
++deductibles
++deducting
++deduction
++deductions
++deductive
++deductively
++deducts
++deed
++deeded
++deeding
++deeds
++deejay
++deejays
++deem
++deemed
++deeming
++deems
++deep
++deepen
++deepened
++deepening
++deepens
++deeper
++deepest
++deeply
++deepness
++deeps
++deer
++deerskin
++deerstalker
++deerstalkers
++deescalate
++deescalated
++deescalates
++deescalating
++deescalation
++def
++deface
++defaced
++defacement
++defacer
++defacers
++defaces
++defacing
++defalcate
++defalcated
++defalcates
++defalcating
++defalcation
++defalcations
++defamation
++defamatory
++defame
++defamed
++defamer
++defamers
++defames
++defaming
++default
++defaulted
++defaulter
++defaulters
++defaulting
++defaults
++defeat
++defeated
++defeater
++defeaters
++defeating
++defeatism
++defeatist
++defeatists
++defeats
++defecate
++defecated
++defecates
++defecating
++defecation
++defect
++defected
++defecting
++defection
++defections
++defective
++defectively
++defectiveness
++defectives
++defector
++defectors
++defects
++defend
++defendant
++defendants
++defended
++defender
++defenders
++defending
++defends
++defenestration
++defenestrations
++defense
++defensed
++defenseless
++defenselessly
++defenselessness
++defenses
++defensible
++defensibly
++defensing
++defensive
++defensively
++defensiveness
++defer
++deference
++deferential
++deferentially
++deferment
++deferments
++deferral
++deferrals
++deferred
++deferring
++defers
++deffer
++deffest
++defiance
++defiant
++defiantly
++defibrillation
++defibrillator
++defibrillators
++deficiencies
++deficiency
++deficient
++deficit
++deficits
++defied
++defies
++defile
++defiled
++defilement
++defiler
++defilers
++defiles
++defiling
++definable
++define
++defined
++definer
++definers
++defines
++defining
++definite
++definitely
++definiteness
++definition
++definitions
++definitive
++definitively
++deflate
++deflated
++deflates
++deflating
++deflation
++deflationary
++deflect
++deflected
++deflecting
++deflection
++deflections
++deflective
++deflector
++deflectors
++deflects
++deflower
++deflowered
++deflowering
++deflowers
++defog
++defogged
++defogger
++defoggers
++defogging
++defogs
++defoliant
++defoliants
++defoliate
++defoliated
++defoliates
++defoliating
++defoliation
++defoliator
++defoliators
++deforest
++deforestation
++deforested
++deforesting
++deforests
++deform
++deformation
++deformations
++deformed
++deforming
++deformities
++deformity
++deforms
++defraud
++defrauded
++defrauder
++defrauders
++defrauding
++defrauds
++defray
++defrayal
++defrayed
++defraying
++defrays
++defrock
++defrocked
++defrocking
++defrocks
++defrost
++defrosted
++defroster
++defrosters
++defrosting
++defrosts
++deft
++defter
++deftest
++deftly
++deftness
++defunct
++defuse
++defused
++defuses
++defusing
++defy
++defying
++deg
++degas
++degases
++degassed
++degassing
++degeneracy
++degenerate
++degenerated
++degenerates
++degenerating
++degeneration
++degenerative
++degradable
++degradation
++degrade
++degraded
++degrades
++degrading
++degree
++degrees
++dehumanization
++dehumanize
++dehumanized
++dehumanizes
++dehumanizing
++dehumidified
++dehumidifier
++dehumidifiers
++dehumidifies
++dehumidify
++dehumidifying
++dehydrate
++dehydrated
++dehydrates
++dehydrating
++dehydration
++dehydrator
++dehydrators
++dehydrogenase
++dehydrogenate
++dehydrogenated
++dehydrogenates
++dehydrogenating
++deice
++deiced
++deicer
++deicers
++deices
++deicing
++deification
++deified
++deifies
++deify
++deifying
++deign
++deigned
++deigning
++deigns
++deism
++deist
++deistic
++deists
++deities
++deity
++deject
++dejected
++dejectedly
++dejecting
++dejection
++dejects
++delay
++delayed
++delayer
++delayers
++delaying
++delays
++delectable
++delectably
++delectation
++delegate
++delegated
++delegates
++delegating
++delegation
++delegations
++delete
++deleted
++deleterious
++deletes
++deleting
++deletion
++deletions
++deleverage
++deleveraged
++deleverages
++deleveraging
++delft
++delftware
++deli
++deliberate
++deliberated
++deliberately
++deliberateness
++deliberates
++deliberating
++deliberation
++deliberations
++deliberative
++delicacies
++delicacy
++delicate
++delicately
++delicateness
++delicatessen
++delicatessens
++delicious
++deliciously
++deliciousness
++delight
++delighted
++delightedly
++delightful
++delightfully
++delighting
++delights
++deliminator
++delimit
++delimitation
++delimited
++delimiter
++delimiters
++delimiting
++delimits
++delineate
++delineated
++delineates
++delineating
++delineation
++delineations
++delinquencies
++delinquency
++delinquent
++delinquently
++delinquents
++delint
++delinted
++delinting
++deliquesce
++deliquesced
++deliquescent
++deliquesces
++deliquescing
++delirious
++deliriously
++deliriousness
++delirium
++deliriums
++delis
++deliver
++deliverable
++deliverance
++delivered
++deliverer
++deliverers
++deliveries
++delivering
++delivers
++delivery
++deliveryman
++deliverymen
++dell
++dells
++delouse
++deloused
++delouses
++delousing
++delphinium
++delphiniums
++delta
++deltas
++delude
++deluded
++deludes
++deluding
++deluge
++deluged
++deluges
++deluging
++delusion
++delusional
++delusions
++delusive
++delusively
++deluxe
++delve
++delved
++delver
++delvers
++delves
++delving
++demagnetization
++demagnetize
++demagnetized
++demagnetizes
++demagnetizing
++demagogic
++demagogically
++demagogue
++demagoguery
++demagogues
++demagogy
++demand
++demanded
++demanding
++demands
++demarcate
++demarcated
++demarcates
++demarcating
++demarcation
++demarcations
++demean
++demeaned
++demeaning
++demeanor
++demeans
++demented
++dementedly
++dementia
++demerit
++demerits
++demesne
++demesnes
++demigod
++demigoddess
++demigoddesses
++demigods
++demijohn
++demijohns
++demilitarization
++demilitarize
++demilitarized
++demilitarizes
++demilitarizing
++demimondaine
++demimondaines
++demimonde
++demise
++demised
++demises
++demising
++demist
++demisted
++demister
++demisters
++demisting
++demists
++demitasse
++demitasses
++demo
++demob
++demobbed
++demobbing
++demobilization
++demobilize
++demobilized
++demobilizes
++demobilizing
++demobs
++democracies
++democracy
++democrat
++democratic
++democratically
++democratization
++democratize
++democratized
++democratizes
++democratizing
++democrats
++demode
++demodulate
++demodulated
++demodulates
++demodulating
++demodulation
++demoed
++demographer
++demographers
++demographic
++demographically
++demographics
++demography
++demoing
++demolish
++demolished
++demolishes
++demolishing
++demolition
++demolitions
++demon
++demonetization
++demonetize
++demonetized
++demonetizes
++demonetizing
++demoniac
++demoniacal
++demoniacally
++demonic
++demonically
++demonize
++demonized
++demonizes
++demonizing
++demonologies
++demonology
++demons
++demonstrability
++demonstrable
++demonstrably
++demonstrate
++demonstrated
++demonstrates
++demonstrating
++demonstration
++demonstrations
++demonstrative
++demonstratively
++demonstrativeness
++demonstratives
++demonstrator
++demonstrators
++demoralization
++demoralize
++demoralized
++demoralizes
++demoralizing
++demos
++demote
++demoted
++demotes
++demotic
++demoting
++demotion
++demotions
++demotivate
++demotivated
++demotivates
++demotivating
++demount
++demulcent
++demulcents
++demur
++demure
++demurely
++demureness
++demurer
++demurest
++demurral
++demurrals
++demurred
++demurrer
++demurrers
++demurring
++demurs
++demystification
++demystified
++demystifies
++demystify
++demystifying
++den
++denationalization
++denationalize
++denationalized
++denationalizes
++denationalizing
++denaturation
++denature
++denatured
++denatures
++denaturing
++dendrite
++dendrites
++dengue
++deniability
++deniable
++denial
++denials
++denied
++denier
++deniers
++denies
++denigrate
++denigrated
++denigrates
++denigrating
++denigration
++denim
++denims
++denitrification
++denizen
++denizens
++denominate
++denominated
++denominates
++denominating
++denomination
++denominational
++denominations
++denominator
++denominators
++denotation
++denotations
++denotative
++denote
++denoted
++denotes
++denoting
++denouement
++denouements
++denounce
++denounced
++denouncement
++denouncements
++denounces
++denouncing
++dens
++dense
++densely
++denseness
++denser
++densest
++densities
++density
++dent
++dental
++dentally
++dented
++dentifrice
++dentifrices
++dentin
++denting
++dentist
++dentistry
++dentists
++dentition
++dents
++denture
++dentures
++denuclearize
++denuclearized
++denuclearizes
++denuclearizing
++denudation
++denude
++denuded
++denudes
++denuding
++denunciation
++denunciations
++deny
++denying
++deodorant
++deodorants
++deodorization
++deodorize
++deodorized
++deodorizer
++deodorizers
++deodorizes
++deodorizing
++depart
++departed
++departing
++department
++departmental
++departmentalization
++departmentalize
++departmentalized
++departmentalizes
++departmentalizing
++departmentally
++departments
++departs
++departure
++departures
++depend
++dependability
++dependable
++dependably
++depended
++dependence
++dependencies
++dependency
++dependent
++dependently
++dependents
++depending
++depends
++depersonalize
++depersonalized
++depersonalizes
++depersonalizing
++depict
++depicted
++depicting
++depiction
++depictions
++depicts
++depilatories
++depilatory
++deplane
++deplaned
++deplanes
++deplaning
++deplete
++depleted
++depletes
++depleting
++depletion
++deplorable
++deplorably
++deplore
++deplored
++deplores
++deploring
++deploy
++deployed
++deploying
++deployment
++deployments
++deploys
++depolarization
++depolarize
++depolarized
++depolarizes
++depolarizing
++depoliticize
++depoliticized
++depoliticizes
++depoliticizing
++deponent
++deponents
++depopulate
++depopulated
++depopulates
++depopulating
++depopulation
++deport
++deportation
++deportations
++deported
++deportee
++deportees
++deporting
++deportment
++deports
++depose
++deposed
++deposes
++deposing
++deposit
++deposited
++depositing
++deposition
++depositions
++depositor
++depositories
++depositors
++depository
++deposits
++depot
++depots
++deprave
++depraved
++depraves
++depraving
++depravities
++depravity
++deprecate
++deprecated
++deprecates
++deprecating
++deprecatingly
++deprecation
++deprecatory
++depreciate
++depreciated
++depreciates
++depreciating
++depreciation
++depredation
++depredations
++depress
++depressant
++depressants
++depressed
++depresses
++depressing
++depressingly
++depression
++depressions
++depressive
++depressives
++depressor
++depressors
++depressurization
++depressurize
++depressurized
++depressurizes
++depressurizing
++deprivation
++deprivations
++deprive
++deprived
++deprives
++depriving
++deprogram
++deprogrammed
++deprogramming
++deprograms
++dept
++depth
++depths
++deputation
++deputations
++depute
++deputed
++deputes
++deputies
++deputing
++deputize
++deputized
++deputizes
++deputizing
++deputy
++derail
++derailed
++derailing
++derailleur
++derailleurs
++derailment
++derailments
++derails
++derange
++deranged
++derangement
++deranges
++deranging
++derbies
++derby
++deregulate
++deregulated
++deregulates
++deregulating
++deregulation
++derelict
++dereliction
++derelicts
++deride
++derided
++derides
++deriding
++derision
++derisive
++derisively
++derisiveness
++derisory
++derivable
++derivation
++derivations
++derivative
++derivatives
++derive
++derived
++derives
++deriving
++dermal
++dermatitis
++dermatological
++dermatologist
++dermatologists
++dermatology
++dermis
++derogate
++derogated
++derogates
++derogating
++derogation
++derogatorily
++derogatory
++derrick
++derricks
++derriere
++derrieres
++derringer
++derringers
++derv
++dervish
++dervishes
++desalinate
++desalinated
++desalinates
++desalinating
++desalination
++desalinization
++desalinize
++desalinized
++desalinizes
++desalinizing
++desalt
++desalted
++desalting
++desalts
++descale
++descaled
++descales
++descaling
++descant
++descanted
++descanting
++descants
++descend
++descendant
++descendants
++descended
++descender
++descending
++descends
++descent
++descents
++describable
++describe
++described
++describer
++describers
++describes
++describing
++descried
++descries
++description
++descriptions
++descriptive
++descriptively
++descriptiveness
++descriptor
++descriptors
++descry
++descrying
++desecrate
++desecrated
++desecrates
++desecrating
++desecration
++desegregate
++desegregated
++desegregates
++desegregating
++desegregation
++deselect
++deselected
++deselecting
++deselection
++deselects
++desensitization
++desensitize
++desensitized
++desensitizes
++desensitizing
++desert
++deserted
++deserter
++deserters
++desertification
++deserting
++desertion
++desertions
++deserts
++deserve
++deserved
++deservedly
++deserves
++deserving
++desiccant
++desiccants
++desiccate
++desiccated
++desiccates
++desiccating
++desiccation
++desiccator
++desiccators
++desiderata
++desideratum
++design
++designate
++designated
++designates
++designating
++designation
++designations
++designed
++designer
++designers
++designing
++designs
++desirability
++desirable
++desirableness
++desirably
++desire
++desired
++desires
++desiring
++desirous
++desist
++desisted
++desisting
++desists
++desk
++deskill
++deskilled
++deskilling
++deskills
++desks
++desktop
++desktops
++desolate
++desolated
++desolately
++desolateness
++desolates
++desolating
++desolation
++despair
++despaired
++despairing
++despairingly
++despairs
++desperado
++desperadoes
++desperate
++desperately
++desperateness
++desperation
++despicable
++despicably
++despise
++despised
++despises
++despising
++despite
++despoil
++despoiled
++despoiler
++despoilers
++despoiling
++despoilment
++despoils
++despoliation
++despondence
++despondency
++despondent
++despondently
++despot
++despotic
++despotically
++despotism
++despots
++dessert
++desserts
++dessertspoon
++dessertspoonful
++dessertspoonfuls
++dessertspoons
++destabilization
++destabilize
++destabilized
++destabilizes
++destabilizing
++destination
++destinations
++destine
++destined
++destines
++destinies
++destining
++destiny
++destitute
++destitution
++destroy
++destroyed
++destroyer
++destroyers
++destroying
++destroys
++destruct
++destructed
++destructibility
++destructible
++destructing
++destruction
++destructive
++destructively
++destructiveness
++destructs
++desuetude
++desultorily
++desultory
++detach
++detachable
++detached
++detaches
++detaching
++detachment
++detachments
++detail
++detailed
++detailing
++details
++detain
++detained
++detainee
++detainees
++detaining
++detainment
++detains
++detect
++detectable
++detected
++detecting
++detection
++detective
++detectives
++detector
++detectors
++detects
++detente
++detentes
++detention
++detentions
++deter
++detergent
++detergents
++deteriorate
++deteriorated
++deteriorates
++deteriorating
++deterioration
++determent
++determinable
++determinant
++determinants
++determinate
++determination
++determinations
++determine
++determined
++determinedly
++determiner
++determiners
++determines
++determining
++determinism
++deterministic
++deterred
++deterrence
++deterrent
++deterrents
++deterring
++deters
++detest
++detestable
++detestably
++detestation
++detested
++detesting
++detests
++dethrone
++dethroned
++dethronement
++dethrones
++dethroning
++detonate
++detonated
++detonates
++detonating
++detonation
++detonations
++detonator
++detonators
++detour
++detoured
++detouring
++detours
++detox
++detoxed
++detoxes
++detoxification
++detoxified
++detoxifies
++detoxify
++detoxifying
++detoxing
++detract
++detracted
++detracting
++detraction
++detractor
++detractors
++detracts
++detriment
++detrimental
++detrimentally
++detriments
++detritus
++deuce
++deuces
++deuterium
++devaluation
++devaluations
++devalue
++devalued
++devalues
++devaluing
++devastate
++devastated
++devastates
++devastating
++devastatingly
++devastation
++devastator
++devastators
++develop
++developed
++developer
++developers
++developing
++development
++developmental
++developmentally
++developments
++develops
++deviance
++deviancy
++deviant
++deviants
++deviate
++deviated
++deviates
++deviating
++deviation
++deviations
++device
++devices
++devil
++deviled
++deviling
++devilish
++devilishly
++devilishness
++devilment
++devilries
++devilry
++devils
++deviltries
++deviltry
++devious
++deviously
++deviousness
++devise
++devised
++devises
++devising
++devitalize
++devitalized
++devitalizes
++devitalizing
++devoid
++devolution
++devolve
++devolved
++devolves
++devolving
++devote
++devoted
++devotedly
++devotee
++devotees
++devotes
++devoting
++devotion
++devotional
++devotionals
++devotions
++devour
++devoured
++devouring
++devours
++devout
++devouter
++devoutest
++devoutly
++devoutness
++dew
++dewberries
++dewberry
++dewclaw
++dewclaws
++dewdrop
++dewdrops
++dewier
++dewiest
++dewiness
++dewlap
++dewlaps
++dewy
++dexterity
++dexterous
++dexterously
++dexterousness
++dextrose
++dharma
++dhoti
++dhotis
++dhow
++dhows
++diabetes
++diabetic
++diabetics
++diabolic
++diabolical
++diabolically
++diacritic
++diacritical
++diacritics
++diadem
++diadems
++diaereses
++diaeresis
++diagnose
++diagnosed
++diagnoses
++diagnosing
++diagnosis
++diagnostic
++diagnostically
++diagnostician
++diagnosticians
++diagnostics
++diagonal
++diagonally
++diagonals
++diagram
++diagrammatic
++diagrammatically
++diagrammed
++diagramming
++diagrams
++dial
++dialect
++dialectal
++dialectic
++dialectical
++dialectics
++dialects
++dialed
++dialing
++dialings
++dialog
++dialogue
++dialogues
++dials
++dialyses
++dialysis
++dialyzes
++diam
++diamante
++diameter
++diameters
++diametric
++diametrical
++diametrically
++diamond
++diamondback
++diamondbacks
++diamonds
++diapason
++diapasons
++diaper
++diapered
++diapering
++diapers
++diaphanous
++diaphragm
++diaphragmatic
++diaphragms
++diaries
++diarist
++diarists
++diarrhea
++diary
++diaspora
++diasporas
++diastase
++diastole
++diastolic
++diathermy
++diatom
++diatomic
++diatoms
++diatonic
++diatribe
++diatribes
++dibble
++dibbled
++dibbles
++dibbling
++dibs
++dice
++diced
++dices
++dicey
++dichotomies
++dichotomous
++dichotomy
++dicier
++diciest
++dicing
++dick
++dickens
++dicker
++dickered
++dickering
++dickers
++dickey
++dickeys
++dickhead
++dickheads
++dicks
++dickybird
++dickybirds
++dicotyledon
++dicotyledonous
++dicotyledons
++dict
++dicta
++dictate
++dictated
++dictates
++dictating
++dictation
++dictations
++dictator
++dictatorial
++dictatorially
++dictators
++dictatorship
++dictatorships
++diction
++dictionaries
++dictionary
++dictum
++did
++didactic
++didactically
++diddle
++diddled
++diddler
++diddlers
++diddles
++diddling
++diddly
++diddlysquat
++diddums
++didgeridoo
++didgeridoos
++dido
++didoes
++didst
++die
++died
++dielectric
++dielectrics
++diereses
++dieresis
++dies
++diesel
++dieseled
++dieseling
++diesels
++diet
++dietaries
++dietary
++dieted
++dieter
++dieters
++dietetic
++dietetics
++dieting
++dietitian
++dietitians
++diets
++diff
++diffed
++differ
++differed
++difference
++differences
++different
++differential
++differentials
++differentiate
++differentiated
++differentiates
++differentiating
++differentiation
++differently
++differing
++differs
++difficult
++difficulties
++difficultly
++difficulty
++diffidence
++diffident
++diffidently
++diffing
++diffract
++diffracted
++diffracting
++diffraction
++diffracts
++diffs
++diffuse
++diffused
++diffusely
++diffuseness
++diffuses
++diffusing
++diffusion
++diffusive
++diffusivity
++dig
++digerati
++digest
++digested
++digestibility
++digestible
++digesting
++digestion
++digestions
++digestive
++digestives
++digests
++digger
++diggers
++digging
++diggings
++digicam
++digicams
++digit
++digital
++digitalis
++digitally
++digitization
++digitize
++digitized
++digitizes
++digitizing
++digits
++dignified
++dignifies
++dignify
++dignifying
++dignitaries
++dignitary
++dignities
++dignity
++digraph
++digraphs
++digress
++digressed
++digresses
++digressing
++digression
++digressions
++digressive
++digs
++dike
++diked
++dikes
++diking
++diktat
++diktats
++dilapidated
++dilapidation
++dilatation
++dilate
++dilated
++dilates
++dilating
++dilation
++dilator
++dilators
++dilatory
++dildo
++dildos
++dilemma
++dilemmas
++dilettante
++dilettantes
++dilettantish
++dilettantism
++diligence
++diligent
++diligently
++dill
++dillies
++dills
++dilly
++dillydallied
++dillydallies
++dillydally
++dillydallying
++diluent
++dilute
++diluted
++dilutes
++diluting
++dilution
++dilutions
++dim
++dime
++dimension
++dimensional
++dimensionless
++dimensions
++dimer
++dimes
++diminish
++diminished
++diminishes
++diminishing
++diminuendo
++diminuendos
++diminution
++diminutions
++diminutive
++diminutives
++dimity
++dimly
++dimmed
++dimmer
++dimmers
++dimmest
++dimming
++dimness
++dimple
++dimpled
++dimples
++dimpling
++dimply
++dims
++dimwit
++dimwits
++dimwitted
++din
++dinar
++dinars
++dine
++dined
++diner
++diners
++dines
++dinette
++dinettes
++ding
++dingbat
++dingbats
++dinged
++dinghies
++dinghy
++dingier
++dingiest
++dingily
++dinginess
++dinging
++dingle
++dingles
++dingo
++dingoes
++dings
++dingus
++dinguses
++dingy
++dining
++dink
++dinker
++dinkier
++dinkies
++dinkiest
++dinky
++dinned
++dinner
++dinnered
++dinnering
++dinners
++dinnertime
++dinnerware
++dinning
++dinosaur
++dinosaurs
++dins
++dint
++diocesan
++diocesans
++diocese
++dioceses
++diode
++diodes
++diorama
++dioramas
++dioxide
++dioxides
++dioxin
++dioxins
++dip
++diphtheria
++diphthong
++diphthongs
++diploid
++diploids
++diploma
++diplomacy
++diplomas
++diplomat
++diplomata
++diplomatic
++diplomatically
++diplomatist
++diplomatists
++diplomats
++diplopia
++dipole
++dipoles
++dipped
++dipper
++dippers
++dippier
++dippiest
++dipping
++dippy
++dips
++dipso
++dipsomania
++dipsomaniac
++dipsomaniacs
++dipsos
++dipstick
++dipsticks
++dipterous
++diptych
++diptychs
++dire
++direct
++directed
++directer
++directest
++directing
++direction
++directional
++directionless
++directions
++directive
++directives
++directly
++directness
++director
++directorate
++directorates
++directorial
++directories
++directors
++directorship
++directorships
++directory
++directs
++direful
++direly
++direr
++direst
++dirge
++dirges
++dirigible
++dirigibles
++dirk
++dirks
++dirndl
++dirndls
++dirt
++dirtball
++dirtballs
++dirtied
++dirtier
++dirties
++dirtiest
++dirtily
++dirtiness
++dirty
++dirtying
++dis
++disabilities
++disability
++disable
++disabled
++disablement
++disables
++disabling
++disabuse
++disabused
++disabuses
++disabusing
++disadvantage
++disadvantaged
++disadvantageous
++disadvantageously
++disadvantages
++disadvantaging
++disaffect
++disaffected
++disaffecting
++disaffection
++disaffects
++disaffiliate
++disaffiliated
++disaffiliates
++disaffiliating
++disaffiliation
++disafforest
++disafforested
++disafforesting
++disafforests
++disagree
++disagreeable
++disagreeableness
++disagreeably
++disagreed
++disagreeing
++disagreement
++disagreements
++disagrees
++disallow
++disallowed
++disallowing
++disallows
++disambiguate
++disambiguation
++disappear
++disappearance
++disappearances
++disappeared
++disappearing
++disappears
++disappoint
++disappointed
++disappointing
++disappointingly
++disappointment
++disappointments
++disappoints
++disapprobation
++disapproval
++disapprove
++disapproved
++disapproves
++disapproving
++disapprovingly
++disarm
++disarmament
++disarmed
++disarming
++disarmingly
++disarms
++disarrange
++disarranged
++disarrangement
++disarranges
++disarranging
++disarray
++disarrayed
++disarraying
++disarrays
++disassemble
++disassembled
++disassembles
++disassembling
++disassembly
++disassociate
++disassociated
++disassociates
++disassociating
++disassociation
++disaster
++disasters
++disastrous
++disastrously
++disavow
++disavowal
++disavowals
++disavowed
++disavowing
++disavows
++disband
++disbanded
++disbanding
++disbandment
++disbands
++disbar
++disbarment
++disbarred
++disbarring
++disbars
++disbelief
++disbelieve
++disbelieved
++disbeliever
++disbelievers
++disbelieves
++disbelieving
++disbelievingly
++disbursal
++disburse
++disbursed
++disbursement
++disbursements
++disburses
++disbursing
++disc
++discard
++discarded
++discarding
++discards
++discern
++discerned
++discernible
++discernibly
++discerning
++discerningly
++discernment
++discerns
++discharge
++discharged
++discharges
++discharging
++disciple
++disciples
++discipleship
++disciplinarian
++disciplinarians
++disciplinary
++discipline
++disciplined
++disciplines
++disciplining
++disclaim
++disclaimed
++disclaimer
++disclaimers
++disclaiming
++disclaims
++disclose
++disclosed
++discloses
++disclosing
++disclosure
++disclosures
++disco
++discoed
++discographies
++discography
++discoing
++discolor
++discoloration
++discolorations
++discolored
++discoloring
++discolors
++discombobulate
++discombobulated
++discombobulates
++discombobulating
++discombobulation
++discomfit
++discomfited
++discomfiting
++discomfits
++discomfiture
++discomfort
++discomforted
++discomforting
++discomforts
++discommode
++discommoded
++discommodes
++discommoding
++discompose
++discomposed
++discomposes
++discomposing
++discomposure
++disconcert
++disconcerted
++disconcerting
++disconcertingly
++disconcerts
++disconnect
++disconnected
++disconnectedly
++disconnectedness
++disconnecting
++disconnection
++disconnections
++disconnects
++disconsolate
++disconsolately
++discontent
++discontented
++discontentedly
++discontenting
++discontentment
++discontents
++discontinuance
++discontinuances
++discontinuation
++discontinuations
++discontinue
++discontinued
++discontinues
++discontinuing
++discontinuities
++discontinuity
++discontinuous
++discontinuously
++discord
++discordance
++discordant
++discordantly
++discorded
++discording
++discords
++discos
++discotheque
++discotheques
++discount
++discounted
++discountenance
++discountenanced
++discountenances
++discountenancing
++discounter
++discounters
++discounting
++discounts
++discourage
++discouraged
++discouragement
++discouragements
++discourages
++discouraging
++discouragingly
++discourse
++discoursed
++discourses
++discoursing
++discourteous
++discourteously
++discourtesies
++discourtesy
++discover
++discovered
++discoverer
++discoverers
++discoveries
++discovering
++discovers
++discovery
++discredit
++discreditable
++discreditably
++discredited
++discrediting
++discredits
++discreet
++discreeter
++discreetest
++discreetly
++discreetness
++discrepancies
++discrepancy
++discrepant
++discrete
++discretely
++discreteness
++discretion
++discretionary
++discriminant
++discriminate
++discriminated
++discriminates
++discriminating
++discrimination
++discriminator
++discriminators
++discriminatory
++discs
++discursive
++discursively
++discursiveness
++discus
++discuses
++discuss
++discussant
++discussants
++discussed
++discusses
++discussing
++discussion
++discussions
++disdain
++disdained
++disdainful
++disdainfully
++disdaining
++disdains
++disease
++diseased
++diseases
++disembark
++disembarkation
++disembarked
++disembarking
++disembarks
++disembodied
++disembodies
++disembodiment
++disembody
++disembodying
++disembowel
++disemboweled
++disemboweling
++disembowelment
++disembowels
++disenchant
++disenchanted
++disenchanting
++disenchantment
++disenchants
++disencumber
++disencumbered
++disencumbering
++disencumbers
++disenfranchise
++disenfranchised
++disenfranchisement
++disenfranchises
++disenfranchising
++disengage
++disengaged
++disengagement
++disengagements
++disengages
++disengaging
++disentangle
++disentangled
++disentanglement
++disentangles
++disentangling
++disequilibrium
++disestablish
++disestablished
++disestablishes
++disestablishing
++disestablishment
++disesteem
++disesteemed
++disesteeming
++disesteems
++disfavor
++disfavored
++disfavoring
++disfavors
++disfigure
++disfigured
++disfigurement
++disfigurements
++disfigures
++disfiguring
++disfranchise
++disfranchised
++disfranchisement
++disfranchises
++disfranchising
++disgorge
++disgorged
++disgorgement
++disgorges
++disgorging
++disgrace
++disgraced
++disgraceful
++disgracefully
++disgracefulness
++disgraces
++disgracing
++disgruntle
++disgruntled
++disgruntlement
++disgruntles
++disgruntling
++disguise
++disguised
++disguises
++disguising
++disgust
++disgusted
++disgustedly
++disgusting
++disgustingly
++disgusts
++dish
++dishabille
++disharmonious
++disharmony
++dishcloth
++dishcloths
++dishearten
++disheartened
++disheartening
++dishearteningly
++disheartens
++dished
++dishes
++dishevel
++disheveled
++disheveling
++dishevelment
++dishevels
++dishing
++dishonest
++dishonestly
++dishonesty
++dishonor
++dishonorable
++dishonorably
++dishonored
++dishonoring
++dishonors
++dishpan
++dishpans
++dishrag
++dishrags
++dishtowel
++dishtowels
++dishware
++dishwasher
++dishwashers
++dishwater
++dishy
++disillusion
++disillusioned
++disillusioning
++disillusionment
++disillusions
++disincentive
++disincentives
++disinclination
++disincline
++disinclined
++disinclines
++disinclining
++disinfect
++disinfectant
++disinfectants
++disinfected
++disinfecting
++disinfection
++disinfects
++disinflation
++disinformation
++disingenuous
++disingenuously
++disinherit
++disinheritance
++disinherited
++disinheriting
++disinherits
++disintegrate
++disintegrated
++disintegrates
++disintegrating
++disintegration
++disinter
++disinterest
++disinterested
++disinterestedly
++disinterestedness
++disinterests
++disinterment
++disinterred
++disinterring
++disinters
++disinvestment
++disjoint
++disjointed
++disjointedly
++disjointedness
++disjointing
++disjoints
++disjunctive
++disjuncture
++disk
++diskette
++diskettes
++disks
++dislike
++disliked
++dislikes
++disliking
++dislocate
++dislocated
++dislocates
++dislocating
++dislocation
++dislocations
++dislodge
++dislodged
++dislodges
++dislodging
++disloyal
++disloyally
++disloyalty
++dismal
++dismally
++dismantle
++dismantled
++dismantlement
++dismantles
++dismantling
++dismay
++dismayed
++dismaying
++dismays
++dismember
++dismembered
++dismembering
++dismemberment
++dismembers
++dismiss
++dismissal
++dismissals
++dismissed
++dismisses
++dismissing
++dismissive
++dismissively
++dismount
++dismounted
++dismounting
++dismounts
++disobedience
++disobedient
++disobediently
++disobey
++disobeyed
++disobeying
++disobeys
++disoblige
++disobliged
++disobliges
++disobliging
++disorder
++disordered
++disordering
++disorderliness
++disorderly
++disorders
++disorganization
++disorganize
++disorganized
++disorganizes
++disorganizing
++disorient
++disorientate
++disorientated
++disorientates
++disorientating
++disorientation
++disoriented
++disorienting
++disorients
++disown
++disowned
++disowning
++disowns
++disparage
++disparaged
++disparagement
++disparages
++disparaging
++disparagingly
++disparate
++disparately
++disparities
++disparity
++dispassion
++dispassionate
++dispassionately
++dispatch
++dispatched
++dispatcher
++dispatchers
++dispatches
++dispatching
++dispel
++dispelled
++dispelling
++dispels
++dispensable
++dispensaries
++dispensary
++dispensation
++dispensations
++dispense
++dispensed
++dispenser
++dispensers
++dispenses
++dispensing
++dispersal
++disperse
++dispersed
++disperses
++dispersing
++dispersion
++dispirit
++dispirited
++dispiriting
++dispirits
++displace
++displaced
++displacement
++displacements
++displaces
++displacing
++display
++displayable
++displayed
++displaying
++displays
++displease
++displeased
++displeases
++displeasing
++displeasure
++disport
++disported
++disporting
++disports
++disposable
++disposables
++disposal
++disposals
++dispose
++disposed
++disposer
++disposers
++disposes
++disposing
++disposition
++dispositions
++dispossess
++dispossessed
++dispossesses
++dispossessing
++dispossession
++dispraise
++dispraised
++dispraises
++dispraising
++disproof
++disproofs
++disproportion
++disproportional
++disproportionate
++disproportionately
++disproportions
++disprovable
++disprove
++disproved
++disproves
++disproving
++disputable
++disputably
++disputant
++disputants
++disputation
++disputations
++disputatious
++disputatiously
++dispute
++disputed
++disputer
++disputers
++disputes
++disputing
++disqualification
++disqualifications
++disqualified
++disqualifies
++disqualify
++disqualifying
++disquiet
++disquieted
++disquieting
++disquiets
++disquietude
++disquisition
++disquisitions
++disregard
++disregarded
++disregardful
++disregarding
++disregards
++disrepair
++disreputable
++disreputably
++disrepute
++disrespect
++disrespected
++disrespectful
++disrespectfully
++disrespecting
++disrespects
++disrobe
++disrobed
++disrobes
++disrobing
++disrupt
++disrupted
++disrupting
++disruption
++disruptions
++disruptive
++disruptively
++disrupts
++dissatisfaction
++dissatisfied
++dissatisfies
++dissatisfy
++dissatisfying
++dissect
++dissected
++dissecting
++dissection
++dissections
++dissector
++dissectors
++dissects
++dissed
++dissemblance
++dissemble
++dissembled
++dissembler
++dissemblers
++dissembles
++dissembling
++disseminate
++disseminated
++disseminates
++disseminating
++dissemination
++dissension
++dissensions
++dissent
++dissented
++dissenter
++dissenters
++dissenting
++dissents
++dissertation
++dissertations
++disservice
++disservices
++dissever
++dissevered
++dissevering
++dissevers
++dissidence
++dissident
++dissidents
++dissimilar
++dissimilarities
++dissimilarity
++dissimilitude
++dissimilitudes
++dissimulate
++dissimulated
++dissimulates
++dissimulating
++dissimulation
++dissimulator
++dissimulators
++dissing
++dissipate
++dissipated
++dissipates
++dissipating
++dissipation
++dissociate
++dissociated
++dissociates
++dissociating
++dissociation
++dissoluble
++dissolute
++dissolutely
++dissoluteness
++dissolution
++dissolve
++dissolved
++dissolves
++dissolving
++dissonance
++dissonances
++dissonant
++dissuade
++dissuaded
++dissuades
++dissuading
++dissuasion
++dissuasive
++dist
++distaff
++distaffs
++distal
++distally
++distance
++distanced
++distances
++distancing
++distant
++distantly
++distaste
++distasteful
++distastefully
++distastefulness
++distastes
++distemper
++distend
++distended
++distending
++distends
++distension
++distensions
++distention
++distentions
++distill
++distillate
++distillates
++distillation
++distillations
++distilled
++distiller
++distilleries
++distillers
++distillery
++distilling
++distills
++distinct
++distincter
++distinctest
++distinction
++distinctions
++distinctive
++distinctively
++distinctiveness
++distinctly
++distinctness
++distinguish
++distinguishable
++distinguished
++distinguishes
++distinguishing
++distort
++distorted
++distorter
++distorting
++distortion
++distortions
++distorts
++distract
++distracted
++distractedly
++distracting
++distraction
++distractions
++distracts
++distrait
++distraught
++distress
++distressed
++distresses
++distressful
++distressing
++distressingly
++distribute
++distributed
++distributes
++distributing
++distribution
++distributional
++distributions
++distributive
++distributively
++distributor
++distributors
++distributorship
++distributorships
++district
++districts
++distrust
++distrusted
++distrustful
++distrustfully
++distrusting
++distrusts
++disturb
++disturbance
++disturbances
++disturbed
++disturber
++disturbers
++disturbing
++disturbingly
++disturbs
++disunion
++disunite
++disunited
++disunites
++disuniting
++disunity
++disuse
++disused
++disuses
++disusing
++disyllabic
++ditch
++ditched
++ditches
++ditching
++dither
++dithered
++ditherer
++ditherers
++dithering
++dithers
++ditransitive
++ditsy
++ditties
++ditto
++dittoed
++dittoing
++dittos
++ditty
++ditz
++ditzes
++diuretic
++diuretics
++diurnal
++diurnally
++div
++diva
++divalent
++divan
++divans
++divas
++dive
++dived
++diver
++diverge
++diverged
++divergence
++divergences
++divergent
++diverges
++diverging
++divers
++diverse
++diversely
++diverseness
++diversification
++diversified
++diversifies
++diversify
++diversifying
++diversion
++diversionary
++diversions
++diversities
++diversity
++divert
++diverted
++diverticulitis
++diverting
++diverts
++dives
++divest
++divested
++divesting
++divestiture
++divestitures
++divestment
++divests
++dividable
++divide
++divided
++dividend
++dividends
++divider
++dividers
++divides
++dividing
++divination
++divine
++divined
++divinely
++diviner
++diviners
++divines
++divinest
++diving
++divining
++divinities
++divinity
++divisibility
++divisible
++division
++divisional
++divisions
++divisive
++divisively
++divisiveness
++divisor
++divisors
++divorce
++divorced
++divorcee
++divorcees
++divorcement
++divorcements
++divorces
++divorcing
++divot
++divots
++divulge
++divulged
++divulges
++divulging
++divvied
++divvies
++divvy
++divvying
++dixieland
++dizzied
++dizzier
++dizzies
++dizziest
++dizzily
++dizziness
++dizzy
++dizzying
++djellaba
++djellabas
++do
++doable
++dob
++dobbed
++dobbin
++dobbing
++dobbins
++doberman
++dobermans
++dobro
++dobs
++doc
++docent
++docents
++docile
++docilely
++docility
++dock
++docked
++docker
++dockers
++docket
++docketed
++docketing
++dockets
++docking
++dockland
++docklands
++docks
++dockside
++dockworker
++dockworkers
++dockyard
++dockyards
++docs
++doctor
++doctoral
++doctorate
++doctorates
++doctored
++doctoring
++doctors
++doctrinaire
++doctrinaires
++doctrinal
++doctrine
++doctrines
++docudrama
++docudramas
++document
++documentaries
++documentary
++documentation
++documentations
++documented
++documenting
++documents
++dodder
++doddered
++doddering
++dodders
++doddery
++doddle
++dodge
++dodged
++dodgem
++dodgems
++dodger
++dodgers
++dodges
++dodgier
++dodgiest
++dodging
++dodgy
++dodo
++dodos
++doe
++doer
++doers
++does
++doeskin
++doeskins
++doff
++doffed
++doffing
++doffs
++dog
++dogcart
++dogcarts
++dogcatcher
++dogcatchers
++doge
++dogeared
++doges
++dogfight
++dogfights
++dogfish
++dogfishes
++dogged
++doggedly
++doggedness
++doggerel
++doggier
++doggies
++doggiest
++dogging
++doggone
++doggoner
++doggones
++doggonest
++doggoning
++doggy
++doghouse
++doghouses
++dogie
++dogies
++dogleg
++doglegged
++doglegging
++doglegs
++doglike
++dogma
++dogmas
++dogmatic
++dogmatically
++dogmatism
++dogmatist
++dogmatists
++dognapper
++dogs
++dogsbodies
++dogsbody
++dogsled
++dogsleds
++dogtrot
++dogtrots
++dogtrotted
++dogtrotting
++dogwood
++dogwoods
++doilies
++doily
++doing
++doings
++doldrums
++dole
++doled
++doleful
++dolefully
++dolefulness
++doles
++doling
++doll
++dollar
++dollars
++dolled
++dollhouse
++dollhouses
++dollies
++dolling
++dollop
++dolloped
++dolloping
++dollops
++dolls
++dolly
++dolmen
++dolmens
++dolomite
++dolor
++dolorous
++dolorously
++dolphin
++dolphins
++dolt
++doltish
++doltishly
++doltishness
++dolts
++domain
++domains
++dome
++domed
++domes
++domestic
++domestically
++domesticate
++domesticated
++domesticates
++domesticating
++domestication
++domesticity
++domestics
++domicile
++domiciled
++domiciles
++domiciliary
++domiciling
++dominance
++dominant
++dominantly
++dominants
++dominate
++dominated
++dominates
++dominating
++domination
++dominatrices
++dominatrix
++domineer
++domineered
++domineering
++domineeringly
++domineers
++doming
++dominion
++dominions
++domino
++dominoes
++don
++dona
++donas
++donate
++donated
++donates
++donating
++donation
++donations
++done
++dong
++donged
++donging
++dongle
++dongles
++dongs
++donkey
++donkeys
++donned
++donning
++donnish
++donnybrook
++donnybrooks
++donor
++donors
++dons
++donuts
++doodad
++doodads
++doodah
++doodahs
++doodle
++doodlebug
++doodlebugs
++doodled
++doodler
++doodlers
++doodles
++doodling
++doohickey
++doohickeys
++doolally
++doom
++doomed
++dooming
++dooms
++doomsayer
++doomsayers
++doomsday
++doomster
++doomsters
++door
++doorbell
++doorbells
++doorjamb
++doorjambs
++doorkeeper
++doorkeepers
++doorknob
++doorknobs
++doorknocker
++doorknockers
++doorman
++doormat
++doormats
++doormen
++doorplate
++doorplates
++doorpost
++doorposts
++doors
++doorstep
++doorstepped
++doorstepping
++doorsteps
++doorstop
++doorstops
++doorway
++doorways
++dooryard
++dooryards
++dopa
++dopamine
++dope
++doped
++doper
++dopers
++dopes
++dopey
++dopier
++dopiest
++dopiness
++doping
++doppelganger
++doppelgangers
++dories
++dork
++dorkier
++dorkiest
++dorks
++dorky
++dorm
++dormancy
++dormant
++dormer
++dormers
++dormice
++dormitories
++dormitory
++dormouse
++dorms
++dorsal
++dorsally
++dory
++dos
++dosage
++dosages
++dose
++dosed
++doses
++dosh
++dosimeter
++dosimeters
++dosing
++doss
++dossed
++dosser
++dossers
++dosses
++dosshouse
++dosshouses
++dossier
++dossiers
++dossing
++dost
++dot
++dotage
++dotard
++dotards
++dotcom
++dotcoms
++dote
++doted
++doter
++doters
++dotes
++doth
++doting
++dotingly
++dots
++dotted
++dottier
++dottiest
++dotting
++dotty
++double
++doubled
++doubleheader
++doubleheaders
++doubles
++doublespeak
++doublet
++doublets
++doubling
++doubloon
++doubloons
++doubly
++doubt
++doubted
++doubter
++doubters
++doubtful
++doubtfully
++doubtfulness
++doubting
++doubtingly
++doubtless
++doubtlessly
++doubts
++douche
++douched
++douches
++douching
++dough
++doughier
++doughiest
++doughnut
++doughnuts
++doughtier
++doughtiest
++doughty
++doughy
++dour
++dourer
++dourest
++dourly
++dourness
++douse
++doused
++douses
++dousing
++dove
++dovecot
++dovecote
++dovecotes
++dovecots
++doves
++dovetail
++dovetailed
++dovetailing
++dovetails
++dovish
++dowager
++dowagers
++dowdier
++dowdies
++dowdiest
++dowdily
++dowdiness
++dowdy
++dowel
++doweled
++doweling
++dowels
++dower
++dowered
++dowering
++dowers
++down
++downbeat
++downbeats
++downcast
++downdraft
++downdrafts
++downed
++downer
++downers
++downfall
++downfallen
++downfalls
++downfield
++downgrade
++downgraded
++downgrades
++downgrading
++downhearted
++downheartedly
++downheartedness
++downhill
++downhills
++downier
++downiest
++downing
++download
++downloadable
++downloaded
++downloading
++downloads
++downmarket
++downplay
++downplayed
++downplaying
++downplays
++downpour
++downpours
++downrange
++downright
++downriver
++downs
++downscale
++downshift
++downshifted
++downshifting
++downshifts
++downside
++downsides
++downsize
++downsized
++downsizes
++downsizing
++downspout
++downspouts
++downstage
++downstairs
++downstate
++downstream
++downswing
++downswings
++downtime
++downtown
++downtrend
++downtrends
++downtrodden
++downturn
++downturns
++downward
++downwards
++downwind
++downy
++dowries
++dowry
++dowse
++dowsed
++dowser
++dowsers
++dowses
++dowsing
++doxologies
++doxology
++doyen
++doyenne
++doyennes
++doyens
++doz
++doze
++dozed
++dozen
++dozens
++dozenth
++dozes
++dozier
++doziest
++dozily
++doziness
++dozing
++dozy
++dpi
++dpt
++drab
++drabber
++drabbest
++drably
++drabness
++drabs
++drachma
++drachmas
++draconian
++draft
++drafted
++draftee
++draftees
++drafter
++drafters
++draftier
++draftiest
++draftily
++draftiness
++drafting
++drafts
++draftsman
++draftsmanship
++draftsmen
++draftswoman
++draftswomen
++drafty
++drag
++dragged
++draggier
++draggiest
++dragging
++draggy
++dragnet
++dragnets
++dragon
++dragonflies
++dragonfly
++dragons
++dragoon
++dragooned
++dragooning
++dragoons
++drags
++dragster
++dragsters
++drain
++drainage
++drainboard
++drainboards
++drained
++drainer
++drainers
++draining
++drainpipe
++drainpipes
++drains
++drake
++drakes
++dram
++drama
++dramas
++dramatic
++dramatically
++dramatics
++dramatist
++dramatists
++dramatization
++dramatizations
++dramatize
++dramatized
++dramatizes
++dramatizing
++drams
++drank
++drape
++draped
++draper
++draperies
++drapers
++drapery
++drapes
++draping
++drastic
++drastically
++drat
++dratted
++draughtboard
++draughtboards
++draw
++drawback
++drawbacks
++drawbridge
++drawbridges
++drawer
++drawers
++drawing
++drawings
++drawl
++drawled
++drawling
++drawls
++drawn
++draws
++drawstring
++drawstrings
++dray
++drays
++dread
++dreaded
++dreadful
++dreadfully
++dreadfulness
++dreading
++dreadlocks
++dreadnought
++dreadnoughts
++dreads
++dream
++dreamboat
++dreamboats
++dreamed
++dreamer
++dreamers
++dreamier
++dreamiest
++dreamily
++dreaminess
++dreaming
++dreamland
++dreamless
++dreamlike
++dreams
++dreamworld
++dreamworlds
++dreamy
++drear
++drearier
++dreariest
++drearily
++dreariness
++dreary
++dredge
++dredged
++dredger
++dredgers
++dredges
++dredging
++dregs
++drench
++drenched
++drenches
++drenching
++dress
++dressage
++dressed
++dresser
++dressers
++dresses
++dressier
++dressiest
++dressiness
++dressing
++dressings
++dressmaker
++dressmakers
++dressmaking
++dressy
++drew
++dribble
++dribbled
++dribbler
++dribblers
++dribbles
++dribbling
++driblet
++driblets
++dried
++drier
++driers
++dries
++driest
++drift
++drifted
++drifter
++drifters
++drifting
++driftnet
++driftnets
++drifts
++driftwood
++drill
++drilled
++driller
++drillers
++drilling
++drillmaster
++drillmasters
++drills
++drink
++drinkable
++drinker
++drinkers
++drinking
++drinkings
++drinks
++drip
++dripped
++drippier
++drippiest
++dripping
++drippings
++drippy
++drips
++drive
++drivel
++driveled
++driveler
++drivelers
++driveling
++drivels
++driven
++driver
++drivers
++drives
++driveshaft
++driveshafts
++driveway
++driveways
++driving
++drivings
++drizzle
++drizzled
++drizzles
++drizzling
++drizzly
++drogue
++drogues
++droid
++droids
++droll
++droller
++drolleries
++drollery
++drollest
++drollness
++drolly
++dromedaries
++dromedary
++drone
++droned
++drones
++droning
++drool
++drooled
++drooling
++drools
++droop
++drooped
++droopier
++droopiest
++droopiness
++drooping
++droops
++droopy
++drop
++dropkick
++dropkicks
++droplet
++droplets
++dropout
++dropouts
++dropped
++dropper
++droppers
++dropping
++droppings
++drops
++dropsical
++dropsy
++dross
++drought
++droughts
++drove
++drover
++drovers
++droves
++drown
++drowned
++drowning
++drownings
++drowns
++drowse
++drowsed
++drowses
++drowsier
++drowsiest
++drowsily
++drowsiness
++drowsing
++drowsy
++drub
++drubbed
++drubber
++drubbers
++drubbing
++drubbings
++drubs
++drudge
++drudged
++drudgery
++drudges
++drudging
++drug
++drugged
++druggie
++druggies
++drugging
++druggist
++druggists
++druggy
++drugs
++drugstore
++drugstores
++druid
++druidism
++druids
++drum
++drumbeat
++drumbeats
++drumlin
++drumlins
++drummed
++drummer
++drummers
++drumming
++drums
++drumstick
++drumsticks
++drunk
++drunkard
++drunkards
++drunken
++drunkenly
++drunkenness
++drunker
++drunkest
++drunks
++drupe
++drupes
++druthers
++dry
++dryad
++dryads
++dryer
++dryers
++drying
++dryly
++dryness
++drys
++drywall
++dual
++dualism
++duality
++dub
++dubbed
++dubber
++dubbers
++dubbin
++dubbing
++dubiety
++dubious
++dubiously
++dubiousness
++dubs
++ducal
++ducat
++ducats
++duchess
++duchesses
++duchies
++duchy
++duck
++duckbill
++duckbills
++duckboards
++ducked
++duckier
++duckies
++duckiest
++ducking
++duckling
++ducklings
++duckpins
++ducks
++duckweed
++ducky
++duct
++ductile
++ductility
++ducting
++ductless
++ducts
++dud
++dude
++duded
++dudes
++dudgeon
++duding
++duds
++due
++duel
++dueled
++dueler
++duelers
++dueling
++duelings
++duelist
++duelists
++duels
++duenna
++duennas
++dues
++duet
++duets
++duff
++duffed
++duffer
++duffers
++duffing
++duffs
++dug
++dugout
++dugouts
++duh
++duke
++dukedom
++dukedoms
++dukes
++dulcet
++dulcimer
++dulcimers
++dull
++dullard
++dullards
++dulled
++duller
++dullest
++dulling
++dullness
++dulls
++dully
++duly
++dumb
++dumbbell
++dumbbells
++dumber
++dumbest
++dumbfound
++dumbfounded
++dumbfounding
++dumbfounds
++dumbly
++dumbness
++dumbo
++dumbos
++dumbstruck
++dumbwaiter
++dumbwaiters
++dumdum
++dumdums
++dummies
++dummy
++dump
++dumped
++dumper
++dumpers
++dumpier
++dumpiest
++dumpiness
++dumping
++dumpling
++dumplings
++dumps
++dumpsite
++dumpsites
++dumpster
++dumpsters
++dumpy
++dun
++dunce
++dunces
++dunderhead
++dunderheads
++dune
++dunes
++dung
++dungaree
++dungarees
++dunged
++dungeon
++dungeons
++dunghill
++dunghills
++dunging
++dungs
++dunk
++dunked
++dunking
++dunks
++dunned
++dunner
++dunnest
++dunning
++dunno
++duns
++duo
++duodecimal
++duodena
++duodenal
++duodenum
++duopolies
++duopoly
++duos
++dupe
++duped
++duper
++dupers
++dupes
++duping
++duple
++duplex
++duplexes
++duplicate
++duplicated
++duplicates
++duplicating
++duplication
++duplicator
++duplicators
++duplicitous
++duplicity
++durability
++durable
++durably
++durance
++duration
++duress
++during
++durst
++durum
++dusk
++duskier
++duskiest
++duskiness
++dusky
++dust
++dustbin
++dustbins
++dustcart
++dustcarts
++dusted
++duster
++dusters
++dustier
++dustiest
++dustiness
++dusting
++dustless
++dustman
++dustmen
++dustpan
++dustpans
++dusts
++dustsheet
++dustsheets
++dusty
++dutch
++duteous
++duteously
++dutiable
++duties
++dutiful
++dutifully
++dutifulness
++duty
++duvet
++duvets
++dwarf
++dwarfed
++dwarfing
++dwarfish
++dwarfism
++dwarfs
++dweeb
++dweebs
++dwell
++dweller
++dwellers
++dwelling
++dwellings
++dwells
++dwelt
++dwindle
++dwindled
++dwindles
++dwindling
++dyadic
++dybbuk
++dybbukim
++dybbuks
++dye
++dyed
++dyeing
++dyer
++dyers
++dyes
++dyestuff
++dying
++dyke
++dykes
++dynamic
++dynamical
++dynamically
++dynamics
++dynamism
++dynamite
++dynamited
++dynamiter
++dynamiters
++dynamites
++dynamiting
++dynamo
++dynamos
++dynastic
++dynasties
++dynasty
++dysentery
++dysfunction
++dysfunctional
++dysfunctions
++dyslectic
++dyslectics
++dyslexia
++dyslexic
++dyslexics
++dyspepsia
++dyspeptic
++dyspeptics
++dysphagia
++dysphoria
++dysphoric
++dysprosium
++dystonia
++dystopia
++dz
++e
++ea
++each
++eager
++eagerer
++eagerest
++eagerly
++eagerness
++eagle
++eagles
++eaglet
++eaglets
++ear
++earache
++earaches
++earbud
++earbuds
++eardrum
++eardrums
++eared
++earful
++earfuls
++earl
++earldom
++earldoms
++earlier
++earliest
++earliness
++earlobe
++earlobes
++earls
++early
++earmark
++earmarked
++earmarking
++earmarks
++earmuff
++earmuffs
++earn
++earned
++earner
++earners
++earnest
++earnestly
++earnestness
++earnests
++earning
++earnings
++earns
++earphone
++earphones
++earpiece
++earpieces
++earplug
++earplugs
++earring
++earrings
++ears
++earshot
++earsplitting
++earth
++earthbound
++earthed
++earthen
++earthenware
++earthier
++earthiest
++earthiness
++earthing
++earthlier
++earthliest
++earthling
++earthlings
++earthly
++earthquake
++earthquakes
++earths
++earthshaking
++earthward
++earthwards
++earthwork
++earthworks
++earthworm
++earthworms
++earthy
++earwax
++earwig
++earwigs
++ease
++eased
++easel
++easels
++easement
++easements
++eases
++easier
++easiest
++easily
++easiness
++easing
++east
++eastbound
++easterlies
++easterly
++eastern
++easterner
++easterners
++easternmost
++eastward
++eastwards
++easy
++easygoing
++eat
++eatable
++eatables
++eaten
++eater
++eateries
++eaters
++eatery
++eating
++eats
++eave
++eaves
++eavesdrop
++eavesdropped
++eavesdropper
++eavesdroppers
++eavesdropping
++eavesdrops
++ebb
++ebbed
++ebbing
++ebbs
++ebonies
++ebony
++ebullience
++ebullient
++ebulliently
++ebullition
++eccentric
++eccentrically
++eccentricities
++eccentricity
++eccentrics
++eccl
++ecclesial
++ecclesiastic
++ecclesiastical
++ecclesiastically
++ecclesiastics
++echelon
++echelons
++echidna
++echinoderm
++echinoderms
++echo
++echoed
++echoes
++echoic
++echoing
++echolocation
++echos
++eclair
++eclairs
++eclat
++eclectic
++eclectically
++eclecticism
++eclectics
++eclipse
++eclipsed
++eclipses
++eclipsing
++ecliptic
++eclogue
++eclogues
++ecocide
++ecol
++ecologic
++ecological
++ecologically
++ecologist
++ecologists
++ecology
++econ
++econometric
++economic
++economical
++economically
++economics
++economies
++economist
++economists
++economize
++economized
++economizer
++economizers
++economizes
++economizing
++economy
++ecosystem
++ecosystems
++ecotourism
++ecotourist
++ecotourists
++ecru
++ecstasies
++ecstasy
++ecstatic
++ecstatically
++ecu
++ecumenical
++ecumenically
++ecumenicism
++ecumenism
++ecus
++eczema
++ed
++edamame
++eddied
++eddies
++eddy
++eddying
++edelweiss
++edema
++edemas
++edge
++edged
++edger
++edgers
++edges
++edgewise
++edgier
++edgiest
++edgily
++edginess
++edging
++edgings
++edgy
++edibility
++edible
++edibleness
++edibles
++edict
++edicts
++edification
++edifice
++edifices
++edified
++edifier
++edifiers
++edifies
++edify
++edifying
++edit
++editable
++edited
++editing
++edition
++editions
++editor
++editorial
++editorialize
++editorialized
++editorializes
++editorializing
++editorially
++editorials
++editors
++editorship
++edits
++eds
++educ
++educability
++educable
++educate
++educated
++educates
++educating
++education
++educational
++educationalist
++educationalists
++educationally
++educationist
++educationists
++educations
++educative
++educator
++educators
++educe
++educed
++educes
++educing
++edutainment
++eek
++eel
++eels
++eerie
++eerier
++eeriest
++eerily
++eeriness
++eff
++efface
++effaced
++effacement
++effaces
++effacing
++effect
++effected
++effecting
++effective
++effectively
++effectiveness
++effects
++effectual
++effectually
++effectuate
++effectuated
++effectuates
++effectuating
++effed
++effeminacy
++effeminate
++effeminately
++effendi
++effendis
++efferent
++effervesce
++effervesced
++effervescence
++effervescent
++effervescently
++effervesces
++effervescing
++effete
++effetely
++effeteness
++efficacious
++efficaciously
++efficacy
++efficiencies
++efficiency
++efficient
++efficiently
++effigies
++effigy
++effing
++efflorescence
++efflorescent
++effluence
++effluent
++effluents
++effluvia
++effluvium
++efflux
++effort
++effortless
++effortlessly
++effortlessness
++efforts
++effrontery
++effs
++effulgence
++effulgent
++effuse
++effused
++effuses
++effusing
++effusion
++effusions
++effusive
++effusively
++effusiveness
++egad
++egalitarian
++egalitarianism
++egalitarians
++egg
++eggbeater
++eggbeaters
++eggcup
++eggcups
++egged
++egghead
++eggheads
++egging
++eggnog
++eggplant
++eggplants
++eggs
++eggshell
++eggshells
++eglantine
++eglantines
++ego
++egocentric
++egocentrically
++egocentricity
++egocentrics
++egoism
++egoist
++egoistic
++egoistical
++egoistically
++egoists
++egomania
++egomaniac
++egomaniacs
++egos
++egotism
++egotist
++egotistic
++egotistical
++egotistically
++egotists
++egregious
++egregiously
++egregiousness
++egress
++egresses
++egret
++egrets
++eh
++eider
++eiderdown
++eiderdowns
++eiders
++eigenvalue
++eigenvalues
++eight
++eighteen
++eighteens
++eighteenth
++eighteenths
++eighth
++eighths
++eighties
++eightieth
++eightieths
++eights
++eighty
++einsteinium
++eisteddfod
++eisteddfods
++either
++ejaculate
++ejaculated
++ejaculates
++ejaculating
++ejaculation
++ejaculations
++ejaculatory
++eject
++ejected
++ejecting
++ejection
++ejections
++ejector
++ejectors
++ejects
++eke
++eked
++ekes
++eking
++elaborate
++elaborated
++elaborately
++elaborateness
++elaborates
++elaborating
++elaboration
++elaborations
++elan
++eland
++elands
++elapse
++elapsed
++elapses
++elapsing
++elastic
++elastically
++elasticated
++elasticity
++elasticize
++elasticized
++elasticizes
++elasticizing
++elastics
++elate
++elated
++elatedly
++elates
++elating
++elation
++elbow
++elbowed
++elbowing
++elbowroom
++elbows
++elder
++elderberries
++elderberry
++eldercare
++elderly
++elders
++eldest
++eldritch
++elect
++electable
++elected
++electing
++election
++electioneer
++electioneered
++electioneering
++electioneers
++elections
++elective
++electives
++elector
++electoral
++electorally
++electorate
++electorates
++electors
++electric
++electrical
++electrically
++electrician
++electricians
++electricity
++electrics
++electrification
++electrified
++electrifier
++electrifiers
++electrifies
++electrify
++electrifying
++electrocardiogram
++electrocardiograms
++electrocardiograph
++electrocardiographs
++electrocardiography
++electrocute
++electrocuted
++electrocutes
++electrocuting
++electrocution
++electrocutions
++electrode
++electrodes
++electrodynamics
++electroencephalogram
++electroencephalograms
++electroencephalograph
++electroencephalographic
++electroencephalographs
++electroencephalography
++electrologist
++electrologists
++electrolysis
++electrolyte
++electrolytes
++electrolytic
++electromagnet
++electromagnetic
++electromagnetically
++electromagnetism
++electromagnets
++electromotive
++electron
++electronic
++electronica
++electronically
++electronics
++electrons
++electroplate
++electroplated
++electroplates
++electroplating
++electroscope
++electroscopes
++electroscopic
++electroshock
++electrostatic
++electrostatics
++electrotype
++electrotypes
++elects
++eleemosynary
++elegance
++elegant
++elegantly
++elegiac
++elegiacal
++elegiacs
++elegies
++elegy
++elem
++element
++elemental
++elementally
++elementary
++elements
++elephant
++elephantiasis
++elephantine
++elephants
++elev
++elevate
++elevated
++elevates
++elevating
++elevation
++elevations
++elevator
++elevators
++eleven
++elevens
++elevenses
++eleventh
++elevenths
++elf
++elfin
++elfish
++elicit
++elicitation
++elicited
++eliciting
++elicits
++elide
++elided
++elides
++eliding
++eligibility
++eligible
++eliminate
++eliminated
++eliminates
++eliminating
++elimination
++eliminations
++eliminator
++eliminators
++elision
++elisions
++elite
++elites
++elitism
++elitist
++elitists
++elixir
++elixirs
++elk
++elks
++ell
++ellipse
++ellipses
++ellipsis
++ellipsoid
++ellipsoidal
++ellipsoids
++elliptic
++elliptical
++elliptically
++ells
++elm
++elms
++elocution
++elocutionary
++elocutionist
++elocutionists
++elodea
++elodeas
++elongate
++elongated
++elongates
++elongating
++elongation
++elongations
++elope
++eloped
++elopement
++elopements
++elopes
++eloping
++eloquence
++eloquent
++eloquently
++else
++elsewhere
++elucidate
++elucidated
++elucidates
++elucidating
++elucidation
++elucidations
++elude
++eluded
++eludes
++eluding
++elusive
++elusively
++elusiveness
++elver
++elvers
++elves
++elvish
++em
++emaciate
++emaciated
++emaciates
++emaciating
++emaciation
++email
++emailed
++emailing
++emails
++emanate
++emanated
++emanates
++emanating
++emanation
++emanations
++emancipate
++emancipated
++emancipates
++emancipating
++emancipation
++emancipator
++emancipators
++emasculate
++emasculated
++emasculates
++emasculating
++emasculation
++embalm
++embalmed
++embalmer
++embalmers
++embalming
++embalms
++embank
++embanked
++embanking
++embankment
++embankments
++embanks
++embargo
++embargoed
++embargoes
++embargoing
++embark
++embarkation
++embarkations
++embarked
++embarking
++embarks
++embarrass
++embarrassed
++embarrasses
++embarrassing
++embarrassingly
++embarrassment
++embarrassments
++embassies
++embassy
++embattled
++embed
++embedded
++embedding
++embeds
++embellish
++embellished
++embellishes
++embellishing
++embellishment
++embellishments
++ember
++embers
++embezzle
++embezzled
++embezzlement
++embezzler
++embezzlers
++embezzles
++embezzling
++embitter
++embittered
++embittering
++embitterment
++embitters
++emblazon
++emblazoned
++emblazoning
++emblazonment
++emblazons
++emblem
++emblematic
++emblematically
++emblems
++embodied
++embodies
++embodiment
++embody
++embodying
++embolden
++emboldened
++emboldening
++emboldens
++embolism
++embolisms
++embolization
++emboss
++embossed
++embosser
++embossers
++embosses
++embossing
++embouchure
++embower
++embowered
++embowering
++embowers
++embrace
++embraceable
++embraced
++embraces
++embracing
++embrasure
++embrasures
++embrocation
++embrocations
++embroider
++embroidered
++embroiderer
++embroiderers
++embroideries
++embroidering
++embroiders
++embroidery
++embroil
++embroiled
++embroiling
++embroilment
++embroils
++embryo
++embryological
++embryologist
++embryologists
++embryology
++embryonic
++embryos
++emcee
++emceed
++emceeing
++emcees
++emend
++emendation
++emendations
++emended
++emending
++emends
++emerald
++emeralds
++emerge
++emerged
++emergence
++emergencies
++emergency
++emergent
++emerges
++emerging
++emerita
++emeritus
++emery
++emetic
++emetics
++emf
++emfs
++emigrant
++emigrants
++emigrate
++emigrated
++emigrates
++emigrating
++emigration
++emigrations
++emigre
++emigres
++eminence
++eminences
++eminent
++eminently
++emir
++emirate
++emirates
++emirs
++emissaries
++emissary
++emission
++emissions
++emit
++emits
++emitted
++emitter
++emitters
++emitting
++emo
++emoji
++emojis
++emollient
++emollients
++emolument
++emoluments
++emos
++emote
++emoted
++emotes
++emoticon
++emoticons
++emoting
++emotion
++emotional
++emotionalism
++emotionalize
++emotionalized
++emotionalizes
++emotionalizing
++emotionally
++emotionless
++emotions
++emotive
++emotively
++empathetic
++empathize
++empathized
++empathizes
++empathizing
++empathy
++emperor
++emperors
++emphases
++emphasis
++emphasize
++emphasized
++emphasizes
++emphasizing
++emphatic
++emphatically
++emphysema
++empire
++empires
++empiric
++empirical
++empirically
++empiricism
++empiricist
++empiricists
++emplacement
++emplacements
++employ
++employable
++employed
++employee
++employees
++employer
++employers
++employing
++employment
++employments
++employs
++emporium
++emporiums
++empower
++empowered
++empowering
++empowerment
++empowers
++empress
++empresses
++emptied
++emptier
++empties
++emptiest
++emptily
++emptiness
++empty
++emptying
++empyrean
++ems
++emu
++emulate
++emulated
++emulates
++emulating
++emulation
++emulations
++emulative
++emulator
++emulators
++emulsification
++emulsified
++emulsifier
++emulsifiers
++emulsifies
++emulsify
++emulsifying
++emulsion
++emulsions
++emus
++en
++enable
++enabled
++enabler
++enablers
++enables
++enabling
++enact
++enacted
++enacting
++enactment
++enactments
++enacts
++enamel
++enameled
++enameler
++enamelers
++enameling
++enamelings
++enamels
++enamelware
++enamor
++enamored
++enamoring
++enamors
++enc
++encamp
++encamped
++encamping
++encampment
++encampments
++encamps
++encapsulate
++encapsulated
++encapsulates
++encapsulating
++encapsulation
++encapsulations
++encase
++encased
++encasement
++encases
++encasing
++encephalitic
++encephalitis
++enchain
++enchained
++enchaining
++enchains
++enchant
++enchanted
++enchanter
++enchanters
++enchanting
++enchantingly
++enchantment
++enchantments
++enchantress
++enchantresses
++enchants
++enchilada
++enchiladas
++encipher
++enciphered
++enciphering
++enciphers
++encircle
++encircled
++encirclement
++encircles
++encircling
++encl
++enclave
++enclaves
++enclose
++enclosed
++encloses
++enclosing
++enclosure
++enclosures
++encode
++encoded
++encoder
++encoders
++encodes
++encoding
++encomium
++encomiums
++encompass
++encompassed
++encompasses
++encompassing
++encore
++encored
++encores
++encoring
++encounter
++encountered
++encountering
++encounters
++encourage
++encouraged
++encouragement
++encouragements
++encourages
++encouraging
++encouragingly
++encroach
++encroached
++encroaches
++encroaching
++encroachment
++encroachments
++encrust
++encrustation
++encrustations
++encrusted
++encrusting
++encrusts
++encrypt
++encrypted
++encrypting
++encryption
++encrypts
++encumber
++encumbered
++encumbering
++encumbers
++encumbrance
++encumbrances
++ency
++encyclical
++encyclicals
++encyclopedia
++encyclopedias
++encyclopedic
++encyst
++encysted
++encysting
++encystment
++encysts
++end
++endanger
++endangered
++endangering
++endangerment
++endangers
++endear
++endeared
++endearing
++endearingly
++endearment
++endearments
++endears
++endeavor
++endeavored
++endeavoring
++endeavors
++ended
++endemic
++endemically
++endemics
++endgame
++endgames
++ending
++endings
++endive
++endives
++endless
++endlessly
++endlessness
++endmost
++endocarditis
++endocrine
++endocrines
++endocrinologist
++endocrinologists
++endocrinology
++endogenous
++endogenously
++endometrial
++endometriosis
++endometrium
++endorphin
++endorphins
++endorse
++endorsed
++endorsement
++endorsements
++endorser
++endorsers
++endorses
++endorsing
++endoscope
++endoscopes
++endoscopic
++endoscopy
++endothelial
++endothermic
++endow
++endowed
++endowing
++endowment
++endowments
++endows
++endpoint
++endpoints
++ends
++endue
++endued
++endues
++enduing
++endurable
++endurance
++endure
++endured
++endures
++enduring
++endways
++enema
++enemas
++enemies
++enemy
++energetic
++energetically
++energies
++energize
++energized
++energizer
++energizers
++energizes
++energizing
++energy
++enervate
++enervated
++enervates
++enervating
++enervation
++enfeeble
++enfeebled
++enfeeblement
++enfeebles
++enfeebling
++enfilade
++enfiladed
++enfilades
++enfilading
++enfold
++enfolded
++enfolding
++enfolds
++enforce
++enforceable
++enforced
++enforcement
++enforcer
++enforcers
++enforces
++enforcing
++enfranchise
++enfranchised
++enfranchisement
++enfranchises
++enfranchising
++engage
++engaged
++engagement
++engagements
++engages
++engaging
++engagingly
++engender
++engendered
++engendering
++engenders
++engine
++engineer
++engineered
++engineering
++engineers
++engines
++engorge
++engorged
++engorgement
++engorges
++engorging
++engram
++engrams
++engrave
++engraved
++engraver
++engravers
++engraves
++engraving
++engravings
++engross
++engrossed
++engrosses
++engrossing
++engrossment
++engulf
++engulfed
++engulfing
++engulfment
++engulfs
++enhance
++enhanced
++enhancement
++enhancements
++enhancer
++enhancers
++enhances
++enhancing
++enigma
++enigmas
++enigmatic
++enigmatically
++enjambment
++enjambments
++enjoin
++enjoined
++enjoining
++enjoins
++enjoy
++enjoyable
++enjoyably
++enjoyed
++enjoying
++enjoyment
++enjoyments
++enjoys
++enlarge
++enlargeable
++enlarged
++enlargement
++enlargements
++enlarger
++enlargers
++enlarges
++enlarging
++enlighten
++enlightened
++enlightening
++enlightenment
++enlightens
++enlist
++enlisted
++enlistee
++enlistees
++enlisting
++enlistment
++enlistments
++enlists
++enliven
++enlivened
++enlivening
++enlivenment
++enlivens
++enmesh
++enmeshed
++enmeshes
++enmeshing
++enmeshment
++enmities
++enmity
++ennoble
++ennobled
++ennoblement
++ennobles
++ennobling
++ennui
++enormities
++enormity
++enormous
++enormously
++enormousness
++enough
++enplane
++enplaned
++enplanes
++enplaning
++enquirer
++enquirers
++enquiringly
++enrage
++enraged
++enrages
++enraging
++enrapture
++enraptured
++enraptures
++enrapturing
++enrich
++enriched
++enriches
++enriching
++enrichment
++enroll
++enrolled
++enrolling
++enrollment
++enrollments
++enrolls
++ens
++ensconce
++ensconced
++ensconces
++ensconcing
++ensemble
++ensembles
++enshrine
++enshrined
++enshrinement
++enshrines
++enshrining
++enshroud
++enshrouded
++enshrouding
++enshrouds
++ensign
++ensigns
++ensilage
++enslave
++enslaved
++enslavement
++enslaves
++enslaving
++ensnare
++ensnared
++ensnarement
++ensnares
++ensnaring
++ensue
++ensued
++ensues
++ensuing
++ensure
++ensured
++ensurer
++ensurers
++ensures
++ensuring
++entail
++entailed
++entailing
++entailment
++entails
++entangle
++entangled
++entanglement
++entanglements
++entangles
++entangling
++entente
++ententes
++enter
++enteral
++entered
++enteric
++entering
++enteritis
++enterprise
++enterprises
++enterprising
++enterprisingly
++enters
++entertain
++entertained
++entertainer
++entertainers
++entertaining
++entertainingly
++entertainment
++entertainments
++entertains
++enthrall
++enthralled
++enthralling
++enthrallment
++enthralls
++enthrone
++enthroned
++enthronement
++enthronements
++enthrones
++enthroning
++enthuse
++enthused
++enthuses
++enthusiasm
++enthusiasms
++enthusiast
++enthusiastic
++enthusiastically
++enthusiasts
++enthusing
++entice
++enticed
++enticement
++enticements
++entices
++enticing
++enticingly
++entire
++entirely
++entirety
++entities
++entitle
++entitled
++entitlement
++entitlements
++entitles
++entitling
++entity
++entomb
++entombed
++entombing
++entombment
++entombs
++entomological
++entomologist
++entomologists
++entomology
++entourage
++entourages
++entrails
++entrained
++entrance
++entranced
++entrancement
++entrances
++entrancing
++entrancingly
++entrant
++entrants
++entrap
++entrapment
++entrapped
++entrapping
++entraps
++entreat
++entreated
++entreaties
++entreating
++entreatingly
++entreats
++entreaty
++entree
++entrees
++entrench
++entrenched
++entrenches
++entrenching
++entrenchment
++entrenchments
++entrepreneur
++entrepreneurial
++entrepreneurs
++entrepreneurship
++entries
++entropy
++entrust
++entrusted
++entrusting
++entrusts
++entry
++entryphone
++entryphones
++entryway
++entryways
++entwine
++entwined
++entwines
++entwining
++enumerable
++enumerate
++enumerated
++enumerates
++enumerating
++enumeration
++enumerations
++enumerator
++enumerators
++enunciate
++enunciated
++enunciates
++enunciating
++enunciation
++enuresis
++envelop
++envelope
++enveloped
++enveloper
++envelopers
++envelopes
++enveloping
++envelopment
++envelops
++envenom
++envenomed
++envenoming
++envenoms
++enviable
++enviably
++envied
++envies
++envious
++enviously
++enviousness
++environment
++environmental
++environmentalism
++environmentalist
++environmentalists
++environmentally
++environments
++environs
++envisage
++envisaged
++envisages
++envisaging
++envision
++envisioned
++envisioning
++envisions
++envoy
++envoys
++envy
++envying
++envyingly
++enzymatic
++enzyme
++enzymes
++eolian
++eon
++eons
++eosinophil
++eosinophilic
++eosinophils
++epaulet
++epaulets
++epee
++epees
++ephedrine
++ephemera
++ephemeral
++ephemerally
++epic
++epicenter
++epicenters
++epics
++epicure
++epicurean
++epicureans
++epicures
++epidemic
++epidemically
++epidemics
++epidemiological
++epidemiologist
++epidemiologists
++epidemiology
++epidermal
++epidermic
++epidermis
++epidermises
++epidural
++epidurals
++epiglottis
++epiglottises
++epigram
++epigrammatic
++epigrams
++epigraph
++epigraphs
++epigraphy
++epilepsy
++epileptic
++epileptics
++epilogue
++epilogues
++epinephrine
++epiphanies
++epiphany
++episcopacy
++episcopal
++episcopate
++episode
++episodes
++episodic
++episodically
++epistemic
++epistemological
++epistemology
++epistle
++epistles
++epistolary
++epitaph
++epitaphs
++epithelial
++epithelium
++epithet
++epithets
++epitome
++epitomes
++epitomize
++epitomized
++epitomizes
++epitomizing
++epoch
++epochal
++epochs
++eponymous
++epoxied
++epoxies
++epoxy
++epoxying
++epsilon
++epsilons
++equability
++equable
++equably
++equal
++equaled
++equaling
++equality
++equalization
++equalize
++equalized
++equalizer
++equalizers
++equalizes
++equalizing
++equally
++equals
++equanimity
++equatable
++equate
++equated
++equates
++equating
++equation
++equations
++equator
++equatorial
++equators
++equerries
++equerry
++equestrian
++equestrianism
++equestrians
++equestrienne
++equestriennes
++equidistant
++equidistantly
++equilateral
++equilaterals
++equilibrium
++equine
++equines
++equinoctial
++equinox
++equinoxes
++equip
++equipage
++equipages
++equipment
++equipoise
++equipped
++equipping
++equips
++equitable
++equitably
++equitation
++equities
++equity
++equiv
++equivalence
++equivalences
++equivalencies
++equivalency
++equivalent
++equivalently
++equivalents
++equivocal
++equivocally
++equivocalness
++equivocate
++equivocated
++equivocates
++equivocating
++equivocation
++equivocations
++equivocator
++equivocators
++er
++era
++eradicable
++eradicate
++eradicated
++eradicates
++eradicating
++eradication
++eradicator
++eradicators
++eras
++erasable
++erase
++erased
++eraser
++erasers
++erases
++erasing
++erasure
++erasures
++erbium
++ere
++erect
++erected
++erectile
++erecting
++erection
++erections
++erectly
++erectness
++erector
++erectors
++erects
++erelong
++eremite
++eremites
++erg
++ergo
++ergonomic
++ergonomically
++ergonomics
++ergosterol
++ergot
++ergs
++ermine
++ermines
++erode
++eroded
++erodes
++erodible
++eroding
++erogenous
++erosion
++erosive
++erotic
++erotica
++erotically
++eroticism
++erotics
++err
++errand
++errands
++errant
++errata
++erratas
++erratic
++erratically
++erratum
++erred
++erring
++erroneous
++erroneously
++error
++errors
++errs
++ersatz
++ersatzes
++erst
++erstwhile
++eruct
++eructation
++eructations
++eructed
++eructing
++eructs
++erudite
++eruditely
++erudition
++erupt
++erupted
++erupting
++eruption
++eruptions
++eruptive
++erupts
++erysipelas
++erythrocyte
++erythrocytes
++erythromycin
++es
++escalate
++escalated
++escalates
++escalating
++escalation
++escalations
++escalator
++escalators
++escallop
++escalloped
++escalloping
++escallops
++escalope
++escalopes
++escapade
++escapades
++escape
++escaped
++escapee
++escapees
++escapement
++escapements
++escapes
++escaping
++escapism
++escapist
++escapists
++escapologist
++escapologists
++escapology
++escargot
++escargots
++escarole
++escaroles
++escarpment
++escarpments
++eschatological
++eschatology
++eschew
++eschewed
++eschewing
++eschews
++escort
++escorted
++escorting
++escorts
++escritoire
++escritoires
++escrow
++escrows
++escudo
++escudos
++escutcheon
++escutcheons
++esophageal
++esophagi
++esophagus
++esoteric
++esoterically
++esp
++espadrille
++espadrilles
++espalier
++espaliered
++espaliering
++espaliers
++especial
++especially
++espied
++espies
++espionage
++esplanade
++esplanades
++espousal
++espouse
++espoused
++espouses
++espousing
++espresso
++espressos
++esprit
++espy
++espying
++esquire
++esquires
++essay
++essayed
++essayer
++essayers
++essaying
++essayist
++essayists
++essays
++essence
++essences
++essential
++essentially
++essentials
++est
++establish
++established
++establishes
++establishing
++establishment
++establishments
++estate
++estates
++esteem
++esteemed
++esteeming
++esteems
++ester
++esters
++estimable
++estimate
++estimated
++estimates
++estimating
++estimation
++estimations
++estimator
++estimators
++estoppel
++estrange
++estranged
++estrangement
++estrangements
++estranges
++estranging
++estrogen
++estrous
++estrus
++estruses
++estuaries
++estuary
++eta
++etas
++etc
++etch
++etched
++etcher
++etchers
++etches
++etching
++etchings
++eternal
++eternally
++eternalness
++eternities
++eternity
++ethane
++ethanol
++ether
++ethereal
++ethereally
++ethic
++ethical
++ethically
++ethics
++ethnic
++ethnically
++ethnicity
++ethnics
++ethnocentric
++ethnocentrism
++ethnographer
++ethnographers
++ethnographic
++ethnographically
++ethnography
++ethnological
++ethnologically
++ethnologist
++ethnologists
++ethnology
++ethological
++ethologist
++ethologists
++ethology
++ethos
++ethyl
++ethylene
++etiolated
++etiologic
++etiological
++etiologies
++etiology
++etiquette
++etude
++etudes
++etymological
++etymologically
++etymologies
++etymologist
++etymologists
++etymology
++eucalypti
++eucalyptus
++eucalyptuses
++euchre
++euchred
++euchres
++euchring
++euclidean
++eugenic
++eugenically
++eugenicist
++eugenicists
++eugenics
++eukaryotes
++eulogies
++eulogist
++eulogistic
++eulogists
++eulogize
++eulogized
++eulogizer
++eulogizers
++eulogizes
++eulogizing
++eulogy
++eunuch
++eunuchs
++euphemism
++euphemisms
++euphemistic
++euphemistically
++euphonious
++euphoniously
++euphony
++euphoria
++euphoric
++euphorically
++eureka
++euro
++europium
++euros
++eutectic
++euthanasia
++euthanize
++euthanized
++euthanizes
++euthanizing
++euthenics
++evacuate
++evacuated
++evacuates
++evacuating
++evacuation
++evacuations
++evacuee
++evacuees
++evade
++evaded
++evader
++evaders
++evades
++evading
++evaluate
++evaluated
++evaluates
++evaluating
++evaluation
++evaluations
++evaluative
++evaluator
++evaluators
++evanescence
++evanescent
++evangelic
++evangelical
++evangelicalism
++evangelically
++evangelicals
++evangelism
++evangelist
++evangelistic
++evangelists
++evangelize
++evangelized
++evangelizes
++evangelizing
++evaporate
++evaporated
++evaporates
++evaporating
++evaporation
++evaporator
++evaporators
++evasion
++evasions
++evasive
++evasively
++evasiveness
++eve
++even
++evened
++evener
++evenest
++evenhanded
++evenhandedly
++evening
++evenings
++evenly
++evenness
++evens
++evensong
++event
++eventful
++eventfully
++eventfulness
++eventide
++events
++eventual
++eventualities
++eventuality
++eventually
++eventuate
++eventuated
++eventuates
++eventuating
++ever
++everglade
++everglades
++evergreen
++evergreens
++everlasting
++everlastingly
++everlastings
++evermore
++every
++everybody
++everyday
++everyone
++everyplace
++everything
++everywhere
++eves
++evict
++evicted
++evicting
++eviction
++evictions
++evicts
++evidence
++evidenced
++evidences
++evidencing
++evident
++evidently
++evil
++evildoer
++evildoers
++evildoing
++eviler
++evilest
++eviller
++evillest
++evilly
++evilness
++evils
++evince
++evinced
++evinces
++evincing
++eviscerate
++eviscerated
++eviscerates
++eviscerating
++evisceration
++evocation
++evocations
++evocative
++evocatively
++evoke
++evoked
++evokes
++evoking
++evolution
++evolutionary
++evolutionist
++evolutionists
++evolve
++evolved
++evolves
++evolving
++ewe
++ewer
++ewers
++ewes
++ex
++exabyte
++exabytes
++exacerbate
++exacerbated
++exacerbates
++exacerbating
++exacerbation
++exact
++exacted
++exacter
++exactest
++exacting
++exactingly
++exaction
++exactitude
++exactly
++exactness
++exacts
++exaggerate
++exaggerated
++exaggeratedly
++exaggerates
++exaggerating
++exaggeration
++exaggerations
++exaggerator
++exaggerators
++exalt
++exaltation
++exalted
++exalting
++exalts
++exam
++examination
++examinations
++examine
++examined
++examiner
++examiners
++examines
++examining
++example
++exampled
++examples
++exampling
++exams
++exasperate
++exasperated
++exasperatedly
++exasperates
++exasperating
++exasperatingly
++exasperation
++excavate
++excavated
++excavates
++excavating
++excavation
++excavations
++excavator
++excavators
++exceed
++exceeded
++exceeding
++exceedingly
++exceeds
++excel
++excelled
++excellence
++excellencies
++excellency
++excellent
++excellently
++excelling
++excels
++excelsior
++except
++excepted
++excepting
++exception
++exceptionable
++exceptional
++exceptionalism
++exceptionally
++exceptions
++excepts
++excerpt
++excerpted
++excerpting
++excerpts
++excess
++excesses
++excessive
++excessively
++exchange
++exchangeable
++exchanged
++exchanges
++exchanging
++exchequer
++exchequers
++excise
++excised
++excises
++excising
++excision
++excisions
++excitability
++excitable
++excitably
++excitation
++excite
++excited
++excitedly
++excitement
++excitements
++exciter
++exciters
++excites
++exciting
++excitingly
++excl
++exclaim
++exclaimed
++exclaiming
++exclaims
++exclamation
++exclamations
++exclamatory
++exclude
++excluded
++excludes
++excluding
++exclusion
++exclusionary
++exclusions
++exclusive
++exclusively
++exclusiveness
++exclusives
++exclusivity
++excommunicate
++excommunicated
++excommunicates
++excommunicating
++excommunication
++excommunications
++excoriate
++excoriated
++excoriates
++excoriating
++excoriation
++excoriations
++excrement
++excremental
++excrescence
++excrescences
++excrescent
++excreta
++excrete
++excreted
++excretes
++excreting
++excretion
++excretions
++excretory
++excruciating
++excruciatingly
++exculpate
++exculpated
++exculpates
++exculpating
++exculpation
++exculpatory
++excursion
++excursionist
++excursionists
++excursions
++excursive
++excursively
++excursiveness
++excusable
++excusably
++excuse
++excused
++excuses
++excusing
++exec
++execrable
++execrably
++execrate
++execrated
++execrates
++execrating
++execration
++execs
++executable
++execute
++executed
++executes
++executing
++execution
++executioner
++executioners
++executions
++executive
++executives
++executor
++executors
++executrices
++executrix
++exegeses
++exegesis
++exegetic
++exegetical
++exemplar
++exemplars
++exemplary
++exemplification
++exemplifications
++exemplified
++exemplifies
++exemplify
++exemplifying
++exempt
++exempted
++exempting
++exemption
++exemptions
++exempts
++exercise
++exercised
++exerciser
++exercisers
++exercises
++exercising
++exert
++exerted
++exerting
++exertion
++exertions
++exerts
++exes
++exeunt
++exfoliate
++exfoliated
++exfoliates
++exfoliating
++exfoliation
++exhalation
++exhalations
++exhale
++exhaled
++exhales
++exhaling
++exhaust
++exhausted
++exhaustible
++exhausting
++exhaustion
++exhaustive
++exhaustively
++exhaustiveness
++exhausts
++exhibit
++exhibited
++exhibiting
++exhibition
++exhibitionism
++exhibitionist
++exhibitionists
++exhibitions
++exhibitor
++exhibitors
++exhibits
++exhilarate
++exhilarated
++exhilarates
++exhilarating
++exhilaration
++exhort
++exhortation
++exhortations
++exhorted
++exhorting
++exhorts
++exhumation
++exhumations
++exhume
++exhumed
++exhumes
++exhuming
++exigence
++exigences
++exigencies
++exigency
++exigent
++exiguity
++exiguous
++exile
++exiled
++exiles
++exiling
++exist
++existed
++existence
++existences
++existent
++existential
++existentialism
++existentialist
++existentialists
++existentially
++existing
++exists
++exit
++exited
++exiting
++exits
++exobiology
++exodus
++exoduses
++exogenous
++exon
++exonerate
++exonerated
++exonerates
++exonerating
++exoneration
++exons
++exoplanet
++exoplanets
++exorbitance
++exorbitant
++exorbitantly
++exorcise
++exorcised
++exorcises
++exorcising
++exorcism
++exorcisms
++exorcist
++exorcists
++exoskeleton
++exoskeletons
++exosphere
++exospheres
++exothermic
++exotic
++exotica
++exotically
++exoticism
++exotics
++exp
++expand
++expandable
++expanded
++expanding
++expands
++expanse
++expanses
++expansible
++expansion
++expansionary
++expansionism
++expansionist
++expansionists
++expansions
++expansive
++expansively
++expansiveness
++expat
++expatiate
++expatiated
++expatiates
++expatiating
++expatiation
++expatriate
++expatriated
++expatriates
++expatriating
++expatriation
++expats
++expect
++expectancy
++expectant
++expectantly
++expectation
++expectations
++expected
++expecting
++expectorant
++expectorants
++expectorate
++expectorated
++expectorates
++expectorating
++expectoration
++expects
++expedience
++expediences
++expediencies
++expediency
++expedient
++expediently
++expedients
++expedite
++expedited
++expediter
++expediters
++expedites
++expediting
++expedition
++expeditionary
++expeditions
++expeditious
++expeditiously
++expeditiousness
++expel
++expelled
++expelling
++expels
++expend
++expendable
++expendables
++expended
++expending
++expenditure
++expenditures
++expends
++expense
++expenses
++expensive
++expensively
++expensiveness
++experience
++experienced
++experiences
++experiencing
++experiential
++experiment
++experimental
++experimentally
++experimentation
++experimented
++experimenter
++experimenters
++experimenting
++experiments
++expert
++expertise
++expertly
++expertness
++experts
++expiate
++expiated
++expiates
++expiating
++expiation
++expiatory
++expiration
++expire
++expired
++expires
++expiring
++expiry
++explain
++explainable
++explained
++explaining
++explains
++explanation
++explanations
++explanatory
++expletive
++expletives
++explicable
++explicate
++explicated
++explicates
++explicating
++explication
++explications
++explicit
++explicitly
++explicitness
++explode
++exploded
++explodes
++exploding
++exploit
++exploitable
++exploitation
++exploitative
++exploited
++exploiter
++exploiters
++exploiting
++exploits
++exploration
++explorations
++exploratory
++explore
++explored
++explorer
++explorers
++explores
++exploring
++explosion
++explosions
++explosive
++explosively
++explosiveness
++explosives
++expo
++exponent
++exponential
++exponentially
++exponentiation
++exponents
++export
++exportable
++exportation
++exported
++exporter
++exporters
++exporting
++exports
++expos
++expose
++exposed
++exposes
++exposing
++exposition
++expositions
++expositor
++expositors
++expository
++expostulate
++expostulated
++expostulates
++expostulating
++expostulation
++expostulations
++exposure
++exposures
++expound
++expounded
++expounder
++expounders
++expounding
++expounds
++express
++expressed
++expresses
++expressible
++expressing
++expression
++expressionism
++expressionist
++expressionistic
++expressionists
++expressionless
++expressionlessly
++expressions
++expressive
++expressively
++expressiveness
++expressly
++expressway
++expressways
++expropriate
++expropriated
++expropriates
++expropriating
++expropriation
++expropriations
++expropriator
++expropriators
++expulsion
++expulsions
++expunge
++expunged
++expunges
++expunging
++expurgate
++expurgated
++expurgates
++expurgating
++expurgation
++expurgations
++exquisite
++exquisitely
++exquisiteness
++ext
++extant
++extemporaneous
++extemporaneously
++extemporaneousness
++extempore
++extemporization
++extemporize
++extemporized
++extemporizes
++extemporizing
++extend
++extendable
++extended
++extender
++extenders
++extending
++extends
++extensible
++extension
++extensional
++extensions
++extensive
++extensively
++extensiveness
++extent
++extents
++extenuate
++extenuated
++extenuates
++extenuating
++extenuation
++exterior
++exteriors
++exterminate
++exterminated
++exterminates
++exterminating
++extermination
++exterminations
++exterminator
++exterminators
++external
++externalization
++externalizations
++externalize
++externalized
++externalizes
++externalizing
++externally
++externals
++extinct
++extincted
++extincting
++extinction
++extinctions
++extincts
++extinguish
++extinguishable
++extinguished
++extinguisher
++extinguishers
++extinguishes
++extinguishing
++extirpate
++extirpated
++extirpates
++extirpating
++extirpation
++extol
++extolled
++extolling
++extols
++extort
++extorted
++extorting
++extortion
++extortionate
++extortionately
++extortioner
++extortioners
++extortionist
++extortionists
++extorts
++extra
++extracellular
++extract
++extracted
++extracting
++extraction
++extractions
++extractive
++extractor
++extractors
++extracts
++extracurricular
++extraditable
++extradite
++extradited
++extradites
++extraditing
++extradition
++extraditions
++extrajudicial
++extralegal
++extramarital
++extramural
++extraneous
++extraneously
++extraordinaire
++extraordinarily
++extraordinary
++extrapolate
++extrapolated
++extrapolates
++extrapolating
++extrapolation
++extrapolations
++extras
++extrasensory
++extraterrestrial
++extraterrestrials
++extraterritorial
++extraterritoriality
++extravagance
++extravagances
++extravagant
++extravagantly
++extravaganza
++extravaganzas
++extravehicular
++extreme
++extremely
++extremeness
++extremer
++extremes
++extremest
++extremism
++extremist
++extremists
++extremities
++extremity
++extricable
++extricate
++extricated
++extricates
++extricating
++extrication
++extrinsic
++extrinsically
++extroversion
++extrovert
++extroverted
++extroverts
++extrude
++extruded
++extrudes
++extruding
++extrusion
++extrusions
++extrusive
++exuberance
++exuberant
++exuberantly
++exudation
++exude
++exuded
++exudes
++exuding
++exult
++exultant
++exultantly
++exultation
++exulted
++exulting
++exults
++exurb
++exurban
++exurbanite
++exurbanites
++exurbia
++exurbs
++eye
++eyeball
++eyeballed
++eyeballing
++eyeballs
++eyebrow
++eyebrows
++eyed
++eyedropper
++eyedroppers
++eyeful
++eyefuls
++eyeglass
++eyeglasses
++eyeing
++eyelash
++eyelashes
++eyeless
++eyelet
++eyelets
++eyelid
++eyelids
++eyeliner
++eyeliners
++eyeopener
++eyeopeners
++eyeopening
++eyepiece
++eyepieces
++eyes
++eyesight
++eyesore
++eyesores
++eyestrain
++eyeteeth
++eyetooth
++eyewash
++eyewitness
++eyewitnesses
++f
++fa
++fab
++fable
++fabled
++fables
++fabric
++fabricate
++fabricated
++fabricates
++fabricating
++fabrication
++fabrications
++fabricator
++fabricators
++fabrics
++fabulous
++fabulously
++facade
++facades
++face
++facecloth
++facecloths
++faced
++faceless
++facepalm
++facepalmed
++facepalming
++facepalms
++faces
++facet
++faceted
++faceting
++facetious
++facetiously
++facetiousness
++facets
++facial
++facially
++facials
++facile
++facilely
++facilitate
++facilitated
++facilitates
++facilitating
++facilitation
++facilitator
++facilitators
++facilities
++facility
++facing
++facings
++facsimile
++facsimiled
++facsimileing
++facsimiles
++fact
++faction
++factional
++factionalism
++factions
++factious
++factitious
++factoid
++factoids
++factor
++factored
++factorial
++factorials
++factories
++factoring
++factorization
++factorize
++factorized
++factorizes
++factorizing
++factors
++factory
++factotum
++factotums
++facts
++factual
++factually
++faculties
++faculty
++fad
++faddiness
++faddish
++faddishness
++faddist
++faddists
++faddy
++fade
++faded
++fades
++fading
++fads
++faerie
++faeries
++faff
++faffed
++faffing
++faffs
++fag
++fagged
++fagging
++faggot
++faggots
++fagot
++fagoting
++fagots
++fags
++faience
++fail
++failed
++failing
++failings
++faille
++fails
++failure
++failures
++fain
++fainer
++fainest
++faint
++fainted
++fainter
++faintest
++fainthearted
++fainting
++faintly
++faintness
++faints
++fair
++fairer
++fairest
++fairground
++fairgrounds
++fairies
++fairing
++fairings
++fairly
++fairness
++fairs
++fairway
++fairways
++fairy
++fairyland
++fairylands
++faith
++faithful
++faithfully
++faithfulness
++faithfuls
++faithless
++faithlessly
++faithlessness
++faiths
++fajita
++fajitas
++fake
++faked
++faker
++fakers
++fakes
++faking
++fakir
++fakirs
++falcon
++falconer
++falconers
++falconry
++falcons
++fall
++fallacies
++fallacious
++fallaciously
++fallacy
++fallback
++fallen
++fallibility
++fallible
++fallibleness
++fallibly
++falling
++falloff
++falloffs
++fallout
++fallow
++fallowed
++fallowing
++fallows
++falls
++false
++falsehood
++falsehoods
++falsely
++falseness
++falser
++falsest
++falsetto
++falsettos
++falsie
++falsies
++falsifiable
++falsification
++falsifications
++falsified
++falsifier
++falsifiers
++falsifies
++falsify
++falsifying
++falsities
++falsity
++falter
++faltered
++faltering
++falteringly
++falterings
++falters
++fame
++famed
++familial
++familiar
++familiarity
++familiarization
++familiarize
++familiarized
++familiarizes
++familiarizing
++familiarly
++familiars
++families
++family
++famine
++famines
++famish
++famished
++famishes
++famishing
++famous
++famously
++fan
++fanatic
++fanatical
++fanatically
++fanaticism
++fanatics
++fanboy
++fanboys
++fanciable
++fancied
++fancier
++fanciers
++fancies
++fanciest
++fanciful
++fancifully
++fancifulness
++fancily
++fanciness
++fancy
++fancying
++fancywork
++fandango
++fandangos
++fandom
++fanfare
++fanfares
++fang
++fanged
++fangs
++fanlight
++fanlights
++fanned
++fannies
++fanning
++fanny
++fans
++fantail
++fantails
++fantasia
++fantasias
++fantasied
++fantasies
++fantasist
++fantasists
++fantasize
++fantasized
++fantasizes
++fantasizing
++fantastic
++fantastical
++fantastically
++fantasy
++fantasying
++fanzine
++fanzines
++far
++farad
++faradize
++faradized
++faradizing
++farads
++faraway
++farce
++farces
++farcical
++farcically
++fare
++fared
++fares
++farewell
++farewells
++farina
++farinaceous
++faring
++farm
++farmed
++farmer
++farmers
++farmhand
++farmhands
++farmhouse
++farmhouses
++farming
++farmings
++farmland
++farmlands
++farms
++farmstead
++farmsteads
++farmyard
++farmyards
++faro
++farrago
++farragoes
++farrier
++farriers
++farrow
++farrowed
++farrowing
++farrows
++farseeing
++farsighted
++farsightedness
++fart
++farted
++farther
++farthermost
++farthest
++farthing
++farthings
++farting
++farts
++fascia
++fascias
++fascicle
++fascicles
++fascinate
++fascinated
++fascinates
++fascinating
++fascinatingly
++fascination
++fascinations
++fascism
++fascist
++fascistic
++fascists
++fashion
++fashionable
++fashionably
++fashioned
++fashioner
++fashioners
++fashioning
++fashionista
++fashionistas
++fashions
++fast
++fastback
++fastbacks
++fastball
++fastballs
++fasted
++fasten
++fastened
++fastener
++fasteners
++fastening
++fastenings
++fastens
++faster
++fastest
++fastidious
++fastidiously
++fastidiousness
++fasting
++fastness
++fastnesses
++fasts
++fat
++fatal
++fatalism
++fatalist
++fatalistic
++fatalistically
++fatalists
++fatalities
++fatality
++fatally
++fatback
++fate
++fated
++fateful
++fatefully
++fatefulness
++fates
++fathead
++fatheaded
++fatheads
++father
++fathered
++fatherhood
++fathering
++fatherland
++fatherlands
++fatherless
++fatherly
++fathers
++fathom
++fathomable
++fathomed
++fathoming
++fathomless
++fathoms
++fatigue
++fatigued
++fatigues
++fatiguing
++fating
++fatness
++fats
++fatso
++fatsos
++fatten
++fattened
++fattening
++fattens
++fatter
++fattest
++fattier
++fatties
++fattiest
++fattiness
++fatty
++fatuity
++fatuous
++fatuously
++fatuousness
++fatwa
++fatwas
++faucet
++faucets
++fault
++faulted
++faultfinder
++faultfinders
++faultfinding
++faultier
++faultiest
++faultily
++faultiness
++faulting
++faultless
++faultlessly
++faultlessness
++faults
++faulty
++faun
++fauna
++faunas
++fauns
++fauvism
++fauvist
++fauvists
++faux
++fave
++faves
++favor
++favorable
++favorably
++favored
++favoring
++favorite
++favorites
++favoritism
++favors
++fawn
++fawned
++fawner
++fawners
++fawning
++fawns
++fax
++faxed
++faxes
++faxing
++fay
++fayer
++fayest
++fays
++faze
++fazed
++fazes
++fazing
++fealty
++fear
++feared
++fearful
++fearfully
++fearfulness
++fearing
++fearless
++fearlessly
++fearlessness
++fears
++fearsome
++feasibility
++feasible
++feasibly
++feast
++feasted
++feaster
++feasters
++feasting
++feasts
++feat
++feather
++featherbedding
++featherbrained
++feathered
++featherier
++featheriest
++feathering
++featherless
++feathers
++featherweight
++featherweights
++feathery
++feats
++feature
++featured
++featureless
++features
++featuring
++febrile
++fecal
++feces
++feckless
++fecklessly
++fecklessness
++fecund
++fecundate
++fecundated
++fecundates
++fecundating
++fecundation
++fecundity
++fed
++federal
++federalism
++federalist
++federalists
++federalization
++federalize
++federalized
++federalizes
++federalizing
++federally
++federals
++federate
++federated
++federates
++federating
++federation
++federations
++fedora
++fedoras
++feds
++fee
++feeble
++feebleness
++feebler
++feeblest
++feebly
++feed
++feedback
++feedbag
++feedbags
++feeder
++feeders
++feeding
++feedings
++feedlot
++feedlots
++feeds
++feel
++feeler
++feelers
++feelgood
++feeling
++feelingly
++feelings
++feels
++fees
++feet
++feign
++feigned
++feigning
++feigns
++feint
++feinted
++feinting
++feints
++feistier
++feistiest
++feisty
++feldspar
++felicitate
++felicitated
++felicitates
++felicitating
++felicitation
++felicitations
++felicities
++felicitous
++felicitously
++felicity
++feline
++felines
++fell
++fella
++fellas
++fellatio
++felled
++feller
++fellers
++fellest
++felling
++fellow
++fellowman
++fellowmen
++fellows
++fellowship
++fellowships
++fells
++felon
++felonies
++felonious
++felons
++felony
++felt
++felted
++felting
++felts
++fem
++female
++femaleness
++females
++feminine
++femininely
++feminines
++femininity
++feminism
++feminist
++feminists
++feminize
++feminized
++feminizes
++feminizing
++femoral
++femur
++femurs
++fen
++fence
++fenced
++fencer
++fencers
++fences
++fencing
++fend
++fended
++fender
++fenders
++fending
++fends
++fenestration
++fennel
++fens
++fer
++feral
++ferment
++fermentation
++fermented
++fermenting
++ferments
++fermium
++fern
++fernier
++ferniest
++ferns
++ferny
++ferocious
++ferociously
++ferociousness
++ferocity
++ferret
++ferreted
++ferreting
++ferrets
++ferric
++ferried
++ferries
++ferromagnetic
++ferrous
++ferrule
++ferrules
++ferry
++ferryboat
++ferryboats
++ferrying
++ferryman
++ferrymen
++fertile
++fertility
++fertilization
++fertilize
++fertilized
++fertilizer
++fertilizers
++fertilizes
++fertilizing
++ferule
++ferules
++fervency
++fervent
++fervently
++fervid
++fervidly
++fervor
++fess
++fessed
++fesses
++fessing
++fest
++festal
++fester
++festered
++festering
++festers
++festival
++festivals
++festive
++festively
++festiveness
++festivities
++festivity
++festoon
++festooned
++festooning
++festoons
++fests
++feta
++fetal
++fetch
++fetched
++fetcher
++fetchers
++fetches
++fetching
++fetchingly
++fete
++feted
++fetes
++fetid
++fetidness
++feting
++fetish
++fetishes
++fetishism
++fetishist
++fetishistic
++fetishists
++fetlock
++fetlocks
++fetter
++fettered
++fettering
++fetters
++fettle
++fettuccine
++fetus
++fetuses
++feud
++feudal
++feudalism
++feudalistic
++feuded
++feuding
++feuds
++fever
++fevered
++feverish
++feverishly
++feverishness
++fevers
++few
++fewer
++fewest
++fewness
++fey
++fez
++fezzes
++ff
++fiance
++fiancee
++fiancees
++fiances
++fiasco
++fiascoes
++fiat
++fiats
++fib
++fibbed
++fibber
++fibbers
++fibbing
++fiber
++fiberboard
++fiberfill
++fiberglass
++fibers
++fibril
++fibrillate
++fibrillated
++fibrillates
++fibrillating
++fibrillation
++fibrils
++fibrin
++fibroid
++fibrosis
++fibrous
++fibs
++fibula
++fibulae
++fibular
++fiche
++fiches
++fichu
++fichus
++fickle
++fickleness
++fickler
++ficklest
++fiction
++fictional
++fictionalization
++fictionalizations
++fictionalize
++fictionalized
++fictionalizes
++fictionalizing
++fictionally
++fictions
++fictitious
++fictitiously
++fictive
++ficus
++fiddle
++fiddled
++fiddler
++fiddlers
++fiddles
++fiddlesticks
++fiddlier
++fiddliest
++fiddling
++fiddly
++fidelity
++fidget
++fidgeted
++fidgeting
++fidgets
++fidgety
++fiduciaries
++fiduciary
++fie
++fief
++fiefdom
++fiefdoms
++fiefs
++field
++fielded
++fielder
++fielders
++fielding
++fields
++fieldsman
++fieldsmen
++fieldwork
++fieldworker
++fieldworkers
++fiend
++fiendish
++fiendishly
++fiends
++fierce
++fiercely
++fierceness
++fiercer
++fiercest
++fierier
++fieriest
++fieriness
++fiery
++fiesta
++fiestas
++fife
++fifer
++fifers
++fifes
++fifteen
++fifteens
++fifteenth
++fifteenths
++fifth
++fifthly
++fifths
++fifties
++fiftieth
++fiftieths
++fifty
++fig
++fight
++fightback
++fighter
++fighters
++fighting
++fights
++figment
++figments
++figs
++figuration
++figurative
++figuratively
++figure
++figured
++figurehead
++figureheads
++figures
++figurine
++figurines
++figuring
++filament
++filamentous
++filaments
++filbert
++filberts
++filch
++filched
++filches
++filching
++file
++filed
++filename
++filenames
++filer
++filers
++files
++filet
++filial
++filibuster
++filibustered
++filibusterer
++filibusterers
++filibustering
++filibusters
++filigree
++filigreed
++filigreeing
++filigrees
++filing
++filings
++fill
++filled
++filler
++fillers
++fillet
++filleted
++filleting
++fillets
++fillies
++filling
++fillings
++fillip
++filliped
++filliping
++fillips
++fills
++filly
++film
++filmed
++filmier
++filmiest
++filminess
++filming
++filmmaker
++filmmakers
++films
++filmstrip
++filmstrips
++filmy
++filo
++filter
++filterable
++filtered
++filterer
++filterers
++filtering
++filters
++filth
++filthier
++filthiest
++filthily
++filthiness
++filthy
++filtrate
++filtrated
++filtrates
++filtrating
++filtration
++fin
++finagle
++finagled
++finagler
++finaglers
++finagles
++finagling
++final
++finale
++finales
++finalist
++finalists
++finality
++finalization
++finalize
++finalized
++finalizes
++finalizing
++finally
++finals
++finance
++financed
++finances
++financial
++financially
++financier
++financiers
++financing
++finch
++finches
++find
++finder
++finders
++finding
++findings
++finds
++fine
++fined
++finely
++fineness
++finer
++finery
++fines
++finespun
++finesse
++finessed
++finesses
++finessing
++finest
++finger
++fingerboard
++fingerboards
++fingered
++fingering
++fingerings
++fingerling
++fingerlings
++fingermark
++fingermarks
++fingernail
++fingernails
++fingerprint
++fingerprinted
++fingerprinting
++fingerprints
++fingers
++fingertip
++fingertips
++finial
++finials
++finical
++finickier
++finickiest
++finickiness
++finicky
++fining
++finis
++finises
++finish
++finished
++finisher
++finishers
++finishes
++finishing
++finite
++finitely
++fink
++finked
++finking
++finks
++finned
++finny
++fins
++fir
++fire
++firearm
++firearms
++fireball
++fireballs
++firebomb
++firebombed
++firebombing
++firebombings
++firebombs
++firebox
++fireboxes
++firebrand
++firebrands
++firebreak
++firebreaks
++firebrick
++firebricks
++firebug
++firebugs
++firecracker
++firecrackers
++fired
++firedamp
++firefight
++firefighter
++firefighters
++firefighting
++firefights
++fireflies
++firefly
++fireguard
++fireguards
++firehouse
++firehouses
++firelight
++firelighter
++firelighters
++fireman
++firemen
++fireplace
++fireplaces
++fireplug
++fireplugs
++firepower
++fireproof
++fireproofed
++fireproofing
++fireproofs
++firer
++firers
++fires
++firescreen
++firescreens
++fireside
++firesides
++firestorm
++firestorms
++firetrap
++firetraps
++firetruck
++firetrucks
++firewall
++firewalls
++firewater
++firewood
++firework
++fireworks
++firing
++firings
++firm
++firmament
++firmaments
++firmed
++firmer
++firmest
++firming
++firmly
++firmness
++firms
++firmware
++firs
++first
++firstborn
++firstborns
++firsthand
++firstly
++firsts
++firth
++firths
++fiscal
++fiscally
++fiscals
++fish
++fishbowl
++fishbowls
++fishcake
++fishcakes
++fished
++fisher
++fisheries
++fisherman
++fishermen
++fishers
++fishery
++fishes
++fishhook
++fishhooks
++fishier
++fishiest
++fishily
++fishiness
++fishing
++fishmonger
++fishmongers
++fishnet
++fishnets
++fishpond
++fishponds
++fishtail
++fishtailed
++fishtailing
++fishtails
++fishwife
++fishwives
++fishy
++fissile
++fission
++fissionable
++fissure
++fissures
++fist
++fistfight
++fistfights
++fistful
++fistfuls
++fisticuffs
++fists
++fistula
++fistulas
++fistulous
++fit
++fitful
++fitfully
++fitfulness
++fitly
++fitment
++fitments
++fitness
++fits
++fitted
++fitter
++fitters
++fittest
++fitting
++fittingly
++fittings
++five
++fiver
++fivers
++fives
++fix
++fixable
++fixate
++fixated
++fixates
++fixating
++fixation
++fixations
++fixative
++fixatives
++fixed
++fixedly
++fixer
++fixers
++fixes
++fixing
++fixings
++fixity
++fixture
++fixtures
++fizz
++fizzed
++fizzes
++fizzier
++fizziest
++fizzing
++fizzle
++fizzled
++fizzles
++fizzling
++fizzy
++fjord
++fjords
++fl
++flab
++flabbergast
++flabbergasted
++flabbergasting
++flabbergasts
++flabbier
++flabbiest
++flabbily
++flabbiness
++flabby
++flaccid
++flaccidity
++flaccidly
++flack
++flacks
++flag
++flagella
++flagellant
++flagellants
++flagellate
++flagellated
++flagellates
++flagellating
++flagellation
++flagellum
++flagged
++flagging
++flagman
++flagmen
++flagon
++flagons
++flagpole
++flagpoles
++flagrance
++flagrancy
++flagrant
++flagrantly
++flags
++flagship
++flagships
++flagstaff
++flagstaffs
++flagstone
++flagstones
++flail
++flailed
++flailing
++flails
++flair
++flairs
++flak
++flake
++flaked
++flakes
++flakier
++flakiest
++flakiness
++flaking
++flaky
++flamage
++flambe
++flambeed
++flambeing
++flambes
++flamboyance
++flamboyancy
++flamboyant
++flamboyantly
++flame
++flamed
++flamenco
++flamencos
++flameproof
++flameproofed
++flameproofing
++flameproofs
++flamer
++flamers
++flames
++flamethrower
++flamethrowers
++flaming
++flamingo
++flamingos
++flamings
++flammability
++flammable
++flammables
++flan
++flange
++flanges
++flank
++flanked
++flanker
++flankers
++flanking
++flanks
++flannel
++flanneled
++flannelette
++flanneling
++flannels
++flans
++flap
++flapjack
++flapjacks
++flapped
++flapper
++flappers
++flapping
++flaps
++flare
++flared
++flares
++flareup
++flareups
++flaring
++flash
++flashback
++flashbacks
++flashbulb
++flashbulbs
++flashcard
++flashcards
++flashcube
++flashcubes
++flashed
++flasher
++flashers
++flashes
++flashest
++flashgun
++flashguns
++flashier
++flashiest
++flashily
++flashiness
++flashing
++flashlight
++flashlights
++flashy
++flask
++flasks
++flat
++flatbed
++flatbeds
++flatboat
++flatboats
++flatbread
++flatcar
++flatcars
++flatfeet
++flatfish
++flatfishes
++flatfoot
++flatfooted
++flatfoots
++flatiron
++flatirons
++flatland
++flatlet
++flatlets
++flatly
++flatmate
++flatmates
++flatness
++flats
++flatted
++flatten
++flattened
++flattening
++flattens
++flatter
++flattered
++flatterer
++flatterers
++flattering
++flatteringly
++flatters
++flattery
++flattest
++flatting
++flattish
++flattop
++flattops
++flatulence
++flatulent
++flatus
++flatware
++flatworm
++flatworms
++flaunt
++flaunted
++flaunting
++flauntingly
++flaunts
++flavor
++flavored
++flavorful
++flavoring
++flavorings
++flavorless
++flavors
++flavorsome
++flaw
++flawed
++flawing
++flawless
++flawlessly
++flawlessness
++flaws
++flax
++flaxen
++flay
++flayed
++flaying
++flays
++flea
++fleabag
++fleabags
++fleabite
++fleabites
++fleapit
++fleapits
++fleas
++fleck
++flecked
++flecking
++flecks
++fled
++fledged
++fledgling
++fledglings
++flee
++fleece
++fleeced
++fleecer
++fleecers
++fleeces
++fleecier
++fleeciest
++fleeciness
++fleecing
++fleecy
++fleeing
++flees
++fleet
++fleeted
++fleeter
++fleetest
++fleeting
++fleetingly
++fleetingness
++fleetly
++fleetness
++fleets
++flesh
++fleshed
++fleshes
++fleshier
++fleshiest
++fleshing
++fleshlier
++fleshliest
++fleshly
++fleshpot
++fleshpots
++fleshy
++flew
++flex
++flexed
++flexes
++flexibility
++flexible
++flexibly
++flexing
++flexion
++flextime
++flibbertigibbet
++flibbertigibbets
++flick
++flicked
++flicker
++flickered
++flickering
++flickers
++flicking
++flicks
++flied
++flier
++fliers
++flies
++fliest
++flight
++flightier
++flightiest
++flightiness
++flightless
++flights
++flighty
++flimflam
++flimflammed
++flimflamming
++flimflams
++flimsier
++flimsiest
++flimsily
++flimsiness
++flimsy
++flinch
++flinched
++flinches
++flinching
++fling
++flinging
++flings
++flint
++flintier
++flintiest
++flintlock
++flintlocks
++flints
++flinty
++flip
++flippancy
++flippant
++flippantly
++flipped
++flipper
++flippers
++flippest
++flippies
++flipping
++flippy
++flips
++flirt
++flirtation
++flirtations
++flirtatious
++flirtatiously
++flirtatiousness
++flirted
++flirting
++flirts
++flirty
++flit
++flits
++flitted
++flitting
++float
++floated
++floater
++floaters
++floating
++floats
++flock
++flocked
++flocking
++flocks
++floe
++floes
++flog
++flogged
++flogger
++floggers
++flogging
++floggings
++flogs
++flood
++flooded
++flooder
++floodgate
++floodgates
++flooding
++floodlight
++floodlighted
++floodlighting
++floodlights
++floodlit
++floodplain
++floodplains
++floods
++floodwater
++floodwaters
++floor
++floorboard
++floorboards
++floored
++flooring
++floors
++floorwalker
++floorwalkers
++floozies
++floozy
++flop
++flophouse
++flophouses
++flopped
++floppier
++floppies
++floppiest
++floppily
++floppiness
++flopping
++floppy
++flops
++flora
++floral
++floras
++florescence
++florescent
++floret
++florets
++florid
++floridly
++floridness
++florin
++florins
++florist
++florists
++floss
++flossed
++flosses
++flossier
++flossiest
++flossing
++flossy
++flotation
++flotations
++flotilla
++flotillas
++flotsam
++flounce
++flounced
++flounces
++flouncing
++flouncy
++flounder
++floundered
++floundering
++flounders
++flour
++floured
++flouring
++flourish
++flourished
++flourishes
++flourishing
++flours
++floury
++flout
++flouted
++flouter
++flouters
++flouting
++flouts
++flow
++flowchart
++flowcharts
++flowed
++flower
++flowerbed
++flowerbeds
++flowered
++flowerier
++floweriest
++floweriness
++flowering
++flowerings
++flowerless
++flowerpot
++flowerpots
++flowers
++flowery
++flowing
++flown
++flows
++flt
++flu
++flub
++flubbed
++flubbing
++flubs
++fluctuate
++fluctuated
++fluctuates
++fluctuating
++fluctuation
++fluctuations
++flue
++fluency
++fluent
++fluently
++flues
++fluff
++fluffed
++fluffier
++fluffiest
++fluffiness
++fluffing
++fluffs
++fluffy
++fluid
++fluidity
++fluidly
++fluids
++fluke
++flukes
++flukier
++flukiest
++fluky
++flume
++flumes
++flummox
++flummoxed
++flummoxes
++flummoxing
++flung
++flunk
++flunked
++flunkies
++flunking
++flunks
++flunky
++fluoresce
++fluoresced
++fluorescence
++fluorescent
++fluoresces
++fluorescing
++fluoridate
++fluoridated
++fluoridates
++fluoridating
++fluoridation
++fluoride
++fluorides
++fluorine
++fluorite
++fluorocarbon
++fluorocarbons
++fluoroscope
++fluoroscopes
++fluoroscopic
++flurried
++flurries
++flurry
++flurrying
++flush
++flushed
++flusher
++flushes
++flushest
++flushing
++fluster
++flustered
++flustering
++flusters
++flute
++fluted
++flutes
++fluting
++flutist
++flutists
++flutter
++fluttered
++fluttering
++flutters
++fluttery
++fluvial
++flux
++fluxed
++fluxes
++fluxing
++fly
++flyable
++flyaway
++flyblown
++flyby
++flybys
++flycatcher
++flycatchers
++flying
++flyleaf
++flyleaves
++flyover
++flyovers
++flypaper
++flypapers
++flypast
++flypasts
++flysheet
++flysheets
++flyspeck
++flyspecked
++flyspecking
++flyspecks
++flyswatter
++flyswatters
++flytrap
++flytraps
++flyway
++flyways
++flyweight
++flyweights
++flywheel
++flywheels
++foal
++foaled
++foaling
++foals
++foam
++foamed
++foamier
++foamiest
++foaminess
++foaming
++foams
++foamy
++fob
++fobbed
++fobbing
++fobs
++focal
++focally
++focus
++focused
++focuses
++focusing
++fodder
++fodders
++foe
++foes
++fog
++fogbound
++fogged
++foggier
++foggiest
++foggily
++fogginess
++fogging
++foggy
++foghorn
++foghorns
++fogies
++fogs
++fogy
++fogyish
++foible
++foibles
++foil
++foiled
++foiling
++foils
++foist
++foisted
++foisting
++foists
++fol
++fold
++foldaway
++folded
++folder
++folders
++folding
++foldout
++foldouts
++folds
++foliage
++folic
++folio
++folios
++folk
++folklore
++folkloric
++folklorist
++folklorists
++folks
++folksier
++folksiest
++folksiness
++folksinger
++folksingers
++folksinging
++folksy
++folktale
++folktales
++folkway
++folkways
++foll
++follicle
++follicles
++follies
++follow
++followed
++follower
++followers
++following
++followings
++follows
++followup
++followups
++folly
++foment
++fomentation
++fomented
++fomenting
++foments
++fond
++fondant
++fondants
++fonder
++fondest
++fondle
++fondled
++fondles
++fondling
++fondly
++fondness
++fondue
++fondues
++font
++fontanel
++fontanels
++fonts
++foo
++foobar
++food
++foodie
++foodies
++foods
++foodstuff
++foodstuffs
++fool
++fooled
++fooleries
++foolery
++foolhardier
++foolhardiest
++foolhardily
++foolhardiness
++foolhardy
++fooling
++foolish
++foolishly
++foolishness
++foolproof
++fools
++foolscap
++foot
++footage
++football
++footballer
++footballers
++footballing
++footballs
++footbridge
++footbridges
++footed
++footer
++footers
++footfall
++footfalls
++foothill
++foothills
++foothold
++footholds
++footie
++footing
++footings
++footless
++footlights
++footling
++footlings
++footlocker
++footlockers
++footloose
++footman
++footmen
++footnote
++footnoted
++footnotes
++footnoting
++footpath
++footpaths
++footplate
++footplates
++footprint
++footprints
++footrace
++footraces
++footrest
++footrests
++foots
++footsie
++footsies
++footslogging
++footsore
++footstep
++footsteps
++footstool
++footstools
++footwear
++footwork
++footy
++fop
++foppery
++foppish
++foppishness
++fops
++for
++fora
++forage
++foraged
++forager
++foragers
++forages
++foraging
++foray
++forayed
++foraying
++forays
++forbade
++forbear
++forbearance
++forbearing
++forbears
++forbid
++forbidden
++forbidding
++forbiddingly
++forbiddings
++forbids
++forbore
++forborne
++force
++forced
++forceful
++forcefully
++forcefulness
++forceps
++forces
++forcible
++forcibly
++forcing
++ford
++fordable
++forded
++fording
++fords
++fore
++forearm
++forearmed
++forearming
++forearms
++forebear
++forebears
++forebode
++foreboded
++forebodes
++foreboding
++forebodings
++forecast
++forecaster
++forecasters
++forecasting
++forecastle
++forecastles
++forecasts
++foreclose
++foreclosed
++forecloses
++foreclosing
++foreclosure
++foreclosures
++forecourt
++forecourts
++foredoom
++foredoomed
++foredooming
++foredooms
++forefather
++forefathers
++forefeet
++forefinger
++forefingers
++forefoot
++forefront
++forefronts
++forego
++foregoes
++foregoing
++foregone
++foreground
++foregrounded
++foregrounding
++foregrounds
++forehand
++forehands
++forehead
++foreheads
++foreign
++foreigner
++foreigners
++foreignness
++foreknew
++foreknow
++foreknowing
++foreknowledge
++foreknown
++foreknows
++foreleg
++forelegs
++forelimb
++forelimbs
++forelock
++forelocks
++foreman
++foremast
++foremasts
++foremen
++foremost
++forename
++forenamed
++forenames
++forenoon
++forenoons
++forensic
++forensically
++forensics
++foreordain
++foreordained
++foreordaining
++foreordains
++forepart
++foreparts
++foreperson
++forepersons
++foreplay
++forequarter
++forequarters
++forerunner
++forerunners
++fores
++foresail
++foresails
++foresaw
++foresee
++foreseeable
++foreseeing
++foreseen
++foreseer
++foreseers
++foresees
++foreshadow
++foreshadowed
++foreshadowing
++foreshadows
++foreshore
++foreshores
++foreshorten
++foreshortened
++foreshortening
++foreshortens
++foresight
++foresighted
++foresightedness
++foreskin
++foreskins
++forest
++forestall
++forestalled
++forestalling
++forestalls
++forestation
++forested
++forester
++foresters
++foresting
++forestland
++forestry
++forests
++foretaste
++foretasted
++foretastes
++foretasting
++foretell
++foretelling
++foretells
++forethought
++foretold
++forever
++forevermore
++forewarn
++forewarned
++forewarning
++forewarns
++forewent
++forewoman
++forewomen
++foreword
++forewords
++forfeit
++forfeited
++forfeiting
++forfeits
++forfeiture
++forfeitures
++forgather
++forgathered
++forgathering
++forgathers
++forgave
++forge
++forged
++forger
++forgeries
++forgers
++forgery
++forges
++forget
++forgetful
++forgetfully
++forgetfulness
++forgets
++forgettable
++forgetting
++forging
++forgings
++forgivable
++forgive
++forgiven
++forgiveness
++forgiver
++forgivers
++forgives
++forgiving
++forgo
++forgoer
++forgoers
++forgoes
++forgoing
++forgone
++forgot
++forgotten
++fork
++forked
++forkful
++forkfuls
++forking
++forklift
++forklifts
++forks
++forlorn
++forlornly
++form
++formal
++formaldehyde
++formalin
++formalism
++formalist
++formalists
++formalities
++formality
++formalization
++formalize
++formalized
++formalizes
++formalizing
++formally
++formals
++format
++formation
++formations
++formative
++formats
++formatted
++formatting
++formed
++former
++formerly
++formfitting
++formic
++formidable
++formidably
++forming
++formless
++formlessly
++formlessness
++forms
++formula
++formulae
++formulaic
++formulas
++formulate
++formulated
++formulates
++formulating
++formulation
++formulations
++formulator
++formulators
++fornicate
++fornicated
++fornicates
++fornicating
++fornication
++fornicator
++fornicators
++forsake
++forsaken
++forsakes
++forsaking
++forsook
++forsooth
++forswear
++forswearing
++forswears
++forswore
++forsworn
++forsythia
++forsythias
++fort
++forte
++fortes
++forth
++forthcoming
++forthright
++forthrightly
++forthrightness
++forthwith
++forties
++fortieth
++fortieths
++fortification
++fortifications
++fortified
++fortifier
++fortifiers
++fortifies
++fortify
++fortifying
++fortissimo
++fortitude
++fortnight
++fortnightly
++fortnights
++fortress
++fortresses
++forts
++fortuitous
++fortuitously
++fortuitousness
++fortuity
++fortunate
++fortunately
++fortune
++fortunes
++fortuneteller
++fortunetellers
++fortunetelling
++forty
++forum
++forums
++forward
++forwarded
++forwarder
++forwarders
++forwardest
++forwarding
++forwardly
++forwardness
++forwards
++forwent
++fossa
++fossil
++fossilization
++fossilize
++fossilized
++fossilizes
++fossilizing
++fossils
++foster
++fostered
++fostering
++fosters
++fought
++foul
++foulard
++fouled
++fouler
++foulest
++fouling
++foully
++foulmouthed
++foulness
++fouls
++found
++foundation
++foundational
++foundations
++founded
++founder
++foundered
++foundering
++founders
++founding
++foundling
++foundlings
++foundries
++foundry
++founds
++fount
++fountain
++fountainhead
++fountainheads
++fountains
++founts
++four
++fourfold
++fourposter
++fourposters
++fours
++fourscore
++foursome
++foursomes
++foursquare
++fourteen
++fourteens
++fourteenth
++fourteenths
++fourth
++fourthly
++fourths
++fowl
++fowled
++fowling
++fowls
++fox
++foxed
++foxes
++foxfire
++foxglove
++foxgloves
++foxhole
++foxholes
++foxhound
++foxhounds
++foxhunt
++foxhunting
++foxhunts
++foxier
++foxiest
++foxily
++foxiness
++foxing
++foxtrot
++foxtrots
++foxtrotted
++foxtrotting
++foxy
++foyer
++foyers
++fps
++fr
++fracas
++fracases
++frack
++fracked
++fracking
++fracks
++fractal
++fractals
++fraction
++fractional
++fractionally
++fractions
++fractious
++fractiously
++fractiousness
++fracture
++fractured
++fractures
++fracturing
++frag
++fragile
++fragiler
++fragilest
++fragility
++fragment
++fragmentary
++fragmentation
++fragmented
++fragmenting
++fragments
++fragrance
++fragrances
++fragrant
++fragrantly
++frags
++frail
++frailer
++frailest
++frailly
++frailness
++frailties
++frailty
++frame
++framed
++framer
++framers
++frames
++framework
++frameworks
++framing
++franc
++franchise
++franchised
++franchisee
++franchisees
++franchiser
++franchisers
++franchises
++franchising
++francium
++francophone
++francs
++frangibility
++frangible
++frank
++franked
++franker
++frankest
++frankfurter
++frankfurters
++frankincense
++franking
++frankly
++frankness
++franks
++frantic
++frantically
++frappe
++frappes
++frat
++fraternal
++fraternally
++fraternities
++fraternity
++fraternization
++fraternize
++fraternized
++fraternizer
++fraternizers
++fraternizes
++fraternizing
++fratricidal
++fratricide
++fratricides
++frats
++fraud
++frauds
++fraudster
++fraudsters
++fraudulence
++fraudulent
++fraudulently
++fraught
++fray
++frayed
++fraying
++frays
++frazzle
++frazzled
++frazzles
++frazzling
++freak
++freaked
++freakier
++freakiest
++freaking
++freakish
++freakishly
++freakishness
++freaks
++freaky
++freckle
++freckled
++freckles
++freckling
++freckly
++free
++freebase
++freebased
++freebases
++freebasing
++freebie
++freebies
++freebooter
++freebooters
++freeborn
++freed
++freedman
++freedmen
++freedom
++freedoms
++freehand
++freehold
++freeholder
++freeholders
++freeholds
++freeing
++freelance
++freelanced
++freelancer
++freelancers
++freelances
++freelancing
++freeload
++freeloaded
++freeloader
++freeloaders
++freeloading
++freeloads
++freely
++freeman
++freemasonry
++freemen
++freephone
++freer
++frees
++freesia
++freesias
++freest
++freestanding
++freestone
++freestones
++freestyle
++freestyles
++freethinker
++freethinkers
++freethinking
++freeware
++freeway
++freeways
++freewheel
++freewheeled
++freewheeling
++freewheels
++freewill
++freezable
++freeze
++freezer
++freezers
++freezes
++freezing
++freight
++freighted
++freighter
++freighters
++freighting
++freights
++french
++frenetic
++frenetically
++frenzied
++frenziedly
++frenzies
++frenzy
++freq
++frequencies
++frequency
++frequent
++frequented
++frequenter
++frequenters
++frequentest
++frequenting
++frequently
++frequents
++fresco
++frescoes
++fresh
++freshen
++freshened
++freshener
++fresheners
++freshening
++freshens
++fresher
++freshers
++freshest
++freshet
++freshets
++freshly
++freshman
++freshmen
++freshness
++freshwater
++fret
++fretful
++fretfully
++fretfulness
++frets
++fretsaw
++fretsaws
++fretted
++fretting
++fretwork
++friable
++friar
++friaries
++friars
++friary
++fricassee
++fricasseed
++fricasseeing
++fricassees
++fricative
++fricatives
++friction
++frictional
++frictions
++fridge
++fridges
++fried
++friedcake
++friedcakes
++friend
++friended
++friending
++friendless
++friendlier
++friendlies
++friendliest
++friendliness
++friendly
++friends
++friendship
++friendships
++fries
++frieze
++friezes
++frig
++frigate
++frigates
++frigged
++frigging
++fright
++frighted
++frighten
++frightened
++frightening
++frighteningly
++frightens
++frightful
++frightfully
++frightfulness
++frighting
++frights
++frigid
++frigidity
++frigidly
++frigidness
++frigs
++frill
++frilled
++frillier
++frilliest
++frills
++frilly
++fringe
++fringed
++fringes
++fringing
++fripperies
++frippery
++frisk
++frisked
++friskier
++friskiest
++friskily
++friskiness
++frisking
++frisks
++frisky
++frisson
++frissons
++fritter
++frittered
++frittering
++fritters
++fritz
++frivolities
++frivolity
++frivolous
++frivolously
++frivolousness
++frizz
++frizzed
++frizzes
++frizzier
++frizziest
++frizzing
++frizzle
++frizzled
++frizzles
++frizzling
++frizzly
++frizzy
++fro
++frock
++frocks
++frog
++frogging
++froggings
++frogman
++frogmarch
++frogmarched
++frogmarches
++frogmarching
++frogmen
++frogs
++frogspawn
++frolic
++frolicked
++frolicker
++frolickers
++frolicking
++frolics
++frolicsome
++from
++frond
++fronds
++front
++frontage
++frontages
++frontal
++frontally
++frontbench
++frontbencher
++frontbenchers
++frontbenches
++fronted
++frontier
++frontiers
++frontiersman
++frontiersmen
++frontierswoman
++frontierswomen
++fronting
++frontispiece
++frontispieces
++fronts
++frontward
++frontwards
++frosh
++frost
++frostbit
++frostbite
++frostbites
++frostbiting
++frostbitten
++frosted
++frostier
++frostiest
++frostily
++frostiness
++frosting
++frostings
++frosts
++frosty
++froth
++frothed
++frothier
++frothiest
++frothiness
++frothing
++froths
++frothy
++froufrou
++froward
++frowardness
++frown
++frowned
++frowning
++frowns
++frowzier
++frowziest
++frowzily
++frowziness
++frowzy
++froze
++frozen
++fructified
++fructifies
++fructify
++fructifying
++fructose
++frugal
++frugality
++frugally
++fruit
++fruitcake
++fruitcakes
++fruited
++fruiterer
++fruiterers
++fruitful
++fruitfully
++fruitfulness
++fruitier
++fruitiest
++fruitiness
++fruiting
++fruition
++fruitless
++fruitlessly
++fruitlessness
++fruits
++fruity
++frump
++frumpier
++frumpiest
++frumpish
++frumps
++frumpy
++frustrate
++frustrated
++frustrates
++frustrating
++frustratingly
++frustration
++frustrations
++frustum
++frustums
++fry
++fryer
++fryers
++frying
++ft
++ftp
++ftpers
++ftping
++ftps
++fuchsia
++fuchsias
++fuck
++fucked
++fucker
++fuckers
++fuckhead
++fuckheads
++fucking
++fucks
++fuddle
++fuddled
++fuddles
++fuddling
++fudge
++fudged
++fudges
++fudging
++fuehrer
++fuehrers
++fuel
++fueled
++fueling
++fuels
++fug
++fugal
++fuggy
++fugitive
++fugitives
++fugue
++fugues
++fuhrer
++fuhrers
++fulcrum
++fulcrums
++fulfill
++fulfilled
++fulfilling
++fulfillment
++fulfills
++full
++fullback
++fullbacks
++fulled
++fuller
++fullers
++fullest
++fulling
++fullness
++fulls
++fully
++fulminate
++fulminated
++fulminates
++fulminating
++fulmination
++fulminations
++fulsome
++fulsomely
++fulsomeness
++fum
++fumble
++fumbled
++fumbler
++fumblers
++fumbles
++fumbling
++fumblingly
++fume
++fumed
++fumes
++fumier
++fumiest
++fumigant
++fumigants
++fumigate
++fumigated
++fumigates
++fumigating
++fumigation
++fumigator
++fumigators
++fuming
++fums
++fumy
++fun
++function
++functional
++functionalism
++functionalist
++functionalists
++functionalities
++functionality
++functionally
++functionaries
++functionary
++functioned
++functioning
++functions
++fund
++fundamental
++fundamentalism
++fundamentalist
++fundamentalists
++fundamentally
++fundamentals
++funded
++funding
++fundraiser
++fundraisers
++fundraising
++funds
++funeral
++funerals
++funerary
++funereal
++funereally
++funfair
++funfairs
++fungal
++fungi
++fungible
++fungibles
++fungicidal
++fungicide
++fungicides
++fungoid
++fungous
++fungus
++funicular
++funiculars
++funk
++funked
++funkier
++funkiest
++funkiness
++funking
++funks
++funky
++funnel
++funneled
++funneling
++funnels
++funner
++funnest
++funnier
++funnies
++funniest
++funnily
++funniness
++funny
++funnyman
++funnymen
++fur
++furbelow
++furbish
++furbished
++furbishes
++furbishing
++furies
++furious
++furiously
++furl
++furled
++furling
++furlong
++furlongs
++furlough
++furloughed
++furloughing
++furloughs
++furls
++furn
++furnace
++furnaces
++furnish
++furnished
++furnishes
++furnishing
++furnishings
++furniture
++furor
++furors
++furred
++furrier
++furriers
++furriest
++furriness
++furring
++furrow
++furrowed
++furrowing
++furrows
++furry
++furs
++further
++furtherance
++furthered
++furthering
++furthermore
++furthermost
++furthers
++furthest
++furtive
++furtively
++furtiveness
++fury
++furze
++fuse
++fused
++fusee
++fusees
++fuselage
++fuselages
++fuses
++fusibility
++fusible
++fusilier
++fusiliers
++fusillade
++fusillades
++fusing
++fusion
++fusions
++fuss
++fussbudget
++fussbudgets
++fussed
++fusses
++fussier
++fussiest
++fussily
++fussiness
++fussing
++fusspot
++fusspots
++fussy
++fustian
++fustier
++fustiest
++fustiness
++fusty
++fut
++futile
++futilely
++futility
++futon
++futons
++future
++futures
++futurism
++futurist
++futuristic
++futurists
++futurities
++futurity
++futurologist
++futurologists
++futurology
++futz
++futzed
++futzes
++futzing
++fuzz
++fuzzball
++fuzzballs
++fuzzed
++fuzzes
++fuzzier
++fuzziest
++fuzzily
++fuzziness
++fuzzing
++fuzzy
++fwd
++fwy
++g
++gab
++gabardine
++gabardines
++gabbed
++gabbier
++gabbiest
++gabbiness
++gabbing
++gabble
++gabbled
++gabbles
++gabbling
++gabby
++gaberdine
++gaberdines
++gabfest
++gabfests
++gable
++gabled
++gables
++gabs
++gad
++gadabout
++gadabouts
++gadded
++gadder
++gadders
++gadding
++gadflies
++gadfly
++gadget
++gadgetry
++gadgets
++gadolinium
++gads
++gaff
++gaffe
++gaffed
++gaffer
++gaffers
++gaffes
++gaffing
++gaffs
++gag
++gaga
++gagged
++gagging
++gaggle
++gaggles
++gags
++gaiety
++gaily
++gain
++gained
++gainer
++gainers
++gainful
++gainfully
++gaining
++gains
++gainsaid
++gainsay
++gainsayer
++gainsayers
++gainsaying
++gainsays
++gait
++gaiter
++gaiters
++gaits
++gal
++gala
++galactic
++galas
++galaxies
++galaxy
++gale
++galena
++gales
++gall
++gallant
++gallantly
++gallantry
++gallants
++gallbladder
++gallbladders
++galled
++galleon
++galleons
++galleria
++gallerias
++galleries
++gallery
++galley
++galleys
++gallimaufries
++gallimaufry
++galling
++gallium
++gallivant
++gallivanted
++gallivanting
++gallivants
++gallon
++gallons
++gallop
++galloped
++galloping
++gallops
++gallows
++galls
++gallstone
++gallstones
++galoot
++galoots
++galore
++galosh
++galoshes
++gals
++galumph
++galumphed
++galumphing
++galumphs
++galvanic
++galvanism
++galvanization
++galvanize
++galvanized
++galvanizes
++galvanizing
++galvanometer
++galvanometers
++gambit
++gambits
++gamble
++gambled
++gambler
++gamblers
++gambles
++gambling
++gambol
++gamboled
++gamboling
++gambols
++game
++gamecock
++gamecocks
++gamed
++gamekeeper
++gamekeepers
++gamely
++gameness
++gamer
++games
++gamesmanship
++gamest
++gamester
++gamesters
++gamete
++gametes
++gametic
++gamier
++gamiest
++gamin
++gamine
++gamines
++gaminess
++gaming
++gamins
++gamma
++gammas
++gammon
++gammy
++gamut
++gamuts
++gamy
++gander
++ganders
++gang
++gangbusters
++ganged
++ganging
++gangland
++ganglia
++gangling
++ganglion
++ganglionic
++gangplank
++gangplanks
++gangrene
++gangrened
++gangrenes
++gangrening
++gangrenous
++gangs
++gangsta
++gangstas
++gangster
++gangsters
++gangway
++gangways
++ganja
++gannet
++gannets
++gantlet
++gantlets
++gantries
++gantry
++gap
++gape
++gaped
++gapes
++gaping
++gaps
++gar
++garage
++garaged
++garages
++garaging
++garb
++garbage
++garbageman
++garbanzo
++garbanzos
++garbed
++garbing
++garble
++garbled
++garbles
++garbling
++garbs
++garcon
++garcons
++garden
++gardened
++gardener
++gardeners
++gardenia
++gardenias
++gardening
++gardens
++garfish
++garfishes
++gargantuan
++gargle
++gargled
++gargles
++gargling
++gargoyle
++gargoyles
++garish
++garishly
++garishness
++garland
++garlanded
++garlanding
++garlands
++garlic
++garlicky
++garment
++garments
++garner
++garnered
++garnering
++garners
++garnet
++garnets
++garnish
++garnished
++garnishee
++garnisheed
++garnisheeing
++garnishees
++garnishes
++garnishing
++garnishment
++garnishments
++garret
++garrets
++garrison
++garrisoned
++garrisoning
++garrisons
++garrote
++garroted
++garroter
++garroters
++garrotes
++garroting
++garrulity
++garrulous
++garrulously
++garrulousness
++gars
++garter
++garters
++gas
++gasbag
++gasbags
++gaseous
++gases
++gash
++gashed
++gashes
++gashing
++gasholder
++gasholders
++gasket
++gaskets
++gaslight
++gaslights
++gasman
++gasmen
++gasohol
++gasoline
++gasometer
++gasometers
++gasp
++gasped
++gasping
++gasps
++gassed
++gasses
++gassier
++gassiest
++gassing
++gassy
++gastric
++gastritis
++gastroenteritis
++gastrointestinal
++gastronome
++gastronomes
++gastronomic
++gastronomical
++gastronomically
++gastronomy
++gastropod
++gastropods
++gasworks
++gate
++gateau
++gateaux
++gatecrash
++gatecrashed
++gatecrasher
++gatecrashers
++gatecrashes
++gatecrashing
++gated
++gatehouse
++gatehouses
++gatekeeper
++gatekeepers
++gatepost
++gateposts
++gates
++gateway
++gateways
++gather
++gathered
++gatherer
++gatherers
++gathering
++gatherings
++gathers
++gating
++gator
++gators
++gauche
++gauchely
++gaucheness
++gaucher
++gaucherie
++gauchest
++gaucho
++gauchos
++gaudier
++gaudiest
++gaudily
++gaudiness
++gaudy
++gauge
++gauged
++gauges
++gauging
++gaunt
++gaunter
++gauntest
++gauntlet
++gauntlets
++gauntness
++gauze
++gauzier
++gauziest
++gauziness
++gauzy
++gave
++gavel
++gavels
++gavotte
++gavottes
++gawd
++gawk
++gawked
++gawkier
++gawkiest
++gawkily
++gawkiness
++gawking
++gawks
++gawky
++gawp
++gawped
++gawping
++gawps
++gay
++gayer
++gayest
++gayness
++gays
++gaze
++gazebo
++gazebos
++gazed
++gazelle
++gazelles
++gazer
++gazers
++gazes
++gazette
++gazetted
++gazetteer
++gazetteers
++gazettes
++gazetting
++gazillion
++gazillions
++gazing
++gazpacho
++gazump
++gazumped
++gazumping
++gazumps
++gear
++gearbox
++gearboxes
++geared
++gearing
++gears
++gearshift
++gearshifts
++gearwheel
++gearwheels
++gecko
++geckos
++geddit
++gee
++geed
++geeing
++geek
++geekier
++geekiest
++geeks
++geeky
++gees
++geese
++geezer
++geezers
++geisha
++gel
++gelatin
++gelatinous
++gelcap
++geld
++gelded
++gelding
++geldings
++gelds
++gelid
++gelignite
++gelled
++gelling
++gels
++gem
++gemological
++gemologist
++gemologists
++gemology
++gems
++gemstone
++gemstones
++gen
++gendarme
++gendarmes
++gender
++gendered
++genders
++gene
++genealogical
++genealogically
++genealogies
++genealogist
++genealogists
++genealogy
++genera
++general
++generalissimo
++generalissimos
++generalist
++generalists
++generalities
++generality
++generalization
++generalizations
++generalize
++generalized
++generalizes
++generalizing
++generally
++generals
++generalship
++generate
++generated
++generates
++generating
++generation
++generational
++generations
++generative
++generator
++generators
++generic
++generically
++generics
++generosities
++generosity
++generous
++generously
++generousness
++genes
++geneses
++genesis
++genetic
++genetically
++geneticist
++geneticists
++genetics
++genial
++geniality
++genially
++geniculate
++genie
++genies
++genii
++genital
++genitalia
++genitally
++genitals
++genitive
++genitives
++genitourinary
++genius
++geniuses
++genned
++genning
++genocidal
++genocide
++genocides
++genome
++genomes
++genomics
++genre
++genres
++gens
++gent
++genteel
++genteelly
++genteelness
++gentian
++gentians
++gentile
++gentiles
++gentility
++gentle
++gentled
++gentlefolk
++gentlefolks
++gentleman
++gentlemanly
++gentlemen
++gentleness
++gentler
++gentles
++gentlest
++gentlewoman
++gentlewomen
++gentling
++gently
++gentries
++gentrification
++gentrified
++gentrifies
++gentrify
++gentrifying
++gentry
++gents
++genuflect
++genuflected
++genuflecting
++genuflection
++genuflections
++genuflects
++genuine
++genuinely
++genuineness
++genus
++geocache
++geocached
++geocaches
++geocaching
++geocentric
++geocentrically
++geochemistry
++geode
++geodes
++geodesic
++geodesics
++geodesy
++geodetic
++geoengineering
++geog
++geographer
++geographers
++geographic
++geographical
++geographically
++geographies
++geography
++geologic
++geological
++geologically
++geologies
++geologist
++geologists
++geology
++geom
++geomagnetic
++geomagnetism
++geometer
++geometric
++geometrical
++geometrically
++geometries
++geometry
++geophysical
++geophysicist
++geophysicists
++geophysics
++geopolitical
++geopolitics
++geostationary
++geosynchronous
++geosyncline
++geosynclines
++geothermal
++geothermic
++geranium
++geraniums
++gerbil
++gerbils
++geriatric
++geriatrician
++geriatricians
++geriatrics
++germ
++germane
++germanium
++germicidal
++germicide
++germicides
++germinal
++germinate
++germinated
++germinates
++germinating
++germination
++germs
++gerontological
++gerontologist
++gerontologists
++gerontology
++gerrymander
++gerrymandered
++gerrymandering
++gerrymanders
++gerund
++gerunds
++gestalt
++gestalts
++gestapo
++gestapos
++gestate
++gestated
++gestates
++gestating
++gestation
++gestational
++gesticulate
++gesticulated
++gesticulates
++gesticulating
++gesticulation
++gesticulations
++gestural
++gesture
++gestured
++gestures
++gesturing
++gesundheit
++get
++getaway
++getaways
++gets
++getting
++getup
++gewgaw
++gewgaws
++geyser
++geysers
++ghastlier
++ghastliest
++ghastliness
++ghastly
++ghat
++ghats
++ghee
++gherkin
++gherkins
++ghetto
++ghettoize
++ghettoized
++ghettoizes
++ghettoizing
++ghettos
++ghost
++ghosted
++ghosting
++ghostlier
++ghostliest
++ghostliness
++ghostly
++ghosts
++ghostwrite
++ghostwriter
++ghostwriters
++ghostwrites
++ghostwriting
++ghostwritten
++ghostwrote
++ghoul
++ghoulish
++ghoulishly
++ghoulishness
++ghouls
++giant
++giantess
++giantesses
++giants
++gibber
++gibbered
++gibbering
++gibberish
++gibbers
++gibbet
++gibbeted
++gibbeting
++gibbets
++gibbon
++gibbons
++gibbous
++gibe
++gibed
++gibes
++gibing
++giblet
++giblets
++giddier
++giddiest
++giddily
++giddiness
++giddy
++gift
++gifted
++gifting
++gifts
++gig
++gigabit
++gigabits
++gigabyte
++gigabytes
++gigahertz
++gigantic
++gigantically
++gigapixel
++gigapixels
++gigawatt
++gigawatts
++gigged
++gigging
++giggle
++giggled
++giggler
++gigglers
++giggles
++gigglier
++giggliest
++giggling
++giggly
++gigolo
++gigolos
++gigs
++gild
++gilded
++gilder
++gilders
++gilding
++gilds
++gill
++gillie
++gillies
++gillion
++gillions
++gills
++gilt
++gilts
++gimbals
++gimcrack
++gimcrackery
++gimcracks
++gimlet
++gimleted
++gimleting
++gimlets
++gimme
++gimmes
++gimmick
++gimmickry
++gimmicks
++gimmicky
++gimp
++gimped
++gimping
++gimps
++gimpy
++gin
++ginger
++gingerbread
++gingered
++gingering
++gingerly
++gingers
++gingersnap
++gingersnaps
++gingery
++gingham
++gingivitis
++ginkgo
++ginkgoes
++ginned
++ginning
++ginormous
++gins
++ginseng
++giraffe
++giraffes
++gird
++girded
++girder
++girders
++girding
++girdle
++girdled
++girdles
++girdling
++girds
++girl
++girlfriend
++girlfriends
++girlhood
++girlhoods
++girlish
++girlishly
++girlishness
++girls
++girly
++giro
++giros
++girt
++girted
++girth
++girths
++girting
++girts
++gist
++git
++gite
++gites
++gits
++give
++giveaway
++giveaways
++giveback
++givebacks
++given
++givens
++giver
++givers
++gives
++giving
++givings
++gizmo
++gizmos
++gizzard
++gizzards
++glace
++glaceed
++glaceing
++glaces
++glacial
++glacially
++glaciate
++glaciated
++glaciates
++glaciating
++glaciation
++glaciations
++glacier
++glaciers
++glad
++gladden
++gladdened
++gladdening
++gladdens
++gladder
++gladdest
++glade
++glades
++gladiator
++gladiatorial
++gladiators
++gladiola
++gladiolas
++gladioli
++gladiolus
++gladly
++gladness
++glads
++gladsome
++glam
++glamorization
++glamorize
++glamorized
++glamorizes
++glamorizing
++glamorous
++glamorously
++glamour
++glamoured
++glamouring
++glamours
++glance
++glanced
++glances
++glancing
++gland
++glandes
++glands
++glandular
++glans
++glare
++glared
++glares
++glaring
++glaringly
++glasnost
++glass
++glassblower
++glassblowers
++glassblowing
++glassed
++glasses
++glassful
++glassfuls
++glasshouse
++glasshouses
++glassier
++glassiest
++glassily
++glassiness
++glassing
++glassware
++glassy
++glaucoma
++glaze
++glazed
++glazes
++glazier
++glaziers
++glazing
++gleam
++gleamed
++gleaming
++gleamings
++gleams
++glean
++gleaned
++gleaner
++gleaners
++gleaning
++gleanings
++gleans
++glee
++gleeful
++gleefully
++gleefulness
++glen
++glenohumeral
++glenoid
++glens
++glib
++glibber
++glibbest
++glibly
++glibness
++glide
++glided
++glider
++gliders
++glides
++gliding
++glimmer
++glimmered
++glimmering
++glimmerings
++glimmers
++glimpse
++glimpsed
++glimpses
++glimpsing
++glint
++glinted
++glinting
++glints
++glissandi
++glissando
++glisten
++glistened
++glistening
++glistens
++glister
++glistered
++glistering
++glisters
++glitch
++glitched
++glitches
++glitching
++glitter
++glitterati
++glittered
++glittering
++glitters
++glittery
++glitz
++glitzier
++glitziest
++glitzy
++gloaming
++gloamings
++gloat
++gloated
++gloating
++gloatingly
++gloats
++glob
++global
++globalism
++globalist
++globalists
++globalization
++globalize
++globalized
++globalizes
++globalizing
++globally
++globe
++globed
++globes
++globetrotter
++globetrotters
++globetrotting
++globing
++globs
++globular
++globule
++globules
++globulin
++glockenspiel
++glockenspiels
++gloom
++gloomier
++gloomiest
++gloomily
++gloominess
++gloomy
++glop
++gloppy
++gloried
++glories
++glorification
++glorified
++glorifies
++glorify
++glorifying
++glorious
++gloriously
++glory
++glorying
++gloss
++glossaries
++glossary
++glossed
++glosses
++glossier
++glossies
++glossiest
++glossily
++glossiness
++glossing
++glossolalia
++glossy
++glottal
++glottis
++glottises
++glove
++gloved
++gloves
++gloving
++glow
++glowed
++glower
++glowered
++glowering
++glowers
++glowing
++glowingly
++glows
++glowworm
++glowworms
++glucagon
++glucose
++glue
++glued
++glues
++gluey
++gluier
++gluiest
++gluing
++glum
++glumly
++glummer
++glummest
++glumness
++gluon
++gluons
++glut
++gluten
++glutenous
++glutinous
++glutinously
++gluts
++glutted
++glutting
++glutton
++gluttonous
++gluttonously
++gluttons
++gluttony
++glycerin
++glycerol
++glycogen
++glycol
++glyph
++gm
++gnarl
++gnarled
++gnarlier
++gnarliest
++gnarling
++gnarls
++gnarly
++gnash
++gnashed
++gnashes
++gnashing
++gnat
++gnats
++gnaw
++gnawed
++gnawing
++gnaws
++gneiss
++gnocchi
++gnome
++gnomes
++gnomic
++gnomish
++gnu
++gnus
++go
++goad
++goaded
++goading
++goads
++goal
++goalie
++goalies
++goalkeeper
++goalkeepers
++goalkeeping
++goalless
++goalmouth
++goalmouths
++goalpost
++goalposts
++goals
++goalscorer
++goalscorers
++goaltender
++goaltenders
++goat
++goatee
++goatees
++goatherd
++goatherds
++goats
++goatskin
++goatskins
++gob
++gobbed
++gobbet
++gobbets
++gobbing
++gobble
++gobbled
++gobbledygook
++gobbler
++gobblers
++gobbles
++gobbling
++goblet
++goblets
++goblin
++goblins
++gobs
++gobsmacked
++gobstopper
++gobstoppers
++god
++godawful
++godchild
++godchildren
++goddammit
++goddamn
++goddamned
++goddaughter
++goddaughters
++goddess
++goddesses
++godfather
++godfathers
++godforsaken
++godhead
++godhood
++godless
++godlessly
++godlessness
++godlier
++godliest
++godlike
++godliness
++godly
++godmother
++godmothers
++godparent
++godparents
++gods
++godsend
++godsends
++godson
++godsons
++godspeed
++goer
++goers
++goes
++gofer
++gofers
++goggle
++goggled
++goggles
++goggling
++going
++goings
++goiter
++goiters
++gold
++goldbrick
++goldbricked
++goldbricker
++goldbrickers
++goldbricking
++goldbricks
++golden
++goldener
++goldenest
++goldenrod
++goldfield
++goldfields
++goldfinch
++goldfinches
++goldfish
++goldfishes
++goldmine
++goldmines
++golds
++goldsmith
++goldsmiths
++golf
++golfed
++golfer
++golfers
++golfing
++golfs
++gollies
++golliwog
++golliwogs
++golly
++gonad
++gonadal
++gonads
++gondola
++gondolas
++gondolier
++gondoliers
++gone
++goner
++goners
++gong
++gonged
++gonging
++gongs
++gonk
++gonks
++gonna
++gonorrhea
++gonorrheal
++gonzo
++goo
++goober
++goobers
++good
++goodbye
++goodbyes
++goodhearted
++goodies
++goodish
++goodlier
++goodliest
++goodly
++goodness
++goodnight
++goods
++goodwill
++goody
++gooey
++goof
++goofball
++goofballs
++goofed
++goofier
++goofiest
++goofiness
++goofing
++goofs
++goofy
++google
++googled
++googles
++googlies
++googling
++googly
++gooier
++gooiest
++gook
++gooks
++goon
++goons
++goop
++goose
++gooseberries
++gooseberry
++goosebumps
++goosed
++gooses
++goosestep
++goosestepped
++goosestepping
++goosesteps
++goosing
++gopher
++gophers
++gore
++gored
++gores
++gorge
++gorged
++gorgeous
++gorgeously
++gorgeousness
++gorges
++gorging
++gorgon
++gorgons
++gorier
++goriest
++gorilla
++gorillas
++gorily
++goriness
++goring
++gormandize
++gormandized
++gormandizer
++gormandizers
++gormandizes
++gormandizing
++gormless
++gorp
++gorps
++gorse
++gory
++gosh
++goshawk
++goshawks
++gosling
++goslings
++gospel
++gospels
++gossamer
++gossip
++gossiped
++gossiper
++gossipers
++gossiping
++gossips
++gossipy
++got
++gotcha
++gotchas
++goth
++goths
++gotta
++gotten
++gouache
++gouaches
++gouge
++gouged
++gouger
++gougers
++gouges
++gouging
++goulash
++goulashes
++gourd
++gourde
++gourdes
++gourds
++gourmand
++gourmands
++gourmet
++gourmets
++gout
++goutier
++goutiest
++gouty
++gov
++govern
++governable
++governance
++governed
++governess
++governesses
++governing
++government
++governmental
++governments
++governor
++governors
++governorship
++governs
++govt
++gown
++gowned
++gowning
++gowns
++gr
++grab
++grabbed
++grabber
++grabbers
++grabbier
++grabbiest
++grabbing
++grabby
++grabs
++grace
++graced
++graceful
++gracefully
++gracefulness
++graceless
++gracelessly
++gracelessness
++graces
++gracing
++gracious
++graciously
++graciousness
++grackle
++grackles
++grad
++gradable
++gradate
++gradated
++gradates
++gradating
++gradation
++gradations
++grade
++graded
++grader
++graders
++grades
++gradient
++gradients
++grading
++grads
++gradual
++gradualism
++gradually
++gradualness
++graduate
++graduated
++graduates
++graduating
++graduation
++graduations
++graffiti
++graffito
++graft
++grafted
++grafter
++grafters
++grafting
++grafts
++graham
++grahams
++grail
++grain
++grained
++grainier
++grainiest
++graininess
++grains
++grainy
++gram
++grammar
++grammarian
++grammarians
++grammars
++grammatical
++grammatically
++gramophone
++gramophones
++grampus
++grampuses
++grams
++gran
++granaries
++granary
++grand
++grandam
++grandams
++grandaunt
++grandaunts
++grandchild
++grandchildren
++granddad
++granddaddies
++granddaddy
++granddads
++granddaughter
++granddaughters
++grandee
++grandees
++grander
++grandest
++grandeur
++grandfather
++grandfathered
++grandfathering
++grandfatherly
++grandfathers
++grandiloquence
++grandiloquent
++grandiose
++grandiosely
++grandiosity
++grandly
++grandma
++grandmas
++grandmother
++grandmotherly
++grandmothers
++grandnephew
++grandnephews
++grandness
++grandniece
++grandnieces
++grandpa
++grandparent
++grandparents
++grandpas
++grands
++grandson
++grandsons
++grandstand
++grandstanded
++grandstanding
++grandstands
++granduncle
++granduncles
++grange
++granges
++granite
++granitic
++grannies
++granny
++granola
++grans
++grant
++granted
++grantee
++grantees
++granter
++granters
++granting
++grants
++grantsmanship
++granular
++granularity
++granulate
++granulated
++granulates
++granulating
++granulation
++granule
++granules
++grape
++grapefruit
++grapefruits
++grapes
++grapeshot
++grapevine
++grapevines
++graph
++graphed
++graphic
++graphical
++graphically
++graphics
++graphing
++graphite
++graphologist
++graphologists
++graphology
++graphs
++grapnel
++grapnels
++grapple
++grappled
++grapples
++grappling
++grasp
++graspable
++grasped
++grasping
++grasps
++grass
++grassed
++grasses
++grasshopper
++grasshoppers
++grassier
++grassiest
++grassing
++grassland
++grasslands
++grassroots
++grassy
++grate
++grated
++grateful
++gratefully
++gratefulness
++grater
++graters
++grates
++gratification
++gratifications
++gratified
++gratifies
++gratify
++gratifying
++gratifyingly
++gratin
++grating
++gratingly
++gratings
++gratins
++gratis
++gratitude
++gratuities
++gratuitous
++gratuitously
++gratuitousness
++gratuity
++gravamen
++gravamens
++grave
++graved
++gravedigger
++gravediggers
++gravel
++graveled
++graveling
++gravelly
++gravels
++gravely
++graven
++graveness
++graver
++graves
++graveside
++gravesides
++gravest
++gravestone
++gravestones
++graveyard
++graveyards
++gravid
++gravies
++gravimeter
++gravimeters
++graving
++gravitas
++gravitate
++gravitated
++gravitates
++gravitating
++gravitation
++gravitational
++gravity
++gravy
++gray
++graybeard
++graybeards
++grayed
++grayer
++grayest
++graying
++grayish
++grayness
++grays
++graze
++grazed
++grazer
++grazers
++grazes
++grazing
++grease
++greased
++greasepaint
++greaser
++greasers
++greases
++greasier
++greasiest
++greasily
++greasiness
++greasing
++greasy
++great
++greatcoat
++greatcoats
++greater
++greatest
++greathearted
++greatly
++greatness
++greats
++grebe
++grebes
++greed
++greedier
++greediest
++greedily
++greediness
++greedy
++green
++greenback
++greenbacks
++greenbelt
++greenbelts
++greened
++greener
++greenery
++greenest
++greenfield
++greenflies
++greenfly
++greengage
++greengages
++greengrocer
++greengrocers
++greenhorn
++greenhorns
++greenhouse
++greenhouses
++greening
++greenish
++greenly
++greenmail
++greenness
++greenroom
++greenrooms
++greens
++greensward
++greenwood
++greet
++greeted
++greeter
++greeters
++greeting
++greetings
++greets
++gregarious
++gregariously
++gregariousness
++gremlin
++gremlins
++grenade
++grenades
++grenadier
++grenadiers
++grenadine
++grep
++grepped
++grepping
++greps
++grew
++greyhound
++greyhounds
++gribble
++gribbles
++grid
++griddle
++griddlecake
++griddlecakes
++griddles
++gridiron
++gridirons
++gridlock
++gridlocked
++gridlocks
++grids
++grief
++griefs
++grievance
++grievances
++grieve
++grieved
++griever
++grievers
++grieves
++grieving
++grievous
++grievously
++grievousness
++griffin
++griffins
++griffon
++griffons
++grill
++grille
++grilled
++grilles
++grilling
++grillings
++grills
++grim
++grimace
++grimaced
++grimaces
++grimacing
++grime
++grimed
++grimes
++grimier
++grimiest
++griminess
++griming
++grimly
++grimmer
++grimmest
++grimness
++grimy
++grin
++grind
++grinder
++grinders
++grinding
++grindings
++grinds
++grindstone
++grindstones
++gringo
++gringos
++grinned
++grinning
++grins
++grip
++gripe
++griped
++griper
++gripers
++gripes
++griping
++grippe
++gripped
++gripper
++grippers
++gripping
++grips
++grislier
++grisliest
++grisliness
++grisly
++grist
++gristle
++gristly
++gristmill
++gristmills
++grit
++grits
++gritted
++gritter
++gritters
++grittier
++grittiest
++grittiness
++gritting
++gritty
++grizzle
++grizzled
++grizzles
++grizzlier
++grizzlies
++grizzliest
++grizzling
++grizzly
++groan
++groaned
++groaning
++groans
++groat
++groats
++grocer
++groceries
++grocers
++grocery
++grog
++groggier
++groggiest
++groggily
++grogginess
++groggy
++groin
++groins
++grok
++grokked
++grokking
++groks
++grommet
++grommets
++groom
++groomed
++groomer
++groomers
++grooming
++grooms
++groomsman
++groomsmen
++groove
++grooved
++grooves
++groovier
++grooviest
++grooving
++groovy
++grope
++groped
++groper
++gropers
++gropes
++groping
++grosbeak
++grosbeaks
++grosgrain
++gross
++grossed
++grosser
++grosses
++grossest
++grossing
++grossly
++grossness
++grotesque
++grotesquely
++grotesqueness
++grotesques
++grottier
++grottiest
++grotto
++grottoes
++grotty
++grouch
++grouched
++grouches
++grouchier
++grouchiest
++grouchily
++grouchiness
++grouching
++grouchy
++ground
++groundbreaking
++groundbreakings
++groundcloth
++groundcloths
++grounded
++grounder
++grounders
++groundhog
++groundhogs
++grounding
++groundings
++groundless
++groundlessly
++groundnut
++groundnuts
++grounds
++groundsheet
++groundsheets
++groundskeeper
++groundskeepers
++groundsman
++groundsmen
++groundswell
++groundswells
++groundwater
++groundwork
++group
++grouped
++grouper
++groupers
++groupie
++groupies
++grouping
++groupings
++groups
++groupware
++grouse
++groused
++grouser
++grousers
++grouses
++grousing
++grout
++grouted
++grouting
++grouts
++grove
++grovel
++groveled
++groveler
++grovelers
++groveling
++grovelled
++grovelling
++grovels
++groves
++grow
++grower
++growers
++growing
++growl
++growled
++growler
++growlers
++growling
++growls
++grown
++grownup
++grownups
++grows
++growth
++growths
++grub
++grubbed
++grubber
++grubbers
++grubbier
++grubbiest
++grubbily
++grubbiness
++grubbing
++grubby
++grubs
++grubstake
++grudge
++grudged
++grudges
++grudging
++grudgingly
++grue
++gruel
++grueling
++gruelingly
++gruelings
++grues
++gruesome
++gruesomely
++gruesomeness
++gruesomer
++gruesomest
++gruff
++gruffer
++gruffest
++gruffly
++gruffness
++grumble
++grumbled
++grumbler
++grumblers
++grumbles
++grumbling
++grumblings
++grump
++grumpier
++grumpiest
++grumpily
++grumpiness
++grumps
++grumpy
++grunge
++grunges
++grungier
++grungiest
++grungy
++grunion
++grunions
++grunt
++grunted
++grunting
++grunts
++gs
++gt
++guacamole
++guanine
++guano
++guarani
++guaranis
++guarantee
++guaranteed
++guaranteeing
++guarantees
++guarantied
++guaranties
++guarantor
++guarantors
++guaranty
++guarantying
++guard
++guarded
++guardedly
++guarder
++guarders
++guardhouse
++guardhouses
++guardian
++guardians
++guardianship
++guarding
++guardrail
++guardrails
++guardroom
++guardrooms
++guards
++guardsman
++guardsmen
++guava
++guavas
++gubernatorial
++guerrilla
++guerrillas
++guess
++guessable
++guessed
++guesser
++guessers
++guesses
++guessing
++guesstimate
++guesstimated
++guesstimates
++guesstimating
++guesswork
++guest
++guestbook
++guestbooks
++guested
++guesthouse
++guesthouses
++guesting
++guestroom
++guestrooms
++guests
++guff
++guffaw
++guffawed
++guffawing
++guffaws
++guidance
++guide
++guidebook
++guidebooks
++guided
++guideline
++guidelines
++guidepost
++guideposts
++guider
++guiders
++guides
++guiding
++guild
++guilder
++guilders
++guildhall
++guildhalls
++guilds
++guile
++guileful
++guileless
++guilelessly
++guilelessness
++guillemot
++guillemots
++guillotine
++guillotined
++guillotines
++guillotining
++guilt
++guiltier
++guiltiest
++guiltily
++guiltiness
++guiltless
++guilty
++guinea
++guineas
++guise
++guises
++guitar
++guitarist
++guitarists
++guitars
++gulag
++gulags
++gulch
++gulches
++gulden
++guldens
++gulf
++gulfs
++gull
++gulled
++gullet
++gullets
++gullibility
++gullible
++gullies
++gulling
++gulls
++gully
++gulp
++gulped
++gulper
++gulpers
++gulping
++gulps
++gum
++gumball
++gumballs
++gumbo
++gumboil
++gumboils
++gumboot
++gumboots
++gumbos
++gumdrop
++gumdrops
++gummed
++gummier
++gummiest
++gumming
++gummy
++gumption
++gums
++gumshoe
++gumshoed
++gumshoeing
++gumshoes
++gun
++gunboat
++gunboats
++gunfight
++gunfighter
++gunfighters
++gunfights
++gunfire
++gunge
++gungy
++gunk
++gunky
++gunman
++gunmen
++gunmetal
++gunned
++gunnel
++gunnels
++gunner
++gunners
++gunnery
++gunning
++gunny
++gunnysack
++gunnysacks
++gunpoint
++gunpowder
++gunrunner
++gunrunners
++gunrunning
++guns
++gunship
++gunships
++gunshot
++gunshots
++gunslinger
++gunslingers
++gunsmith
++gunsmiths
++gunwale
++gunwales
++guppies
++guppy
++gurgle
++gurgled
++gurgles
++gurgling
++gurney
++gurneys
++guru
++gurus
++gush
++gushed
++gusher
++gushers
++gushes
++gushier
++gushiest
++gushing
++gushingly
++gushy
++gusset
++gusseted
++gusseting
++gussets
++gussied
++gussies
++gussy
++gussying
++gust
++gustatory
++gusted
++gustier
++gustiest
++gustily
++gusting
++gusto
++gusts
++gusty
++gut
++gutless
++gutlessness
++guts
++gutsier
++gutsiest
++gutsy
++gutted
++gutter
++guttered
++guttering
++gutters
++guttersnipe
++guttersnipes
++guttier
++guttiest
++gutting
++guttural
++gutturals
++gutty
++guv
++guvnor
++guvnors
++guvs
++guy
++guyed
++guying
++guys
++guzzle
++guzzled
++guzzler
++guzzlers
++guzzles
++guzzling
++gym
++gymkhana
++gymkhanas
++gymnasium
++gymnasiums
++gymnast
++gymnastic
++gymnastically
++gymnastics
++gymnasts
++gymnosperm
++gymnosperms
++gyms
++gymslip
++gymslips
++gynecologic
++gynecological
++gynecologist
++gynecologists
++gynecology
++gyp
++gypped
++gypper
++gyppers
++gypping
++gyps
++gypsies
++gypster
++gypsters
++gypsum
++gypsy
++gyrate
++gyrated
++gyrates
++gyrating
++gyration
++gyrations
++gyrator
++gyrators
++gyrfalcon
++gyrfalcons
++gyro
++gyros
++gyroscope
++gyroscopes
++gyroscopic
++gyve
++gyved
++gyves
++gyving
++h
++ha
++haberdasher
++haberdasheries
++haberdashers
++haberdashery
++habiliment
++habiliments
++habit
++habitability
++habitable
++habitat
++habitation
++habitations
++habitats
++habits
++habitual
++habitually
++habitualness
++habituate
++habituated
++habituates
++habituating
++habituation
++habitue
++habitues
++hacienda
++haciendas
++hack
++hacked
++hacker
++hackers
++hacking
++hackish
++hackle
++hackles
++hackney
++hackneyed
++hackneying
++hackneys
++hacks
++hacksaw
++hacksaws
++hacktivist
++hacktivists
++hackwork
++had
++haddock
++haddocks
++hadst
++hafnium
++haft
++hafts
++hag
++haggard
++haggardly
++haggardness
++haggis
++haggises
++haggish
++haggle
++haggled
++haggler
++hagglers
++haggles
++haggling
++hagiographer
++hagiographers
++hagiographies
++hagiography
++hags
++hahnium
++haiku
++hail
++hailed
++hailing
++hails
++hailstone
++hailstones
++hailstorm
++hailstorms
++hair
++hairball
++hairballs
++hairband
++hairbands
++hairbreadth
++hairbreadths
++hairbrush
++hairbrushes
++haircloth
++haircut
++haircuts
++hairdo
++hairdos
++hairdresser
++hairdressers
++hairdressing
++hairdryer
++hairdryers
++haired
++hairgrip
++hairgrips
++hairier
++hairiest
++hairiness
++hairless
++hairlike
++hairline
++hairlines
++hairnet
++hairnets
++hairpiece
++hairpieces
++hairpin
++hairpins
++hairs
++hairsbreadth
++hairsbreadths
++hairsplitter
++hairsplitters
++hairsplitting
++hairspray
++hairsprays
++hairspring
++hairsprings
++hairstyle
++hairstyles
++hairstylist
++hairstylists
++hairy
++haj
++hajj
++hajjes
++hajji
++hajjis
++hake
++hakes
++halal
++halberd
++halberds
++halcyon
++hale
++haled
++haler
++hales
++halest
++half
++halfback
++halfbacks
++halfhearted
++halfheartedly
++halfheartedness
++halfpence
++halfpennies
++halfpenny
++halftime
++halftimes
++halftone
++halftones
++halfway
++halfwit
++halfwits
++halibut
++halibuts
++haling
++halite
++halitosis
++hall
++hallelujah
++hallelujahs
++hallmark
++hallmarked
++hallmarking
++hallmarks
++halloo
++hallooing
++halloos
++hallow
++hallowed
++hallowing
++hallows
++halls
++hallucinate
++hallucinated
++hallucinates
++hallucinating
++hallucination
++hallucinations
++hallucinatory
++hallucinogen
++hallucinogenic
++hallucinogenics
++hallucinogens
++hallway
++hallways
++halo
++haloed
++halogen
++halogens
++haloing
++halon
++halos
++halt
++halted
++halter
++haltered
++haltering
++halterneck
++halternecks
++halters
++halting
++haltingly
++halts
++halve
++halved
++halves
++halving
++halyard
++halyards
++ham
++hamburg
++hamburger
++hamburgers
++hamburgs
++hamlet
++hamlets
++hammed
++hammer
++hammered
++hammerer
++hammerers
++hammerhead
++hammerheads
++hammering
++hammerings
++hammerlock
++hammerlocks
++hammers
++hammertoe
++hammertoes
++hammier
++hammiest
++hamming
++hammock
++hammocks
++hammy
++hamper
++hampered
++hampering
++hampers
++hams
++hamster
++hamsters
++hamstring
++hamstringing
++hamstrings
++hamstrung
++hand
++handbag
++handbags
++handball
++handballs
++handbarrow
++handbarrows
++handbill
++handbills
++handbook
++handbooks
++handbrake
++handbrakes
++handcar
++handcars
++handcart
++handcarts
++handclasp
++handclasps
++handcraft
++handcrafted
++handcrafting
++handcrafts
++handcuff
++handcuffed
++handcuffing
++handcuffs
++handed
++handedness
++handful
++handfuls
++handgun
++handguns
++handheld
++handhelds
++handhold
++handholds
++handicap
++handicapped
++handicapper
++handicappers
++handicapping
++handicaps
++handicraft
++handicrafts
++handier
++handiest
++handily
++handiness
++handing
++handiwork
++handkerchief
++handkerchiefs
++handle
++handlebar
++handlebars
++handled
++handler
++handlers
++handles
++handling
++handmade
++handmaid
++handmaiden
++handmaidens
++handmaids
++handout
++handouts
++handover
++handovers
++handpick
++handpicked
++handpicking
++handpicks
++handrail
++handrails
++hands
++handsaw
++handsaws
++handset
++handsets
++handshake
++handshakes
++handshaking
++handshakings
++handsome
++handsomely
++handsomeness
++handsomer
++handsomest
++handspring
++handsprings
++handstand
++handstands
++handwork
++handwoven
++handwriting
++handwritten
++handy
++handyman
++handymen
++hang
++hangar
++hangars
++hangdog
++hanged
++hanger
++hangers
++hanging
++hangings
++hangman
++hangmen
++hangnail
++hangnails
++hangout
++hangouts
++hangover
++hangovers
++hangs
++hangup
++hangups
++hank
++hanker
++hankered
++hankering
++hankerings
++hankers
++hankie
++hankies
++hanks
++hansom
++hansoms
++hap
++haphazard
++haphazardly
++haphazardness
++hapless
++haplessly
++haplessness
++haploid
++haploids
++haply
++happen
++happened
++happening
++happenings
++happens
++happenstance
++happenstances
++happier
++happiest
++happily
++happiness
++happy
++harangue
++harangued
++harangues
++haranguing
++harass
++harassed
++harasser
++harassers
++harasses
++harassing
++harassment
++harbinger
++harbingers
++harbor
++harbored
++harboring
++harbormaster
++harbormasters
++harbors
++hard
++hardback
++hardbacks
++hardball
++hardboard
++hardbound
++hardcore
++hardcover
++hardcovers
++harden
++hardened
++hardener
++hardeners
++hardening
++hardens
++harder
++hardest
++hardhat
++hardhats
++hardheaded
++hardheadedly
++hardheadedness
++hardhearted
++hardheartedly
++hardheartedness
++hardier
++hardiest
++hardihood
++hardily
++hardiness
++hardliner
++hardliners
++hardly
++hardness
++hardscrabble
++hardship
++hardships
++hardstand
++hardstands
++hardtack
++hardtop
++hardtops
++hardware
++hardwired
++hardwood
++hardwoods
++hardworking
++hardy
++hare
++harebell
++harebells
++harebrained
++hared
++harelip
++harelipped
++harelips
++harem
++harems
++hares
++haricot
++haricots
++haring
++hark
++harked
++harking
++harks
++harlequin
++harlequins
++harlot
++harlotry
++harlots
++harm
++harmed
++harmful
++harmfully
++harmfulness
++harming
++harmless
++harmlessly
++harmlessness
++harmonic
++harmonica
++harmonically
++harmonicas
++harmonics
++harmonies
++harmonious
++harmoniously
++harmoniousness
++harmonium
++harmoniums
++harmonization
++harmonize
++harmonized
++harmonizer
++harmonizers
++harmonizes
++harmonizing
++harmony
++harms
++harness
++harnessed
++harnesses
++harnessing
++harp
++harped
++harpies
++harping
++harpist
++harpists
++harpoon
++harpooned
++harpooner
++harpooners
++harpooning
++harpoons
++harps
++harpsichord
++harpsichordist
++harpsichordists
++harpsichords
++harpy
++harridan
++harridans
++harried
++harrier
++harriers
++harries
++harrow
++harrowed
++harrowing
++harrows
++harrumph
++harrumphed
++harrumphing
++harrumphs
++harry
++harrying
++harsh
++harsher
++harshest
++harshly
++harshness
++hart
++harts
++harvest
++harvested
++harvester
++harvesters
++harvesting
++harvests
++has
++hash
++hashed
++hashes
++hashing
++hashish
++hashtag
++hashtags
++hasp
++hasps
++hassle
++hassled
++hassles
++hassling
++hassock
++hassocks
++hast
++haste
++hasted
++hasten
++hastened
++hastening
++hastens
++hastes
++hastier
++hastiest
++hastily
++hastiness
++hasting
++hasty
++hat
++hatband
++hatbands
++hatbox
++hatboxes
++hatch
++hatchback
++hatchbacks
++hatcheck
++hatchecks
++hatched
++hatcheries
++hatchery
++hatches
++hatchet
++hatchets
++hatching
++hatchway
++hatchways
++hate
++hated
++hateful
++hatefully
++hatefulness
++hatemonger
++hatemongers
++hater
++haters
++hates
++hath
++hating
++hatpin
++hatpins
++hatred
++hatreds
++hats
++hatstand
++hatstands
++hatted
++hatter
++hatters
++hatting
++hauberk
++hauberks
++haughtier
++haughtiest
++haughtily
++haughtiness
++haughty
++haul
++haulage
++hauled
++hauler
++haulers
++haulier
++hauliers
++hauling
++hauls
++haunch
++haunches
++haunt
++haunted
++haunter
++haunters
++haunting
++hauntingly
++haunts
++hauteur
++have
++haven
++havens
++haversack
++haversacks
++haves
++having
++havoc
++haw
++hawed
++hawing
++hawk
++hawked
++hawker
++hawkers
++hawking
++hawkish
++hawkishness
++hawks
++haws
++hawser
++hawsers
++hawthorn
++hawthorns
++hay
++haycock
++haycocks
++hayed
++haying
++hayloft
++haylofts
++haymaker
++haymakers
++haymaking
++haymow
++haymows
++hayrick
++hayricks
++hayride
++hayrides
++hays
++hayseed
++hayseeds
++haystack
++haystacks
++haywire
++hazard
++hazarded
++hazarding
++hazardous
++hazardously
++hazards
++haze
++hazed
++hazel
++hazelnut
++hazelnuts
++hazels
++hazer
++hazers
++hazes
++hazier
++haziest
++hazily
++haziness
++hazing
++hazings
++hazmat
++hazy
++hdqrs
++he
++head
++headache
++headaches
++headband
++headbands
++headbanger
++headbangers
++headbanging
++headboard
++headboards
++headbutt
++headbutted
++headbutting
++headbutts
++headcase
++headcases
++headcheese
++headcount
++headcounts
++headdress
++headdresses
++headed
++header
++headers
++headfirst
++headgear
++headhunt
++headhunted
++headhunter
++headhunters
++headhunting
++headhunts
++headier
++headiest
++headily
++headiness
++heading
++headings
++headlamp
++headlamps
++headland
++headlands
++headless
++headlight
++headlights
++headline
++headlined
++headliner
++headliners
++headlines
++headlining
++headlock
++headlocks
++headlong
++headman
++headmaster
++headmasters
++headmen
++headmistress
++headmistresses
++headphone
++headphones
++headpiece
++headpieces
++headpin
++headpins
++headquarter
++headquartered
++headquartering
++headquarters
++headrest
++headrests
++headroom
++heads
++headscarf
++headscarves
++headset
++headsets
++headship
++headships
++headshrinker
++headshrinkers
++headsman
++headsmen
++headstall
++headstalls
++headstand
++headstands
++headstone
++headstones
++headstrong
++headteacher
++headteachers
++headwaiter
++headwaiters
++headwaters
++headway
++headwind
++headwinds
++headword
++headwords
++heady
++heal
++healed
++healer
++healers
++healing
++heals
++health
++healthcare
++healthful
++healthfully
++healthfulness
++healthier
++healthiest
++healthily
++healthiness
++healthy
++heap
++heaped
++heaping
++heaps
++hear
++heard
++hearer
++hearers
++hearing
++hearings
++hearken
++hearkened
++hearkening
++hearkens
++hears
++hearsay
++hearse
++hearses
++heart
++heartache
++heartaches
++heartbeat
++heartbeats
++heartbreak
++heartbreaking
++heartbreaks
++heartbroken
++heartburn
++hearten
++heartened
++heartening
++heartens
++heartfelt
++hearth
++hearthrug
++hearthrugs
++hearths
++hearthstone
++hearthstones
++heartier
++hearties
++heartiest
++heartily
++heartiness
++heartland
++heartlands
++heartless
++heartlessly
++heartlessness
++heartrending
++heartrendingly
++hearts
++heartsick
++heartsickness
++heartstrings
++heartthrob
++heartthrobs
++heartwarming
++heartwood
++hearty
++heat
++heated
++heatedly
++heater
++heaters
++heath
++heathen
++heathendom
++heathenish
++heathenism
++heathens
++heather
++heaths
++heating
++heatproof
++heats
++heatstroke
++heatwave
++heatwaves
++heave
++heaved
++heaven
++heavenlier
++heavenliest
++heavenly
++heavens
++heavenward
++heavenwards
++heaver
++heavers
++heaves
++heavier
++heavies
++heaviest
++heavily
++heaviness
++heaving
++heavy
++heavyhearted
++heavyset
++heavyweight
++heavyweights
++heck
++heckle
++heckled
++heckler
++hecklers
++heckles
++heckling
++hectare
++hectares
++hectic
++hectically
++hectogram
++hectograms
++hectometer
++hectometers
++hector
++hectored
++hectoring
++hectors
++hedge
++hedged
++hedgehog
++hedgehogs
++hedgehop
++hedgehopped
++hedgehopping
++hedgehops
++hedger
++hedgerow
++hedgerows
++hedgers
++hedges
++hedging
++hedonism
++hedonist
++hedonistic
++hedonists
++heed
++heeded
++heedful
++heedfully
++heeding
++heedless
++heedlessly
++heedlessness
++heeds
++heehaw
++heehawed
++heehawing
++heehaws
++heel
++heeled
++heeling
++heelless
++heels
++heft
++hefted
++heftier
++heftiest
++heftily
++heftiness
++hefting
++hefts
++hefty
++hegemonic
++hegemony
++hegira
++hegiras
++heifer
++heifers
++height
++heighten
++heightened
++heightening
++heightens
++heights
++heinous
++heinously
++heinousness
++heir
++heiress
++heiresses
++heirloom
++heirlooms
++heirs
++heist
++heisted
++heisting
++heists
++held
++helical
++helices
++helicopter
++helicoptered
++helicoptering
++helicopters
++heliocentric
++heliotrope
++heliotropes
++helipad
++helipads
++heliport
++heliports
++helium
++helix
++hell
++hellbent
++hellcat
++hellcats
++hellebore
++hellfire
++hellhole
++hellholes
++hellion
++hellions
++hellish
++hellishly
++hellishness
++hello
++hellos
++helluva
++helm
++helmet
++helmeted
++helmets
++helms
++helmsman
++helmsmen
++helot
++helots
++help
++helped
++helper
++helpers
++helpful
++helpfully
++helpfulness
++helping
++helpings
++helpless
++helplessly
++helplessness
++helpline
++helplines
++helpmate
++helpmates
++helps
++helve
++helves
++hem
++hematite
++hematologic
++hematological
++hematologist
++hematologists
++hematology
++heme
++hemisphere
++hemispheres
++hemispheric
++hemispherical
++hemline
++hemlines
++hemlock
++hemlocks
++hemmed
++hemmer
++hemmers
++hemming
++hemoglobin
++hemophilia
++hemophiliac
++hemophiliacs
++hemorrhage
++hemorrhaged
++hemorrhages
++hemorrhagic
++hemorrhaging
++hemorrhoid
++hemorrhoids
++hemostat
++hemostats
++hemp
++hempen
++hems
++hemstitch
++hemstitched
++hemstitches
++hemstitching
++hen
++hence
++henceforth
++henceforward
++henchman
++henchmen
++henna
++hennaed
++hennaing
++hennas
++henpeck
++henpecked
++henpecking
++henpecks
++hens
++hep
++heparin
++hepatic
++hepatitis
++hepatocyte
++hepatocytes
++hepper
++heppest
++heptagon
++heptagonal
++heptagons
++heptathlon
++heptathlons
++her
++herald
++heralded
++heraldic
++heralding
++heraldry
++heralds
++herb
++herbaceous
++herbage
++herbal
++herbalist
++herbalists
++herbals
++herbicidal
++herbicide
++herbicides
++herbivore
++herbivores
++herbivorous
++herbs
++herculean
++herd
++herded
++herder
++herders
++herding
++herds
++herdsman
++herdsmen
++here
++hereabout
++hereabouts
++hereafter
++hereafters
++hereby
++hereditary
++heredity
++herein
++hereinafter
++hereof
++hereon
++heresies
++heresy
++heretic
++heretical
++heretics
++hereto
++heretofore
++hereunder
++hereunto
++hereupon
++herewith
++heritable
++heritage
++heritages
++hermaphrodite
++hermaphrodites
++hermaphroditic
++hermetic
++hermetical
++hermetically
++hermit
++hermitage
++hermitages
++hermits
++hernia
++hernial
++hernias
++herniate
++herniated
++herniates
++herniating
++herniation
++hero
++heroes
++heroic
++heroically
++heroics
++heroin
++heroine
++heroines
++heroins
++heroism
++heron
++herons
++herpes
++herpetologist
++herpetologists
++herpetology
++herring
++herringbone
++herrings
++hers
++herself
++hertz
++hes
++hesitance
++hesitancy
++hesitant
++hesitantly
++hesitate
++hesitated
++hesitates
++hesitating
++hesitatingly
++hesitation
++hesitations
++hessian
++hetero
++heterodox
++heterodoxy
++heterogeneity
++heterogeneous
++heterogeneously
++heteros
++heterosexual
++heterosexuality
++heterosexually
++heterosexuals
++heuristic
++heuristically
++heuristics
++hew
++hewed
++hewer
++hewers
++hewing
++hews
++hex
++hexadecimal
++hexadecimals
++hexagon
++hexagonal
++hexagons
++hexagram
++hexagrams
++hexameter
++hexameters
++hexed
++hexes
++hexing
++hey
++heyday
++heydays
++hf
++hgt
++hgwy
++hi
++hiatus
++hiatuses
++hibachi
++hibachis
++hibernate
++hibernated
++hibernates
++hibernating
++hibernation
++hibernator
++hibernators
++hibiscus
++hibiscuses
++hiccough
++hiccoughed
++hiccoughing
++hiccoughs
++hiccup
++hiccuped
++hiccuping
++hiccups
++hick
++hickey
++hickeys
++hickories
++hickory
++hicks
++hid
++hidden
++hide
++hideaway
++hideaways
++hidebound
++hided
++hideous
++hideously
++hideousness
++hideout
++hideouts
++hider
++hiders
++hides
++hiding
++hidings
++hie
++hied
++hieing
++hierarchic
++hierarchical
++hierarchically
++hierarchies
++hierarchy
++hieroglyph
++hieroglyphic
++hieroglyphics
++hieroglyphs
++hies
++high
++highball
++highballs
++highborn
++highboy
++highboys
++highbrow
++highbrows
++highchair
++highchairs
++higher
++highers
++highest
++highfalutin
++highhanded
++highhandedly
++highhandedness
++highland
++highlander
++highlanders
++highlands
++highlight
++highlighted
++highlighter
++highlighters
++highlighting
++highlights
++highly
++highness
++highroad
++highroads
++highs
++hightail
++hightailed
++hightailing
++hightails
++highway
++highwayman
++highwaymen
++highways
++hijab
++hijabs
++hijack
++hijacked
++hijacker
++hijackers
++hijacking
++hijackings
++hijacks
++hike
++hiked
++hiker
++hikers
++hikes
++hiking
++hilarious
++hilariously
++hilariousness
++hilarity
++hill
++hillbillies
++hillbilly
++hillier
++hilliest
++hilliness
++hillock
++hillocks
++hills
++hillside
++hillsides
++hilltop
++hilltops
++hilly
++hilt
++hilts
++him
++hims
++himself
++hind
++hinder
++hindered
++hindering
++hinders
++hindmost
++hindquarter
++hindquarters
++hindrance
++hindrances
++hinds
++hindsight
++hing
++hinge
++hinged
++hinges
++hinging
++hings
++hint
++hinted
++hinter
++hinterland
++hinterlands
++hinters
++hinting
++hints
++hip
++hipbath
++hipbaths
++hipbone
++hipbones
++hiphuggers
++hipness
++hipped
++hipper
++hippest
++hippie
++hippies
++hipping
++hippo
++hippodrome
++hippodromes
++hippopotamus
++hippopotamuses
++hippos
++hippy
++hips
++hipster
++hipsters
++hiragana
++hire
++hired
++hireling
++hirelings
++hires
++hiring
++hirsute
++hirsuteness
++his
++hiss
++hissed
++hisses
++hissing
++hist
++histamine
++histamines
++histogram
++histograms
++histologist
++histologists
++histology
++historian
++historians
++historic
++historical
++historically
++historicity
++histories
++historiographer
++historiographers
++historiography
++history
++histrionic
++histrionically
++histrionics
++hit
++hitch
++hitched
++hitcher
++hitchers
++hitches
++hitchhike
++hitchhiked
++hitchhiker
++hitchhikers
++hitchhikes
++hitchhiking
++hitching
++hither
++hitherto
++hits
++hitter
++hitters
++hitting
++hive
++hived
++hives
++hiving
++hiya
++hmm
++ho
++hoagie
++hoagies
++hoard
++hoarded
++hoarder
++hoarders
++hoarding
++hoardings
++hoards
++hoarfrost
++hoarier
++hoariest
++hoariness
++hoarse
++hoarsely
++hoarseness
++hoarser
++hoarsest
++hoary
++hoax
++hoaxed
++hoaxer
++hoaxers
++hoaxes
++hoaxing
++hob
++hobbies
++hobbit
++hobbits
++hobble
++hobbled
++hobbler
++hobblers
++hobbles
++hobbling
++hobby
++hobbyhorse
++hobbyhorses
++hobbyist
++hobbyists
++hobgoblin
++hobgoblins
++hobnail
++hobnailed
++hobnailing
++hobnails
++hobnob
++hobnobbed
++hobnobbing
++hobnobs
++hobo
++hobos
++hobs
++hock
++hocked
++hockey
++hocking
++hocks
++hockshop
++hockshops
++hod
++hodgepodge
++hodgepodges
++hods
++hoe
++hoecake
++hoecakes
++hoed
++hoedown
++hoedowns
++hoeing
++hoer
++hoers
++hoes
++hog
++hogan
++hogans
++hogback
++hogbacks
++hogged
++hogging
++hoggish
++hoggishly
++hogs
++hogshead
++hogsheads
++hogtie
++hogtied
++hogties
++hogtying
++hogwash
++hoick
++hoicked
++hoicking
++hoicks
++hoist
++hoisted
++hoisting
++hoists
++hoke
++hoked
++hokes
++hokey
++hokier
++hokiest
++hoking
++hokum
++hold
++holdall
++holdalls
++holder
++holders
++holding
++holdings
++holdout
++holdouts
++holdover
++holdovers
++holds
++holdup
++holdups
++hole
++holed
++holes
++holey
++holiday
++holidayed
++holidaying
++holidaymaker
++holidaymakers
++holidays
++holier
++holiest
++holiness
++holing
++holism
++holistic
++holistically
++holler
++hollered
++hollering
++hollers
++hollies
++hollow
++hollowed
++hollower
++hollowest
++hollowing
++hollowly
++hollowness
++hollows
++holly
++hollyhock
++hollyhocks
++holmium
++holocaust
++holocausts
++hologram
++holograms
++holograph
++holographic
++holographs
++holography
++hols
++holster
++holstered
++holstering
++holsters
++holy
++homage
++homages
++hombre
++hombres
++homburg
++homburgs
++home
++homebodies
++homebody
++homeboy
++homeboys
++homecoming
++homecomings
++homed
++homegrown
++homeland
++homelands
++homeless
++homelessness
++homelier
++homeliest
++homelike
++homeliness
++homely
++homemade
++homemaker
++homemakers
++homemaking
++homeopath
++homeopathic
++homeopaths
++homeopathy
++homeostasis
++homeostatic
++homeowner
++homeowners
++homepage
++homepages
++homer
++homered
++homering
++homeroom
++homerooms
++homers
++homes
++homeschooling
++homesick
++homesickness
++homespun
++homestead
++homesteaded
++homesteader
++homesteaders
++homesteading
++homesteads
++homestretch
++homestretches
++hometown
++hometowns
++homeward
++homewards
++homework
++homeworker
++homeworkers
++homeworking
++homewrecker
++homewreckers
++homey
++homeyness
++homeys
++homicidal
++homicide
++homicides
++homier
++homiest
++homiletic
++homilies
++homily
++homing
++hominid
++hominids
++hominoid
++hominoids
++hominy
++homo
++homoerotic
++homogeneity
++homogeneous
++homogeneously
++homogenization
++homogenize
++homogenized
++homogenizes
++homogenizing
++homograph
++homographs
++homologous
++homonym
++homonyms
++homophobia
++homophobic
++homophone
++homophones
++homos
++homosexual
++homosexuality
++homosexuals
++hon
++honcho
++honchos
++hone
++honed
++honer
++honers
++hones
++honest
++honester
++honestest
++honestly
++honesty
++honey
++honeybee
++honeybees
++honeycomb
++honeycombed
++honeycombing
++honeycombs
++honeydew
++honeydews
++honeyed
++honeying
++honeylocust
++honeymoon
++honeymooned
++honeymooner
++honeymooners
++honeymooning
++honeymoons
++honeypot
++honeypots
++honeys
++honeysuckle
++honeysuckles
++honing
++honk
++honked
++honker
++honkers
++honkies
++honking
++honks
++honky
++honor
++honorable
++honorableness
++honorably
++honorarily
++honorarium
++honorariums
++honorary
++honored
++honoree
++honorees
++honorer
++honorers
++honorific
++honorifics
++honoring
++honors
++hons
++hooch
++hood
++hooded
++hoodie
++hoodies
++hooding
++hoodlum
++hoodlums
++hoodoo
++hoodooed
++hoodooing
++hoodoos
++hoods
++hoodwink
++hoodwinked
++hoodwinking
++hoodwinks
++hooey
++hoof
++hoofed
++hoofer
++hoofers
++hoofing
++hoofs
++hook
++hookah
++hookahs
++hooked
++hooker
++hookers
++hooking
++hooks
++hookup
++hookups
++hookworm
++hookworms
++hooky
++hooligan
++hooliganism
++hooligans
++hoop
++hooped
++hooping
++hoopla
++hoops
++hooray
++hoosegow
++hoosegows
++hoot
++hooted
++hootenannies
++hootenanny
++hooter
++hooters
++hooting
++hoots
++hoover
++hoovered
++hoovering
++hoovers
++hooves
++hop
++hope
++hoped
++hopeful
++hopefully
++hopefulness
++hopefuls
++hopeless
++hopelessly
++hopelessness
++hopes
++hoping
++hopped
++hopper
++hoppers
++hopping
++hops
++hopscotch
++hopscotched
++hopscotches
++hopscotching
++hora
++horas
++horde
++horded
++hordes
++hording
++horehound
++horehounds
++horizon
++horizons
++horizontal
++horizontally
++horizontals
++hormonal
++hormone
++hormones
++horn
++hornblende
++horned
++hornet
++hornets
++hornier
++horniest
++hornless
++hornlike
++hornpipe
++hornpipes
++horns
++horny
++horologic
++horological
++horologist
++horologists
++horology
++horoscope
++horoscopes
++horrendous
++horrendously
++horrible
++horribleness
++horribly
++horrid
++horridly
++horrific
++horrifically
++horrified
++horrifies
++horrify
++horrifying
++horrifyingly
++horror
++horrors
++horse
++horseback
++horsebox
++horseboxes
++horsed
++horseflesh
++horseflies
++horsefly
++horsehair
++horsehide
++horselaugh
++horselaughs
++horseless
++horseman
++horsemanship
++horsemen
++horseplay
++horsepower
++horseradish
++horseradishes
++horses
++horseshit
++horseshoe
++horseshoed
++horseshoeing
++horseshoes
++horsetail
++horsetails
++horsetrading
++horsewhip
++horsewhipped
++horsewhipping
++horsewhips
++horsewoman
++horsewomen
++horsey
++horsier
++horsiest
++horsing
++hortatory
++horticultural
++horticulturalist
++horticulturalists
++horticulture
++horticulturist
++horticulturists
++hos
++hosanna
++hosannas
++hose
++hosed
++hosepipe
++hosepipes
++hoses
++hosier
++hosiers
++hosiery
++hosing
++hosp
++hospholipase
++hospice
++hospices
++hospitable
++hospitably
++hospital
++hospitality
++hospitalization
++hospitalizations
++hospitalize
++hospitalized
++hospitalizes
++hospitalizing
++hospitals
++host
++hostage
++hostages
++hosted
++hostel
++hosteled
++hosteler
++hostelers
++hosteling
++hostelries
++hostelry
++hostels
++hostess
++hostessed
++hostesses
++hostessing
++hostile
++hostilely
++hostiles
++hostilities
++hostility
++hosting
++hostler
++hostlers
++hosts
++hot
++hotbed
++hotbeds
++hotblooded
++hotbox
++hotboxes
++hotcake
++hotcakes
++hotel
++hotelier
++hoteliers
++hotels
++hotfoot
++hotfooted
++hotfooting
++hotfoots
++hothead
++hotheaded
++hotheadedly
++hotheadedness
++hotheads
++hothouse
++hothouses
++hotkey
++hotkeys
++hotlink
++hotlinks
++hotly
++hotness
++hotplate
++hotplates
++hotpot
++hotpots
++hots
++hotshot
++hotshots
++hotted
++hotter
++hottest
++hottie
++hotties
++hotting
++hound
++hounded
++hounding
++hounds
++hour
++hourglass
++hourglasses
++houri
++houris
++hourly
++hours
++house
++houseboat
++houseboats
++housebound
++houseboy
++houseboys
++housebreak
++housebreaker
++housebreakers
++housebreaking
++housebreaks
++housebroke
++housebroken
++houseclean
++housecleaned
++housecleaning
++housecleans
++housecoat
++housecoats
++housed
++houseflies
++housefly
++houseful
++housefuls
++household
++householder
++householders
++households
++househusband
++househusbands
++housekeeper
++housekeepers
++housekeeping
++houselights
++housemaid
++housemaids
++houseman
++housemaster
++housemasters
++housemate
++housemates
++housemen
++housemistress
++housemistresses
++housemother
++housemothers
++houseparent
++houseparents
++houseplant
++houseplants
++houseproud
++houseroom
++houses
++housetop
++housetops
++housewares
++housewarming
++housewarmings
++housewife
++housewifely
++housewives
++housework
++housing
++housings
++hove
++hovel
++hovels
++hover
++hovercraft
++hovered
++hovering
++hovers
++how
++howbeit
++howdah
++howdahs
++howdy
++however
++howitzer
++howitzers
++howl
++howled
++howler
++howlers
++howling
++howls
++hows
++howsoever
++hoyden
++hoydenish
++hoydens
++hp
++hr
++hrs
++ht
++huarache
++huaraches
++hub
++hubbies
++hubbub
++hubbubs
++hubby
++hubcap
++hubcaps
++hubris
++hubs
++huckleberries
++huckleberry
++huckster
++huckstered
++huckstering
++hucksterism
++hucksters
++huddle
++huddled
++huddles
++huddling
++hue
++hued
++hues
++huff
++huffed
++huffier
++huffiest
++huffily
++huffiness
++huffing
++huffs
++huffy
++hug
++huge
++hugely
++hugeness
++huger
++hugest
++hugged
++hugging
++hugs
++huh
++hula
++hulas
++hulk
++hulking
++hulks
++hull
++hullabaloo
++hullabaloos
++hulled
++huller
++hullers
++hulling
++hulls
++hum
++human
++humane
++humanely
++humaneness
++humaner
++humanest
++humanism
++humanist
++humanistic
++humanists
++humanitarian
++humanitarianism
++humanitarians
++humanities
++humanity
++humanization
++humanize
++humanized
++humanizer
++humanizers
++humanizes
++humanizing
++humankind
++humanly
++humanness
++humanoid
++humanoids
++humans
++humble
++humbled
++humbleness
++humbler
++humblers
++humbles
++humblest
++humbling
++humblings
++humbly
++humbug
++humbugged
++humbugging
++humbugs
++humdinger
++humdingers
++humdrum
++humeral
++humeri
++humerus
++humid
++humidification
++humidified
++humidifier
++humidifiers
++humidifies
++humidify
++humidifying
++humidity
++humidly
++humidor
++humidors
++humiliate
++humiliated
++humiliates
++humiliating
++humiliatingly
++humiliation
++humiliations
++humility
++hummed
++hummer
++hummers
++humming
++hummingbird
++hummingbirds
++hummock
++hummocks
++hummocky
++hummus
++humongous
++humor
++humored
++humoresque
++humoring
++humorist
++humorists
++humorless
++humorlessly
++humorlessness
++humorous
++humorously
++humorousness
++humors
++hump
++humpback
++humpbacked
++humpbacks
++humped
++humph
++humphed
++humphing
++humphs
++humping
++humps
++hums
++humus
++hunch
++hunchback
++hunchbacked
++hunchbacks
++hunched
++hunches
++hunching
++hundred
++hundredfold
++hundreds
++hundredth
++hundredths
++hundredweight
++hundredweights
++hung
++hunger
++hungered
++hungering
++hungers
++hungover
++hungrier
++hungriest
++hungrily
++hungriness
++hungry
++hunk
++hunker
++hunkered
++hunkering
++hunkers
++hunkier
++hunkiest
++hunks
++hunky
++hunt
++hunted
++hunter
++hunters
++hunting
++huntress
++huntresses
++hunts
++huntsman
++huntsmen
++hurdle
++hurdled
++hurdler
++hurdlers
++hurdles
++hurdling
++hurl
++hurled
++hurler
++hurlers
++hurling
++hurls
++hurrah
++hurrahed
++hurrahing
++hurrahs
++hurricane
++hurricanes
++hurried
++hurriedly
++hurries
++hurry
++hurrying
++hurt
++hurtful
++hurtfully
++hurtfulness
++hurting
++hurtle
++hurtled
++hurtles
++hurtling
++hurts
++husband
++husbanded
++husbanding
++husbandman
++husbandmen
++husbandry
++husbands
++hush
++hushed
++hushes
++hushing
++husk
++husked
++husker
++huskers
++huskier
++huskies
++huskiest
++huskily
++huskiness
++husking
++husks
++husky
++hussar
++hussars
++hussies
++hussy
++hustings
++hustle
++hustled
++hustler
++hustlers
++hustles
++hustling
++hut
++hutch
++hutches
++huts
++huzzah
++huzzahed
++huzzahing
++huzzahs
++hwy
++hyacinth
++hyacinths
++hybrid
++hybridism
++hybridization
++hybridize
++hybridized
++hybridizes
++hybridizing
++hybrids
++hydra
++hydrangea
++hydrangeas
++hydrant
++hydrants
++hydras
++hydrate
++hydrated
++hydrates
++hydrating
++hydration
++hydraulic
++hydraulically
++hydraulics
++hydro
++hydrocarbon
++hydrocarbons
++hydrocephalus
++hydrodynamic
++hydrodynamics
++hydroelectric
++hydroelectrically
++hydroelectricity
++hydrofoil
++hydrofoils
++hydrogen
++hydrogenate
++hydrogenated
++hydrogenates
++hydrogenating
++hydrogenation
++hydrogenous
++hydrologist
++hydrologists
++hydrology
++hydrolyses
++hydrolysis
++hydrolyze
++hydrolyzed
++hydrolyzes
++hydrolyzing
++hydrometer
++hydrometers
++hydrometry
++hydrophilic
++hydrophobia
++hydrophobic
++hydrophone
++hydrophones
++hydroplane
++hydroplaned
++hydroplanes
++hydroplaning
++hydroponic
++hydroponically
++hydroponics
++hydrosphere
++hydrotherapy
++hydrous
++hydroxide
++hydroxides
++hyena
++hyenas
++hygiene
++hygienic
++hygienically
++hygienist
++hygienists
++hygrometer
++hygrometers
++hying
++hymen
++hymeneal
++hymens
++hymn
++hymnal
++hymnals
++hymnbook
++hymnbooks
++hymned
++hymning
++hymns
++hype
++hyped
++hyper
++hyperactive
++hyperactivity
++hyperbola
++hyperbolas
++hyperbole
++hyperbolic
++hypercritical
++hypercritically
++hyperglycemia
++hyperinflation
++hyperlink
++hyperlinked
++hyperlinking
++hyperlinks
++hypermarket
++hypermarkets
++hypermedia
++hyperparathyroidism
++hypersensitive
++hypersensitiveness
++hypersensitivities
++hypersensitivity
++hyperspace
++hyperspaces
++hypertension
++hypertensive
++hypertensives
++hypertext
++hyperthyroid
++hyperthyroidism
++hypertrophied
++hypertrophies
++hypertrophy
++hypertrophying
++hyperventilate
++hyperventilated
++hyperventilates
++hyperventilating
++hyperventilation
++hypes
++hyphen
++hyphenate
++hyphenated
++hyphenates
++hyphenating
++hyphenation
++hyphenations
++hyphened
++hyphening
++hyphens
++hyping
++hypnoses
++hypnosis
++hypnotherapist
++hypnotherapists
++hypnotherapy
++hypnotic
++hypnotically
++hypnotics
++hypnotism
++hypnotist
++hypnotists
++hypnotize
++hypnotized
++hypnotizes
++hypnotizing
++hypo
++hypoallergenic
++hypochondria
++hypochondriac
++hypochondriacs
++hypocrisies
++hypocrisy
++hypocrite
++hypocrites
++hypocritical
++hypocritically
++hypodermic
++hypodermics
++hypoglycemia
++hypoglycemic
++hypoglycemics
++hypos
++hypotenuse
++hypotenuses
++hypothalami
++hypothalamus
++hypothermia
++hypotheses
++hypothesis
++hypothesize
++hypothesized
++hypothesizes
++hypothesizing
++hypothetical
++hypothetically
++hypothyroid
++hypothyroidism
++hyssop
++hysterectomies
++hysterectomy
++hysteresis
++hysteria
++hysteric
++hysterical
++hysterically
++hysterics
++i
++iamb
++iambi
++iambic
++iambics
++iambs
++iambus
++iambuses
++ibex
++ibexes
++ibid
++ibidem
++ibis
++ibises
++ibuprofen
++ice
++iceberg
++icebergs
++iceboat
++iceboats
++icebound
++icebox
++iceboxes
++icebreaker
++icebreakers
++icecap
++icecaps
++iced
++iceman
++icemen
++ices
++ichthyologist
++ichthyologists
++ichthyology
++icicle
++icicles
++icier
++iciest
++icily
++iciness
++icing
++icings
++ickier
++ickiest
++icky
++icon
++iconic
++iconoclasm
++iconoclast
++iconoclastic
++iconoclasts
++iconography
++icons
++ictus
++icy
++id
++idea
++ideal
++idealism
++idealist
++idealistic
++idealistically
++idealists
++idealization
++idealizations
++idealize
++idealized
++idealizes
++idealizing
++ideally
++ideals
++ideas
++idem
++idempotent
++identical
++identically
++identifiable
++identification
++identifications
++identified
++identifier
++identifiers
++identifies
++identify
++identifying
++identikit
++identikits
++identities
++identity
++ideogram
++ideograms
++ideograph
++ideographs
++ideological
++ideologically
++ideologies
++ideologist
++ideologists
++ideologue
++ideologues
++ideology
++ides
++idiocies
++idiocy
++idiom
++idiomatic
++idiomatically
++idioms
++idiopathic
++idiosyncrasies
++idiosyncrasy
++idiosyncratic
++idiosyncratically
++idiot
++idiotic
++idiotically
++idiots
++idle
++idled
++idleness
++idler
++idlers
++idles
++idlest
++idling
++idly
++idol
++idolater
++idolaters
++idolatress
++idolatresses
++idolatrous
++idolatry
++idolization
++idolize
++idolized
++idolizes
++idolizing
++idols
++ids
++idyll
++idyllic
++idyllically
++idylls
++if
++iffier
++iffiest
++iffiness
++iffy
++ifs
++igloo
++igloos
++igneous
++ignitable
++ignite
++ignited
++ignites
++igniting
++ignition
++ignitions
++ignoble
++ignobly
++ignominies
++ignominious
++ignominiously
++ignominy
++ignoramus
++ignoramuses
++ignorance
++ignorant
++ignorantly
++ignore
++ignored
++ignores
++ignoring
++iguana
++iguanas
++ii
++iii
++ilea
++ileitis
++ileum
++ilia
++ilium
++ilk
++ilks
++ill
++illegal
++illegalities
++illegality
++illegally
++illegals
++illegibility
++illegible
++illegibly
++illegitimacy
++illegitimate
++illegitimately
++illiberal
++illiberality
++illiberally
++illicit
++illicitly
++illicitness
++illimitable
++illiteracy
++illiterate
++illiterately
++illiterates
++illness
++illnesses
++illogical
++illogicality
++illogically
++ills
++illuminable
++illuminate
++illuminated
++illuminates
++illuminating
++illuminatingly
++illumination
++illuminations
++illumine
++illumined
++illumines
++illumining
++illus
++illusion
++illusionist
++illusionists
++illusions
++illusive
++illusory
++illustrate
++illustrated
++illustrates
++illustrating
++illustration
++illustrations
++illustrative
++illustratively
++illustrator
++illustrators
++illustrious
++illustriously
++illustriousness
++image
++imaged
++imagery
++images
++imaginable
++imaginably
++imaginal
++imaginary
++imagination
++imaginations
++imaginative
++imaginatively
++imagine
++imagined
++imagines
++imaging
++imagining
++imaginings
++imago
++imagoes
++imam
++imams
++imbalance
++imbalanced
++imbalances
++imbecile
++imbeciles
++imbecilic
++imbecilities
++imbecility
++imbibe
++imbibed
++imbiber
++imbibers
++imbibes
++imbibing
++imbrication
++imbroglio
++imbroglios
++imbue
++imbued
++imbues
++imbuing
++imitable
++imitate
++imitated
++imitates
++imitating
++imitation
++imitations
++imitative
++imitatively
++imitativeness
++imitator
++imitators
++immaculate
++immaculately
++immaculateness
++immanence
++immanency
++immanent
++immanently
++immaterial
++immateriality
++immaterially
++immaterialness
++immature
++immaturely
++immaturity
++immeasurable
++immeasurably
++immediacies
++immediacy
++immediate
++immediately
++immediateness
++immemorial
++immemorially
++immense
++immensely
++immensities
++immensity
++immerse
++immersed
++immerses
++immersible
++immersing
++immersion
++immersions
++immersive
++immigrant
++immigrants
++immigrate
++immigrated
++immigrates
++immigrating
++immigration
++imminence
++imminent
++imminently
++immobile
++immobility
++immobilization
++immobilize
++immobilized
++immobilizer
++immobilizers
++immobilizes
++immobilizing
++immoderate
++immoderately
++immodest
++immodestly
++immodesty
++immolate
++immolated
++immolates
++immolating
++immolation
++immoral
++immoralities
++immorality
++immorally
++immortal
++immortality
++immortalize
++immortalized
++immortalizes
++immortalizing
++immortally
++immortals
++immovability
++immovable
++immovably
++immune
++immunity
++immunization
++immunizations
++immunize
++immunized
++immunizes
++immunizing
++immunodeficiency
++immunodeficient
++immunoglobulin
++immunoglobulins
++immunologic
++immunological
++immunologist
++immunologists
++immunology
++immure
++immured
++immures
++immuring
++immutability
++immutable
++immutably
++imp
++impact
++impacted
++impacting
++impacts
++impair
++impaired
++impairing
++impairment
++impairments
++impairs
++impala
++impalas
++impale
++impaled
++impalement
++impales
++impaling
++impalpable
++impalpably
++impanel
++impaneled
++impaneling
++impanels
++impart
++imparted
++impartial
++impartiality
++impartially
++imparting
++imparts
++impassable
++impassably
++impasse
++impasses
++impassibility
++impassible
++impassibly
++impassioned
++impassive
++impassively
++impassiveness
++impassivity
++impasto
++impatience
++impatiences
++impatiens
++impatient
++impatiently
++impeach
++impeachable
++impeached
++impeacher
++impeachers
++impeaches
++impeaching
++impeachment
++impeachments
++impeccability
++impeccable
++impeccably
++impecunious
++impecuniously
++impecuniousness
++impedance
++impede
++impeded
++impedes
++impediment
++impedimenta
++impediments
++impeding
++impel
++impelled
++impeller
++impellers
++impelling
++impels
++impend
++impended
++impending
++impends
++impenetrability
++impenetrable
++impenetrably
++impenitence
++impenitent
++impenitently
++imper
++imperative
++imperatively
++imperatives
++imperceptibility
++imperceptible
++imperceptibly
++imperceptive
++imperf
++imperfect
++imperfection
++imperfections
++imperfectly
++imperfectness
++imperfects
++imperial
++imperialism
++imperialist
++imperialistic
++imperialistically
++imperialists
++imperially
++imperials
++imperil
++imperiled
++imperiling
++imperilment
++imperils
++imperious
++imperiously
++imperiousness
++imperishable
++imperishably
++impermanence
++impermanent
++impermanently
++impermeability
++impermeable
++impermeably
++impermissible
++impersonal
++impersonally
++impersonate
++impersonated
++impersonates
++impersonating
++impersonation
++impersonations
++impersonator
++impersonators
++impertinence
++impertinences
++impertinent
++impertinently
++imperturbability
++imperturbable
++imperturbably
++impervious
++imperviously
++impetigo
++impetuosity
++impetuous
++impetuously
++impetuousness
++impetus
++impetuses
++impieties
++impiety
++impinge
++impinged
++impingement
++impinges
++impinging
++impious
++impiously
++impiousness
++impish
++impishly
++impishness
++implacability
++implacable
++implacably
++implant
++implantable
++implantation
++implanted
++implanting
++implants
++implausibilities
++implausibility
++implausible
++implausibly
++implement
++implementable
++implementation
++implementations
++implemented
++implementer
++implementing
++implements
++implicate
++implicated
++implicates
++implicating
++implication
++implications
++implicit
++implicitly
++implicitness
++implied
++implies
++implode
++imploded
++implodes
++imploding
++implore
++implored
++implores
++imploring
++imploringly
++implosion
++implosions
++implosive
++imply
++implying
++impolite
++impolitely
++impoliteness
++impolitenesses
++impolitic
++imponderable
++imponderables
++import
++importable
++importance
++important
++importantly
++importation
++importations
++imported
++importer
++importers
++importing
++imports
++importunate
++importunately
++importune
++importuned
++importunes
++importuning
++importunity
++impose
++imposed
++imposer
++imposers
++imposes
++imposing
++imposingly
++imposition
++impositions
++impossibilities
++impossibility
++impossible
++impossibles
++impossibly
++impost
++impostor
++impostors
++imposts
++imposture
++impostures
++impotence
++impotency
++impotent
++impotently
++impound
++impounded
++impounding
++impounds
++impoverish
++impoverished
++impoverishes
++impoverishing
++impoverishment
++impracticability
++impracticable
++impracticably
++impractical
++impracticality
++impractically
++imprecate
++imprecated
++imprecates
++imprecating
++imprecation
++imprecations
++imprecise
++imprecisely
++impreciseness
++imprecision
++impregnability
++impregnable
++impregnably
++impregnate
++impregnated
++impregnates
++impregnating
++impregnation
++impresario
++impresarios
++impress
++impressed
++impresses
++impressibility
++impressible
++impressing
++impression
++impressionability
++impressionable
++impressionism
++impressionist
++impressionistic
++impressionists
++impressions
++impressive
++impressively
++impressiveness
++imprimatur
++imprimaturs
++imprint
++imprinted
++imprinter
++imprinters
++imprinting
++imprints
++imprison
++imprisoned
++imprisoning
++imprisonment
++imprisonments
++imprisons
++improbabilities
++improbability
++improbable
++improbably
++impromptu
++impromptus
++improper
++improperly
++improprieties
++impropriety
++improvable
++improve
++improved
++improvement
++improvements
++improves
++improvidence
++improvident
++improvidently
++improving
++improvisation
++improvisational
++improvisations
++improvise
++improvised
++improviser
++improvisers
++improvises
++improvising
++imprudence
++imprudent
++imprudently
++imps
++impudence
++impudent
++impudently
++impugn
++impugned
++impugner
++impugners
++impugning
++impugns
++impulse
++impulsed
++impulses
++impulsing
++impulsion
++impulsive
++impulsively
++impulsiveness
++impunity
++impure
++impurely
++impurer
++impurest
++impurities
++impurity
++imputable
++imputation
++imputations
++impute
++imputed
++imputes
++imputing
++in
++inabilities
++inability
++inaccessibility
++inaccessible
++inaccessibly
++inaccuracies
++inaccuracy
++inaccurate
++inaccurately
++inaction
++inactivate
++inactivated
++inactivates
++inactivating
++inactivation
++inactive
++inactively
++inactivity
++inadequacies
++inadequacy
++inadequate
++inadequately
++inadmissibility
++inadmissible
++inadvertence
++inadvertent
++inadvertently
++inadvisability
++inadvisable
++inalienability
++inalienable
++inalienably
++inamorata
++inamoratas
++inane
++inanely
++inaner
++inanest
++inanimate
++inanimately
++inanimateness
++inanities
++inanity
++inapplicable
++inappreciable
++inappreciably
++inapproachable
++inappropriate
++inappropriately
++inappropriateness
++inapt
++inaptly
++inaptness
++inarguable
++inarticulacy
++inarticulate
++inarticulately
++inarticulateness
++inartistic
++inasmuch
++inattention
++inattentive
++inattentively
++inattentiveness
++inaudibility
++inaudible
++inaudibly
++inaugural
++inaugurals
++inaugurate
++inaugurated
++inaugurates
++inaugurating
++inauguration
++inaugurations
++inauspicious
++inauspiciously
++inauthentic
++inboard
++inboards
++inborn
++inbound
++inbox
++inboxes
++inbred
++inbreed
++inbreeding
++inbreeds
++inbuilt
++inc
++incalculable
++incalculably
++incandescence
++incandescent
++incandescently
++incantation
++incantations
++incapability
++incapable
++incapably
++incapacitate
++incapacitated
++incapacitates
++incapacitating
++incapacity
++incarcerate
++incarcerated
++incarcerates
++incarcerating
++incarceration
++incarcerations
++incarnadine
++incarnadined
++incarnadines
++incarnadining
++incarnate
++incarnated
++incarnates
++incarnating
++incarnation
++incarnations
++incautious
++incautiously
++inced
++incendiaries
++incendiary
++incense
++incensed
++incenses
++incensing
++incentive
++incentives
++inception
++inceptions
++incertitude
++incessant
++incessantly
++incest
++incestuous
++incestuously
++incestuousness
++inch
++inched
++inches
++inching
++inchoate
++inchworm
++inchworms
++incidence
++incidences
++incident
++incidental
++incidentally
++incidentals
++incidents
++incinerate
++incinerated
++incinerates
++incinerating
++incineration
++incinerator
++incinerators
++incing
++incipience
++incipient
++incipiently
++incise
++incised
++incises
++incising
++incision
++incisions
++incisive
++incisively
++incisiveness
++incisor
++incisors
++incite
++incited
++incitement
++incitements
++inciter
++inciters
++incites
++inciting
++incivilities
++incivility
++incl
++inclemency
++inclement
++inclination
++inclinations
++incline
++inclined
++inclines
++inclining
++include
++included
++includes
++including
++inclusion
++inclusions
++inclusive
++inclusively
++inclusiveness
++incognito
++incognitos
++incoherence
++incoherent
++incoherently
++incombustible
++income
++incomer
++incomers
++incomes
++incoming
++incommensurate
++incommensurately
++incommode
++incommoded
++incommodes
++incommoding
++incommodious
++incommunicable
++incommunicado
++incomparable
++incomparably
++incompatibilities
++incompatibility
++incompatible
++incompatibles
++incompatibly
++incompetence
++incompetency
++incompetent
++incompetently
++incompetents
++incomplete
++incompletely
++incompleteness
++incomprehensibility
++incomprehensible
++incomprehensibly
++incomprehension
++inconceivability
++inconceivable
++inconceivably
++inconclusive
++inconclusively
++inconclusiveness
++incongruities
++incongruity
++incongruous
++incongruously
++incongruousness
++inconsequential
++inconsequentially
++inconsiderable
++inconsiderate
++inconsiderately
++inconsiderateness
++inconsideration
++inconsistencies
++inconsistency
++inconsistent
++inconsistently
++inconsolable
++inconsolably
++inconspicuous
++inconspicuously
++inconspicuousness
++inconstancy
++inconstant
++inconstantly
++incontestability
++incontestable
++incontestably
++incontinence
++incontinent
++incontrovertible
++incontrovertibly
++inconvenience
++inconvenienced
++inconveniences
++inconveniencing
++inconvenient
++inconveniently
++incorporate
++incorporated
++incorporates
++incorporating
++incorporation
++incorporeal
++incorrect
++incorrectly
++incorrectness
++incorrigibility
++incorrigible
++incorrigibly
++incorruptibility
++incorruptible
++incorruptibly
++increase
++increased
++increases
++increasing
++increasingly
++incredibility
++incredible
++incredibly
++incredulity
++incredulous
++incredulously
++increment
++incremental
++incrementalism
++incrementalist
++incrementalists
++incrementally
++incremented
++increments
++incriminate
++incriminated
++incriminates
++incriminating
++incrimination
++incriminatory
++incrustation
++incrustations
++incs
++incubate
++incubated
++incubates
++incubating
++incubation
++incubator
++incubators
++incubus
++incubuses
++inculcate
++inculcated
++inculcates
++inculcating
++inculcation
++inculpable
++inculpate
++inculpated
++inculpates
++inculpating
++incumbencies
++incumbency
++incumbent
++incumbents
++incunabula
++incunabulum
++incur
++incurable
++incurables
++incurably
++incurious
++incurred
++incurring
++incurs
++incursion
++incursions
++ind
++indebted
++indebtedness
++indecencies
++indecency
++indecent
++indecently
++indecipherable
++indecision
++indecisive
++indecisively
++indecisiveness
++indecorous
++indecorously
++indeed
++indefatigable
++indefatigably
++indefeasible
++indefeasibly
++indefensible
++indefensibly
++indefinable
++indefinably
++indefinite
++indefinitely
++indefiniteness
++indelible
++indelibly
++indelicacies
++indelicacy
++indelicate
++indelicately
++indemnification
++indemnifications
++indemnified
++indemnifies
++indemnify
++indemnifying
++indemnities
++indemnity
++indemonstrable
++indent
++indentation
++indentations
++indented
++indenting
++indention
++indents
++indenture
++indentured
++indentures
++indenturing
++independence
++independent
++independently
++independents
++indescribable
++indescribably
++indestructibility
++indestructible
++indestructibly
++indeterminable
++indeterminably
++indeterminacy
++indeterminate
++indeterminately
++index
++indexation
++indexations
++indexed
++indexer
++indexers
++indexes
++indexing
++indicate
++indicated
++indicates
++indicating
++indication
++indications
++indicative
++indicatively
++indicatives
++indicator
++indicators
++indices
++indict
++indictable
++indicted
++indicting
++indictment
++indictments
++indicts
++indie
++indies
++indifference
++indifferent
++indifferently
++indigence
++indigenous
++indigent
++indigently
++indigents
++indigestible
++indigestion
++indignant
++indignantly
++indignation
++indignities
++indignity
++indigo
++indirect
++indirection
++indirectly
++indirectness
++indiscernible
++indiscipline
++indiscreet
++indiscreetly
++indiscretion
++indiscretions
++indiscriminate
++indiscriminately
++indispensability
++indispensable
++indispensables
++indispensably
++indisposed
++indisposition
++indispositions
++indisputable
++indisputably
++indissolubility
++indissoluble
++indissolubly
++indistinct
++indistinctly
++indistinctness
++indistinguishable
++indistinguishably
++indite
++indited
++indites
++inditing
++indium
++individual
++individualism
++individualist
++individualistic
++individualistically
++individualists
++individuality
++individualization
++individualize
++individualized
++individualizes
++individualizing
++individually
++individuals
++individuate
++individuated
++individuates
++individuating
++individuation
++indivisibility
++indivisible
++indivisibly
++indoctrinate
++indoctrinated
++indoctrinates
++indoctrinating
++indoctrination
++indolence
++indolent
++indolently
++indomitable
++indomitably
++indoor
++indoors
++indubitable
++indubitably
++induce
++induced
++inducement
++inducements
++inducer
++inducers
++induces
++inducing
++induct
++inductance
++inducted
++inductee
++inductees
++inducting
++induction
++inductions
++inductive
++inductively
++inducts
++indulge
++indulged
++indulgence
++indulgences
++indulgent
++indulgently
++indulges
++indulging
++industrial
++industrialism
++industrialist
++industrialists
++industrialization
++industrialize
++industrialized
++industrializes
++industrializing
++industrially
++industries
++industrious
++industriously
++industriousness
++industry
++indwell
++indwelling
++indwells
++indwelt
++inebriate
++inebriated
++inebriates
++inebriating
++inebriation
++inedible
++ineducable
++ineffability
++ineffable
++ineffably
++ineffective
++ineffectively
++ineffectiveness
++ineffectual
++ineffectually
++inefficacy
++inefficiencies
++inefficiency
++inefficient
++inefficiently
++inelastic
++inelegance
++inelegant
++inelegantly
++ineligibility
++ineligible
++ineligibles
++ineligibly
++ineluctable
++ineluctably
++inept
++ineptitude
++ineptly
++ineptness
++inequalities
++inequality
++inequitable
++inequitably
++inequities
++inequity
++ineradicable
++inerrant
++inert
++inertia
++inertial
++inertly
++inertness
++inescapable
++inescapably
++inessential
++inessentials
++inestimable
++inestimably
++inevitability
++inevitable
++inevitably
++inexact
++inexactly
++inexactness
++inexcusable
++inexcusably
++inexhaustible
++inexhaustibly
++inexorability
++inexorable
++inexorably
++inexpedience
++inexpediency
++inexpedient
++inexpensive
++inexpensively
++inexpensiveness
++inexperience
++inexperienced
++inexpert
++inexpertly
++inexpiable
++inexplicable
++inexplicably
++inexpressible
++inexpressibly
++inexpressive
++inextinguishable
++inextricable
++inextricably
++inf
++infallibility
++infallible
++infallibly
++infamies
++infamous
++infamously
++infamy
++infancy
++infant
++infanticide
++infanticides
++infantile
++infantries
++infantry
++infantryman
++infantrymen
++infants
++infarct
++infarction
++infarcts
++infatuate
++infatuated
++infatuates
++infatuating
++infatuation
++infatuations
++infeasible
++infect
++infected
++infecting
++infection
++infections
++infectious
++infectiously
++infectiousness
++infects
++infelicities
++infelicitous
++infelicity
++infer
++inference
++inferences
++inferential
++inferior
++inferiority
++inferiors
++infernal
++infernally
++inferno
++infernos
++inferred
++inferring
++infers
++infertile
++infertility
++infest
++infestation
++infestations
++infested
++infesting
++infests
++infidel
++infidelities
++infidelity
++infidels
++infield
++infielder
++infielders
++infields
++infighter
++infighters
++infighting
++infill
++infilled
++infilling
++infills
++infiltrate
++infiltrated
++infiltrates
++infiltrating
++infiltration
++infiltrator
++infiltrators
++infinite
++infinitely
++infinitesimal
++infinitesimally
++infinitesimals
++infinities
++infinitival
++infinitive
++infinitives
++infinitude
++infinity
++infirm
++infirmaries
++infirmary
++infirmities
++infirmity
++infix
++inflame
++inflamed
++inflames
++inflaming
++inflammability
++inflammable
++inflammation
++inflammations
++inflammatory
++inflatable
++inflatables
++inflate
++inflated
++inflates
++inflating
++inflation
++inflationary
++inflect
++inflected
++inflecting
++inflection
++inflectional
++inflections
++inflects
++inflexibility
++inflexible
++inflexibly
++inflict
++inflicted
++inflicting
++infliction
++inflictive
++inflicts
++inflorescence
++inflorescent
++inflow
++inflows
++influence
++influenced
++influences
++influencing
++influential
++influentially
++influenza
++influx
++influxes
++info
++infomercial
++infomercials
++inform
++informal
++informality
++informally
++informant
++informants
++informatics
++information
++informational
++informative
++informatively
++informativeness
++informed
++informer
++informers
++informing
++informs
++infotainment
++infra
++infraction
++infractions
++infrared
++infrasonic
++infrastructural
++infrastructure
++infrastructures
++infrequence
++infrequency
++infrequent
++infrequently
++infringe
++infringed
++infringement
++infringements
++infringes
++infringing
++infuriate
++infuriated
++infuriates
++infuriating
++infuriatingly
++infuse
++infused
++infuser
++infusers
++infuses
++infusing
++infusion
++infusions
++ingenious
++ingeniously
++ingeniousness
++ingenue
++ingenues
++ingenuity
++ingenuous
++ingenuously
++ingenuousness
++ingest
++ingested
++ingesting
++ingestion
++ingests
++inglenook
++inglenooks
++inglorious
++ingloriously
++ingot
++ingots
++ingrain
++ingrained
++ingraining
++ingrains
++ingrate
++ingrates
++ingratiate
++ingratiated
++ingratiates
++ingratiating
++ingratiatingly
++ingratiation
++ingratitude
++ingredient
++ingredients
++ingress
++ingresses
++ingrowing
++ingrown
++inguinal
++inhabit
++inhabitable
++inhabitant
++inhabitants
++inhabited
++inhabiting
++inhabits
++inhalant
++inhalants
++inhalation
++inhalations
++inhalator
++inhalators
++inhale
++inhaled
++inhaler
++inhalers
++inhales
++inhaling
++inharmonious
++inhere
++inhered
++inherent
++inherently
++inheres
++inhering
++inherit
++inheritable
++inheritance
++inheritances
++inherited
++inheriting
++inheritor
++inheritors
++inherits
++inhibit
++inhibited
++inhibiting
++inhibition
++inhibitions
++inhibitor
++inhibitors
++inhibitory
++inhibits
++inhospitable
++inhospitably
++inhuman
++inhumane
++inhumanely
++inhumanities
++inhumanity
++inhumanly
++inimical
++inimically
++inimitable
++inimitably
++iniquities
++iniquitous
++iniquitously
++iniquity
++initial
++initialed
++initialing
++initialism
++initialization
++initialize
++initialized
++initializes
++initializing
++initially
++initials
++initiate
++initiated
++initiates
++initiating
++initiation
++initiations
++initiative
++initiatives
++initiator
++initiators
++initiatory
++inject
++injected
++injecting
++injection
++injections
++injector
++injectors
++injects
++injudicious
++injudiciously
++injudiciousness
++injunction
++injunctions
++injure
++injured
++injurer
++injurers
++injures
++injuries
++injuring
++injurious
++injury
++injustice
++injustices
++ink
++inkblot
++inkblots
++inked
++inkier
++inkiest
++inkiness
++inking
++inkling
++inklings
++inks
++inkstand
++inkstands
++inkwell
++inkwells
++inky
++inlaid
++inland
++inlay
++inlaying
++inlays
++inlet
++inlets
++inline
++inmate
++inmates
++inmost
++inn
++innards
++innate
++innately
++innateness
++inner
++innermost
++innersole
++innersoles
++innerspring
++innervate
++innervated
++innervates
++innervating
++innervation
++inning
++innings
++innit
++innkeeper
++innkeepers
++innocence
++innocent
++innocently
++innocents
++innocuous
++innocuously
++innocuousness
++innovate
++innovated
++innovates
++innovating
++innovation
++innovations
++innovative
++innovator
++innovators
++innovatory
++inns
++innuendo
++innuendos
++innumerable
++innumerably
++innumeracy
++innumerate
++inoculate
++inoculated
++inoculates
++inoculating
++inoculation
++inoculations
++inoffensive
++inoffensively
++inoffensiveness
++inoperable
++inoperative
++inopportune
++inopportunely
++inordinate
++inordinately
++inorganic
++inorganically
++inositol
++inpatient
++inpatients
++input
++inputs
++inputted
++inputting
++inquest
++inquests
++inquietude
++inquire
++inquired
++inquirer
++inquirers
++inquires
++inquiries
++inquiring
++inquiringly
++inquiry
++inquisition
++inquisitional
++inquisitions
++inquisitive
++inquisitively
++inquisitiveness
++inquisitor
++inquisitorial
++inquisitors
++inquorate
++inroad
++inroads
++inrush
++inrushes
++ins
++insalubrious
++insane
++insanely
++insaner
++insanest
++insanitary
++insanity
++insatiability
++insatiable
++insatiably
++inscribe
++inscribed
++inscriber
++inscribers
++inscribes
++inscribing
++inscription
++inscriptions
++inscrutability
++inscrutable
++inscrutableness
++inscrutably
++inseam
++inseams
++insect
++insecticidal
++insecticide
++insecticides
++insectivore
++insectivores
++insectivorous
++insects
++insecure
++insecurely
++insecurities
++insecurity
++inseminate
++inseminated
++inseminates
++inseminating
++insemination
++insensate
++insensibility
++insensible
++insensibly
++insensitive
++insensitively
++insensitivity
++insentience
++insentient
++inseparability
++inseparable
++inseparables
++inseparably
++insert
++inserted
++inserting
++insertion
++insertions
++inserts
++inset
++insets
++insetting
++inshore
++inside
++insider
++insiders
++insides
++insidious
++insidiously
++insidiousness
++insight
++insightful
++insights
++insignia
++insignificance
++insignificant
++insignificantly
++insincere
++insincerely
++insincerity
++insinuate
++insinuated
++insinuates
++insinuating
++insinuation
++insinuations
++insinuative
++insinuator
++insinuators
++insipid
++insipidity
++insipidly
++insipidness
++insist
++insisted
++insistence
++insistent
++insistently
++insisting
++insistingly
++insists
++insobriety
++insofar
++insole
++insolence
++insolent
++insolently
++insoles
++insolubility
++insoluble
++insolubly
++insolvable
++insolvencies
++insolvency
++insolvent
++insolvents
++insomnia
++insomniac
++insomniacs
++insomuch
++insouciance
++insouciant
++inspect
++inspected
++inspecting
++inspection
++inspections
++inspector
++inspectorate
++inspectorates
++inspectors
++inspects
++inspiration
++inspirational
++inspirations
++inspire
++inspired
++inspires
++inspiring
++inspirit
++inspirited
++inspiriting
++inspirits
++inst
++instabilities
++instability
++install
++installation
++installations
++installed
++installer
++installers
++installing
++installment
++installments
++installs
++instance
++instanced
++instances
++instancing
++instant
++instantaneous
++instantaneously
++instanter
++instantiate
++instantiated
++instantiates
++instantiating
++instantly
++instants
++instar
++instate
++instated
++instates
++instating
++instead
++instep
++insteps
++instigate
++instigated
++instigates
++instigating
++instigation
++instigator
++instigators
++instill
++instillation
++instilled
++instilling
++instills
++instinct
++instinctive
++instinctively
++instincts
++instinctual
++institute
++instituted
++instituter
++instituters
++institutes
++instituting
++institution
++institutional
++institutionalization
++institutionalize
++institutionalized
++institutionalizes
++institutionalizing
++institutionally
++institutions
++instr
++instruct
++instructed
++instructing
++instruction
++instructional
++instructions
++instructive
++instructively
++instructor
++instructors
++instructs
++instrument
++instrumental
++instrumentalist
++instrumentalists
++instrumentality
++instrumentally
++instrumentals
++instrumentation
++instrumented
++instrumenting
++instruments
++insubordinate
++insubordination
++insubstantial
++insubstantially
++insufferable
++insufferably
++insufficiency
++insufficient
++insufficiently
++insular
++insularity
++insulate
++insulated
++insulates
++insulating
++insulation
++insulator
++insulators
++insulin
++insult
++insulted
++insulting
++insultingly
++insults
++insuperable
++insuperably
++insupportable
++insurable
++insurance
++insurances
++insure
++insured
++insureds
++insurer
++insurers
++insures
++insurgence
++insurgences
++insurgencies
++insurgency
++insurgent
++insurgents
++insuring
++insurmountable
++insurmountably
++insurrection
++insurrectionist
++insurrectionists
++insurrections
++insusceptible
++int
++intact
++intaglio
++intaglios
++intake
++intakes
++intangibility
++intangible
++intangibles
++intangibly
++integer
++integers
++integral
++integrally
++integrals
++integrate
++integrated
++integrates
++integrating
++integration
++integrative
++integrator
++integrity
++integument
++integuments
++intellect
++intellects
++intellectual
++intellectualism
++intellectualize
++intellectualized
++intellectualizes
++intellectualizing
++intellectually
++intellectuals
++intelligence
++intelligent
++intelligently
++intelligentsia
++intelligibility
++intelligible
++intelligibly
++intemperance
++intemperate
++intemperately
++intend
++intended
++intendeds
++intending
++intends
++intense
++intensely
++intenser
++intensest
++intensification
++intensified
++intensifier
++intensifiers
++intensifies
++intensify
++intensifying
++intensities
++intensity
++intensive
++intensively
++intensiveness
++intensives
++intent
++intention
++intentional
++intentionally
++intentions
++intently
++intentness
++intents
++inter
++interact
++interacted
++interacting
++interaction
++interactions
++interactive
++interactively
++interactivity
++interacts
++interbred
++interbreed
++interbreeding
++interbreeds
++intercede
++interceded
++intercedes
++interceding
++intercept
++intercepted
++intercepting
++interception
++interceptions
++interceptor
++interceptors
++intercepts
++intercession
++intercessions
++intercessor
++intercessors
++intercessory
++interchange
++interchangeability
++interchangeable
++interchangeably
++interchanged
++interchanges
++interchanging
++intercity
++intercollegiate
++intercom
++intercommunicate
++intercommunicated
++intercommunicates
++intercommunicating
++intercommunication
++intercoms
++interconnect
++interconnected
++interconnecting
++interconnection
++interconnections
++interconnects
++intercontinental
++intercourse
++intercultural
++interdenominational
++interdepartmental
++interdependence
++interdependent
++interdependently
++interdict
++interdicted
++interdicting
++interdiction
++interdicts
++interdisciplinary
++interest
++interested
++interesting
++interestingly
++interests
++interface
++interfaced
++interfaces
++interfacing
++interfaith
++interfere
++interfered
++interference
++interferes
++interfering
++interferon
++interfile
++interfiled
++interfiles
++interfiling
++intergalactic
++intergovernmental
++interim
++interior
++interiors
++interj
++interject
++interjected
++interjecting
++interjection
++interjections
++interjects
++interlace
++interlaced
++interlaces
++interlacing
++interlard
++interlarded
++interlarding
++interlards
++interleave
++interleaved
++interleaves
++interleaving
++interleukin
++interline
++interlinear
++interlined
++interlines
++interlining
++interlinings
++interlink
++interlinked
++interlinking
++interlinks
++interlock
++interlocked
++interlocking
++interlocks
++interlocutor
++interlocutors
++interlocutory
++interlope
++interloped
++interloper
++interlopers
++interlopes
++interloping
++interlude
++interluded
++interludes
++interluding
++intermarriage
++intermarriages
++intermarried
++intermarries
++intermarry
++intermarrying
++intermediaries
++intermediary
++intermediate
++intermediately
++intermediates
++interment
++interments
++intermezzi
++intermezzo
++intermezzos
++interminable
++interminably
++intermingle
++intermingled
++intermingles
++intermingling
++intermission
++intermissions
++intermittent
++intermittently
++intermix
++intermixed
++intermixes
++intermixing
++intern
++internal
++internalization
++internalize
++internalized
++internalizes
++internalizing
++internally
++internals
++international
++internationalism
++internationalist
++internationalists
++internationalization
++internationalize
++internationalized
++internationalizes
++internationalizing
++internationally
++internationals
++internecine
++interned
++internee
++internees
++internet
++interning
++internist
++internists
++internment
++interns
++internship
++internships
++interoffice
++interpenetrate
++interpenetrated
++interpenetrates
++interpenetrating
++interpenetration
++interpersonal
++interplanetary
++interplay
++interpolate
++interpolated
++interpolates
++interpolating
++interpolation
++interpolations
++interpose
++interposed
++interposes
++interposing
++interposition
++interpret
++interpretation
++interpretations
++interpretative
++interpreted
++interpreter
++interpreters
++interpreting
++interpretive
++interprets
++interracial
++interred
++interregnum
++interregnums
++interrelate
++interrelated
++interrelates
++interrelating
++interrelation
++interrelations
++interrelationship
++interrelationships
++interring
++interrogate
++interrogated
++interrogates
++interrogating
++interrogation
++interrogations
++interrogative
++interrogatively
++interrogatives
++interrogator
++interrogatories
++interrogators
++interrogatory
++interrupt
++interrupted
++interrupter
++interrupters
++interrupting
++interruption
++interruptions
++interrupts
++inters
++interscholastic
++intersect
++intersected
++intersecting
++intersection
++intersections
++intersects
++intersession
++intersessions
++intersex
++intersperse
++interspersed
++intersperses
++interspersing
++interspersion
++interstate
++interstates
++interstellar
++interstice
++interstices
++interstitial
++intertwine
++intertwined
++intertwines
++intertwining
++interurban
++interval
++intervals
++intervene
++intervened
++intervenes
++intervening
++intervention
++interventionism
++interventionist
++interventionists
++interventions
++interview
++interviewed
++interviewee
++interviewees
++interviewer
++interviewers
++interviewing
++interviews
++intervocalic
++interwar
++interweave
++interweaves
++interweaving
++interwove
++interwoven
++intestacy
++intestate
++intestinal
++intestine
++intestines
++intimacies
++intimacy
++intimate
++intimated
++intimately
++intimates
++intimating
++intimation
++intimations
++intimidate
++intimidated
++intimidates
++intimidating
++intimidatingly
++intimidation
++into
++intolerable
++intolerably
++intolerance
++intolerant
++intolerantly
++intonation
++intonations
++intone
++intoned
++intoner
++intoners
++intones
++intoning
++intoxicant
++intoxicants
++intoxicate
++intoxicated
++intoxicates
++intoxicating
++intoxication
++intracranial
++intractability
++intractable
++intractably
++intramural
++intramuscular
++intranet
++intranets
++intrans
++intransigence
++intransigent
++intransigently
++intransigents
++intransitive
++intransitively
++intransitives
++intrastate
++intrauterine
++intravenous
++intravenouses
++intravenously
++intrepid
++intrepidity
++intrepidly
++intricacies
++intricacy
++intricate
++intricately
++intrigue
++intrigued
++intriguer
++intriguers
++intrigues
++intriguing
++intriguingly
++intrinsic
++intrinsically
++intro
++introduce
++introduced
++introduces
++introducing
++introduction
++introductions
++introductory
++introit
++introits
++intros
++introspect
++introspected
++introspecting
++introspection
++introspective
++introspectively
++introspects
++introversion
++introvert
++introverted
++introverts
++intrude
++intruded
++intruder
++intruders
++intrudes
++intruding
++intrusion
++intrusions
++intrusive
++intrusively
++intrusiveness
++intuit
++intuited
++intuiting
++intuition
++intuitions
++intuitive
++intuitively
++intuitiveness
++intuits
++inundate
++inundated
++inundates
++inundating
++inundation
++inundations
++inure
++inured
++inures
++inuring
++invade
++invaded
++invader
++invaders
++invades
++invading
++invalid
++invalidate
++invalidated
++invalidates
++invalidating
++invalidation
++invalided
++invaliding
++invalidism
++invalidity
++invalidly
++invalids
++invaluable
++invaluably
++invariability
++invariable
++invariables
++invariably
++invariant
++invasion
++invasions
++invasive
++invective
++inveigh
++inveighed
++inveighing
++inveighs
++inveigle
++inveigled
++inveigler
++inveiglers
++inveigles
++inveigling
++invent
++invented
++inventing
++invention
++inventions
++inventive
++inventively
++inventiveness
++inventor
++inventoried
++inventories
++inventors
++inventory
++inventorying
++invents
++inverse
++inversely
++inverses
++inversion
++inversions
++invert
++invertebrate
++invertebrates
++inverted
++inverter
++inverters
++inverting
++inverts
++invest
++invested
++investigate
++investigated
++investigates
++investigating
++investigation
++investigations
++investigative
++investigator
++investigators
++investigatory
++investing
++investiture
++investitures
++investment
++investments
++investor
++investors
++invests
++inveteracy
++inveterate
++invidious
++invidiously
++invidiousness
++invigilate
++invigilated
++invigilates
++invigilating
++invigilation
++invigilator
++invigilators
++invigorate
++invigorated
++invigorates
++invigorating
++invigoratingly
++invigoration
++invincibility
++invincible
++invincibly
++inviolability
++inviolable
++inviolably
++inviolate
++invisibility
++invisible
++invisibly
++invitation
++invitational
++invitationals
++invitations
++invite
++invited
++invitee
++invitees
++invites
++inviting
++invitingly
++invocation
++invocations
++invoice
++invoiced
++invoices
++invoicing
++invoke
++invoked
++invokes
++invoking
++involuntarily
++involuntariness
++involuntary
++involution
++involve
++involved
++involvement
++involvements
++involves
++involving
++invulnerability
++invulnerable
++invulnerably
++inward
++inwardly
++inwards
++ioctl
++iodide
++iodides
++iodine
++iodize
++iodized
++iodizes
++iodizing
++ion
++ionic
++ionization
++ionize
++ionized
++ionizer
++ionizers
++ionizes
++ionizing
++ionosphere
++ionospheres
++ionospheric
++ions
++iota
++iotas
++ipecac
++ipecacs
++irascibility
++irascible
++irascibly
++irate
++irately
++irateness
++ire
++ireful
++irenic
++irides
++iridescence
++iridescent
++iridescently
++iridium
++iris
++irises
++irk
++irked
++irking
++irks
++irksome
++irksomely
++irksomeness
++iron
++ironclad
++ironclads
++ironed
++ironic
++ironical
++ironically
++ironies
++ironing
++ironmonger
++ironmongers
++ironmongery
++irons
++ironstone
++ironware
++ironwood
++ironwoods
++ironwork
++irony
++irradiate
++irradiated
++irradiates
++irradiating
++irradiation
++irrational
++irrationality
++irrationally
++irrationals
++irreclaimable
++irreconcilability
++irreconcilable
++irreconcilably
++irrecoverable
++irrecoverably
++irredeemable
++irredeemably
++irreducible
++irreducibly
++irrefutable
++irrefutably
++irregardless
++irregular
++irregularities
++irregularity
++irregularly
++irregulars
++irrelevance
++irrelevances
++irrelevancies
++irrelevancy
++irrelevant
++irrelevantly
++irreligion
++irreligious
++irremediable
++irremediably
++irremovable
++irreparable
++irreparably
++irreplaceable
++irrepressible
++irrepressibly
++irreproachable
++irreproachably
++irresistible
++irresistibly
++irresolute
++irresolutely
++irresoluteness
++irresolution
++irrespective
++irresponsibility
++irresponsible
++irresponsibly
++irretrievable
++irretrievably
++irreverence
++irreverent
++irreverently
++irreversible
++irreversibly
++irrevocable
++irrevocably
++irrigable
++irrigate
++irrigated
++irrigates
++irrigating
++irrigation
++irritability
++irritable
++irritably
++irritant
++irritants
++irritate
++irritated
++irritates
++irritating
++irritatingly
++irritation
++irritations
++irrupt
++irrupted
++irrupting
++irruption
++irruptions
++irruptive
++irrupts
++is
++ischemia
++ischemic
++isinglass
++isl
++island
++islander
++islanders
++islands
++isle
++isles
++islet
++islets
++ism
++isms
++isobar
++isobaric
++isobars
++isolate
++isolated
++isolates
++isolating
++isolation
++isolationism
++isolationist
++isolationists
++isomer
++isomeric
++isomerism
++isomers
++isometric
++isometrically
++isometrics
++isomorphic
++isosceles
++isotherm
++isotherms
++isotope
++isotopes
++isotopic
++isotropic
++issuance
++issue
++issued
++issuer
++issuers
++issues
++issuing
++isthmian
++isthmus
++isthmuses
++it
++ital
++italic
++italicization
++italicize
++italicized
++italicizes
++italicizing
++italics
++itch
++itched
++itches
++itchier
++itchiest
++itchiness
++itching
++itchy
++item
++itemization
++itemize
++itemized
++itemizes
++itemizing
++items
++iterate
++iterated
++iterates
++iterating
++iteration
++iterations
++iterative
++iterator
++iterators
++itinerant
++itinerants
++itineraries
++itinerary
++its
++itself
++iv
++ivied
++ivies
++ivories
++ivory
++ivy
++ix
++j
++jab
++jabbed
++jabber
++jabbered
++jabberer
++jabberers
++jabbering
++jabbers
++jabbing
++jabot
++jabots
++jabs
++jacaranda
++jacarandas
++jack
++jackal
++jackals
++jackass
++jackasses
++jackboot
++jackbooted
++jackboots
++jackdaw
++jackdaws
++jacked
++jacket
++jacketed
++jackets
++jackhammer
++jackhammers
++jacking
++jackknife
++jackknifed
++jackknifes
++jackknifing
++jackknives
++jackpot
++jackpots
++jackrabbit
++jackrabbits
++jacks
++jackstraw
++jackstraws
++jacquard
++jade
++jaded
++jadedly
++jadedness
++jadeite
++jades
++jading
++jag
++jagged
++jaggeder
++jaggedest
++jaggedly
++jaggedness
++jaggies
++jags
++jaguar
++jaguars
++jail
++jailbird
++jailbirds
++jailbreak
++jailbreaks
++jailed
++jailer
++jailers
++jailhouse
++jailhouses
++jailing
++jails
++jalapeno
++jalapenos
++jalopies
++jalopy
++jalousie
++jalousies
++jam
++jamb
++jambalaya
++jamboree
++jamborees
++jambs
++jammed
++jammier
++jammiest
++jamming
++jammy
++jams
++jangle
++jangled
++jangler
++janglers
++jangles
++jangling
++janitor
++janitorial
++janitors
++japan
++japanned
++japanning
++japans
++jape
++japed
++japes
++japing
++jar
++jardiniere
++jardinieres
++jarful
++jarfuls
++jargon
++jarred
++jarring
++jarringly
++jars
++jasmine
++jasmines
++jasper
++jato
++jatos
++jaundice
++jaundiced
++jaundices
++jaundicing
++jaunt
++jaunted
++jauntier
++jauntiest
++jauntily
++jauntiness
++jaunting
++jaunts
++jaunty
++java
++javelin
++javelins
++jaw
++jawbone
++jawboned
++jawbones
++jawboning
++jawbreaker
++jawbreakers
++jawed
++jawing
++jawline
++jawlines
++jaws
++jay
++jaybird
++jaybirds
++jays
++jaywalk
++jaywalked
++jaywalker
++jaywalkers
++jaywalking
++jaywalks
++jazz
++jazzed
++jazzes
++jazzier
++jazziest
++jazzing
++jazzy
++jct
++jealous
++jealousies
++jealously
++jealousy
++jean
++jeans
++jeep
++jeeps
++jeer
++jeered
++jeering
++jeeringly
++jeers
++jeez
++jejuna
++jejune
++jejunum
++jell
++jelled
++jellied
++jellies
++jelling
++jello
++jellos
++jells
++jelly
++jellybean
++jellybeans
++jellyfish
++jellyfishes
++jellying
++jellylike
++jellyroll
++jellyrolls
++jemmied
++jemmies
++jemmy
++jemmying
++jennet
++jennets
++jennies
++jenny
++jeopardize
++jeopardized
++jeopardizes
++jeopardizing
++jeopardy
++jeremiad
++jeremiads
++jerk
++jerked
++jerkier
++jerkiest
++jerkily
++jerkin
++jerkiness
++jerking
++jerkins
++jerks
++jerkwater
++jerky
++jeroboam
++jeroboams
++jerrybuilt
++jerrycan
++jerrycans
++jersey
++jerseys
++jest
++jested
++jester
++jesters
++jesting
++jestingly
++jests
++jet
++jetliner
++jetliners
++jetport
++jetports
++jets
++jetsam
++jetted
++jetties
++jetting
++jettison
++jettisoned
++jettisoning
++jettisons
++jetty
++jew
++jewel
++jeweled
++jeweler
++jewelers
++jeweling
++jewelries
++jewelry
++jewels
++jg
++jib
++jibbed
++jibbing
++jibe
++jibed
++jibes
++jibing
++jibs
++jiff
++jiffies
++jiffs
++jiffy
++jig
++jigged
++jigger
++jiggered
++jiggering
++jiggers
++jigging
++jiggle
++jiggled
++jiggles
++jiggling
++jiggly
++jigs
++jigsaw
++jigsawed
++jigsawing
++jigsaws
++jihad
++jihadist
++jihadists
++jihads
++jilt
++jilted
++jilting
++jilts
++jimmied
++jimmies
++jimmy
++jimmying
++jimsonweed
++jingle
++jingled
++jingles
++jingling
++jingly
++jingoism
++jingoist
++jingoistic
++jingoists
++jink
++jinked
++jinking
++jinks
++jinn
++jinni
++jinrikisha
++jinrikishas
++jinx
++jinxed
++jinxes
++jinxing
++jitney
++jitneys
++jitterbug
++jitterbugged
++jitterbugger
++jitterbugging
++jitterbugs
++jitterier
++jitteriest
++jitters
++jittery
++jive
++jived
++jives
++jiving
++job
++jobbed
++jobber
++jobbers
++jobbing
++jobholder
++jobholders
++jobless
++joblessness
++jobs
++jobshare
++jobshares
++jobsworth
++jobsworths
++jock
++jockey
++jockeyed
++jockeying
++jockeys
++jocks
++jockstrap
++jockstraps
++jocose
++jocosely
++jocoseness
++jocosity
++jocular
++jocularity
++jocularly
++jocund
++jocundity
++jocundly
++jodhpurs
++joey
++joeys
++jog
++jogged
++jogger
++joggers
++jogging
++joggle
++joggled
++joggles
++joggling
++jogs
++john
++johnnies
++johnny
++johnnycake
++johnnycakes
++johns
++join
++joined
++joiner
++joiners
++joinery
++joining
++joins
++joint
++jointed
++jointing
++jointly
++joints
++joist
++joists
++jojoba
++joke
++joked
++joker
++jokers
++jokes
++jokey
++jokier
++jokiest
++joking
++jokingly
++jollied
++jollier
++jollies
++jolliest
++jollification
++jollifications
++jollily
++jolliness
++jollity
++jolly
++jollying
++jolt
++jolted
++jolter
++jolters
++jolting
++jolts
++jonquil
++jonquils
++josh
++joshed
++josher
++joshers
++joshes
++joshing
++jostle
++jostled
++jostles
++jostling
++jot
++jots
++jotted
++jotter
++jotters
++jotting
++jottings
++joule
++joules
++jounce
++jounced
++jounces
++jouncing
++jouncy
++journal
++journalese
++journalism
++journalist
++journalistic
++journalists
++journals
++journey
++journeyed
++journeyer
++journeyers
++journeying
++journeyman
++journeymen
++journeys
++journo
++journos
++joust
++jousted
++jouster
++jousters
++jousting
++jousts
++jovial
++joviality
++jovially
++jowl
++jowlier
++jowliest
++jowls
++jowly
++joy
++joyed
++joyful
++joyfuller
++joyfullest
++joyfully
++joyfulness
++joying
++joyless
++joylessly
++joylessness
++joyous
++joyously
++joyousness
++joyridden
++joyride
++joyrider
++joyriders
++joyrides
++joyriding
++joyrode
++joys
++joystick
++joysticks
++jr
++jubilant
++jubilantly
++jubilation
++jubilee
++jubilees
++judder
++juddered
++juddering
++judders
++judge
++judged
++judges
++judgeship
++judging
++judgment
++judgmental
++judgmentally
++judgments
++judicatories
++judicatory
++judicature
++judicial
++judicially
++judiciaries
++judiciary
++judicious
++judiciously
++judiciousness
++judo
++jug
++jugful
++jugfuls
++jugged
++juggernaut
++juggernauts
++jugging
++juggle
++juggled
++juggler
++jugglers
++jugglery
++juggles
++juggling
++jugs
++jugular
++jugulars
++juice
++juiced
++juicer
++juicers
++juices
++juicier
++juiciest
++juicily
++juiciness
++juicing
++juicy
++jujitsu
++jujube
++jujubes
++jukebox
++jukeboxes
++julep
++juleps
++julienne
++jumble
++jumbled
++jumbles
++jumbling
++jumbo
++jumbos
++jump
++jumped
++jumper
++jumpers
++jumpier
++jumpiest
++jumpily
++jumpiness
++jumping
++jumps
++jumpsuit
++jumpsuits
++jumpy
++jun
++junco
++juncos
++junction
++junctions
++juncture
++junctures
++jungle
++jungles
++junior
++juniors
++juniper
++junipers
++junk
++junked
++junker
++junkers
++junket
++junketed
++junketeer
++junketeers
++junketing
++junkets
++junkie
++junkier
++junkies
++junkiest
++junking
++junks
++junkyard
++junkyards
++junta
++juntas
++juridic
++juridical
++juridically
++juries
++jurisdiction
++jurisdictional
++jurisdictions
++jurisprudence
++jurist
++juristic
++jurists
++juror
++jurors
++jury
++juryman
++jurymen
++jurywoman
++jurywomen
++just
++juster
++justest
++justice
++justices
++justifiable
++justifiably
++justification
++justifications
++justified
++justifies
++justify
++justifying
++justly
++justness
++jut
++jute
++juts
++jutted
++jutting
++juvenile
++juveniles
++juxtapose
++juxtaposed
++juxtaposes
++juxtaposing
++juxtaposition
++juxtapositions
++k
++kabbalah
++kaboom
++kabuki
++kaddish
++kaddishes
++kaffeeklatch
++kaffeeklatches
++kaffeeklatsch
++kaffeeklatsches
++kahuna
++kahunas
++kaiser
++kaisers
++kale
++kaleidoscope
++kaleidoscopes
++kaleidoscopic
++kaleidoscopically
++kamikaze
++kamikazes
++kana
++kangaroo
++kangaroos
++kanji
++kaolin
++kapok
++kappa
++kappas
++kaput
++karakul
++karaoke
++karaokes
++karat
++karate
++karats
++karma
++karmic
++kart
++karts
++katakana
++katydid
++katydids
++kayak
++kayaked
++kayaking
++kayaks
++kayo
++kayoed
++kayoing
++kayos
++kazoo
++kazoos
++kc
++kebab
++kebabs
++kedgeree
++keel
++keeled
++keelhaul
++keelhauled
++keelhauling
++keelhauls
++keeling
++keels
++keen
++keened
++keener
++keenest
++keening
++keenly
++keenness
++keens
++keep
++keeper
++keepers
++keeping
++keeps
++keepsake
++keepsakes
++keg
++kegs
++kelp
++kelvin
++kelvins
++ken
++kenned
++kennel
++kenneled
++kenneling
++kennels
++kenning
++keno
++kens
++kepi
++kepis
++kept
++keratin
++keratitis
++kerbside
++kerchief
++kerchiefs
++kerfuffle
++kerfuffles
++kernel
++kernels
++kerosene
++kestrel
++kestrels
++ketch
++ketches
++ketchup
++ketone
++ketones
++kettle
++kettledrum
++kettledrums
++kettles
++key
++keybinding
++keybindings
++keyboard
++keyboarded
++keyboarder
++keyboarders
++keyboarding
++keyboardist
++keyboardists
++keyboards
++keyed
++keyhole
++keyholes
++keying
++keynote
++keynoted
++keynoter
++keynoters
++keynotes
++keynoting
++keypad
++keypads
++keypunch
++keypunched
++keypuncher
++keypunchers
++keypunches
++keypunching
++keys
++keystone
++keystones
++keystroke
++keystrokes
++keyword
++keywords
++kg
++khaki
++khakis
++khan
++khans
++kibble
++kibbled
++kibbles
++kibbling
++kibbutz
++kibbutzes
++kibbutzim
++kibitz
++kibitzed
++kibitzer
++kibitzers
++kibitzes
++kibitzing
++kibosh
++kick
++kickback
++kickbacks
++kickball
++kickboxing
++kicked
++kicker
++kickers
++kickier
++kickiest
++kicking
++kickoff
++kickoffs
++kicks
++kickstand
++kickstands
++kicky
++kid
++kidded
++kidder
++kidders
++kiddie
++kiddies
++kidding
++kiddish
++kiddo
++kiddos
++kidnap
++kidnapped
++kidnapper
++kidnappers
++kidnapping
++kidnappings
++kidnaps
++kidney
++kidneys
++kids
++kidskin
++kielbasa
++kielbasas
++kielbasi
++kike
++kikes
++kill
++killdeer
++killdeers
++killed
++killer
++killers
++killing
++killings
++killjoy
++killjoys
++kills
++kiln
++kilned
++kilning
++kilns
++kilo
++kilobyte
++kilobytes
++kilocycle
++kilocycles
++kilogram
++kilograms
++kilohertz
++kiloliter
++kiloliters
++kilometer
++kilometers
++kilos
++kiloton
++kilotons
++kilowatt
++kilowatts
++kilt
++kilted
++kilter
++kilts
++kimono
++kimonos
++kin
++kinase
++kind
++kinda
++kinder
++kindergarten
++kindergartens
++kindergartner
++kindergartners
++kindest
++kindhearted
++kindheartedly
++kindheartedness
++kindle
++kindled
++kindles
++kindlier
++kindliest
++kindliness
++kindling
++kindly
++kindness
++kindnesses
++kindred
++kinds
++kine
++kinematic
++kinematics
++kines
++kinetic
++kinetically
++kinetics
++kinfolk
++kinfolks
++king
++kingdom
++kingdoms
++kingfisher
++kingfishers
++kinglier
++kingliest
++kingly
++kingmaker
++kingmakers
++kingpin
++kingpins
++kings
++kingship
++kink
++kinked
++kinkier
++kinkiest
++kinkily
++kinkiness
++kinking
++kinks
++kinky
++kinsfolk
++kinship
++kinsman
++kinsmen
++kinswoman
++kinswomen
++kiosk
++kiosks
++kip
++kipped
++kipper
++kippered
++kippering
++kippers
++kipping
++kips
++kirsch
++kirsches
++kismet
++kiss
++kissable
++kissed
++kisser
++kissers
++kisses
++kissing
++kissoff
++kissoffs
++kissogram
++kissograms
++kit
++kitchen
++kitchenette
++kitchenettes
++kitchens
++kitchenware
++kite
++kited
++kites
++kith
++kiting
++kits
++kitsch
++kitschy
++kitted
++kitten
++kittenish
++kittens
++kitties
++kitting
++kitty
++kiwi
++kiwifruit
++kiwifruits
++kiwis
++kl
++klaxon
++klaxons
++kleptocracy
++kleptomania
++kleptomaniac
++kleptomaniacs
++kludge
++kludged
++kludges
++kludging
++kluge
++kluged
++kluges
++klutz
++klutzes
++klutzier
++klutziest
++klutziness
++klutzy
++km
++kn
++knack
++knacker
++knackered
++knackering
++knackers
++knacks
++knapsack
++knapsacks
++knave
++knavery
++knaves
++knavish
++knavishly
++knead
++kneaded
++kneader
++kneaders
++kneading
++kneads
++knee
++kneecap
++kneecapped
++kneecapping
++kneecaps
++kneed
++kneeing
++kneel
++kneeling
++kneels
++knees
++knell
++knelled
++knelling
++knells
++knelt
++knew
++knicker
++knickerbockers
++knickers
++knickknack
++knickknacks
++knife
++knifed
++knifes
++knifing
++knight
++knighted
++knighthood
++knighthoods
++knighting
++knightliness
++knightly
++knights
++knish
++knishes
++knit
++knits
++knitted
++knitter
++knitters
++knitting
++knitwear
++knives
++knob
++knobbier
++knobbiest
++knobbly
++knobby
++knobs
++knock
++knockabout
++knockdown
++knockdowns
++knocked
++knocker
++knockers
++knocking
++knockoff
++knockoffs
++knockout
++knockouts
++knocks
++knockwurst
++knockwursts
++knoll
++knolls
++knot
++knothole
++knotholes
++knots
++knotted
++knottier
++knottiest
++knotting
++knotty
++know
++knowable
++knowing
++knowingly
++knowings
++knowledge
++knowledgeable
++knowledgeably
++known
++knows
++knuckle
++knuckled
++knuckleduster
++knuckledusters
++knucklehead
++knuckleheads
++knuckles
++knuckling
++knurl
++knurled
++knurling
++knurls
++koala
++koalas
++koan
++koans
++kohl
++kohlrabi
++kohlrabies
++kola
++kolas
++kook
++kookaburra
++kookaburras
++kookier
++kookiest
++kookiness
++kooks
++kooky
++kopeck
++kopecks
++korma
++kosher
++koshered
++koshering
++koshers
++kowtow
++kowtowed
++kowtowing
++kowtows
++kph
++kraal
++kraals
++kraut
++krauts
++krill
++krona
++krone
++kroner
++kronor
++kronur
++krypton
++ks
++kt
++kuchen
++kuchens
++kudos
++kudzu
++kudzus
++kumquat
++kumquats
++kvetch
++kvetched
++kvetcher
++kvetchers
++kvetches
++kvetching
++kw
++l
++la
++lab
++label
++labeled
++labeling
++labels
++labia
++labial
++labials
++labile
++labium
++labor
++laboratories
++laboratory
++labored
++laborer
++laborers
++laboring
++laborious
++laboriously
++laboriousness
++labors
++laborsaving
++labs
++laburnum
++laburnums
++labyrinth
++labyrinthine
++labyrinths
++lac
++lace
++laced
++lacerate
++lacerated
++lacerates
++lacerating
++laceration
++lacerations
++laces
++lacewing
++lacewings
++lacework
++lachrymal
++lachrymose
++lacier
++laciest
++lacing
++lack
++lackadaisical
++lackadaisically
++lacked
++lackey
++lackeys
++lacking
++lackluster
++lacks
++laconic
++laconically
++lacquer
++lacquered
++lacquering
++lacquers
++lacrosse
++lactate
++lactated
++lactates
++lactating
++lactation
++lacteal
++lactic
++lactose
++lacuna
++lacunae
++lacy
++lad
++ladder
++laddered
++laddering
++ladders
++laddie
++laddies
++laddish
++laddishness
++lade
++laded
++laden
++lades
++ladies
++lading
++ladings
++ladle
++ladled
++ladles
++ladling
++lads
++lady
++ladybird
++ladybirds
++ladybug
++ladybugs
++ladyfinger
++ladyfingers
++ladylike
++ladylove
++ladyloves
++ladyship
++ladyships
++laetrile
++lag
++lager
++lagers
++laggard
++laggardly
++laggards
++lagged
++lagging
++lagniappe
++lagniappes
++lagoon
++lagoons
++lags
++laid
++lain
++lair
++laird
++lairds
++lairs
++laity
++lake
++lakefront
++lakefronts
++lakes
++lakeside
++lam
++lama
++lamas
++lamaseries
++lamasery
++lamb
++lambada
++lambadas
++lambaste
++lambasted
++lambastes
++lambasting
++lambda
++lambdas
++lambed
++lambency
++lambent
++lambently
++lambing
++lambkin
++lambkins
++lambs
++lambskin
++lambskins
++lambswool
++lame
++lamebrain
++lamebrained
++lamebrains
++lamed
++lamely
++lameness
++lament
++lamentable
++lamentably
++lamentation
++lamentations
++lamented
++lamenting
++laments
++lamer
++lamers
++lames
++lamest
++lamina
++laminae
++laminar
++laminate
++laminated
++laminates
++laminating
++lamination
++laming
++lammed
++lamming
++lamp
++lampblack
++lamplight
++lamplighter
++lamplighters
++lampoon
++lampooned
++lampooning
++lampoons
++lamppost
++lampposts
++lamprey
++lampreys
++lamps
++lampshade
++lampshades
++lams
++lanai
++lanais
++lance
++lanced
++lancer
++lancers
++lances
++lancet
++lancets
++lancing
++land
++landau
++landaus
++landed
++lander
++landfall
++landfalls
++landfill
++landfills
++landholder
++landholders
++landholding
++landholdings
++landing
++landings
++landladies
++landlady
++landless
++landline
++landlines
++landlocked
++landlord
++landlords
++landlubber
++landlubbers
++landmark
++landmarks
++landmass
++landmasses
++landmine
++landmines
++landowner
++landowners
++landownership
++landowning
++landownings
++lands
++landscape
++landscaped
++landscaper
++landscapers
++landscapes
++landscaping
++landslid
++landslide
++landslides
++landsliding
++landslip
++landslips
++landsman
++landsmen
++landward
++landwards
++lane
++lanes
++language
++languages
++languid
++languidly
++languidness
++languish
++languished
++languishes
++languishing
++languor
++languorous
++languorously
++languors
++lank
++lanker
++lankest
++lankier
++lankiest
++lankiness
++lankly
++lankness
++lanky
++lanolin
++lantern
++lanterns
++lanthanum
++lanyard
++lanyards
++lap
++laparoscopic
++laparoscopy
++laparotomy
++lapboard
++lapboards
++lapdog
++lapdogs
++lapel
++lapels
++lapidaries
++lapidary
++lapin
++lapins
++lapped
++lappet
++lappets
++lapping
++laps
++lapse
++lapsed
++lapses
++lapsing
++laptop
++laptops
++lapwing
++lapwings
++larboard
++larboards
++larcenies
++larcenist
++larcenists
++larcenous
++larceny
++larch
++larches
++lard
++larded
++larder
++larders
++lardier
++lardiest
++larding
++lards
++lardy
++large
++largehearted
++largely
++largeness
++larger
++larges
++largess
++largest
++largish
++largo
++largos
++lariat
++lariats
++lark
++larked
++larking
++larks
++larkspur
++larkspurs
++larva
++larvae
++larval
++laryngeal
++larynges
++laryngitis
++larynx
++lasagna
++lasagnas
++lascivious
++lasciviously
++lasciviousness
++lase
++lased
++laser
++lasers
++lases
++lash
++lashed
++lashes
++lashing
++lashings
++lasing
++lass
++lasses
++lassie
++lassies
++lassitude
++lasso
++lassoed
++lassoing
++lassos
++last
++lasted
++lasting
++lastingly
++lastly
++lasts
++lat
++latch
++latched
++latches
++latching
++latchkey
++latchkeys
++late
++latecomer
++latecomers
++lately
++latency
++lateness
++latent
++later
++lateral
++lateraled
++lateraling
++laterally
++laterals
++latest
++latex
++lath
++lathe
++lathed
++lather
++lathered
++lathering
++lathers
++lathery
++lathes
++lathing
++laths
++latices
++latish
++latitude
++latitudes
++latitudinal
++latitudinarian
++latitudinarians
++latrine
++latrines
++lats
++latte
++latter
++latterly
++lattes
++lattice
++latticed
++lattices
++latticework
++latticeworks
++laud
++laudable
++laudably
++laudanum
++laudatory
++lauded
++lauding
++lauds
++laugh
++laughable
++laughably
++laughed
++laughing
++laughingly
++laughingstock
++laughingstocks
++laughs
++laughter
++launch
++launched
++launcher
++launchers
++launches
++launching
++launchpad
++launchpads
++launder
++laundered
++launderer
++launderers
++launderette
++launderettes
++laundering
++launders
++laundress
++laundresses
++laundries
++laundromat
++laundromats
++laundry
++laundryman
++laundrymen
++laundrywoman
++laundrywomen
++laureate
++laureates
++laureateship
++laurel
++laurels
++lav
++lava
++lavage
++lavaliere
++lavalieres
++lavatorial
++lavatories
++lavatory
++lave
++laved
++lavender
++lavenders
++laves
++laving
++lavish
++lavished
++lavisher
++lavishes
++lavishest
++lavishing
++lavishly
++lavishness
++lavs
++law
++lawbreaker
++lawbreakers
++lawbreaking
++lawful
++lawfully
++lawfulness
++lawgiver
++lawgivers
++lawless
++lawlessly
++lawlessness
++lawmaker
++lawmakers
++lawmaking
++lawman
++lawmen
++lawn
++lawnmower
++lawnmowers
++lawns
++lawrencium
++laws
++lawsuit
++lawsuits
++lawyer
++lawyers
++lax
++laxative
++laxatives
++laxer
++laxest
++laxity
++laxly
++laxness
++lay
++layabout
++layabouts
++layaway
++layer
++layered
++layering
++layers
++layette
++layettes
++laying
++layman
++laymen
++layoff
++layoffs
++layout
++layouts
++layover
++layovers
++laypeople
++layperson
++laypersons
++lays
++layup
++layups
++laywoman
++laywomen
++laze
++lazed
++lazes
++lazied
++lazier
++lazies
++laziest
++lazily
++laziness
++lazing
++lazy
++lazybones
++lazying
++lb
++lbs
++lbw
++lea
++leach
++leached
++leaches
++leaching
++lead
++leaded
++leaden
++leader
++leaderless
++leaders
++leadership
++leaderships
++leading
++leads
++leaf
++leafage
++leafed
++leafier
++leafiest
++leafing
++leafless
++leaflet
++leafleted
++leafleting
++leaflets
++leafs
++leafstalk
++leafstalks
++leafy
++league
++leagued
++leagues
++leaguing
++leak
++leakage
++leakages
++leaked
++leakier
++leakiest
++leakiness
++leaking
++leaks
++leaky
++lean
++leaned
++leaner
++leanest
++leaning
++leanings
++leanness
++leans
++leap
++leaped
++leaper
++leapers
++leapfrog
++leapfrogged
++leapfrogging
++leapfrogs
++leaping
++leaps
++learn
++learned
++learnedly
++learner
++learners
++learning
++learns
++leas
++lease
++leaseback
++leasebacks
++leased
++leasehold
++leaseholder
++leaseholders
++leaseholds
++leaser
++leasers
++leases
++leash
++leashed
++leashes
++leashing
++leasing
++least
++leastwise
++leather
++leatherette
++leatherneck
++leathernecks
++leathers
++leathery
++leave
++leaved
++leaven
++leavened
++leavening
++leavens
++leaver
++leavers
++leaves
++leaving
++leavings
++lech
++leched
++lecher
++lecherous
++lecherously
++lecherousness
++lechers
++lechery
++leches
++leching
++lecithin
++lectern
++lecterns
++lecture
++lectured
++lecturer
++lecturers
++lectures
++lectureship
++lectureships
++lecturing
++led
++ledge
++ledger
++ledgers
++ledges
++lee
++leech
++leeched
++leeches
++leeching
++leek
++leeks
++leer
++leered
++leerier
++leeriest
++leeriness
++leering
++leers
++leery
++lees
++leeward
++leewards
++leeway
++left
++lefter
++leftest
++lefties
++leftism
++leftist
++leftists
++leftmost
++leftover
++leftovers
++lefts
++leftward
++leftwards
++lefty
++leg
++legacies
++legacy
++legal
++legalese
++legalism
++legalisms
++legalistic
++legalistically
++legalities
++legality
++legalization
++legalize
++legalized
++legalizes
++legalizing
++legally
++legals
++legate
++legatee
++legatees
++legates
++legation
++legations
++legato
++legatos
++legend
++legendarily
++legendary
++legends
++legerdemain
++legged
++leggier
++leggiest
++legginess
++legging
++leggings
++leggy
++leghorn
++leghorns
++legibility
++legible
++legibly
++legion
++legionaries
++legionary
++legionnaire
++legionnaires
++legions
++legislate
++legislated
++legislates
++legislating
++legislation
++legislative
++legislatively
++legislator
++legislators
++legislature
++legislatures
++legit
++legitimacy
++legitimate
++legitimated
++legitimately
++legitimates
++legitimating
++legitimatize
++legitimatized
++legitimatizes
++legitimatizing
++legitimization
++legitimize
++legitimized
++legitimizes
++legitimizing
++legless
++legman
++legmen
++legroom
++legrooms
++legs
++legume
++legumes
++leguminous
++legwarmer
++legwarmers
++legwork
++lei
++leis
++leisure
++leisured
++leisureliness
++leisurely
++leisurewear
++leitmotif
++leitmotifs
++leitmotiv
++leitmotivs
++lemma
++lemmas
++lemme
++lemming
++lemmings
++lemon
++lemonade
++lemonades
++lemongrass
++lemons
++lemony
++lemur
++lemurs
++lend
++lender
++lenders
++lending
++lends
++length
++lengthen
++lengthened
++lengthening
++lengthens
++lengthier
++lengthiest
++lengthily
++lengthiness
++lengths
++lengthwise
++lengthy
++lenience
++leniency
++lenient
++leniently
++lenitive
++lens
++lenses
++lent
++lentil
++lentils
++lento
++leonine
++leopard
++leopardess
++leopardesses
++leopards
++leotard
++leotards
++leper
++lepers
++leprechaun
++leprechauns
++leprosy
++leprous
++lepta
++lepton
++leptons
++lesbian
++lesbianism
++lesbians
++lesion
++lesions
++less
++lessee
++lessees
++lessen
++lessened
++lessening
++lessens
++lesser
++lesson
++lessons
++lessor
++lessors
++lest
++let
++letdown
++letdowns
++lethal
++lethally
++lethargic
++lethargically
++lethargy
++lets
++letter
++letterbomb
++letterbombs
++letterbox
++letterboxes
++lettered
++letterer
++letterers
++letterhead
++letterheads
++lettering
++letterpress
++letters
++letting
++lettings
++lettuce
++lettuces
++letup
++letups
++leucine
++leucotomies
++leucotomy
++leukemia
++leukemic
++leukemics
++leukocyte
++leukocytes
++levee
++levees
++level
++leveled
++leveler
++levelers
++levelheaded
++levelheadedness
++leveling
++levelly
++levelness
++levels
++lever
++leverage
++leveraged
++leverages
++leveraging
++levered
++levering
++levers
++leviathan
++leviathans
++levied
++levier
++leviers
++levies
++levitate
++levitated
++levitates
++levitating
++levitation
++levity
++levy
++levying
++lewd
++lewder
++lewdest
++lewdly
++lewdness
++lexer
++lexers
++lexical
++lexicographer
++lexicographers
++lexicographic
++lexicographical
++lexicography
++lexicon
++lexicons
++lexis
++lg
++liabilities
++liability
++liable
++liaise
++liaised
++liaises
++liaising
++liaison
++liaisons
++liar
++liars
++lib
++libation
++libations
++libber
++libbers
++libel
++libeled
++libeler
++libelers
++libeling
++libelous
++libels
++liberal
++liberalism
++liberality
++liberalization
++liberalizations
++liberalize
++liberalized
++liberalizes
++liberalizing
++liberally
++liberalness
++liberals
++liberate
++liberated
++liberates
++liberating
++liberation
++liberator
++liberators
++libertarian
++libertarians
++liberties
++libertine
++libertines
++liberty
++libidinal
++libidinous
++libido
++libidos
++librarian
++librarians
++librarianship
++libraries
++library
++librettist
++librettists
++libretto
++librettos
++lice
++license
++licensed
++licensee
++licensees
++licenses
++licensing
++licentiate
++licentiates
++licentious
++licentiously
++licentiousness
++lichen
++lichens
++licit
++licitly
++lick
++licked
++licking
++lickings
++licks
++licorice
++licorices
++lid
++lidded
++lidless
++lido
++lidos
++lids
++lie
++lied
++lieder
++lief
++liefer
++liefest
++liege
++lieges
++lien
++liens
++lies
++lieu
++lieutenancy
++lieutenant
++lieutenants
++life
++lifebelt
++lifebelts
++lifeblood
++lifeboat
++lifeboats
++lifebuoy
++lifebuoys
++lifeforms
++lifeguard
++lifeguards
++lifeless
++lifelessly
++lifelessness
++lifelike
++lifeline
++lifelines
++lifelong
++lifer
++lifers
++lifesaver
++lifesavers
++lifesaving
++lifespan
++lifespans
++lifestyle
++lifestyles
++lifetime
++lifetimes
++lifework
++lifeworks
++lift
++lifted
++lifter
++lifters
++lifting
++liftoff
++liftoffs
++lifts
++ligament
++ligaments
++ligate
++ligated
++ligates
++ligating
++ligation
++ligature
++ligatured
++ligatures
++ligaturing
++light
++lighted
++lighten
++lightened
++lightener
++lighteners
++lightening
++lightens
++lighter
++lighters
++lightest
++lightface
++lightfaced
++lightheaded
++lighthearted
++lightheartedly
++lightheartedness
++lighthouse
++lighthouses
++lighting
++lightly
++lightness
++lightning
++lightninged
++lightnings
++lightproof
++lights
++lightship
++lightships
++lightweight
++lightweights
++ligneous
++lignin
++lignite
++lii
++likability
++likable
++likableness
++like
++liked
++likelier
++likeliest
++likelihood
++likelihoods
++likeliness
++likely
++liken
++likened
++likeness
++likenesses
++likening
++likens
++liker
++likes
++likest
++likewise
++liking
++lilac
++lilacs
++lilies
++lilliputian
++lilo
++lilos
++lilt
++lilted
++lilting
++lilts
++lily
++limb
++limber
++limbered
++limbering
++limberness
++limbers
++limbless
++limbo
++limbos
++limbs
++lime
++limeade
++limeades
++limed
++limelight
++limerick
++limericks
++limes
++limescale
++limestone
++limey
++limeys
++limier
++limiest
++liming
++limit
++limitation
++limitations
++limited
++limiter
++limiters
++limiting
++limitings
++limitless
++limitlessness
++limits
++limn
++limned
++limning
++limns
++limo
++limos
++limousine
++limousines
++limp
++limped
++limper
++limpest
++limpet
++limpets
++limpid
++limpidity
++limpidly
++limpidness
++limping
++limply
++limpness
++limps
++limy
++linage
++linchpin
++linchpins
++linden
++lindens
++line
++lineage
++lineages
++lineal
++lineally
++lineament
++lineaments
++linear
++linearity
++linearly
++linebacker
++linebackers
++lined
++linefeed
++lineman
++linemen
++linen
++linens
++liner
++liners
++lines
++linesman
++linesmen
++lineup
++lineups
++ling
++linger
++lingered
++lingerer
++lingerers
++lingerie
++lingering
++lingeringly
++lingerings
++lingers
++lingo
++lingoes
++lings
++lingual
++linguine
++linguist
++linguistic
++linguistically
++linguistics
++linguists
++liniment
++liniments
++lining
++linings
++link
++linkage
++linkages
++linked
++linker
++linking
++linkman
++linkmen
++links
++linkup
++linkups
++linnet
++linnets
++lino
++linoleum
++linseed
++lint
++linted
++lintel
++lintels
++lintier
++lintiest
++linting
++lints
++linty
++lion
++lioness
++lionesses
++lionhearted
++lionization
++lionize
++lionized
++lionizes
++lionizing
++lions
++lip
++lipid
++lipids
++liposuction
++lipped
++lippy
++lipread
++lipreader
++lipreading
++lipreads
++lips
++lipstick
++lipsticked
++lipsticking
++lipsticks
++liq
++liquefaction
++liquefied
++liquefies
++liquefy
++liquefying
++liqueur
++liqueurs
++liquid
++liquidate
++liquidated
++liquidates
++liquidating
++liquidation
++liquidations
++liquidator
++liquidators
++liquidity
++liquidize
++liquidized
++liquidizer
++liquidizers
++liquidizes
++liquidizing
++liquids
++liquor
++liquored
++liquoring
++liquors
++lira
++lire
++lisle
++lisp
++lisped
++lisper
++lispers
++lisping
++lisps
++lissome
++list
++listed
++listen
++listenable
++listened
++listener
++listeners
++listening
++listens
++listeria
++listing
++listings
++listless
++listlessly
++listlessness
++lists
++lit
++litanies
++litany
++litchi
++litchis
++lite
++liter
++literacy
++literal
++literally
++literalness
++literals
++literariness
++literary
++literate
++literately
++literates
++literati
++literature
++liters
++lithe
++lithely
++litheness
++lither
++lithesome
++lithest
++lithium
++lithograph
++lithographed
++lithographer
++lithographers
++lithographic
++lithographically
++lithographing
++lithographs
++lithography
++lithosphere
++lithospheres
++litigant
++litigants
++litigate
++litigated
++litigates
++litigating
++litigation
++litigator
++litigators
++litigious
++litigiousness
++litmus
++litotes
++litter
++litterateur
++litterateurs
++litterbug
++litterbugs
++littered
++litterer
++litterers
++littering
++litters
++little
++littleness
++littler
++littlest
++littoral
++littorals
++liturgical
++liturgically
++liturgies
++liturgist
++liturgists
++liturgy
++livability
++livable
++live
++lived
++livelier
++liveliest
++livelihood
++livelihoods
++liveliness
++livelong
++livelongs
++lively
++liven
++livened
++livening
++livens
++liver
++liveried
++liveries
++liverish
++livers
++liverwort
++liverworts
++liverwurst
++livery
++liveryman
++liverymen
++lives
++livest
++livestock
++liveware
++livid
++lividly
++living
++livings
++lix
++lizard
++lizards
++ll
++llama
++llamas
++llano
++llanos
++lo
++load
++loadable
++loaded
++loader
++loaders
++loading
++loads
++loaf
++loafed
++loafer
++loafers
++loafing
++loafs
++loam
++loamier
++loamiest
++loamy
++loan
++loaned
++loaner
++loaners
++loaning
++loans
++loansharking
++loanword
++loanwords
++loath
++loathe
++loathed
++loather
++loathers
++loathes
++loathing
++loathings
++loathsome
++loathsomely
++loathsomeness
++loaves
++lob
++lobar
++lobbed
++lobber
++lobbers
++lobbied
++lobbies
++lobbing
++lobby
++lobbying
++lobbyist
++lobbyists
++lobe
++lobed
++lobes
++lobotomies
++lobotomize
++lobotomized
++lobotomizes
++lobotomizing
++lobotomy
++lobs
++lobster
++lobsters
++local
++locale
++locales
++localities
++locality
++localization
++localize
++localized
++localizes
++localizing
++locally
++locals
++locate
++located
++locates
++locating
++location
++locations
++locator
++locators
++locavore
++locavores
++loci
++lock
++lockable
++locked
++locker
++lockers
++locket
++lockets
++locking
++lockjaw
++lockout
++lockouts
++locks
++locksmith
++locksmiths
++lockstep
++lockup
++lockups
++loco
++locomotion
++locomotive
++locomotives
++locos
++locoweed
++locoweeds
++locum
++locums
++locus
++locust
++locusts
++locution
++locutions
++lode
++lodes
++lodestar
++lodestars
++lodestone
++lodestones
++lodge
++lodged
++lodger
++lodgers
++lodges
++lodging
++lodgings
++loft
++lofted
++loftier
++loftiest
++loftily
++loftiness
++lofting
++lofts
++lofty
++log
++loganberries
++loganberry
++logarithm
++logarithmic
++logarithms
++logbook
++logbooks
++loge
++loges
++logged
++logger
++loggerhead
++loggerheads
++loggers
++loggia
++loggias
++logging
++logic
++logical
++logicality
++logically
++logician
++logicians
++logier
++logiest
++login
++logins
++logistic
++logistical
++logistically
++logistics
++logjam
++logjams
++logo
++logoff
++logoffs
++logon
++logons
++logos
++logotype
++logotypes
++logout
++logouts
++logrolling
++logs
++logy
++loin
++loincloth
++loincloths
++loins
++loiter
++loitered
++loiterer
++loiterers
++loitering
++loiters
++lolcat
++lolcats
++loll
++lolled
++lollies
++lolling
++lollipop
++lollipops
++lollop
++lolloped
++lolloping
++lollops
++lolls
++lolly
++lollygag
++lollygagged
++lollygagging
++lollygags
++lone
++lonelier
++loneliest
++loneliness
++lonely
++loner
++loners
++lonesome
++lonesomely
++lonesomeness
++long
++longboat
++longboats
++longbow
++longbows
++longed
++longer
++longest
++longevity
++longhair
++longhairs
++longhand
++longhorn
++longhorns
++longhouse
++longhouses
++longing
++longingly
++longings
++longish
++longitude
++longitudes
++longitudinal
++longitudinally
++longs
++longshoreman
++longshoremen
++longsighted
++longstanding
++longtime
++longueur
++longueurs
++longways
++loo
++loofah
++loofahs
++look
++lookalike
++lookalikes
++looked
++looker
++lookers
++looking
++lookout
++lookouts
++looks
++lookup
++loom
++loomed
++looming
++looms
++loon
++loonie
++loonier
++loonies
++looniest
++loons
++loony
++loop
++looped
++loophole
++loopholes
++loopier
++loopiest
++looping
++loops
++loopy
++loos
++loose
++loosed
++loosely
++loosen
++loosened
++looseness
++loosening
++loosens
++looser
++looses
++loosest
++loosing
++loot
++looted
++looter
++looters
++looting
++loots
++lop
++lope
++loped
++lopes
++loping
++lopped
++lopping
++lops
++lopsided
++lopsidedly
++lopsidedness
++loquacious
++loquaciously
++loquaciousness
++loquacity
++lord
++lorded
++lording
++lordlier
++lordliest
++lordliness
++lordly
++lords
++lordship
++lordships
++lore
++lorgnette
++lorgnettes
++loris
++lorises
++lorn
++lorries
++lorry
++lose
++loser
++losers
++loses
++losing
++losings
++loss
++losses
++lossless
++lost
++lot
++lotion
++lotions
++lots
++lotteries
++lottery
++lotto
++lotus
++lotuses
++louche
++loud
++louder
++loudest
++loudhailer
++loudhailers
++loudly
++loudmouth
++loudmouthed
++loudmouths
++loudness
++loudspeaker
++loudspeakers
++lough
++loughs
++lounge
++lounged
++lounger
++loungers
++lounges
++lounging
++lour
++loured
++louring
++lours
++louse
++loused
++louses
++lousier
++lousiest
++lousily
++lousiness
++lousing
++lousy
++lout
++loutish
++loutishly
++loutishness
++louts
++louver
++louvered
++louvers
++lovable
++lovableness
++lovably
++love
++lovebird
++lovebirds
++lovechild
++loved
++loveless
++lovelier
++lovelies
++loveliest
++loveliness
++lovelorn
++lovely
++lovemaking
++lover
++lovers
++loves
++lovesick
++lovey
++loveys
++loving
++lovingly
++low
++lowborn
++lowboy
++lowboys
++lowbrow
++lowbrows
++lowdown
++lowed
++lower
++lowercase
++lowered
++lowering
++lowermost
++lowers
++lowest
++lowing
++lowish
++lowland
++lowlander
++lowlanders
++lowlands
++lowlier
++lowliest
++lowlife
++lowlifes
++lowliness
++lowly
++lowness
++lows
++lox
++loyal
++loyaler
++loyalest
++loyalism
++loyalist
++loyalists
++loyally
++loyalties
++loyalty
++lozenge
++lozenges
++ls
++ltd
++luau
++luaus
++lubber
++lubberly
++lubbers
++lube
++lubed
++lubes
++lubing
++lubricant
++lubricants
++lubricate
++lubricated
++lubricates
++lubricating
++lubrication
++lubricator
++lubricators
++lubricious
++lubriciously
++lubricity
++lucid
++lucidity
++lucidly
++lucidness
++luck
++lucked
++luckier
++luckiest
++luckily
++luckiness
++lucking
++luckless
++lucks
++lucky
++lucrative
++lucratively
++lucrativeness
++lucre
++lucubrate
++lucubrated
++lucubrates
++lucubrating
++lucubration
++ludicrous
++ludicrously
++ludicrousness
++ludo
++luff
++luffed
++luffing
++luffs
++lug
++luge
++luges
++luggage
++lugged
++lugger
++luggers
++lugging
++lughole
++lugholes
++lugs
++lugsail
++lugsails
++lugubrious
++lugubriously
++lugubriousness
++lukewarm
++lukewarmly
++lukewarmness
++lull
++lullabies
++lullaby
++lulled
++lulling
++lulls
++lulu
++lulus
++lumbago
++lumbar
++lumber
++lumbered
++lumberer
++lumberers
++lumbering
++lumberjack
++lumberjacks
++lumberman
++lumbermen
++lumbers
++lumberyard
++lumberyards
++lumen
++luminaries
++luminary
++luminescence
++luminescent
++luminosity
++luminous
++luminously
++lummox
++lummoxes
++lump
++lumpectomies
++lumpectomy
++lumped
++lumpen
++lumpier
++lumpiest
++lumpiness
++lumping
++lumpish
++lumps
++lumpy
++lunacies
++lunacy
++lunar
++lunatic
++lunatics
++lunch
++lunchbox
++lunchboxes
++lunched
++luncheon
++luncheonette
++luncheonettes
++luncheons
++lunches
++lunching
++lunchroom
++lunchrooms
++lunchtime
++lunchtimes
++lung
++lunge
++lunged
++lunges
++lungfish
++lungfishes
++lungful
++lungfuls
++lunging
++lungs
++lunkhead
++lunkheads
++lupine
++lupines
++lupus
++lurch
++lurched
++lurches
++lurching
++lure
++lured
++lures
++lurgy
++lurid
++luridly
++luridness
++luring
++lurk
++lurked
++lurker
++lurkers
++lurking
++lurks
++luscious
++lusciously
++lusciousness
++lush
++lusher
++lushes
++lushest
++lushly
++lushness
++lust
++lusted
++luster
++lusterless
++lustful
++lustfully
++lustier
++lustiest
++lustily
++lustiness
++lusting
++lustrous
++lustrously
++lusts
++lusty
++lutanist
++lutanists
++lute
++lutenist
++lutenists
++lutes
++lutetium
++lux
++luxuriance
++luxuriant
++luxuriantly
++luxuriate
++luxuriated
++luxuriates
++luxuriating
++luxuriation
++luxuries
++luxurious
++luxuriously
++luxuriousness
++luxury
++lvi
++lvii
++lxi
++lxii
++lxiv
++lxix
++lxvi
++lxvii
++lyceum
++lyceums
++lychgate
++lychgates
++lye
++lying
++lymph
++lymphatic
++lymphatics
++lymphocyte
++lymphocytes
++lymphoid
++lymphoma
++lymphomas
++lynch
++lynched
++lyncher
++lynchers
++lynches
++lynching
++lynchings
++lynx
++lynxes
++lyre
++lyrebird
++lyrebirds
++lyres
++lyric
++lyrical
++lyrically
++lyricism
++lyricist
++lyricists
++lyrics
++lysosomal
++lysosomes
++m
++ma
++mac
++macabre
++macadam
++macadamia
++macadamias
++macadamize
++macadamized
++macadamizes
++macadamizing
++macaque
++macaques
++macaroni
++macaronis
++macaroon
++macaroons
++macaw
++macaws
++mace
++maced
++macerate
++macerated
++macerates
++macerating
++maceration
++maces
++mach
++machete
++machetes
++machinable
++machinate
++machinated
++machinates
++machinating
++machination
++machinations
++machine
++machined
++machinery
++machines
++machining
++machinist
++machinists
++machismo
++macho
++macing
++mackerel
++mackerels
++mackinaw
++mackinaws
++mackintosh
++mackintoshes
++macrame
++macro
++macrobiotic
++macrobiotics
++macrocosm
++macrocosms
++macroeconomic
++macroeconomics
++macrologies
++macrology
++macron
++macrons
++macrophages
++macros
++macroscopic
++macs
++mad
++madam
++madame
++madams
++madcap
++madcaps
++madden
++maddened
++maddening
++maddeningly
++maddens
++madder
++madders
++maddest
++madding
++made
++mademoiselle
++mademoiselles
++madhouse
++madhouses
++madly
++madman
++madmen
++madness
++madras
++madrasa
++madrasah
++madrasahs
++madrasas
++madrases
++madrassa
++madrassas
++madrigal
++madrigals
++mads
++madwoman
++madwomen
++maelstrom
++maelstroms
++maestro
++maestros
++mafia
++mafias
++mafiosi
++mafioso
++mag
++magazine
++magazines
++mage
++magenta
++mages
++maggot
++maggots
++maggoty
++magi
++magic
++magical
++magically
++magician
++magicians
++magicked
++magicking
++magics
++magisterial
++magisterially
++magistracy
++magistrate
++magistrates
++magma
++magnanimity
++magnanimous
++magnanimously
++magnate
++magnates
++magnesia
++magnesium
++magnet
++magnetic
++magnetically
++magnetism
++magnetite
++magnetizable
++magnetization
++magnetize
++magnetized
++magnetizes
++magnetizing
++magneto
++magnetometer
++magnetometers
++magnetos
++magnetosphere
++magnets
++magnification
++magnifications
++magnificence
++magnificent
++magnificently
++magnified
++magnifier
++magnifiers
++magnifies
++magnify
++magnifying
++magniloquence
++magniloquent
++magnitude
++magnitudes
++magnolia
++magnolias
++magnum
++magnums
++magpie
++magpies
++mags
++magus
++maharajah
++maharajahs
++maharani
++maharanis
++maharishi
++maharishis
++mahatma
++mahatmas
++mahoganies
++mahogany
++mahout
++mahouts
++maid
++maiden
++maidenhair
++maidenhead
++maidenheads
++maidenhood
++maidenly
++maidens
++maids
++maidservant
++maidservants
++mail
++mailbag
++mailbags
++mailbomb
++mailbombed
++mailbombing
++mailbombs
++mailbox
++mailboxes
++mailed
++mailer
++mailers
++mailing
++mailings
++maillot
++maillots
++mailman
++mailmen
++mails
++mailshot
++mailshots
++maim
++maimed
++maiming
++maims
++main
++mainframe
++mainframes
++mainland
++mainlands
++mainline
++mainlined
++mainlines
++mainlining
++mainly
++mainmast
++mainmasts
++mains
++mainsail
++mainsails
++mainspring
++mainsprings
++mainstay
++mainstays
++mainstream
++mainstreamed
++mainstreaming
++mainstreams
++maintain
++maintainability
++maintainable
++maintained
++maintainer
++maintainers
++maintaining
++maintains
++maintenance
++maintop
++maintops
++maisonette
++maisonettes
++maize
++maizes
++majestic
++majestically
++majesties
++majesty
++majolica
++major
++majordomo
++majordomos
++majored
++majorette
++majorettes
++majoring
++majoritarian
++majoritarianism
++majoritarians
++majorities
++majority
++majorly
++majors
++make
++makeover
++makeovers
++maker
++makers
++makes
++makeshift
++makeshifts
++makeup
++makeups
++makeweight
++makeweights
++making
++makings
++malachite
++maladies
++maladjusted
++maladjustment
++maladministration
++maladroit
++maladroitly
++maladroitness
++malady
++malaise
++malamute
++malamutes
++malapropism
++malapropisms
++malaria
++malarial
++malarkey
++malathion
++malcontent
++malcontents
++male
++malediction
++maledictions
++malefaction
++malefactor
++malefactors
++malefic
++maleficence
++maleficent
++maleness
++males
++malevolence
++malevolent
++malevolently
++malfeasance
++malformation
++malformations
++malformed
++malfunction
++malfunctioned
++malfunctioning
++malfunctions
++malice
++malicious
++maliciously
++maliciousness
++malign
++malignancies
++malignancy
++malignant
++malignantly
++maligned
++maligning
++malignity
++maligns
++malinger
++malingered
++malingerer
++malingerers
++malingering
++malingers
++mall
++mallard
++mallards
++malleability
++malleable
++mallet
++mallets
++mallow
++mallows
++malls
++malnourished
++malnutrition
++malocclusion
++malodorous
++malpractice
++malpractices
++malt
++malted
++malteds
++maltier
++maltiest
++malting
++maltose
++maltreat
++maltreated
++maltreating
++maltreatment
++maltreats
++malts
++malty
++malware
++mam
++mama
++mamas
++mamba
++mambas
++mambo
++mamboed
++mamboing
++mambos
++mamma
++mammal
++mammalian
++mammalians
++mammals
++mammary
++mammies
++mammogram
++mammograms
++mammography
++mammon
++mammoth
++mammoths
++mammy
++mams
++man
++manacle
++manacled
++manacles
++manacling
++manage
++manageability
++manageable
++managed
++management
++managements
++manager
++manageress
++manageresses
++managerial
++managers
++manages
++managing
++manana
++mananas
++manatee
++manatees
++mandala
++mandalas
++mandamus
++mandamuses
++mandarin
++mandarins
++mandate
++mandated
++mandates
++mandating
++mandatory
++mandible
++mandibles
++mandibular
++mandolin
++mandolins
++mandrake
++mandrakes
++mandrel
++mandrels
++mandrill
++mandrills
++mane
++maned
++manege
++manes
++maneuver
++maneuverability
++maneuverable
++maneuvered
++maneuvering
++maneuverings
++maneuvers
++manful
++manfully
++manga
++manganese
++mange
++manged
++manger
++mangers
++mangetout
++mangetouts
++mangier
++mangiest
++manginess
++mangle
++mangled
++mangler
++manglers
++mangles
++mangling
++mango
++mangoes
++mangrove
++mangroves
++mangy
++manhandle
++manhandled
++manhandles
++manhandling
++manhole
++manholes
++manhood
++manhunt
++manhunts
++mania
++maniac
++maniacal
++maniacally
++maniacs
++manias
++manic
++manically
++manics
++manicure
++manicured
++manicures
++manicuring
++manicurist
++manicurists
++manifest
++manifestation
++manifestations
++manifested
++manifesting
++manifestly
++manifesto
++manifestos
++manifests
++manifold
++manifolded
++manifolding
++manifolds
++manikin
++manikins
++manila
++manioc
++maniocs
++manipulable
++manipulate
++manipulated
++manipulates
++manipulating
++manipulation
++manipulations
++manipulative
++manipulatively
++manipulator
++manipulators
++mankind
++manky
++manlier
++manliest
++manlike
++manliness
++manly
++manna
++manned
++mannequin
++mannequins
++manner
++mannered
++mannerism
++mannerisms
++mannerly
++manners
++manning
++mannish
++mannishly
++mannishness
++manometer
++manometers
++manor
++manorial
++manors
++manpower
++manque
++mans
++mansard
++mansards
++manse
++manservant
++manses
++mansion
++mansions
++manslaughter
++manta
++mantas
++mantel
++mantelpiece
++mantelpieces
++mantels
++mantelshelf
++mantelshelves
++mantes
++mantilla
++mantillas
++mantis
++mantises
++mantissa
++mantissas
++mantle
++mantled
++mantles
++mantling
++mantra
++mantras
++manual
++manually
++manuals
++manufacture
++manufactured
++manufacturer
++manufacturers
++manufactures
++manufacturing
++manumission
++manumissions
++manumit
++manumits
++manumitted
++manumitting
++manure
++manured
++manures
++manuring
++manuscript
++manuscripts
++many
++map
++maple
++maples
++mapmaker
++mapmakers
++mapped
++mapper
++mappers
++mapping
++mappings
++maps
++mar
++marabou
++marabous
++marabout
++marabouts
++maraca
++maracas
++maraschino
++maraschinos
++marathon
++marathoner
++marathoners
++marathons
++maraud
++marauded
++marauder
++marauders
++marauding
++marauds
++marble
++marbled
++marbleize
++marbleized
++marbleizes
++marbleizing
++marbles
++marbling
++march
++marched
++marcher
++marchers
++marches
++marching
++marchioness
++marchionesses
++mare
++mares
++margarine
++margarita
++margaritas
++marge
++margin
++marginal
++marginalia
++marginalization
++marginalize
++marginalized
++marginalizes
++marginalizing
++marginally
++marginals
++margins
++maria
++mariachi
++mariachis
++marigold
++marigolds
++marijuana
++marimba
++marimbas
++marina
++marinade
++marinaded
++marinades
++marinading
++marinara
++marinas
++marinate
++marinated
++marinates
++marinating
++marination
++marine
++mariner
++mariners
++marines
++marionette
++marionettes
++marital
++maritally
++maritime
++marjoram
++mark
++markdown
++markdowns
++marked
++markedly
++marker
++markers
++market
++marketability
++marketable
++marketed
++marketeer
++marketeers
++marketer
++marketers
++marketing
++marketplace
++marketplaces
++markets
++marking
++markings
++markka
++markkaa
++marks
++marksman
++marksmanship
++marksmen
++markup
++markups
++marl
++marlin
++marlinespike
++marlinespikes
++marlins
++marmalade
++marmoreal
++marmoset
++marmosets
++marmot
++marmots
++maroon
++marooned
++marooning
++maroons
++marque
++marquee
++marquees
++marques
++marquess
++marquesses
++marquetry
++marquis
++marquise
++marquises
++marquisette
++marred
++marriage
++marriageability
++marriageable
++marriages
++married
++marrieds
++marries
++marring
++marrow
++marrows
++marry
++marrying
++mars
++marsh
++marshal
++marshaled
++marshaling
++marshals
++marshes
++marshier
++marshiest
++marshland
++marshlands
++marshmallow
++marshmallows
++marshy
++marsupial
++marsupials
++mart
++marten
++martens
++martensite
++martial
++martially
++martian
++martians
++martin
++martinet
++martinets
++martingale
++martingales
++martini
++martinis
++martins
++marts
++martyr
++martyrdom
++martyred
++martyring
++martyrs
++marvel
++marveled
++marveling
++marvelous
++marvelously
++marvels
++marzipan
++mas
++masc
++mascara
++mascaraed
++mascaraing
++mascaras
++mascot
++mascots
++masculine
++masculines
++masculinity
++maser
++masers
++mash
++mashed
++masher
++mashers
++mashes
++mashing
++mashup
++mashups
++mask
++masked
++masker
++maskers
++masking
++masks
++masochism
++masochist
++masochistic
++masochistically
++masochists
++mason
++masonic
++masonry
++masons
++masque
++masquerade
++masqueraded
++masquerader
++masqueraders
++masquerades
++masquerading
++masques
++mass
++massacre
++massacred
++massacres
++massacring
++massage
++massaged
++massages
++massaging
++massed
++masses
++masseur
++masseurs
++masseuse
++masseuses
++massif
++massifs
++massing
++massive
++massively
++massiveness
++mast
++mastectomies
++mastectomy
++masted
++master
++masterclass
++masterclasses
++mastered
++masterful
++masterfully
++mastering
++masterly
++mastermind
++masterminded
++masterminding
++masterminds
++masterpiece
++masterpieces
++masters
++masterstroke
++masterstrokes
++masterwork
++masterworks
++mastery
++masthead
++mastheads
++mastic
++masticate
++masticated
++masticates
++masticating
++mastication
++mastiff
++mastiffs
++mastitis
++mastodon
++mastodons
++mastoid
++mastoids
++masts
++masturbate
++masturbated
++masturbates
++masturbating
++masturbation
++masturbatory
++mat
++matador
++matadors
++match
++matchbook
++matchbooks
++matchbox
++matchboxes
++matched
++matches
++matching
++matchless
++matchlock
++matchlocks
++matchmaker
++matchmakers
++matchmaking
++matchstick
++matchsticks
++matchwood
++mate
++mated
++mater
++material
++materialism
++materialist
++materialistic
++materialistically
++materialists
++materialization
++materialize
++materialized
++materializes
++materializing
++materially
++materials
++materiel
++maternal
++maternally
++maternity
++maters
++mates
++matey
++mateys
++math
++mathematical
++mathematically
++mathematician
++mathematicians
++mathematics
++matinee
++matinees
++mating
++matins
++matriarch
++matriarchal
++matriarchies
++matriarchs
++matriarchy
++matrices
++matricidal
++matricide
++matricides
++matriculate
++matriculated
++matriculates
++matriculating
++matriculation
++matrimonial
++matrimony
++matrix
++matron
++matronly
++matrons
++mats
++matte
++matted
++matter
++mattered
++mattering
++matters
++mattes
++matting
++mattock
++mattocks
++mattress
++mattresses
++maturate
++maturated
++maturates
++maturating
++maturation
++mature
++matured
++maturely
++maturer
++matures
++maturest
++maturing
++maturities
++maturity
++matzo
++matzoh
++matzohs
++matzos
++matzot
++matzoth
++maudlin
++maul
++mauled
++mauler
++maulers
++mauling
++mauls
++maunder
++maundered
++maundering
++maunders
++mausoleum
++mausoleums
++mauve
++maven
++mavens
++maverick
++mavericks
++maw
++mawkish
++mawkishly
++mawkishness
++maws
++max
++maxed
++maxes
++maxi
++maxilla
++maxillae
++maxillary
++maxim
++maxima
++maximal
++maximally
++maximization
++maximize
++maximized
++maximizes
++maximizing
++maxims
++maximum
++maximums
++maxing
++maxis
++may
++maybe
++maybes
++mayday
++maydays
++mayflies
++mayflower
++mayflowers
++mayfly
++mayhem
++mayo
++mayonnaise
++mayor
++mayoral
++mayoralty
++mayoress
++mayoresses
++mayors
++maypole
++maypoles
++mayst
++maze
++mazes
++mazurka
++mazurkas
++mdse
++me
++mead
++meadow
++meadowlark
++meadowlarks
++meadows
++meager
++meagerly
++meagerness
++meal
++mealier
++mealiest
++mealiness
++meals
++mealtime
++mealtimes
++mealy
++mealybug
++mealybugs
++mealymouthed
++mean
++meander
++meandered
++meandering
++meanderings
++meanders
++meaner
++meanest
++meanie
++meanies
++meaning
++meaningful
++meaningfully
++meaningfulness
++meaningless
++meaninglessly
++meaninglessness
++meanings
++meanly
++meanness
++means
++meant
++meantime
++meanwhile
++meany
++meas
++measles
++measlier
++measliest
++measly
++measurable
++measurably
++measure
++measured
++measureless
++measurement
++measurements
++measures
++measuring
++meat
++meatball
++meatballs
++meathead
++meatheads
++meatier
++meatiest
++meatiness
++meatless
++meatloaf
++meatloaves
++meatpacking
++meats
++meaty
++mecca
++meccas
++mechanic
++mechanical
++mechanically
++mechanics
++mechanism
++mechanisms
++mechanistic
++mechanistically
++mechanization
++mechanize
++mechanized
++mechanizes
++mechanizing
++med
++medal
++medalist
++medalists
++medallion
++medallions
++medals
++meddle
++meddled
++meddler
++meddlers
++meddles
++meddlesome
++meddling
++media
++medial
++medially
++median
++medians
++medias
++mediate
++mediated
++mediates
++mediating
++mediation
++mediator
++mediators
++medic
++medicaid
++medical
++medically
++medicals
++medicament
++medicare
++medicate
++medicated
++medicates
++medicating
++medication
++medications
++medicinal
++medicinally
++medicine
++medicines
++medico
++medicos
++medics
++medieval
++medievalist
++medievalists
++mediocre
++mediocrities
++mediocrity
++meditate
++meditated
++meditates
++meditating
++meditation
++meditations
++meditative
++meditatively
++medium
++mediums
++medley
++medleys
++medulla
++medullas
++medusa
++medusae
++meed
++meek
++meeker
++meekest
++meekly
++meekness
++meerschaum
++meerschaums
++meet
++meeting
++meetinghouse
++meetinghouses
++meetings
++meets
++meetup
++meetups
++meg
++mega
++megabit
++megabits
++megabucks
++megabyte
++megabytes
++megachurch
++megachurches
++megacycle
++megacycles
++megadeath
++megadeaths
++megahertz
++megalith
++megalithic
++megaliths
++megalomania
++megalomaniac
++megalomaniacs
++megalopolis
++megalopolises
++megaphone
++megaphoned
++megaphones
++megaphoning
++megapixel
++megapixels
++megastar
++megastars
++megaton
++megatons
++megawatt
++megawatts
++megs
++meh
++meiosis
++meiotic
++melamine
++melancholia
++melancholic
++melancholics
++melancholy
++melange
++melanges
++melanin
++melanoma
++melanomas
++meld
++melded
++melding
++melds
++melee
++melees
++meliorate
++meliorated
++meliorates
++meliorating
++melioration
++meliorative
++mellifluous
++mellifluously
++mellifluousness
++mellow
++mellowed
++mellower
++mellowest
++mellowing
++mellowly
++mellowness
++mellows
++melodic
++melodically
++melodies
++melodious
++melodiously
++melodiousness
++melodrama
++melodramas
++melodramatic
++melodramatically
++melodramatics
++melody
++melon
++melons
++melt
++meltdown
++meltdowns
++melted
++melting
++melts
++member
++members
++membership
++memberships
++membrane
++membranes
++membranous
++meme
++memento
++mementos
++memes
++memo
++memoir
++memoirs
++memorabilia
++memorability
++memorable
++memorably
++memorandum
++memorandums
++memorial
++memorialize
++memorialized
++memorializes
++memorializing
++memorials
++memories
++memorization
++memorize
++memorized
++memorizes
++memorizing
++memory
++memos
++memsahib
++memsahibs
++men
++menace
++menaced
++menaces
++menacing
++menacingly
++menage
++menagerie
++menageries
++menages
++mend
++mendacious
++mendaciously
++mendacity
++mended
++mendelevium
++mender
++menders
++mendicancy
++mendicant
++mendicants
++mending
++mends
++menfolk
++menfolks
++menhaden
++menial
++menially
++menials
++meningeal
++meninges
++meningitis
++meninx
++menisci
++meniscus
++menopausal
++menopause
++menorah
++menorahs
++mensch
++mensches
++menservants
++menses
++menstrual
++menstruate
++menstruated
++menstruates
++menstruating
++menstruation
++mensurable
++mensuration
++menswear
++mental
++mentalist
++mentalists
++mentalities
++mentality
++mentally
++menthol
++mentholated
++mention
++mentioned
++mentioning
++mentions
++mentor
++mentored
++mentoring
++mentors
++menu
++menus
++meow
++meowed
++meowing
++meows
++mercantile
++mercantilism
++mercenaries
++mercenary
++mercer
++mercerize
++mercerized
++mercerizes
++mercerizing
++mercers
++merchandise
++merchandised
++merchandiser
++merchandisers
++merchandises
++merchandising
++merchant
++merchantable
++merchantman
++merchantmen
++merchants
++mercies
++merciful
++mercifully
++merciless
++mercilessly
++mercilessness
++mercurial
++mercurially
++mercuric
++mercury
++mercy
++mere
++merely
++meres
++merest
++meretricious
++meretriciously
++meretriciousness
++merganser
++mergansers
++merge
++merged
++merger
++mergers
++merges
++merging
++meridian
++meridians
++meringue
++meringues
++merino
++merinos
++merit
++merited
++meriting
++meritocracies
++meritocracy
++meritocratic
++meritorious
++meritoriously
++meritoriousness
++merits
++mermaid
++mermaids
++merman
++mermen
++merrier
++merriest
++merrily
++merriment
++merriness
++merry
++merrymaker
++merrymakers
++merrymaking
++mes
++mesa
++mesas
++mescal
++mescalin
++mescaline
++mescals
++mesdames
++mesdemoiselles
++mesh
++meshed
++meshes
++meshing
++mesmeric
++mesmerism
++mesmerize
++mesmerized
++mesmerizer
++mesmerizers
++mesmerizes
++mesmerizing
++mesomorph
++mesomorphs
++meson
++mesons
++mesosphere
++mesospheres
++mesquite
++mesquites
++mess
++message
++messaged
++messages
++messaging
++messed
++messeigneurs
++messenger
++messengers
++messes
++messiah
++messiahs
++messianic
++messier
++messiest
++messieurs
++messily
++messiness
++messing
++messmate
++messmates
++messy
++mestizo
++mestizos
++met
++meta
++metabolic
++metabolically
++metabolism
++metabolisms
++metabolite
++metabolites
++metabolize
++metabolized
++metabolizes
++metabolizing
++metacarpal
++metacarpals
++metacarpi
++metacarpus
++metadata
++metal
++metalanguage
++metalanguages
++metaled
++metallic
++metallurgic
++metallurgical
++metallurgist
++metallurgists
++metallurgy
++metals
++metalwork
++metalworker
++metalworkers
++metalworking
++metamorphic
++metamorphism
++metamorphose
++metamorphosed
++metamorphoses
++metamorphosing
++metamorphosis
++metaphor
++metaphoric
++metaphorical
++metaphorically
++metaphors
++metaphysical
++metaphysically
++metaphysics
++metastases
++metastasis
++metastasize
++metastasized
++metastasizes
++metastasizing
++metastatic
++metatarsal
++metatarsals
++metatarsi
++metatarsus
++metatheses
++metathesis
++mete
++meted
++metempsychoses
++metempsychosis
++meteor
++meteoric
++meteorically
++meteorite
++meteorites
++meteoroid
++meteoroids
++meteorologic
++meteorological
++meteorologist
++meteorologists
++meteorology
++meteors
++meter
++metered
++metering
++meters
++metes
++meth
++methadone
++methamphetamine
++methane
++methanol
++methinks
++method
++methodical
++methodically
++methodicalness
++methodological
++methodologically
++methodologies
++methodology
++methods
++methotrexate
++methought
++meths
++methyl
++meticulous
++meticulously
++meticulousness
++metier
++metiers
++meting
++metric
++metrical
++metrically
++metricate
++metricated
++metricates
++metricating
++metrication
++metricize
++metricized
++metricizes
++metricizing
++metrics
++metro
++metronome
++metronomes
++metropolis
++metropolises
++metropolitan
++metros
++mettle
++mettlesome
++mew
++mewed
++mewing
++mewl
++mewled
++mewling
++mewls
++mews
++mezzanine
++mezzanines
++mezzo
++mezzos
++mfg
++mfr
++mfrs
++mg
++mgr
++mi
++miasma
++miasmas
++mic
++mica
++mice
++mick
++mickey
++mickeys
++micks
++micro
++microaggression
++microaggressions
++microbe
++microbes
++microbial
++microbiological
++microbiologist
++microbiologists
++microbiology
++microbreweries
++microbrewery
++microchip
++microchips
++microcircuit
++microcircuits
++microcode
++microcomputer
++microcomputers
++microcosm
++microcosmic
++microcosms
++microdot
++microdots
++microeconomics
++microelectronic
++microelectronics
++microfiber
++microfibers
++microfiche
++microfilm
++microfilmed
++microfilming
++microfilms
++microfloppies
++microgroove
++microgrooves
++microlight
++microlights
++microloan
++microloans
++micromanage
++micromanaged
++micromanagement
++micromanages
++micromanaging
++micrometeorite
++micrometeorites
++micrometer
++micrometers
++micron
++microns
++microorganism
++microorganisms
++microphone
++microphones
++microprocessor
++microprocessors
++micros
++microscope
++microscopes
++microscopic
++microscopical
++microscopically
++microscopy
++microsecond
++microseconds
++microsurgery
++microwavable
++microwave
++microwaveable
++microwaved
++microwaves
++microwaving
++mics
++mid
++midair
++midday
++midden
++middens
++middies
++middle
++middlebrow
++middlebrows
++middleman
++middlemen
++middlemost
++middles
++middleweight
++middleweights
++middling
++middy
++midfield
++midfielder
++midfielders
++midge
++midges
++midget
++midgets
++midi
++midis
++midland
++midlands
++midlife
++midmost
++midnight
++midpoint
++midpoints
++midrib
++midribs
++midriff
++midriffs
++midsection
++midsections
++midshipman
++midshipmen
++midships
++midsize
++midst
++midstream
++midsummer
++midterm
++midterms
++midtown
++midway
++midways
++midweek
++midweeks
++midwife
++midwifed
++midwiferies
++midwifery
++midwifes
++midwifing
++midwinter
++midwives
++midyear
++midyears
++mien
++miens
++miff
++miffed
++miffing
++miffs
++might
++mightier
++mightiest
++mightily
++mightiness
++mighty
++mignonette
++mignonettes
++migraine
++migraines
++migrant
++migrants
++migrate
++migrated
++migrates
++migrating
++migration
++migrations
++migratory
++mikado
++mikados
++mike
++miked
++mikes
++miking
++mil
++miladies
++milady
++milch
++mild
++milder
++mildest
++mildew
++mildewed
++mildewing
++mildews
++mildly
++mildness
++mile
++mileage
++mileages
++milepost
++mileposts
++miler
++milers
++miles
++milestone
++milestones
++milf
++milfs
++milieu
++milieus
++militancy
++militant
++militantly
++militants
++militarily
++militarism
++militarist
++militaristic
++militarists
++militarization
++militarize
++militarized
++militarizes
++militarizing
++military
++militate
++militated
++militates
++militating
++militia
++militiaman
++militiamen
++militias
++milk
++milked
++milker
++milkers
++milkier
++milkiest
++milkiness
++milking
++milkmaid
++milkmaids
++milkman
++milkmen
++milks
++milkshake
++milkshakes
++milksop
++milksops
++milkweed
++milkweeds
++milky
++mill
++millage
++milled
++millennia
++millennial
++millennium
++millenniums
++miller
++millers
++millet
++milliard
++milliards
++millibar
++millibars
++milligram
++milligrams
++milliliter
++milliliters
++millimeter
++millimeters
++milliner
++milliners
++millinery
++milling
++millings
++million
++millionaire
++millionaires
++millionairess
++millionairesses
++millions
++millionth
++millionths
++millipede
++millipedes
++millisecond
++milliseconds
++millpond
++millponds
++millrace
++millraces
++mills
++millstone
++millstones
++millstream
++millstreams
++millwright
++millwrights
++milometer
++milometers
++milquetoast
++milquetoasts
++mils
++milt
++milted
++milting
++milts
++mime
++mimed
++mimeograph
++mimeographed
++mimeographing
++mimeographs
++mimes
++mimetic
++mimic
++mimicked
++mimicker
++mimickers
++mimicking
++mimicries
++mimicry
++mimics
++miming
++mimosa
++mimosas
++min
++minaret
++minarets
++minatory
++mince
++minced
++mincemeat
++mincer
++mincers
++minces
++mincing
++mind
++mindbogglingly
++minded
++mindedness
++minder
++minders
++mindful
++mindfully
++mindfulness
++minding
++mindless
++mindlessly
++mindlessness
++minds
++mindset
++mindsets
++mine
++mined
++minefield
++minefields
++miner
++mineral
++mineralogical
++mineralogist
++mineralogists
++mineralogy
++minerals
++miners
++mines
++minestrone
++minesweeper
++minesweepers
++mingle
++mingled
++mingles
++mingling
++mingy
++mini
++miniature
++miniatures
++miniaturist
++miniaturists
++miniaturization
++miniaturize
++miniaturized
++miniaturizes
++miniaturizing
++minibar
++minibars
++minibike
++minibikes
++minibus
++minibuses
++minicab
++minicabs
++minicam
++minicams
++minicomputer
++minicomputers
++minifloppies
++minim
++minima
++minimal
++minimalism
++minimalist
++minimalists
++minimally
++minimization
++minimize
++minimized
++minimizes
++minimizing
++minims
++minimum
++minimums
++mining
++minion
++minions
++minis
++miniseries
++miniskirt
++miniskirts
++minister
++ministered
++ministerial
++ministering
++ministers
++ministrant
++ministrants
++ministration
++ministrations
++ministries
++ministry
++minivan
++minivans
++mink
++minks
++minnesinger
++minnesingers
++minnow
++minnows
++minor
++minored
++minoring
++minorities
++minority
++minors
++minoxidil
++minster
++minsters
++minstrel
++minstrels
++minstrelsy
++mint
++mintage
++minted
++minter
++minters
++mintier
++mintiest
++minting
++mints
++minty
++minuend
++minuends
++minuet
++minuets
++minus
++minuscule
++minuscules
++minuses
++minute
++minuted
++minutely
++minuteman
++minutemen
++minuteness
++minuter
++minutes
++minutest
++minutia
++minutiae
++minuting
++minx
++minxes
++miracle
++miracles
++miraculous
++miraculously
++mirage
++mirages
++mire
++mired
++mires
++mirier
++miriest
++miring
++mirror
++mirrored
++mirroring
++mirrors
++mirth
++mirthful
++mirthfully
++mirthfulness
++mirthless
++mirthlessly
++miry
++misaddress
++misaddressed
++misaddresses
++misaddressing
++misadventure
++misadventures
++misaligned
++misalignment
++misalliance
++misalliances
++misanthrope
++misanthropes
++misanthropic
++misanthropically
++misanthropist
++misanthropists
++misanthropy
++misapplication
++misapplications
++misapplied
++misapplies
++misapply
++misapplying
++misapprehend
++misapprehended
++misapprehending
++misapprehends
++misapprehension
++misapprehensions
++misappropriate
++misappropriated
++misappropriates
++misappropriating
++misappropriation
++misappropriations
++misbegotten
++misbehave
++misbehaved
++misbehaves
++misbehaving
++misbehavior
++misc
++miscalculate
++miscalculated
++miscalculates
++miscalculating
++miscalculation
++miscalculations
++miscall
++miscalled
++miscalling
++miscalls
++miscarriage
++miscarriages
++miscarried
++miscarries
++miscarry
++miscarrying
++miscast
++miscasting
++miscasts
++miscegenation
++miscellaneous
++miscellaneously
++miscellanies
++miscellany
++mischance
++mischances
++mischief
++mischievous
++mischievously
++mischievousness
++miscibility
++miscible
++miscommunication
++miscommunications
++misconceive
++misconceived
++misconceives
++misconceiving
++misconception
++misconceptions
++misconduct
++misconducted
++misconducting
++misconducts
++misconstruction
++misconstructions
++misconstrue
++misconstrued
++misconstrues
++misconstruing
++miscount
++miscounted
++miscounting
++miscounts
++miscreant
++miscreants
++miscue
++miscued
++miscues
++miscuing
++misdeal
++misdealing
++misdeals
++misdealt
++misdeed
++misdeeds
++misdemeanor
++misdemeanors
++misdiagnose
++misdiagnosed
++misdiagnoses
++misdiagnosing
++misdiagnosis
++misdid
++misdirect
++misdirected
++misdirecting
++misdirection
++misdirects
++misdo
++misdoes
++misdoing
++misdoings
++misdone
++miser
++miserable
++miserableness
++miserably
++miseries
++miserliness
++miserly
++misers
++misery
++misfeasance
++misfeature
++misfeatures
++misfile
++misfiled
++misfiles
++misfiling
++misfire
++misfired
++misfires
++misfiring
++misfit
++misfits
++misfitted
++misfitting
++misfortune
++misfortunes
++misgiving
++misgivings
++misgovern
++misgoverned
++misgoverning
++misgovernment
++misgoverns
++misguidance
++misguide
++misguided
++misguidedly
++misguides
++misguiding
++mishandle
++mishandled
++mishandles
++mishandling
++mishap
++mishaps
++mishear
++misheard
++mishearing
++mishears
++mishit
++mishits
++mishitting
++mishmash
++mishmashes
++misidentified
++misidentifies
++misidentify
++misidentifying
++misinform
++misinformation
++misinformed
++misinforming
++misinforms
++misinterpret
++misinterpretation
++misinterpretations
++misinterpreted
++misinterpreting
++misinterprets
++misjudge
++misjudged
++misjudges
++misjudging
++misjudgment
++misjudgments
++mislabel
++mislabeled
++mislabeling
++mislabels
++mislaid
++mislay
++mislaying
++mislays
++mislead
++misleading
++misleadingly
++misleads
++misled
++mismanage
++mismanaged
++mismanagement
++mismanages
++mismanaging
++mismatch
++mismatched
++mismatches
++mismatching
++misname
++misnamed
++misnames
++misnaming
++misnomer
++misnomers
++misogamist
++misogamists
++misogamy
++misogynist
++misogynistic
++misogynists
++misogynous
++misogyny
++misplace
++misplaced
++misplacement
++misplaces
++misplacing
++misplay
++misplayed
++misplaying
++misplays
++misprint
++misprinted
++misprinting
++misprints
++misprision
++mispronounce
++mispronounced
++mispronounces
++mispronouncing
++mispronunciation
++mispronunciations
++misquotation
++misquotations
++misquote
++misquoted
++misquotes
++misquoting
++misread
++misreading
++misreadings
++misreads
++misreport
++misreported
++misreporting
++misreports
++misrepresent
++misrepresentation
++misrepresentations
++misrepresented
++misrepresenting
++misrepresents
++misrule
++misruled
++misrules
++misruling
++miss
++missal
++missals
++missed
++misses
++misshape
++misshaped
++misshapen
++misshapes
++misshaping
++missile
++missilery
++missiles
++missing
++mission
++missionaries
++missionary
++missioner
++missioners
++missions
++missive
++missives
++misspeak
++misspeaking
++misspeaks
++misspell
++misspelled
++misspelling
++misspellings
++misspells
++misspend
++misspending
++misspends
++misspent
++misspoke
++misspoken
++misstate
++misstated
++misstatement
++misstatements
++misstates
++misstating
++misstep
++missteps
++missus
++missuses
++mist
++mistakable
++mistake
++mistaken
++mistakenly
++mistakes
++mistaking
++misted
++mister
++misters
++mistier
++mistiest
++mistily
++mistime
++mistimed
++mistimes
++mistiming
++mistiness
++misting
++mistletoe
++mistook
++mistral
++mistrals
++mistranslated
++mistreat
++mistreated
++mistreating
++mistreatment
++mistreats
++mistress
++mistresses
++mistrial
++mistrials
++mistrust
++mistrusted
++mistrustful
++mistrustfully
++mistrusting
++mistrusts
++mists
++misty
++mistype
++mistypes
++mistyping
++misunderstand
++misunderstanding
++misunderstandings
++misunderstands
++misunderstood
++misuse
++misused
++misuses
++misusing
++mite
++miter
++mitered
++mitering
++miters
++mites
++mitigate
++mitigated
++mitigates
++mitigating
++mitigation
++mitochondria
++mitochondrial
++mitochondrion
++mitoses
++mitosis
++mitotic
++mitral
++mitt
++mitten
++mittens
++mitts
++mitzvah
++mix
++mixable
++mixed
++mixer
++mixers
++mixes
++mixing
++mixture
++mixtures
++mizzen
++mizzenmast
++mizzenmasts
++mizzens
++mkay
++mks
++ml
++mm
++mnemonic
++mnemonically
++mnemonics
++mo
++moan
++moaned
++moaner
++moaners
++moaning
++moans
++moat
++moated
++moats
++mob
++mobbed
++mobbing
++mobile
++mobiles
++mobility
++mobilization
++mobilizations
++mobilize
++mobilized
++mobilizer
++mobilizers
++mobilizes
++mobilizing
++mobs
++mobster
++mobsters
++moccasin
++moccasins
++mocha
++mochas
++mock
++mocked
++mocker
++mockeries
++mockers
++mockery
++mocking
++mockingbird
++mockingbirds
++mockingly
++mocks
++mod
++modal
++modalities
++modality
++modals
++modded
++modding
++mode
++model
++modeled
++modeler
++modelers
++modeling
++modelings
++models
++modem
++modems
++moderate
++moderated
++moderately
++moderateness
++moderates
++moderating
++moderation
++moderator
++moderators
++modern
++modernism
++modernist
++modernistic
++modernists
++modernity
++modernization
++modernize
++modernized
++modernizer
++modernizers
++modernizes
++modernizing
++modernly
++modernness
++moderns
++modes
++modest
++modestly
++modesty
++modicum
++modicums
++modifiable
++modification
++modifications
++modified
++modifier
++modifiers
++modifies
++modify
++modifying
++modish
++modishly
++modishness
++mods
++modular
++modulate
++modulated
++modulates
++modulating
++modulation
++modulations
++modulator
++modulators
++module
++modules
++modulo
++modulus
++moggy
++mogul
++moguls
++mohair
++moi
++moieties
++moiety
++moil
++moiled
++moiling
++moils
++moire
++moires
++moist
++moisten
++moistened
++moistener
++moisteners
++moistening
++moistens
++moister
++moistest
++moistly
++moistness
++moisture
++moisturize
++moisturized
++moisturizer
++moisturizers
++moisturizes
++moisturizing
++molar
++molars
++molasses
++mold
++moldboard
++moldboards
++molded
++molder
++moldered
++moldering
++molders
++moldier
++moldiest
++moldiness
++molding
++moldings
++molds
++moldy
++mole
++molecular
++molecularity
++molecule
++molecules
++molehill
++molehills
++moles
++moleskin
++molest
++molestation
++molested
++molester
++molesters
++molesting
++molests
++moll
++mollies
++mollification
++mollified
++mollifies
++mollify
++mollifying
++molls
++molluscan
++mollusk
++mollusks
++molly
++mollycoddle
++mollycoddled
++mollycoddles
++mollycoddling
++molt
++molted
++molten
++molter
++molters
++molting
++molts
++molybdenum
++mom
++moment
++momenta
++momentarily
++momentariness
++momentary
++momentous
++momentously
++momentousness
++moments
++momentum
++mommies
++mommy
++moms
++monarch
++monarchic
++monarchical
++monarchies
++monarchism
++monarchist
++monarchistic
++monarchists
++monarchs
++monarchy
++monasteries
++monastery
++monastic
++monastical
++monastically
++monasticism
++monastics
++monaural
++monetarily
++monetarism
++monetarist
++monetarists
++monetary
++monetize
++monetized
++monetizes
++monetizing
++money
++moneybag
++moneybags
++moneybox
++moneyboxes
++moneyed
++moneylender
++moneylenders
++moneymaker
++moneymakers
++moneymaking
++moneys
++monger
++mongered
++mongering
++mongers
++mongol
++mongolism
++mongoloid
++mongoloids
++mongols
++mongoose
++mongooses
++mongrel
++mongrels
++monies
++moniker
++monikers
++monism
++monist
++monists
++monition
++monitions
++monitor
++monitored
++monitoring
++monitors
++monitory
++monk
++monkey
++monkeyed
++monkeying
++monkeys
++monkeyshine
++monkeyshines
++monkish
++monks
++monkshood
++monkshoods
++mono
++monochromatic
++monochrome
++monochromes
++monocle
++monocled
++monocles
++monoclonal
++monocotyledon
++monocotyledonous
++monocotyledons
++monocular
++monodic
++monodies
++monodist
++monodists
++monody
++monogamist
++monogamists
++monogamous
++monogamously
++monogamy
++monogram
++monogrammed
++monogramming
++monograms
++monograph
++monographs
++monolingual
++monolinguals
++monolith
++monolithic
++monoliths
++monologist
++monologists
++monologue
++monologues
++monomania
++monomaniac
++monomaniacal
++monomaniacs
++monomer
++monomers
++mononucleosis
++monophonic
++monoplane
++monoplanes
++monopolies
++monopolist
++monopolistic
++monopolists
++monopolization
++monopolize
++monopolized
++monopolizer
++monopolizers
++monopolizes
++monopolizing
++monopoly
++monorail
++monorails
++monosyllabic
++monosyllable
++monosyllables
++monotheism
++monotheist
++monotheistic
++monotheists
++monotone
++monotones
++monotonic
++monotonically
++monotonous
++monotonously
++monotonousness
++monotony
++monounsaturated
++monoxide
++monoxides
++monseigneur
++monsieur
++monsignor
++monsignors
++monsoon
++monsoonal
++monsoons
++monster
++monsters
++monstrance
++monstrances
++monstrosities
++monstrosity
++monstrous
++monstrously
++montage
++montages
++month
++monthlies
++monthly
++months
++monument
++monumental
++monumentally
++monuments
++moo
++mooch
++mooched
++moocher
++moochers
++mooches
++mooching
++mood
++moodier
++moodiest
++moodily
++moodiness
++moods
++moody
++mooed
++mooing
++moon
++moonbeam
++moonbeams
++mooned
++mooning
++moonless
++moonlight
++moonlighted
++moonlighter
++moonlighters
++moonlighting
++moonlights
++moonlit
++moons
++moonscape
++moonscapes
++moonshine
++moonshiner
++moonshiners
++moonshines
++moonshot
++moonshots
++moonstone
++moonstones
++moonstruck
++moonwalk
++moonwalks
++moor
++moored
++moorhen
++moorhens
++mooring
++moorings
++moorland
++moorlands
++moors
++moos
++moose
++moot
++mooted
++mooting
++moots
++mop
++mope
++moped
++mopeds
++moper
++mopers
++mopes
++mopey
++mopier
++mopiest
++moping
++mopish
++mopped
++moppet
++moppets
++mopping
++mops
++moraine
++moraines
++moral
++morale
++moralist
++moralistic
++moralistically
++moralists
++moralities
++morality
++moralization
++moralize
++moralized
++moralizer
++moralizers
++moralizes
++moralizing
++morally
++morals
++morass
++morasses
++moratorium
++moratoriums
++moray
++morays
++morbid
++morbidity
++morbidly
++morbidness
++mordancy
++mordant
++mordantly
++mordants
++more
++moreish
++morel
++morels
++moreover
++mores
++morgue
++morgues
++moribund
++morn
++morning
++mornings
++morns
++morocco
++moron
++moronic
++moronically
++morons
++morose
++morosely
++moroseness
++morph
++morphed
++morpheme
++morphemes
++morphemic
++morphia
++morphine
++morphing
++morphological
++morphology
++morphs
++morrow
++morrows
++morsel
++morsels
++mortal
++mortality
++mortally
++mortals
++mortar
++mortarboard
++mortarboards
++mortared
++mortaring
++mortars
++mortgage
++mortgaged
++mortgagee
++mortgagees
++mortgages
++mortgaging
++mortgagor
++mortgagors
++mortician
++morticians
++mortification
++mortified
++mortifies
++mortify
++mortifying
++mortise
++mortised
++mortises
++mortising
++mortuaries
++mortuary
++mos
++mosaic
++mosaics
++mosey
++moseyed
++moseying
++moseys
++mosh
++moshed
++moshes
++moshing
++mosque
++mosques
++mosquito
++mosquitoes
++moss
++mossback
++mossbacks
++mosses
++mossier
++mossiest
++mossy
++most
++mostly
++mot
++mote
++motel
++motels
++motes
++motet
++motets
++moth
++mothball
++mothballed
++mothballing
++mothballs
++mother
++motherboard
++motherboards
++mothered
++motherfucker
++motherfuckers
++motherfucking
++motherhood
++mothering
++motherland
++motherlands
++motherless
++motherliness
++motherly
++mothers
++moths
++motif
++motifs
++motile
++motiles
++motility
++motion
++motioned
++motioning
++motionless
++motionlessly
++motionlessness
++motions
++motivate
++motivated
++motivates
++motivating
++motivation
++motivational
++motivations
++motivator
++motivators
++motive
++motiveless
++motives
++motley
++motleys
++motlier
++motliest
++motocross
++motocrosses
++motor
++motorbike
++motorbiked
++motorbikes
++motorbiking
++motorboat
++motorboats
++motorcade
++motorcades
++motorcar
++motorcars
++motorcycle
++motorcycled
++motorcycles
++motorcycling
++motorcyclist
++motorcyclists
++motored
++motoring
++motorist
++motorists
++motorization
++motorize
++motorized
++motorizes
++motorizing
++motorman
++motormen
++motormouth
++motormouths
++motors
++motorway
++motorways
++mots
++mottle
++mottled
++mottles
++mottling
++motto
++mottoes
++moue
++moues
++mound
++mounded
++mounding
++mounds
++mount
++mountable
++mountain
++mountaineer
++mountaineered
++mountaineering
++mountaineers
++mountainous
++mountains
++mountainside
++mountainsides
++mountaintop
++mountaintops
++mountebank
++mountebanks
++mounted
++mounter
++mounters
++mounting
++mountings
++mounts
++mourn
++mourned
++mourner
++mourners
++mournful
++mournfully
++mournfulness
++mourning
++mourns
++mouse
++moused
++mouser
++mousers
++mouses
++mousetrap
++mousetrapped
++mousetrapping
++mousetraps
++mousier
++mousiest
++mousiness
++mousing
++moussaka
++moussakas
++mousse
++moussed
++mousses
++moussing
++mousy
++mouth
++mouthed
++mouthfeel
++mouthful
++mouthfuls
++mouthier
++mouthiest
++mouthiness
++mouthing
++mouthpiece
++mouthpieces
++mouths
++mouthwash
++mouthwashes
++mouthwatering
++mouthy
++mouton
++movable
++movables
++move
++moved
++movement
++movements
++mover
++movers
++moves
++movie
++moviegoer
++moviegoers
++movies
++moving
++movingly
++mow
++mowed
++mower
++mowers
++mowing
++mows
++moxie
++mozzarella
++mp
++mpg
++mph
++ms
++mt
++mtg
++mtge
++mu
++much
++mucilage
++mucilaginous
++muck
++mucked
++muckier
++muckiest
++mucking
++muckrake
++muckraked
++muckraker
++muckrakers
++muckrakes
++muckraking
++mucks
++mucky
++mucous
++mucus
++mud
++muddied
++muddier
++muddies
++muddiest
++muddily
++muddiness
++muddle
++muddled
++muddleheaded
++muddles
++muddling
++muddy
++muddying
++mudflap
++mudflaps
++mudflat
++mudflats
++mudguard
++mudguards
++mudpack
++mudpacks
++mudroom
++mudrooms
++mudslide
++mudslides
++mudslinger
++mudslingers
++mudslinging
++muenster
++muesli
++muezzin
++muezzins
++muff
++muffed
++muffin
++muffing
++muffins
++muffle
++muffled
++muffler
++mufflers
++muffles
++muffling
++muffs
++mufti
++muftis
++mug
++mugful
++mugfuls
++mugged
++mugger
++muggers
++muggier
++muggiest
++mugginess
++mugging
++muggings
++muggins
++muggle
++muggles
++muggy
++mugs
++mugshot
++mugshots
++mugwump
++mugwumps
++mujaheddin
++mukluk
++mukluks
++mulatto
++mulattoes
++mulberries
++mulberry
++mulch
++mulched
++mulches
++mulching
++mulct
++mulcted
++mulcting
++mulcts
++mule
++mules
++muleskinner
++muleskinners
++muleteer
++muleteers
++mulish
++mulishly
++mulishness
++mull
++mullah
++mullahs
++mulled
++mullein
++mullet
++mullets
++mulligan
++mulligans
++mulligatawny
++mulling
++mullion
++mullioned
++mullions
++mulls
++multi
++multichannel
++multicolored
++multicultural
++multiculturalism
++multidimensional
++multidisciplinary
++multifaceted
++multifamily
++multifarious
++multifariously
++multifariousness
++multiform
++multigrain
++multilateral
++multilaterally
++multilayered
++multilevel
++multilingual
++multilingualism
++multimedia
++multimillionaire
++multimillionaires
++multinational
++multinationals
++multipart
++multiparty
++multiplayer
++multiple
++multiples
++multiplex
++multiplexed
++multiplexer
++multiplexers
++multiplexes
++multiplexing
++multiplicand
++multiplicands
++multiplication
++multiplications
++multiplicative
++multiplicities
++multiplicity
++multiplied
++multiplier
++multipliers
++multiplies
++multiply
++multiplying
++multiprocessing
++multiprocessor
++multiprocessors
++multipurpose
++multiracial
++multistage
++multistory
++multitask
++multitasking
++multitasks
++multitude
++multitudes
++multitudinous
++multivariate
++multiverse
++multiverses
++multivitamin
++multivitamins
++multiyear
++mum
++mumble
++mumbled
++mumbler
++mumblers
++mumbles
++mumbletypeg
++mumbling
++mummer
++mummers
++mummery
++mummies
++mummification
++mummified
++mummifies
++mummify
++mummifying
++mummy
++mumps
++mun
++munch
++munched
++munches
++munchie
++munchies
++munching
++munchkin
++munchkins
++mundane
++mundanely
++mundanes
++mung
++munged
++munging
++mungs
++municipal
++municipalities
++municipality
++municipally
++municipals
++munificence
++munificent
++munificently
++munition
++munitioned
++munitioning
++munitions
++mural
++muralist
++muralists
++murals
++murder
++murdered
++murderer
++murderers
++murderess
++murderesses
++murdering
++murderous
++murderously
++murders
++murk
++murkier
++murkiest
++murkily
++murkiness
++murks
++murky
++murmur
++murmured
++murmurer
++murmurers
++murmuring
++murmurings
++murmurous
++murmurs
++murrain
++mus
++muscat
++muscatel
++muscatels
++muscats
++muscle
++musclebound
++muscled
++muscleman
++musclemen
++muscles
++muscling
++muscly
++muscular
++muscularity
++muscularly
++musculature
++muse
++mused
++muses
++musette
++musettes
++museum
++museums
++mush
++mushed
++musher
++mushers
++mushes
++mushier
++mushiest
++mushiness
++mushing
++mushroom
++mushroomed
++mushrooming
++mushrooms
++mushy
++music
++musical
++musicale
++musicales
++musicality
++musically
++musicals
++musician
++musicianly
++musicians
++musicianship
++musicological
++musicologist
++musicologists
++musicology
++musics
++musing
++musingly
++musings
++musk
++muskeg
++muskegs
++muskellunge
++muskellunges
++musket
++musketeer
++musketeers
++musketry
++muskets
++muskie
++muskier
++muskies
++muskiest
++muskiness
++muskmelon
++muskmelons
++muskox
++muskoxen
++muskrat
++muskrats
++musky
++muslin
++muss
++mussed
++mussel
++mussels
++musses
++mussier
++mussiest
++mussing
++mussy
++must
++mustache
++mustached
++mustaches
++mustachio
++mustachioed
++mustachios
++mustang
++mustangs
++mustard
++muster
++mustered
++mustering
++musters
++mustier
++mustiest
++mustily
++mustiness
++musts
++musty
++mutability
++mutable
++mutably
++mutagen
++mutagenic
++mutagens
++mutant
++mutants
++mutate
++mutated
++mutates
++mutating
++mutation
++mutational
++mutations
++mutative
++mute
++muted
++mutely
++muteness
++muter
++mutes
++mutest
++mutilate
++mutilated
++mutilates
++mutilating
++mutilation
++mutilations
++mutilator
++mutilators
++mutineer
++mutineers
++muting
++mutinied
++mutinies
++mutinous
++mutinously
++mutiny
++mutinying
++mutt
++mutter
++muttered
++mutterer
++mutterers
++muttering
++mutterings
++mutters
++mutton
++muttonchops
++muttony
++mutts
++mutual
++mutuality
++mutually
++muumuu
++muumuus
++muzak
++muzzily
++muzziness
++muzzle
++muzzled
++muzzles
++muzzling
++muzzy
++my
++mycologist
++mycologists
++mycology
++myelitis
++myna
++mynas
++myocardial
++myocardium
++myopia
++myopic
++myopically
++myriad
++myriads
++myrmidon
++myrmidons
++myrrh
++myrtle
++myrtles
++mys
++myself
++mysteries
++mysterious
++mysteriously
++mysteriousness
++mystery
++mystic
++mystical
++mystically
++mysticism
++mystics
++mystification
++mystified
++mystifies
++mystify
++mystifying
++mystique
++myth
++mythic
++mythical
++mythological
++mythologies
++mythologist
++mythologists
++mythologize
++mythologized
++mythologizes
++mythologizing
++mythology
++myths
++myxomatosis
++n
++naan
++naans
++nab
++nabbed
++nabbing
++nabob
++nabobs
++nabs
++nacelle
++nacelles
++nacho
++nachos
++nacre
++nacreous
++nadir
++nadirs
++nae
++naff
++naffer
++naffest
++nag
++nagged
++nagger
++naggers
++nagging
++nags
++nagware
++nah
++naiad
++naiads
++naif
++naifs
++nail
++nailbrush
++nailbrushes
++nailed
++nailing
++nails
++naive
++naively
++naiver
++naivest
++naivete
++naivety
++naked
++nakedly
++nakedness
++name
++nameable
++named
++namedrop
++namedropping
++nameless
++namelessly
++namely
++nameplate
++nameplates
++names
++namesake
++namesakes
++naming
++nannies
++nanny
++nanobot
++nanobots
++nanosecond
++nanoseconds
++nanotechnologies
++nanotechnology
++nap
++napalm
++napalmed
++napalming
++napalms
++nape
++napes
++naphtha
++naphthalene
++napkin
++napkins
++napless
++napoleon
++napoleons
++napped
++napper
++nappers
++nappier
++nappies
++nappiest
++napping
++nappy
++naps
++narc
++narcissism
++narcissist
++narcissistic
++narcissists
++narcissus
++narcolepsy
++narcoleptic
++narcoses
++narcosis
++narcotic
++narcotics
++narcotization
++narcotize
++narcotized
++narcotizes
++narcotizing
++narcs
++nark
++narky
++narrate
++narrated
++narrates
++narrating
++narration
++narrations
++narrative
++narratives
++narrator
++narrators
++narrow
++narrowed
++narrower
++narrowest
++narrowing
++narrowly
++narrowness
++narrows
++narwhal
++narwhals
++nary
++nasal
++nasality
++nasalization
++nasalize
++nasalized
++nasalizes
++nasalizing
++nasally
++nasals
++nascence
++nascent
++nastier
++nastiest
++nastily
++nastiness
++nasturtium
++nasturtiums
++nasty
++natal
++natch
++nation
++national
++nationalism
++nationalist
++nationalistic
++nationalistically
++nationalists
++nationalities
++nationality
++nationalization
++nationalizations
++nationalize
++nationalized
++nationalizes
++nationalizing
++nationally
++nationals
++nationhood
++nations
++nationwide
++native
++natives
++nativities
++nativity
++natl
++natter
++nattered
++nattering
++natters
++nattier
++nattiest
++nattily
++nattiness
++natty
++natural
++naturalism
++naturalist
++naturalistic
++naturalists
++naturalization
++naturalize
++naturalized
++naturalizes
++naturalizing
++naturally
++naturalness
++naturals
++nature
++natures
++naturism
++naturist
++naturists
++naught
++naughtier
++naughtiest
++naughtily
++naughtiness
++naughts
++naughty
++nausea
++nauseate
++nauseated
++nauseates
++nauseating
++nauseatingly
++nauseous
++nauseously
++nauseousness
++nautical
++nautically
++nautilus
++nautiluses
++naval
++nave
++navel
++navels
++naves
++navies
++navigability
++navigable
++navigate
++navigated
++navigates
++navigating
++navigation
++navigational
++navigator
++navigators
++navvies
++navvy
++navy
++nay
++nays
++naysayer
++naysayers
++neanderthal
++neanderthals
++neap
++neaps
++near
++nearby
++neared
++nearer
++nearest
++nearing
++nearly
++nearness
++nears
++nearshore
++nearside
++nearsighted
++nearsightedly
++nearsightedness
++neat
++neaten
++neatened
++neatening
++neatens
++neater
++neatest
++neath
++neatly
++neatness
++nebula
++nebulae
++nebular
++nebulous
++nebulously
++nebulousness
++necessaries
++necessarily
++necessary
++necessitate
++necessitated
++necessitates
++necessitating
++necessities
++necessitous
++necessity
++neck
++neckband
++neckbands
++necked
++neckerchief
++neckerchiefs
++necking
++necklace
++necklaced
++necklaces
++necklacing
++necklacings
++neckline
++necklines
++necks
++necktie
++neckties
++necrology
++necromancer
++necromancers
++necromancy
++necrophilia
++necrophiliac
++necrophiliacs
++necropolis
++necropolises
++necroses
++necrosis
++necrotic
++nectar
++nectarine
++nectarines
++nee
++need
++needed
++needful
++needfully
++needier
++neediest
++neediness
++needing
++needle
++needled
++needlepoint
++needles
++needless
++needlessly
++needlessness
++needlewoman
++needlewomen
++needlework
++needling
++needs
++needy
++nefarious
++nefariously
++nefariousness
++neg
++negate
++negated
++negates
++negating
++negation
++negations
++negative
++negatived
++negatively
++negativeness
++negatives
++negativing
++negativism
++negativity
++neglect
++neglected
++neglectful
++neglectfully
++neglectfulness
++neglecting
++neglects
++negligee
++negligees
++negligence
++negligent
++negligently
++negligible
++negligibly
++negotiability
++negotiable
++negotiate
++negotiated
++negotiates
++negotiating
++negotiation
++negotiations
++negotiator
++negotiators
++negritude
++negro
++negroid
++neigh
++neighbor
++neighbored
++neighborhood
++neighborhoods
++neighboring
++neighborliness
++neighborly
++neighbors
++neighed
++neighing
++neighs
++neither
++nelson
++nelsons
++nematode
++nematodes
++nemeses
++nemesis
++neoclassic
++neoclassical
++neoclassicism
++neocolonialism
++neocolonialist
++neocolonialists
++neocon
++neocons
++neoconservative
++neoconservatives
++neodymium
++neolithic
++neologism
++neologisms
++neon
++neonatal
++neonate
++neonates
++neophilia
++neophyte
++neophytes
++neoplasm
++neoplasms
++neoplastic
++neoprene
++nepenthe
++nephew
++nephews
++nephrite
++nephritic
++nephritis
++nephropathy
++nepotism
++nepotist
++nepotistic
++nepotists
++neptunium
++nerd
++nerdier
++nerdiest
++nerds
++nerdy
++nerve
++nerved
++nerveless
++nervelessly
++nervelessness
++nerves
++nervier
++nerviest
++nerviness
++nerving
++nervous
++nervously
++nervousness
++nervy
++nest
++nested
++nesting
++nestle
++nestled
++nestles
++nestling
++nestlings
++nests
++net
++netball
++netbook
++netbooks
++nether
++nethermost
++netherworld
++netiquette
++netiquettes
++nets
++netted
++netter
++netters
++netting
++nettle
++nettled
++nettles
++nettlesome
++nettling
++network
++networked
++networking
++networks
++neural
++neuralgia
++neuralgic
++neurally
++neurasthenia
++neurasthenic
++neurasthenics
++neuritic
++neuritics
++neuritis
++neurological
++neurologically
++neurologist
++neurologists
++neurology
++neuron
++neuronal
++neurons
++neuroses
++neurosis
++neurosurgeon
++neurosurgeons
++neurosurgery
++neurosurgical
++neurotic
++neurotically
++neurotics
++neurotransmitter
++neurotransmitters
++neut
++neuter
++neutered
++neutering
++neuters
++neutral
++neutralism
++neutralist
++neutralists
++neutrality
++neutralization
++neutralize
++neutralized
++neutralizer
++neutralizers
++neutralizes
++neutralizing
++neutrally
++neutrals
++neutrino
++neutrinos
++neutron
++neutrons
++never
++nevermore
++nevertheless
++nevi
++nevus
++new
++newbie
++newbies
++newborn
++newborns
++newcomer
++newcomers
++newel
++newels
++newer
++newest
++newfangled
++newfound
++newline
++newlines
++newly
++newlywed
++newlyweds
++newness
++news
++newsagent
++newsagents
++newsboy
++newsboys
++newscast
++newscaster
++newscasters
++newscasts
++newsdealer
++newsdealers
++newsflash
++newsflashes
++newsgirl
++newsgirls
++newsgroup
++newsgroups
++newshound
++newshounds
++newsier
++newsiest
++newsletter
++newsletters
++newsman
++newsmen
++newspaper
++newspaperman
++newspapermen
++newspapers
++newspaperwoman
++newspaperwomen
++newspeak
++newsprint
++newsreader
++newsreaders
++newsreel
++newsreels
++newsroom
++newsrooms
++newsstand
++newsstands
++newsweeklies
++newsweekly
++newswoman
++newswomen
++newsworthiness
++newsworthy
++newsy
++newt
++newton
++newtons
++newts
++next
++nexus
++nexuses
++niacin
++nib
++nibble
++nibbled
++nibbler
++nibblers
++nibbles
++nibbling
++nibs
++nice
++nicely
++niceness
++nicer
++nicest
++niceties
++nicety
++niche
++niches
++nick
++nicked
++nickel
++nickelodeon
++nickelodeons
++nickels
++nicker
++nickered
++nickering
++nickers
++nicking
++nickle
++nickles
++nickname
++nicknamed
++nicknames
++nicknaming
++nicks
++nicotine
++niece
++nieces
++niff
++niffy
++niftier
++niftiest
++nifty
++nigga
++niggard
++niggardliness
++niggardly
++niggards
++niggas
++niggaz
++nigger
++niggers
++niggle
++niggled
++niggler
++nigglers
++niggles
++niggling
++nigh
++nigher
++nighest
++night
++nightcap
++nightcaps
++nightclothes
++nightclub
++nightclubbed
++nightclubbing
++nightclubs
++nightdress
++nightdresses
++nightfall
++nightgown
++nightgowns
++nighthawk
++nighthawks
++nightie
++nighties
++nightingale
++nightingales
++nightlife
++nightlight
++nightlights
++nightlong
++nightly
++nightmare
++nightmares
++nightmarish
++nights
++nightshade
++nightshades
++nightshirt
++nightshirts
++nightspot
++nightspots
++nightstand
++nightstands
++nightstick
++nightsticks
++nighttime
++nightwatchman
++nightwatchmen
++nightwear
++nihilism
++nihilist
++nihilistic
++nihilists
++nil
++nimbi
++nimble
++nimbleness
++nimbler
++nimblest
++nimbly
++nimbus
++nimby
++nimrod
++nimrods
++nincompoop
++nincompoops
++nine
++ninepin
++ninepins
++nines
++nineteen
++nineteens
++nineteenth
++nineteenths
++nineties
++ninetieth
++ninetieths
++ninety
++ninja
++ninjas
++ninnies
++ninny
++ninth
++ninths
++niobium
++nip
++nipped
++nipper
++nippers
++nippier
++nippiest
++nippiness
++nipping
++nipple
++nipples
++nippy
++nips
++nirvana
++nisei
++nit
++niter
++nitpick
++nitpicked
++nitpicker
++nitpickers
++nitpicking
++nitpicks
++nitrate
++nitrated
++nitrates
++nitrating
++nitration
++nitric
++nitrification
++nitrite
++nitrites
++nitro
++nitrocellulose
++nitrogen
++nitrogenous
++nitroglycerin
++nits
++nitwit
++nitwits
++nix
++nixed
++nixes
++nixing
++no
++nob
++nobble
++nobbled
++nobbles
++nobbling
++nobelium
++nobility
++noble
++nobleman
++noblemen
++nobleness
++nobler
++nobles
++noblest
++noblewoman
++noblewomen
++nobly
++nobodies
++nobody
++nobs
++nocturnal
++nocturnally
++nocturne
++nocturnes
++nod
++nodal
++nodded
++nodding
++noddle
++noddles
++noddy
++node
++nodes
++nods
++nodular
++nodule
++nodules
++noel
++noels
++noes
++noggin
++noggins
++nohow
++noise
++noised
++noiseless
++noiselessly
++noiselessness
++noisemaker
++noisemakers
++noises
++noisier
++noisiest
++noisily
++noisiness
++noising
++noisome
++noisy
++nomad
++nomadic
++nomads
++nomenclature
++nomenclatures
++nominal
++nominally
++nominate
++nominated
++nominates
++nominating
++nomination
++nominations
++nominative
++nominatives
++nominator
++nominators
++nominee
++nominees
++non
++nonabrasive
++nonabsorbent
++nonabsorbents
++nonacademic
++nonacceptance
++nonacid
++nonactive
++nonactives
++nonaddictive
++nonadhesive
++nonadjacent
++nonadjustable
++nonadministrative
++nonage
++nonagenarian
++nonagenarians
++nonages
++nonaggression
++nonalcoholic
++nonaligned
++nonalignment
++nonallergic
++nonappearance
++nonappearances
++nonassignable
++nonathletic
++nonattendance
++nonautomotive
++nonavailability
++nonbasic
++nonbeliever
++nonbelievers
++nonbelligerent
++nonbelligerents
++nonbinding
++nonbreakable
++nonburnable
++noncaloric
++noncancerous
++nonce
++nonchalance
++nonchalant
++nonchalantly
++nonchargeable
++nonclerical
++nonclericals
++nonclinical
++noncollectable
++noncom
++noncombat
++noncombatant
++noncombatants
++noncombustible
++noncommercial
++noncommercials
++noncommittal
++noncommittally
++noncommunicable
++noncompeting
++noncompetitive
++noncompliance
++noncomplying
++noncomprehending
++noncoms
++nonconducting
++nonconductor
++nonconductors
++nonconforming
++nonconformism
++nonconformist
++nonconformists
++nonconformity
++nonconsecutive
++nonconstructive
++noncontagious
++noncontinuous
++noncontributing
++noncontributory
++noncontroversial
++nonconvertible
++noncooperation
++noncorroding
++noncorrosive
++noncredit
++noncriminal
++noncriminals
++noncritical
++noncrystalline
++noncumulative
++noncustodial
++nondairy
++nondeductible
++nondeliveries
++nondelivery
++nondemocratic
++nondenominational
++nondepartmental
++nondepreciating
++nondescript
++nondestructive
++nondetachable
++nondisciplinary
++nondisclosure
++nondiscrimination
++nondiscriminatory
++nondramatic
++nondrinker
++nondrinkers
++nondrying
++none
++noneducational
++noneffective
++nonelastic
++nonelectric
++nonelectrical
++nonempty
++nonenforceable
++nonentities
++nonentity
++nonequivalent
++nonequivalents
++nonessential
++nonesuch
++nonesuches
++nonetheless
++nonevent
++nonevents
++nonexchangeable
++nonexclusive
++nonexempt
++nonexistence
++nonexistent
++nonexplosive
++nonexplosives
++nonfactual
++nonfading
++nonfat
++nonfatal
++nonfattening
++nonferrous
++nonfiction
++nonfictional
++nonflammable
++nonflowering
++nonfluctuating
++nonflying
++nonfood
++nonfreezing
++nonfunctional
++nongovernmental
++nongranular
++nonhazardous
++nonhereditary
++nonhuman
++nonidentical
++noninclusive
++nonindependent
++nonindustrial
++noninfectious
++noninflammatory
++noninflationary
++noninflected
++nonintellectual
++nonintellectuals
++noninterchangeable
++noninterference
++nonintervention
++nonintoxicating
++noninvasive
++nonirritating
++nonissue
++nonjudgmental
++nonjudicial
++nonlegal
++nonlethal
++nonlinear
++nonliterary
++nonliving
++nonmagnetic
++nonmalignant
++nonmember
++nonmembers
++nonmetal
++nonmetallic
++nonmetals
++nonmigratory
++nonmilitant
++nonmilitary
++nonnarcotic
++nonnarcotics
++nonnative
++nonnatives
++nonnegotiable
++nonnuclear
++nonnumerical
++nonobjective
++nonobligatory
++nonobservance
++nonobservant
++nonoccupational
++nonoccurence
++nonofficial
++nonoperational
++nonoperative
++nonparallel
++nonparallels
++nonpareil
++nonpareils
++nonparticipant
++nonparticipants
++nonparticipating
++nonpartisan
++nonpartisans
++nonpaying
++nonpayment
++nonpayments
++nonperformance
++nonperforming
++nonperishable
++nonperson
++nonpersons
++nonphysical
++nonphysically
++nonplus
++nonpluses
++nonplussed
++nonplussing
++nonpoisonous
++nonpolitical
++nonpolluting
++nonporous
++nonpracticing
++nonprejudicial
++nonprescription
++nonproductive
++nonprofessional
++nonprofessionals
++nonprofit
++nonprofitable
++nonprofits
++nonproliferation
++nonpublic
++nonpunishable
++nonracial
++nonradioactive
++nonrandom
++nonreactive
++nonreciprocal
++nonreciprocals
++nonreciprocating
++nonrecognition
++nonrecoverable
++nonrecurring
++nonredeemable
++nonrefillable
++nonrefundable
++nonreligious
++nonrenewable
++nonrepresentational
++nonresident
++nonresidential
++nonresidents
++nonresidual
++nonresistance
++nonresistant
++nonrestrictive
++nonreturnable
++nonreturnables
++nonrhythmic
++nonrigid
++nonsalaried
++nonscheduled
++nonscientific
++nonscoring
++nonseasonal
++nonsectarian
++nonsecular
++nonsegregated
++nonsense
++nonsensical
++nonsensically
++nonsensitive
++nonsexist
++nonsexual
++nonskid
++nonslip
++nonsmoker
++nonsmokers
++nonsmoking
++nonsocial
++nonspeaking
++nonspecialist
++nonspecialists
++nonspecializing
++nonspecific
++nonspiritual
++nonspirituals
++nonstaining
++nonstandard
++nonstarter
++nonstarters
++nonstick
++nonstop
++nonstrategic
++nonstriking
++nonstructural
++nonsuccessive
++nonsupport
++nonsupporting
++nonsurgical
++nonsustaining
++nonsympathizer
++nontarnishable
++nontaxable
++nontechnical
++nontenured
++nontheatrical
++nonthinking
++nonthreatening
++nontoxic
++nontraditional
++nontransferable
++nontransparent
++nontrivial
++nontropical
++nonuniform
++nonunion
++nonuser
++nonusers
++nonvenomous
++nonverbal
++nonviable
++nonviolence
++nonviolent
++nonviolently
++nonvirulent
++nonvocal
++nonvocational
++nonvolatile
++nonvoter
++nonvoters
++nonvoting
++nonwhite
++nonwhites
++nonworking
++nonyielding
++nonzero
++noodle
++noodled
++noodles
++noodling
++nook
++nookie
++nooks
++nooky
++noon
++noonday
++noontide
++noontime
++noose
++nooses
++nope
++nor
++norm
++normal
++normalcy
++normality
++normalization
++normalize
++normalized
++normalizes
++normalizing
++normally
++normative
++norms
++north
++northbound
++northeast
++northeaster
++northeasterly
++northeastern
++northeasters
++northeastward
++northeastwards
++norther
++northerlies
++northerly
++northern
++northerner
++northerners
++northernmost
++northers
++northward
++northwards
++northwest
++northwester
++northwesterly
++northwestern
++northwesters
++northwestward
++northwestwards
++nos
++nose
++nosebag
++nosebags
++nosebleed
++nosebleeds
++nosecone
++nosecones
++nosed
++nosedive
++nosedived
++nosedives
++nosediving
++nosegay
++nosegays
++noses
++nosh
++noshed
++nosher
++noshers
++noshes
++noshing
++nosier
++nosiest
++nosily
++nosiness
++nosing
++nostalgia
++nostalgic
++nostalgically
++nostril
++nostrils
++nostrum
++nostrums
++nosy
++not
++notabilities
++notability
++notable
++notables
++notably
++notarial
++notaries
++notarization
++notarize
++notarized
++notarizes
++notarizing
++notary
++notate
++notated
++notates
++notating
++notation
++notations
++notch
++notched
++notches
++notching
++note
++notebook
++notebooks
++noted
++notelet
++notelets
++notepad
++notepads
++notepaper
++notes
++noteworthiness
++noteworthy
++nothing
++nothingness
++nothings
++notice
++noticeable
++noticeably
++noticeboard
++noticeboards
++noticed
++notices
++noticing
++notifiable
++notification
++notifications
++notified
++notifier
++notifiers
++notifies
++notify
++notifying
++noting
++notion
++notional
++notionally
++notions
++notoriety
++notorious
++notoriously
++notwithstanding
++notwork
++notworks
++nougat
++nougats
++noun
++nouns
++nourish
++nourished
++nourishes
++nourishing
++nourishment
++nous
++nova
++novae
++novas
++novel
++novelette
++novelettes
++novelist
++novelists
++novelization
++novelizations
++novelize
++novelized
++novelizes
++novelizing
++novella
++novellas
++novels
++novelties
++novelty
++novena
++novenas
++novene
++novice
++novices
++novitiate
++novitiates
++now
++nowadays
++noway
++noways
++nowhere
++nowise
++nowt
++noxious
++nozzle
++nozzles
++nth
++nu
++nuance
++nuanced
++nuances
++nub
++nubbier
++nubbiest
++nubbin
++nubbins
++nubby
++nubile
++nubs
++nuclear
++nucleate
++nucleated
++nucleates
++nucleating
++nucleation
++nuclei
++nucleic
++nucleoli
++nucleolus
++nucleon
++nucleons
++nucleoside
++nucleotide
++nucleus
++nude
++nuder
++nudes
++nudest
++nudge
++nudged
++nudges
++nudging
++nudism
++nudist
++nudists
++nudity
++nugatory
++nugget
++nuggets
++nuisance
++nuisances
++nuke
++nuked
++nukes
++nuking
++null
++nullification
++nullified
++nullifies
++nullify
++nullifying
++nullity
++nulls
++numb
++numbed
++number
++numbered
++numbering
++numberless
++numbers
++numbest
++numbing
++numbly
++numbness
++numbs
++numerable
++numeracy
++numeral
++numerals
++numerate
++numerated
++numerates
++numerating
++numeration
++numerations
++numerator
++numerators
++numeric
++numerical
++numerically
++numerologist
++numerologists
++numerology
++numerous
++numerously
++numinous
++numismatic
++numismatics
++numismatist
++numismatists
++numskull
++numskulls
++nun
++nuncio
++nuncios
++nunneries
++nunnery
++nuns
++nuptial
++nuptials
++nurse
++nursed
++nurselings
++nursemaid
++nursemaids
++nurser
++nurseries
++nursers
++nursery
++nurseryman
++nurserymen
++nurses
++nursing
++nursling
++nurslings
++nurture
++nurtured
++nurturer
++nurturers
++nurtures
++nurturing
++nus
++nut
++nutcase
++nutcases
++nutcracker
++nutcrackers
++nuthatch
++nuthatches
++nuthouse
++nuthouses
++nutmeat
++nutmeats
++nutmeg
++nutmegs
++nutpick
++nutpicks
++nutria
++nutrias
++nutrient
++nutrients
++nutriment
++nutriments
++nutrition
++nutritional
++nutritionally
++nutritionist
++nutritionists
++nutritious
++nutritiously
++nutritiousness
++nutritive
++nuts
++nutshell
++nutshells
++nutted
++nutter
++nutters
++nuttier
++nuttiest
++nuttiness
++nutting
++nutty
++nuzzle
++nuzzled
++nuzzler
++nuzzlers
++nuzzles
++nuzzling
++nybble
++nybbles
++nylon
++nylons
++nymph
++nymphet
++nymphets
++nympho
++nymphomania
++nymphomaniac
++nymphomaniacs
++nymphos
++nymphs
++o
++oaf
++oafish
++oafishly
++oafishness
++oafs
++oak
++oaken
++oaks
++oakum
++oar
++oared
++oaring
++oarlock
++oarlocks
++oars
++oarsman
++oarsmen
++oarswoman
++oarswomen
++oases
++oasis
++oat
++oatcake
++oatcakes
++oaten
++oath
++oaths
++oatmeal
++oats
++ob
++obbligato
++obbligatos
++obduracy
++obdurate
++obdurately
++obdurateness
++obedience
++obedient
++obediently
++obeisance
++obeisances
++obeisant
++obelisk
++obelisks
++obese
++obesity
++obey
++obeyed
++obeying
++obeys
++obfuscate
++obfuscated
++obfuscates
++obfuscating
++obfuscation
++obfuscations
++obi
++obis
++obit
++obits
++obituaries
++obituary
++obj
++object
++objected
++objectification
++objectified
++objectifies
++objectify
++objectifying
++objecting
++objection
++objectionable
++objectionably
++objections
++objective
++objectively
++objectiveness
++objectives
++objectivity
++objector
++objectors
++objects
++objurgate
++objurgated
++objurgates
++objurgating
++objurgation
++objurgations
++oblate
++oblation
++oblations
++obligate
++obligated
++obligates
++obligating
++obligation
++obligations
++obligatorily
++obligatory
++oblige
++obliged
++obliges
++obliging
++obligingly
++oblique
++obliquely
++obliqueness
++obliques
++obliquity
++obliterate
++obliterated
++obliterates
++obliterating
++obliteration
++oblivion
++oblivious
++obliviously
++obliviousness
++oblong
++oblongs
++obloquy
++obnoxious
++obnoxiously
++obnoxiousness
++oboe
++oboes
++oboist
++oboists
++obs
++obscene
++obscenely
++obscener
++obscenest
++obscenities
++obscenity
++obscurantism
++obscurantist
++obscurantists
++obscure
++obscured
++obscurely
++obscurer
++obscures
++obscurest
++obscuring
++obscurities
++obscurity
++obsequies
++obsequious
++obsequiously
++obsequiousness
++obsequy
++observable
++observably
++observance
++observances
++observant
++observantly
++observation
++observational
++observations
++observatories
++observatory
++observe
++observed
++observer
++observers
++observes
++observing
++obsess
++obsessed
++obsesses
++obsessing
++obsession
++obsessional
++obsessionally
++obsessions
++obsessive
++obsessively
++obsessiveness
++obsessives
++obsidian
++obsolesce
++obsolesced
++obsolescence
++obsolescent
++obsolesces
++obsolescing
++obsolete
++obsoleted
++obsoletes
++obsoleting
++obstacle
++obstacles
++obstetric
++obstetrical
++obstetrician
++obstetricians
++obstetrics
++obstinacy
++obstinate
++obstinately
++obstreperous
++obstreperously
++obstreperousness
++obstruct
++obstructed
++obstructing
++obstruction
++obstructionism
++obstructionist
++obstructionists
++obstructions
++obstructive
++obstructively
++obstructiveness
++obstructs
++obtain
++obtainable
++obtained
++obtaining
++obtainment
++obtains
++obtrude
++obtruded
++obtrudes
++obtruding
++obtrusion
++obtrusive
++obtrusively
++obtrusiveness
++obtuse
++obtusely
++obtuseness
++obtuser
++obtusest
++obverse
++obverses
++obviate
++obviated
++obviates
++obviating
++obviation
++obvious
++obviously
++obviousness
++ocarina
++ocarinas
++occasion
++occasional
++occasionally
++occasioned
++occasioning
++occasions
++occidental
++occidentals
++occlude
++occluded
++occludes
++occluding
++occlusion
++occlusions
++occlusive
++occult
++occultism
++occultist
++occultists
++occupancy
++occupant
++occupants
++occupation
++occupational
++occupationally
++occupations
++occupied
++occupier
++occupiers
++occupies
++occupy
++occupying
++occur
++occurred
++occurrence
++occurrences
++occurring
++occurs
++ocean
++oceanfront
++oceanfronts
++oceangoing
++oceanic
++oceanographer
++oceanographers
++oceanographic
++oceanography
++oceanology
++oceans
++ocelot
++ocelots
++och
++ocher
++ocker
++ockers
++octagon
++octagonal
++octagons
++octal
++octane
++octanes
++octave
++octaves
++octavo
++octavos
++octet
++octets
++octogenarian
++octogenarians
++octopus
++octopuses
++ocular
++oculars
++oculist
++oculists
++oculomotor
++odalisque
++odalisques
++odd
++oddball
++oddballs
++odder
++oddest
++oddities
++oddity
++oddly
++oddment
++oddments
++oddness
++odds
++ode
++odes
++odious
++odiously
++odiousness
++odium
++odometer
++odometers
++odor
++odored
++odoriferous
++odorless
++odorous
++odors
++odyssey
++odysseys
++oedipal
++oenology
++oenophile
++oenophiles
++oeuvre
++oeuvres
++of
++off
++offal
++offbeat
++offbeats
++offed
++offend
++offended
++offender
++offenders
++offending
++offends
++offense
++offenses
++offensive
++offensively
++offensiveness
++offensives
++offer
++offered
++offering
++offerings
++offers
++offertories
++offertory
++offhand
++offhanded
++offhandedly
++offhandedness
++office
++officeholder
++officeholders
++officer
++officers
++offices
++official
++officialdom
++officialese
++officialism
++officially
++officials
++officiant
++officiants
++officiate
++officiated
++officiates
++officiating
++officiator
++officiators
++officious
++officiously
++officiousness
++offing
++offings
++offish
++offline
++offload
++offloaded
++offloading
++offloads
++offprint
++offprints
++offs
++offset
++offsets
++offsetting
++offshoot
++offshoots
++offshore
++offshoring
++offside
++offsite
++offspring
++offstage
++offstages
++offtrack
++oft
++often
++oftener
++oftenest
++oftentimes
++ofttimes
++ogle
++ogled
++ogler
++oglers
++ogles
++ogling
++ogre
++ogreish
++ogres
++ogress
++ogresses
++oh
++ohm
++ohmmeter
++ohmmeters
++ohms
++oho
++ohs
++oi
++oik
++oiks
++oil
++oilcan
++oilcans
++oilcloth
++oilcloths
++oiled
++oilfield
++oilfields
++oilier
++oiliest
++oiliness
++oiling
++oilman
++oilmen
++oils
++oilskin
++oilskins
++oily
++oink
++oinked
++oinking
++oinks
++ointment
++ointments
++okapi
++okapis
++okay
++okaying
++okays
++okra
++okras
++old
++olden
++older
++oldest
++oldie
++oldies
++oldish
++oldness
++oldster
++oldsters
++ole
++oleaginous
++oleander
++oleanders
++oleo
++oleomargarine
++oles
++olfactories
++olfactory
++oligarch
++oligarchic
++oligarchical
++oligarchies
++oligarchs
++oligarchy
++oligonucleotide
++oligonucleotides
++oligopolies
++oligopoly
++olive
++olives
++om
++ombudsman
++ombudsmen
++omega
++omegas
++omelet
++omelets
++omen
++omens
++omicron
++omicrons
++ominous
++ominously
++ominousness
++omission
++omissions
++omit
++omits
++omitted
++omitting
++omnibus
++omnibuses
++omnipotence
++omnipotent
++omnipresence
++omnipresent
++omniscience
++omniscient
++omnivore
++omnivores
++omnivorous
++omnivorously
++omnivorousness
++oms
++on
++onboard
++once
++oncogene
++oncogenes
++oncologist
++oncologists
++oncology
++oncoming
++one
++oneness
++onerous
++onerously
++onerousness
++ones
++oneself
++onetime
++ongoing
++onion
++onions
++onionskin
++online
++onlooker
++onlookers
++onlooking
++only
++onomatopoeia
++onomatopoeic
++onomatopoetic
++onrush
++onrushes
++onrushing
++onscreen
++onset
++onsets
++onshore
++onside
++onsite
++onslaught
++onslaughts
++onstage
++onto
++ontogeny
++ontological
++ontology
++onus
++onuses
++onward
++onyx
++onyxes
++oodles
++ooh
++oohed
++oohing
++oohs
++oomph
++oops
++ooze
++oozed
++oozes
++oozier
++ooziest
++oozing
++oozy
++op
++opacity
++opal
++opalescence
++opalescent
++opals
++opaque
++opaqued
++opaquely
++opaqueness
++opaquer
++opaques
++opaquest
++opaquing
++opcode
++opcodes
++ope
++oped
++open
++opencast
++opened
++opener
++openers
++openest
++openhanded
++openhandedness
++openhearted
++opening
++openings
++openly
++openness
++opens
++openwork
++opera
++operable
++operand
++operands
++operas
++operate
++operated
++operates
++operatic
++operatically
++operating
++operation
++operational
++operationally
++operations
++operative
++operatives
++operator
++operators
++operetta
++operettas
++opes
++ophthalmic
++ophthalmologist
++ophthalmologists
++ophthalmology
++opiate
++opiates
++opine
++opined
++opines
++oping
++opining
++opinion
++opinionated
++opinions
++opium
++opossum
++opossums
++opp
++opponent
++opponents
++opportune
++opportunely
++opportunism
++opportunist
++opportunistic
++opportunistically
++opportunists
++opportunities
++opportunity
++oppose
++opposed
++opposes
++opposing
++opposite
++oppositely
++opposites
++opposition
++oppositions
++oppress
++oppressed
++oppresses
++oppressing
++oppression
++oppressive
++oppressively
++oppressiveness
++oppressor
++oppressors
++opprobrious
++opprobriously
++opprobrium
++ops
++opt
++opted
++optic
++optical
++optically
++optician
++opticians
++optics
++optima
++optimal
++optimally
++optimism
++optimisms
++optimist
++optimistic
++optimistically
++optimists
++optimization
++optimizations
++optimize
++optimized
++optimizer
++optimizes
++optimizing
++optimum
++optimums
++opting
++option
++optional
++optionally
++optioned
++optioning
++options
++optometrist
++optometrists
++optometry
++opts
++opulence
++opulent
++opulently
++opus
++opuses
++or
++oracle
++oracles
++oracular
++oral
++orally
++orals
++orange
++orangeade
++orangeades
++orangeness
++orangeries
++orangery
++oranges
++orangutan
++orangutans
++orate
++orated
++orates
++orating
++oration
++orations
++orator
++oratorical
++oratorically
++oratories
++oratorio
++oratorios
++orators
++oratory
++orb
++orbicular
++orbit
++orbital
++orbitals
++orbited
++orbiter
++orbiters
++orbiting
++orbits
++orbs
++orc
++orchard
++orchards
++orchestra
++orchestral
++orchestras
++orchestrate
++orchestrated
++orchestrates
++orchestrating
++orchestration
++orchestrations
++orchid
++orchids
++orcs
++ordain
++ordained
++ordaining
++ordainment
++ordains
++ordeal
++ordeals
++order
++ordered
++ordering
++orderings
++orderlies
++orderliness
++orderly
++orders
++ordinal
++ordinals
++ordinance
++ordinances
++ordinaries
++ordinarily
++ordinariness
++ordinary
++ordinate
++ordinates
++ordination
++ordinations
++ordnance
++ordure
++ore
++oregano
++ores
++org
++organ
++organdy
++organelle
++organelles
++organic
++organically
++organics
++organism
++organismic
++organisms
++organist
++organists
++organization
++organizational
++organizationally
++organizations
++organize
++organized
++organizer
++organizers
++organizes
++organizing
++organs
++organza
++orgasm
++orgasmic
++orgasms
++orgiastic
++orgies
++orgy
++oriel
++oriels
++orient
++oriental
++orientalist
++orientalists
++orientals
++orientate
++orientated
++orientates
++orientating
++orientation
++orientations
++oriented
++orienteering
++orienting
++orients
++orifice
++orifices
++orig
++origami
++origin
++original
++originality
++originally
++originals
++originate
++originated
++originates
++originating
++origination
++originator
++originators
++origins
++oriole
++orioles
++orison
++orisons
++ormolu
++ornament
++ornamental
++ornamentation
++ornamented
++ornamenting
++ornaments
++ornate
++ornately
++ornateness
++ornerier
++orneriest
++orneriness
++ornery
++ornithological
++ornithologist
++ornithologists
++ornithology
++orotund
++orotundities
++orotundity
++orphan
++orphanage
++orphanages
++orphaned
++orphaning
++orphans
++orris
++orrises
++orthodontia
++orthodontic
++orthodontics
++orthodontist
++orthodontists
++orthodox
++orthodoxies
++orthodoxy
++orthogonal
++orthogonality
++orthographic
++orthographically
++orthographies
++orthography
++orthopedic
++orthopedics
++orthopedist
++orthopedists
++orzo
++oscillate
++oscillated
++oscillates
++oscillating
++oscillation
++oscillations
++oscillator
++oscillators
++oscillatory
++oscilloscope
++oscilloscopes
++osculate
++osculated
++osculates
++osculating
++osculation
++osculations
++osier
++osiers
++osmium
++osmosis
++osmotic
++osprey
++ospreys
++ossification
++ossified
++ossifies
++ossify
++ossifying
++ostensible
++ostensibly
++ostentation
++ostentatious
++ostentatiously
++osteoarthritis
++osteopath
++osteopathic
++osteopaths
++osteopathy
++osteoporosis
++ostler
++ostlers
++ostracism
++ostracize
++ostracized
++ostracizes
++ostracizing
++ostrich
++ostriches
++other
++otherness
++others
++otherwise
++otherworldly
++otiose
++otter
++otters
++ottoman
++ottomans
++oubliette
++oubliettes
++ouch
++ought
++ounce
++ounces
++our
++ours
++ourselves
++oust
++ousted
++ouster
++ousters
++ousting
++ousts
++out
++outage
++outages
++outargue
++outargued
++outargues
++outarguing
++outback
++outbacks
++outbalance
++outbalanced
++outbalances
++outbalancing
++outbid
++outbidding
++outbids
++outboard
++outboards
++outboast
++outboasted
++outboasting
++outboasts
++outbound
++outbox
++outboxes
++outbreak
++outbreaks
++outbuilding
++outbuildings
++outburst
++outbursts
++outcast
++outcasts
++outclass
++outclassed
++outclasses
++outclassing
++outcome
++outcomes
++outcries
++outcrop
++outcropped
++outcropping
++outcroppings
++outcrops
++outcry
++outdated
++outdid
++outdistance
++outdistanced
++outdistances
++outdistancing
++outdo
++outdoes
++outdoing
++outdone
++outdoor
++outdoors
++outdoorsy
++outdraw
++outdrawing
++outdrawn
++outdraws
++outdrew
++outed
++outer
++outermost
++outerwear
++outface
++outfaced
++outfaces
++outfacing
++outfall
++outfalls
++outfield
++outfielder
++outfielders
++outfields
++outfight
++outfighting
++outfights
++outfit
++outfits
++outfitted
++outfitter
++outfitters
++outfitting
++outflank
++outflanked
++outflanking
++outflanks
++outflow
++outflows
++outfought
++outfox
++outfoxed
++outfoxes
++outfoxing
++outgo
++outgoes
++outgoing
++outgoings
++outgrew
++outgrow
++outgrowing
++outgrown
++outgrows
++outgrowth
++outgrowths
++outguess
++outguessed
++outguesses
++outguessing
++outgun
++outgunned
++outgunning
++outguns
++outhit
++outhits
++outhitting
++outhouse
++outhouses
++outing
++outings
++outlaid
++outlandish
++outlandishly
++outlandishness
++outlast
++outlasted
++outlasting
++outlasts
++outlaw
++outlawed
++outlawing
++outlaws
++outlay
++outlaying
++outlays
++outlet
++outlets
++outlier
++outliers
++outline
++outlined
++outlines
++outlining
++outlive
++outlived
++outlives
++outliving
++outlook
++outlooks
++outlying
++outmaneuver
++outmaneuvered
++outmaneuvering
++outmaneuvers
++outmatch
++outmatched
++outmatches
++outmatching
++outmoded
++outnumber
++outnumbered
++outnumbering
++outnumbers
++outpace
++outpaced
++outpaces
++outpacing
++outpatient
++outpatients
++outperform
++outperformed
++outperforming
++outperforms
++outplace
++outplacement
++outplay
++outplayed
++outplaying
++outplays
++outpoint
++outpointed
++outpointing
++outpoints
++outpost
++outposts
++outpouring
++outpourings
++outproduce
++outproduced
++outproduces
++outproducing
++output
++outputs
++outputted
++outputting
++outrace
++outraced
++outraces
++outracing
++outrage
++outraged
++outrageous
++outrageously
++outrages
++outraging
++outran
++outrank
++outranked
++outranking
++outranks
++outre
++outreach
++outreached
++outreaches
++outreaching
++outrider
++outriders
++outrigger
++outriggers
++outright
++outrun
++outrunning
++outruns
++outs
++outscore
++outscored
++outscores
++outscoring
++outsell
++outselling
++outsells
++outset
++outsets
++outshine
++outshines
++outshining
++outshone
++outshout
++outshouted
++outshouting
++outshouts
++outside
++outsider
++outsiders
++outsides
++outsize
++outsizes
++outskirt
++outskirts
++outsmart
++outsmarted
++outsmarting
++outsmarts
++outsold
++outsource
++outsourced
++outsources
++outsourcing
++outspend
++outspending
++outspends
++outspent
++outspoken
++outspokenly
++outspokenness
++outspread
++outspreading
++outspreads
++outstanding
++outstandingly
++outstation
++outstations
++outstay
++outstayed
++outstaying
++outstays
++outstretch
++outstretched
++outstretches
++outstretching
++outstrip
++outstripped
++outstripping
++outstrips
++outta
++outtake
++outtakes
++outvote
++outvoted
++outvotes
++outvoting
++outward
++outwardly
++outwards
++outwear
++outwearing
++outwears
++outweigh
++outweighed
++outweighing
++outweighs
++outwit
++outwith
++outwits
++outwitted
++outwitting
++outwore
++outwork
++outworked
++outworker
++outworkers
++outworking
++outworks
++outworn
++ouzo
++ouzos
++ova
++oval
++ovals
++ovarian
++ovaries
++ovary
++ovate
++ovation
++ovations
++oven
++ovenbird
++ovenbirds
++ovenproof
++ovens
++ovenware
++over
++overabundance
++overabundant
++overachieve
++overachieved
++overachiever
++overachievers
++overachieves
++overachieving
++overact
++overacted
++overacting
++overactive
++overacts
++overage
++overages
++overaggressive
++overall
++overalls
++overambitious
++overanxious
++overarching
++overarm
++overarmed
++overarming
++overarms
++overate
++overattentive
++overawe
++overawed
++overawes
++overawing
++overbalance
++overbalanced
++overbalances
++overbalancing
++overbear
++overbearing
++overbearingly
++overbears
++overbid
++overbidding
++overbids
++overbite
++overbites
++overblown
++overboard
++overbold
++overbook
++overbooked
++overbooking
++overbooks
++overbore
++overborne
++overbought
++overbuild
++overbuilding
++overbuilds
++overbuilt
++overburden
++overburdened
++overburdening
++overburdens
++overbuy
++overbuying
++overbuys
++overcame
++overcapacity
++overcapitalize
++overcapitalized
++overcapitalizes
++overcapitalizing
++overcareful
++overcast
++overcasting
++overcasts
++overcautious
++overcharge
++overcharged
++overcharges
++overcharging
++overclock
++overclocked
++overclocking
++overcloud
++overclouded
++overclouding
++overclouds
++overcoat
++overcoats
++overcome
++overcomes
++overcoming
++overcompensate
++overcompensated
++overcompensates
++overcompensating
++overcompensation
++overconfidence
++overconfident
++overconscientious
++overcook
++overcooked
++overcooking
++overcooks
++overcritical
++overcrowd
++overcrowded
++overcrowding
++overcrowds
++overdecorate
++overdecorated
++overdecorates
++overdecorating
++overdependent
++overdevelop
++overdeveloped
++overdeveloping
++overdevelops
++overdid
++overdo
++overdoes
++overdoing
++overdone
++overdose
++overdosed
++overdoses
++overdosing
++overdraft
++overdrafts
++overdraw
++overdrawing
++overdrawn
++overdraws
++overdress
++overdressed
++overdresses
++overdressing
++overdrew
++overdrive
++overdrives
++overdub
++overdubbed
++overdubbing
++overdubs
++overdue
++overeager
++overeat
++overeaten
++overeating
++overeats
++overemotional
++overemphasis
++overemphasize
++overemphasized
++overemphasizes
++overemphasizing
++overenthusiastic
++overestimate
++overestimated
++overestimates
++overestimating
++overestimation
++overexcite
++overexcited
++overexcites
++overexciting
++overexercise
++overexercised
++overexercises
++overexercising
++overexert
++overexerted
++overexerting
++overexertion
++overexerts
++overexpose
++overexposed
++overexposes
++overexposing
++overexposure
++overextend
++overextended
++overextending
++overextends
++overfed
++overfeed
++overfeeding
++overfeeds
++overfill
++overfilled
++overfilling
++overfills
++overflew
++overflies
++overflight
++overflights
++overflow
++overflowed
++overflowing
++overflown
++overflows
++overfly
++overflying
++overfond
++overfull
++overgeneralize
++overgeneralized
++overgeneralizes
++overgeneralizing
++overgenerous
++overgraze
++overgrazed
++overgrazes
++overgrazing
++overgrew
++overground
++overgrow
++overgrowing
++overgrown
++overgrows
++overgrowth
++overhand
++overhanded
++overhands
++overhang
++overhanging
++overhangs
++overhasty
++overhaul
++overhauled
++overhauling
++overhauls
++overhead
++overheads
++overhear
++overheard
++overhearing
++overhears
++overheat
++overheated
++overheating
++overheats
++overhung
++overindulge
++overindulged
++overindulgence
++overindulgent
++overindulges
++overindulging
++overinflated
++overjoy
++overjoyed
++overjoying
++overjoys
++overkill
++overladen
++overlaid
++overlain
++overland
++overlap
++overlapped
++overlapping
++overlaps
++overlarge
++overlay
++overlaying
++overlays
++overleaf
++overlie
++overlies
++overload
++overloaded
++overloading
++overloads
++overlong
++overlook
++overlooked
++overlooking
++overlooks
++overlord
++overlords
++overly
++overlying
++overmanned
++overmanning
++overmaster
++overmastered
++overmastering
++overmasters
++overmodest
++overmuch
++overmuches
++overnice
++overnight
++overnights
++overoptimism
++overoptimistic
++overpaid
++overparticular
++overpass
++overpasses
++overpay
++overpaying
++overpays
++overplay
++overplayed
++overplaying
++overplays
++overpopulate
++overpopulated
++overpopulates
++overpopulating
++overpopulation
++overpower
++overpowered
++overpowering
++overpoweringly
++overpowers
++overpraise
++overpraised
++overpraises
++overpraising
++overprecise
++overprice
++overpriced
++overprices
++overpricing
++overprint
++overprinted
++overprinting
++overprints
++overproduce
++overproduced
++overproduces
++overproducing
++overproduction
++overprotect
++overprotected
++overprotecting
++overprotective
++overprotects
++overqualified
++overran
++overrate
++overrated
++overrates
++overrating
++overreach
++overreached
++overreaches
++overreaching
++overreact
++overreacted
++overreacting
++overreaction
++overreactions
++overreacts
++overrefined
++overridden
++override
++overrides
++overriding
++overripe
++overrode
++overrule
++overruled
++overrules
++overruling
++overrun
++overrunning
++overruns
++overs
++oversampling
++oversaw
++oversea
++overseas
++oversee
++overseeing
++overseen
++overseer
++overseers
++oversees
++oversell
++overselling
++oversells
++oversensitive
++oversensitiveness
++oversexed
++overshadow
++overshadowed
++overshadowing
++overshadows
++overshare
++overshared
++overshares
++oversharing
++overshoe
++overshoes
++overshoot
++overshooting
++overshoots
++overshot
++oversight
++oversights
++oversimple
++oversimplification
++oversimplifications
++oversimplified
++oversimplifies
++oversimplify
++oversimplifying
++oversize
++oversleep
++oversleeping
++oversleeps
++overslept
++oversold
++overspecialization
++overspecialize
++overspecialized
++overspecializes
++overspecializing
++overspend
++overspending
++overspends
++overspent
++overspread
++overspreading
++overspreads
++overstaffed
++overstate
++overstated
++overstatement
++overstatements
++overstates
++overstating
++overstay
++overstayed
++overstaying
++overstays
++overstep
++overstepped
++overstepping
++oversteps
++overstimulate
++overstimulated
++overstimulates
++overstimulating
++overstock
++overstocked
++overstocking
++overstocks
++overstretch
++overstretched
++overstretches
++overstretching
++overstrict
++overstrung
++overstuffed
++oversubscribe
++oversubscribed
++oversubscribes
++oversubscribing
++oversubtle
++oversupplied
++oversupplies
++oversupply
++oversupplying
++oversuspicious
++overt
++overtake
++overtaken
++overtakes
++overtaking
++overtax
++overtaxed
++overtaxes
++overtaxing
++overthink
++overthinking
++overthinks
++overthought
++overthrew
++overthrow
++overthrowing
++overthrown
++overthrows
++overtime
++overtimes
++overtire
++overtired
++overtires
++overtiring
++overtly
++overtone
++overtones
++overtook
++overture
++overtures
++overturn
++overturned
++overturning
++overturns
++overuse
++overused
++overuses
++overusing
++overvaluation
++overvaluations
++overvalue
++overvalued
++overvalues
++overvaluing
++overview
++overviews
++overweening
++overweeningly
++overweight
++overwhelm
++overwhelmed
++overwhelming
++overwhelmingly
++overwhelms
++overwinter
++overwintered
++overwintering
++overwinters
++overwork
++overworked
++overworking
++overworks
++overwrite
++overwrites
++overwriting
++overwritten
++overwrote
++overwrought
++overzealous
++oviduct
++oviducts
++oviparous
++ovoid
++ovoids
++ovular
++ovulate
++ovulated
++ovulates
++ovulating
++ovulation
++ovule
++ovules
++ovum
++ow
++owe
++owed
++owes
++owing
++owl
++owlet
++owlets
++owlish
++owlishly
++owls
++own
++owned
++owner
++owners
++ownership
++owning
++owns
++ox
++oxblood
++oxbow
++oxbows
++oxcart
++oxcarts
++oxen
++oxford
++oxfords
++oxidant
++oxidants
++oxidase
++oxidation
++oxidative
++oxide
++oxides
++oxidization
++oxidize
++oxidized
++oxidizer
++oxidizers
++oxidizes
++oxidizing
++oxtail
++oxtails
++oxyacetylene
++oxygen
++oxygenate
++oxygenated
++oxygenates
++oxygenating
++oxygenation
++oxymora
++oxymoron
++oyster
++oysters
++oz
++ozone
++p
++pa
++pablum
++pabulum
++pace
++paced
++pacemaker
++pacemakers
++pacer
++pacers
++paces
++pacesetter
++pacesetters
++pacey
++pachyderm
++pachyderms
++pachysandra
++pachysandras
++pacier
++paciest
++pacific
++pacifically
++pacification
++pacified
++pacifier
++pacifiers
++pacifies
++pacifism
++pacifist
++pacifistic
++pacifists
++pacify
++pacifying
++pacing
++pack
++package
++packaged
++packager
++packagers
++packages
++packaging
++packed
++packer
++packers
++packet
++packets
++packing
++packinghouse
++packinghouses
++packs
++packsaddle
++packsaddles
++pact
++pacts
++pacy
++pad
++padded
++paddies
++padding
++paddle
++paddled
++paddler
++paddlers
++paddles
++paddling
++paddock
++paddocked
++paddocking
++paddocks
++paddy
++padlock
++padlocked
++padlocking
++padlocks
++padre
++padres
++pads
++paean
++paeans
++paella
++paellas
++pagan
++paganism
++pagans
++page
++pageant
++pageantry
++pageants
++pageboy
++pageboys
++paged
++pager
++pagers
++pages
++paginate
++paginated
++paginates
++paginating
++pagination
++paging
++pagoda
++pagodas
++pah
++paid
++pail
++pailful
++pailfuls
++pails
++pain
++pained
++painful
++painfuller
++painfullest
++painfully
++painfulness
++paining
++painkiller
++painkillers
++painkilling
++painless
++painlessly
++painlessness
++pains
++painstaking
++painstakingly
++paint
++paintball
++paintbox
++paintboxes
++paintbrush
++paintbrushes
++painted
++painter
++painterly
++painters
++painting
++paintings
++paints
++paintwork
++pair
++paired
++pairing
++pairings
++pairs
++pairwise
++paisley
++paisleys
++pajama
++pajamas
++pal
++palace
++palaces
++paladin
++paladins
++palanquin
++palanquins
++palatable
++palatal
++palatalization
++palatalize
++palatalized
++palatalizes
++palatalizing
++palatals
++palate
++palates
++palatial
++palatially
++palatinate
++palatinates
++palatine
++palatines
++palaver
++palavered
++palavering
++palavers
++palazzi
++palazzo
++pale
++paled
++paleface
++palefaces
++palely
++paleness
++paleographer
++paleographers
++paleography
++paleolithic
++paleontologist
++paleontologists
++paleontology
++paler
++pales
++palest
++palette
++palettes
++palfrey
++palfreys
++palimony
++palimpsest
++palimpsests
++palindrome
++palindromes
++palindromic
++paling
++palings
++palisade
++palisades
++palish
++pall
++palladium
++pallbearer
++pallbearers
++palled
++pallet
++pallets
++palliate
++palliated
++palliates
++palliating
++palliation
++palliative
++palliatives
++pallid
++pallidly
++pallidness
++palling
++pallor
++palls
++pally
++palm
++palmate
++palmed
++palmetto
++palmettos
++palmier
++palmiest
++palming
++palmist
++palmistry
++palmists
++palms
++palmtop
++palmtops
++palmy
++palomino
++palominos
++palpable
++palpably
++palpate
++palpated
++palpates
++palpating
++palpation
++palpitate
++palpitated
++palpitates
++palpitating
++palpitation
++palpitations
++pals
++palsied
++palsies
++palsy
++palsying
++paltrier
++paltriest
++paltriness
++paltry
++pampas
++pamper
++pampered
++pampering
++pampers
++pamphlet
++pamphleteer
++pamphleteers
++pamphlets
++pan
++panacea
++panaceas
++panache
++panama
++panamas
++panatella
++panatellas
++pancake
++pancaked
++pancakes
++pancaking
++panchromatic
++pancreas
++pancreases
++pancreatic
++pancreatitis
++panda
++pandas
++pandemic
++pandemics
++pandemonium
++pander
++pandered
++panderer
++panderers
++pandering
++panders
++pane
++panegyric
++panegyrics
++panel
++paneled
++paneling
++panelings
++panelist
++panelists
++panels
++panes
++pang
++pangs
++panhandle
++panhandled
++panhandler
++panhandlers
++panhandles
++panhandling
++panic
++panicked
++panicking
++panicky
++panics
++panned
++pannier
++panniers
++panning
++panoplies
++panoply
++panorama
++panoramas
++panoramic
++panpipes
++pans
++pansies
++pansy
++pant
++pantaloons
++pantechnicon
++pantechnicons
++panted
++pantheism
++pantheist
++pantheistic
++pantheists
++pantheon
++pantheons
++panther
++panthers
++pantie
++panties
++panting
++panto
++pantomime
++pantomimed
++pantomimes
++pantomimic
++pantomiming
++pantomimist
++pantomimists
++pantos
++pantries
++pantry
++pants
++pantsuit
++pantsuits
++pantyhose
++pantyliner
++pantywaist
++pantywaists
++pap
++papa
++papacies
++papacy
++papal
++paparazzi
++paparazzo
++papas
++papaya
++papayas
++paper
++paperback
++paperbacks
++paperbark
++paperbarks
++paperboard
++paperboy
++paperboys
++paperclip
++paperclips
++papered
++paperer
++paperers
++papergirl
++papergirls
++paperhanger
++paperhangers
++paperhanging
++papering
++paperless
++papers
++paperweight
++paperweights
++paperwork
++papery
++papilla
++papillae
++papillary
++papist
++papists
++papoose
++papooses
++pappies
++pappy
++paprika
++paps
++papyri
++papyrus
++par
++para
++parable
++parables
++parabola
++parabolas
++parabolic
++paracetamol
++paracetamols
++parachute
++parachuted
++parachutes
++parachuting
++parachutist
++parachutists
++parade
++paraded
++parader
++paraders
++parades
++paradigm
++paradigmatic
++paradigms
++parading
++paradisaical
++paradise
++paradises
++paradox
++paradoxes
++paradoxical
++paradoxically
++paraffin
++paragliding
++paragon
++paragons
++paragraph
++paragraphed
++paragraphing
++paragraphs
++parakeet
++parakeets
++paralegal
++paralegals
++parallax
++parallaxes
++parallel
++paralleled
++paralleling
++parallelism
++parallelisms
++parallelogram
++parallelograms
++parallels
++paralyses
++paralysis
++paralytic
++paralytics
++paralyze
++paralyzed
++paralyzes
++paralyzing
++paralyzingly
++paramecia
++paramecium
++paramedic
++paramedical
++paramedicals
++paramedics
++parameter
++parameterize
++parameterized
++parameters
++parametric
++paramilitaries
++paramilitary
++paramount
++paramountcy
++paramour
++paramours
++paranoia
++paranoiac
++paranoiacs
++paranoid
++paranoids
++paranormal
++parapet
++parapets
++paraphernalia
++paraphrase
++paraphrased
++paraphrases
++paraphrasing
++paraplegia
++paraplegic
++paraplegics
++paraprofessional
++paraprofessionals
++parapsychologist
++parapsychologists
++parapsychology
++paraquat
++paras
++parasailing
++parascending
++parasite
++parasites
++parasitic
++parasitical
++parasitically
++parasitism
++parasol
++parasols
++parasympathetic
++parasympathetics
++parathion
++parathyroid
++parathyroids
++paratroop
++paratrooper
++paratroopers
++paratroops
++paratyphoid
++parboil
++parboiled
++parboiling
++parboils
++parcel
++parceled
++parceling
++parcels
++parch
++parched
++parches
++parching
++parchment
++parchments
++pardner
++pardners
++pardon
++pardonable
++pardonably
++pardoned
++pardoner
++pardoners
++pardoning
++pardons
++pare
++pared
++paregoric
++parent
++parentage
++parental
++parented
++parentheses
++parenthesis
++parenthesize
++parenthesized
++parenthesizes
++parenthesizing
++parenthetic
++parenthetical
++parenthetically
++parenthood
++parenting
++parents
++parer
++parers
++pares
++pareses
++paresis
++parfait
++parfaits
++pariah
++pariahs
++parietal
++parimutuel
++parimutuels
++paring
++parings
++parish
++parishes
++parishioner
++parishioners
++parities
++parity
++park
++parka
++parkas
++parked
++parking
++parkland
++parkour
++parks
++parkway
++parkways
++parky
++parlance
++parlay
++parlayed
++parlaying
++parlays
++parley
++parleyed
++parleying
++parleys
++parliament
++parliamentarian
++parliamentarians
++parliamentary
++parliaments
++parlor
++parlors
++parlous
++parmigiana
++parochial
++parochialism
++parochially
++parodied
++parodies
++parodist
++parodists
++parody
++parodying
++parole
++paroled
++parolee
++parolees
++paroles
++paroling
++parotid
++paroxysm
++paroxysmal
++paroxysms
++parquet
++parqueted
++parqueting
++parquetry
++parquets
++parred
++parricidal
++parricide
++parricides
++parried
++parries
++parring
++parrot
++parroted
++parroting
++parrots
++parry
++parrying
++pars
++parse
++parsec
++parsecs
++parsed
++parser
++parses
++parsimonious
++parsimoniously
++parsimony
++parsing
++parsley
++parsnip
++parsnips
++parson
++parsonage
++parsonages
++parsons
++part
++partake
++partaken
++partaker
++partakers
++partakes
++partaking
++parted
++parterre
++parterres
++parthenogenesis
++partial
++partiality
++partially
++partials
++participant
++participants
++participate
++participated
++participates
++participating
++participation
++participator
++participators
++participatory
++participial
++participle
++participles
++particle
++particleboard
++particles
++particular
++particularities
++particularity
++particularization
++particularize
++particularized
++particularizes
++particularizing
++particularly
++particulars
++particulate
++particulates
++partied
++parties
++parting
++partings
++partisan
++partisans
++partisanship
++partition
++partitioned
++partitioning
++partitions
++partitive
++partitives
++partly
++partner
++partnered
++partnering
++partners
++partnership
++partnerships
++partook
++partridge
++partridges
++parts
++parturition
++partway
++party
++partying
++parvenu
++parvenus
++pas
++pascal
++pascals
++paschal
++pasha
++pashas
++pass
++passable
++passably
++passage
++passages
++passageway
++passageways
++passbook
++passbooks
++passe
++passed
++passel
++passels
++passenger
++passengers
++passer
++passerby
++passers
++passersby
++passes
++passim
++passing
++passingly
++passion
++passionate
++passionately
++passionflower
++passionflowers
++passionless
++passions
++passive
++passively
++passiveness
++passives
++passivity
++passivization
++passivize
++passivized
++passivizes
++passivizing
++passkey
++passkeys
++passphrase
++passphrases
++passport
++passports
++password
++passwords
++past
++pasta
++pastas
++paste
++pasteboard
++pasted
++pastel
++pastels
++pastern
++pasterns
++pastes
++pasteurization
++pasteurize
++pasteurized
++pasteurizer
++pasteurizers
++pasteurizes
++pasteurizing
++pastiche
++pastiches
++pastie
++pastier
++pasties
++pastiest
++pastille
++pastilles
++pastime
++pastimes
++pastiness
++pasting
++pastor
++pastoral
++pastorals
++pastorate
++pastorates
++pastors
++pastrami
++pastries
++pastry
++pasts
++pasturage
++pasture
++pastured
++pastureland
++pastures
++pasturing
++pasty
++pat
++patch
++patched
++patches
++patchier
++patchiest
++patchily
++patchiness
++patching
++patchouli
++patchwork
++patchworks
++patchy
++pate
++patella
++patellae
++patellas
++patent
++patented
++patenting
++patently
++patents
++paterfamilias
++paterfamiliases
++paternal
++paternalism
++paternalist
++paternalistic
++paternalists
++paternally
++paternity
++paternoster
++paternosters
++pates
++path
++pathetic
++pathetically
++pathfinder
++pathfinders
++pathless
++pathogen
++pathogenic
++pathogens
++pathological
++pathologically
++pathologist
++pathologists
++pathology
++pathos
++paths
++pathway
++pathways
++patience
++patient
++patienter
++patientest
++patiently
++patients
++patina
++patinas
++patine
++patio
++patios
++patisserie
++patisseries
++patois
++patresfamilias
++patriarch
++patriarchal
++patriarchate
++patriarchates
++patriarchies
++patriarchs
++patriarchy
++patrician
++patricians
++patricide
++patricides
++patrimonial
++patrimonies
++patrimony
++patriot
++patriotic
++patriotically
++patriotism
++patriots
++patrol
++patrolled
++patrolling
++patrolman
++patrolmen
++patrols
++patrolwoman
++patrolwomen
++patron
++patronage
++patronages
++patroness
++patronesses
++patronize
++patronized
++patronizer
++patronizers
++patronizes
++patronizing
++patronizingly
++patrons
++patronymic
++patronymically
++patronymics
++patroon
++patroons
++pats
++patsies
++patsy
++patted
++patter
++pattered
++pattering
++pattern
++patterned
++patterning
++patterns
++patters
++patties
++patting
++patty
++paucity
++paunch
++paunches
++paunchier
++paunchiest
++paunchy
++pauper
++pauperism
++pauperize
++pauperized
++pauperizes
++pauperizing
++paupers
++pause
++paused
++pauses
++pausing
++pave
++paved
++pavement
++pavements
++paves
++pavilion
++pavilions
++paving
++pavings
++pavlova
++pavlovas
++paw
++pawed
++pawing
++pawl
++pawls
++pawn
++pawnbroker
++pawnbrokers
++pawnbroking
++pawned
++pawning
++pawns
++pawnshop
++pawnshops
++pawpaw
++pawpaws
++paws
++pay
++payable
++payback
++paybacks
++paycheck
++paychecks
++payday
++paydays
++payed
++payee
++payees
++payer
++payers
++paying
++payload
++payloads
++paymaster
++paymasters
++payment
++payments
++payoff
++payoffs
++payola
++payout
++payouts
++payphone
++payphones
++payroll
++payrolls
++pays
++payslip
++payslips
++paywall
++paywalls
++payware
++pct
++pd
++pea
++peace
++peaceable
++peaceably
++peaceful
++peacefully
++peacefulness
++peacekeeper
++peacekeepers
++peacekeeping
++peacemaker
++peacemakers
++peacemaking
++peaces
++peacetime
++peach
++peaches
++peachier
++peachiest
++peachy
++peacock
++peacocks
++peafowl
++peafowls
++peahen
++peahens
++peak
++peaked
++peaking
++peaks
++peaky
++peal
++pealed
++pealing
++peals
++peanut
++peanuts
++pear
++pearl
++pearled
++pearlier
++pearliest
++pearling
++pearls
++pearly
++pears
++peas
++peasant
++peasantry
++peasants
++peashooter
++peashooters
++peat
++peatier
++peatiest
++peaty
++pebble
++pebbled
++pebbles
++pebbling
++pebbly
++pecan
++pecans
++peccadillo
++peccadilloes
++peccaries
++peccary
++peck
++pecked
++pecker
++peckers
++pecking
++peckish
++pecks
++pecs
++pectic
++pectin
++pectoral
++pectorals
++peculate
++peculated
++peculates
++peculating
++peculation
++peculator
++peculators
++peculiar
++peculiarities
++peculiarity
++peculiarly
++pecuniary
++pedagogic
++pedagogical
++pedagogically
++pedagogue
++pedagogues
++pedagogy
++pedal
++pedaled
++pedaling
++pedalo
++pedalos
++pedals
++pedant
++pedantic
++pedantically
++pedantry
++pedants
++peddle
++peddled
++peddler
++peddlers
++peddles
++peddling
++pederast
++pederasts
++pederasty
++pedestal
++pedestals
++pedestrian
++pedestrianization
++pedestrianize
++pedestrianized
++pedestrianizes
++pedestrianizing
++pedestrians
++pediatric
++pediatrician
++pediatricians
++pediatrics
++pedicab
++pedicabs
++pedicure
++pedicured
++pedicures
++pedicuring
++pedicurist
++pedicurists
++pedigree
++pedigreed
++pedigrees
++pediment
++pediments
++pedometer
++pedometers
++pedophile
++pedophiles
++pedophilia
++peduncle
++peduncles
++pee
++peed
++peeing
++peek
++peekaboo
++peeked
++peeking
++peeks
++peel
++peeled
++peeler
++peelers
++peeling
++peelings
++peels
++peen
++peens
++peep
++peepbo
++peeped
++peeper
++peepers
++peephole
++peepholes
++peeping
++peeps
++peepshow
++peepshows
++peer
++peerage
++peerages
++peered
++peeress
++peeresses
++peering
++peerless
++peers
++pees
++peeve
++peeved
++peeves
++peeving
++peevish
++peevishly
++peevishness
++peewee
++peewees
++peewit
++peewits
++peg
++pegboard
++pegboards
++pegged
++pegging
++pegs
++peignoir
++peignoirs
++pejoration
++pejorative
++pejoratively
++pejoratives
++peke
++pekes
++pekineses
++pekingese
++pekingeses
++pekoe
++pelagic
++pelf
++pelican
++pelicans
++pellagra
++pellet
++pelleted
++pelleting
++pellets
++pellucid
++pelmet
++pelmets
++pelt
++pelted
++pelting
++pelts
++pelvic
++pelvis
++pelvises
++pemmican
++pen
++penal
++penalization
++penalize
++penalized
++penalizes
++penalizing
++penalties
++penalty
++penance
++penances
++pence
++penchant
++penchants
++pencil
++penciled
++penciling
++pencilings
++pencils
++pend
++pendant
++pendants
++pended
++pendent
++pendents
++pending
++pends
++pendulous
++pendulum
++pendulums
++penetrability
++penetrable
++penetrate
++penetrated
++penetrates
++penetrating
++penetratingly
++penetration
++penetrations
++penetrative
++penfriend
++penfriends
++penguin
++penguins
++penicillin
++penile
++peninsula
++peninsular
++peninsulas
++penis
++penises
++penitence
++penitent
++penitential
++penitentiaries
++penitentiary
++penitently
++penitents
++penknife
++penknives
++penlight
++penlights
++penman
++penmanship
++penmen
++pennant
++pennants
++penned
++pennies
++penniless
++penning
++pennon
++pennons
++penny
++pennyweight
++pennyweights
++pennyworth
++penologist
++penologists
++penology
++pens
++pension
++pensionable
++pensioned
++pensioner
++pensioners
++pensioning
++pensions
++pensive
++pensively
++pensiveness
++pent
++pentacle
++pentacles
++pentagon
++pentagonal
++pentagons
++pentagram
++pentagrams
++pentameter
++pentameters
++pentathlete
++pentathletes
++pentathlon
++pentathlons
++penthouse
++penthouses
++penuche
++penultimate
++penultimates
++penumbra
++penumbrae
++penumbras
++penurious
++penuriously
++penuriousness
++penury
++peon
++peonage
++peonies
++peons
++peony
++people
++peopled
++peoples
++peopling
++pep
++pepped
++pepper
++peppercorn
++peppercorns
++peppered
++peppering
++peppermint
++peppermints
++pepperoni
++pepperonis
++peppers
++peppery
++peppier
++peppiest
++peppiness
++pepping
++peppy
++peps
++pepsin
++peptic
++peptics
++peptide
++peptides
++per
++peradventure
++perambulate
++perambulated
++perambulates
++perambulating
++perambulation
++perambulations
++perambulator
++perambulators
++percale
++percales
++perceivable
++perceive
++perceived
++perceives
++perceiving
++percent
++percentage
++percentages
++percentile
++percentiles
++percents
++perceptible
++perceptibly
++perception
++perceptional
++perceptions
++perceptive
++perceptively
++perceptiveness
++perceptual
++perceptually
++perch
++perchance
++perched
++perches
++perching
++percipience
++percipient
++percolate
++percolated
++percolates
++percolating
++percolation
++percolator
++percolators
++percussion
++percussionist
++percussionists
++percussive
++perdition
++perdurable
++peregrinate
++peregrinated
++peregrinates
++peregrinating
++peregrination
++peregrinations
++peregrine
++peregrines
++peremptorily
++peremptory
++perennial
++perennially
++perennials
++perestroika
++perfect
++perfecta
++perfectas
++perfected
++perfecter
++perfectest
++perfectibility
++perfectible
++perfecting
++perfection
++perfectionism
++perfectionist
++perfectionists
++perfections
++perfectly
++perfectness
++perfects
++perfidies
++perfidious
++perfidiously
++perfidy
++perforate
++perforated
++perforates
++perforating
++perforation
++perforations
++perforce
++perform
++performance
++performances
++performative
++performed
++performer
++performers
++performing
++performs
++perfume
++perfumed
++perfumer
++perfumeries
++perfumers
++perfumery
++perfumes
++perfuming
++perfunctorily
++perfunctory
++perfusion
++pergola
++pergolas
++perhaps
++pericardia
++pericardial
++pericarditis
++pericardium
++perigee
++perigees
++perihelia
++perihelion
++peril
++periled
++periling
++perilous
++perilously
++perils
++perimeter
++perimeters
++perinatal
++perinea
++perineum
++period
++periodic
++periodical
++periodically
++periodicals
++periodicity
++periodontal
++periodontics
++periodontist
++periodontists
++periods
++peripatetic
++peripatetics
++peripheral
++peripherally
++peripherals
++peripheries
++periphery
++periphrases
++periphrasis
++periphrastic
++periscope
++periscopes
++perish
++perishable
++perishables
++perished
++perisher
++perishers
++perishes
++perishing
++peristalses
++peristalsis
++peristaltic
++peristyle
++peristyles
++peritoneal
++peritoneum
++peritoneums
++peritonitis
++periwig
++periwigs
++periwinkle
++periwinkles
++perjure
++perjured
++perjurer
++perjurers
++perjures
++perjuries
++perjuring
++perjury
++perk
++perked
++perkier
++perkiest
++perkily
++perkiness
++perking
++perks
++perky
++perm
++permafrost
++permanence
++permanency
++permanent
++permanently
++permanents
++permeability
++permeable
++permeate
++permeated
++permeates
++permeating
++permeation
++permed
++perming
++permissible
++permissibly
++permission
++permissions
++permissive
++permissively
++permissiveness
++permit
++permits
++permitted
++permitting
++perms
++permutation
++permutations
++permute
++permuted
++permutes
++permuting
++pernicious
++perniciously
++perniciousness
++peroration
++perorations
++peroxide
++peroxided
++peroxides
++peroxiding
++perpendicular
++perpendicularity
++perpendicularly
++perpendiculars
++perpetrate
++perpetrated
++perpetrates
++perpetrating
++perpetration
++perpetrator
++perpetrators
++perpetual
++perpetually
++perpetuals
++perpetuate
++perpetuated
++perpetuates
++perpetuating
++perpetuation
++perpetuity
++perplex
++perplexed
++perplexedly
++perplexes
++perplexing
++perplexingly
++perplexities
++perplexity
++perquisite
++perquisites
++persecute
++persecuted
++persecutes
++persecuting
++persecution
++persecutions
++persecutor
++persecutors
++perseverance
++persevere
++persevered
++perseveres
++persevering
++persiflage
++persimmon
++persimmons
++persist
++persisted
++persistence
++persistent
++persistently
++persisting
++persists
++persnickety
++person
++persona
++personable
++personae
++personage
++personages
++personal
++personalities
++personality
++personalize
++personalized
++personalizes
++personalizing
++personally
++personals
++personalty
++personas
++personification
++personifications
++personified
++personifies
++personify
++personifying
++personnel
++persons
++perspective
++perspectives
++perspex
++perspicacious
++perspicaciously
++perspicacity
++perspicuity
++perspicuous
++perspiration
++perspire
++perspired
++perspires
++perspiring
++persuadable
++persuade
++persuaded
++persuader
++persuaders
++persuades
++persuading
++persuasion
++persuasions
++persuasive
++persuasively
++persuasiveness
++pert
++pertain
++pertained
++pertaining
++pertains
++perter
++pertest
++pertinacious
++pertinaciously
++pertinacity
++pertinence
++pertinent
++pertinently
++pertly
++pertness
++perturb
++perturbation
++perturbations
++perturbed
++perturbing
++perturbs
++pertussis
++peruke
++perukes
++perusal
++perusals
++peruse
++perused
++peruses
++perusing
++perv
++pervade
++pervaded
++pervades
++pervading
++pervasive
++pervasively
++pervasiveness
++perverse
++perversely
++perverseness
++perversion
++perversions
++perversity
++pervert
++perverted
++perverting
++perverts
++pervs
++peseta
++pesetas
++peskier
++peskiest
++peskily
++peskiness
++pesky
++peso
++pesos
++pessaries
++pessary
++pessimal
++pessimism
++pessimist
++pessimistic
++pessimistically
++pessimists
++pest
++pester
++pestered
++pestering
++pesters
++pesticide
++pesticides
++pestiferous
++pestilence
++pestilences
++pestilent
++pestilential
++pestle
++pestled
++pestles
++pestling
++pesto
++pests
++pet
++petabyte
++petabytes
++petal
++petaled
++petals
++petard
++petards
++petcock
++petcocks
++peter
++petered
++petering
++peters
++petiole
++petioles
++petite
++petites
++petition
++petitioned
++petitioner
++petitioners
++petitioning
++petitions
++petrel
++petrels
++petrifaction
++petrified
++petrifies
++petrify
++petrifying
++petrochemical
++petrochemicals
++petrodollar
++petrodollars
++petrol
++petrolatum
++petroleum
++petrologist
++petrologists
++petrology
++pets
++petted
++petticoat
++petticoats
++pettier
++pettiest
++pettifog
++pettifogged
++pettifogger
++pettifoggers
++pettifoggery
++pettifogging
++pettifogs
++pettily
++pettiness
++petting
++pettish
++pettishly
++petty
++petulance
++petulant
++petulantly
++petunia
++petunias
++pew
++pewee
++pewees
++pewit
++pewits
++pews
++pewter
++pewters
++peyote
++pf
++pfennig
++pfennigs
++pg
++phaeton
++phaetons
++phage
++phages
++phagocyte
++phagocytes
++phalanger
++phalangers
++phalanges
++phalanx
++phalanxes
++phalli
++phallic
++phallocentric
++phallocentrism
++phallus
++phantasm
++phantasmagoria
++phantasmagorias
++phantasmagorical
++phantasmal
++phantasms
++phantom
++phantoms
++pharaoh
++pharaohs
++pharisaic
++pharisee
++pharisees
++pharmaceutic
++pharmaceutical
++pharmaceuticals
++pharmaceutics
++pharmacies
++pharmacist
++pharmacists
++pharmacologic
++pharmacological
++pharmacologist
++pharmacologists
++pharmacology
++pharmacopoeia
++pharmacopoeias
++pharmacy
++pharyngeal
++pharynges
++pharyngitis
++pharynx
++phase
++phased
++phaseout
++phaseouts
++phases
++phasing
++phat
++pheasant
++pheasants
++phenacetin
++phenobarbital
++phenol
++phenom
++phenomena
++phenomenal
++phenomenally
++phenomenological
++phenomenology
++phenomenon
++phenomenons
++phenoms
++phenotype
++pheromone
++pheromones
++phew
++phi
++phial
++phials
++philander
++philandered
++philanderer
++philanderers
++philandering
++philanders
++philanthropic
++philanthropically
++philanthropies
++philanthropist
++philanthropists
++philanthropy
++philatelic
++philatelist
++philatelists
++philately
++philharmonic
++philharmonics
++philippic
++philippics
++philistine
++philistines
++philistinism
++philodendron
++philodendrons
++philological
++philologist
++philologists
++philology
++philosopher
++philosophers
++philosophic
++philosophical
++philosophically
++philosophies
++philosophize
++philosophized
++philosophizer
++philosophizers
++philosophizes
++philosophizing
++philosophy
++philter
++philters
++phis
++phish
++phished
++phisher
++phishers
++phishing
++phlebitis
++phlegm
++phlegmatic
++phlegmatically
++phloem
++phlox
++phobia
++phobias
++phobic
++phobics
++phoebe
++phoebes
++phoenix
++phoenixes
++phone
++phonecard
++phonecards
++phoned
++phoneme
++phonemes
++phonemic
++phonemically
++phones
++phonetic
++phonetically
++phonetician
++phoneticians
++phonetics
++phoneyed
++phoneying
++phonic
++phonically
++phonics
++phonied
++phonier
++phonies
++phoniest
++phoniness
++phoning
++phonograph
++phonographic
++phonographs
++phonological
++phonologically
++phonologist
++phonologists
++phonology
++phony
++phonying
++phooey
++phosphate
++phosphates
++phosphodiesterase
++phosphor
++phosphorescence
++phosphorescent
++phosphorescently
++phosphoric
++phosphorous
++phosphors
++phosphorus
++phosphorylation
++photo
++photocell
++photocells
++photocopied
++photocopier
++photocopiers
++photocopies
++photocopy
++photocopying
++photoed
++photoelectric
++photoelectrically
++photoengrave
++photoengraved
++photoengraver
++photoengravers
++photoengraves
++photoengraving
++photoengravings
++photofinishing
++photogenic
++photogenically
++photograph
++photographed
++photographer
++photographers
++photographic
++photographically
++photographing
++photographs
++photography
++photoing
++photojournalism
++photojournalist
++photojournalists
++photometer
++photometers
++photon
++photons
++photos
++photosensitive
++photostat
++photostatic
++photostats
++photostatted
++photostatting
++photosynthesis
++photosynthesize
++photosynthesized
++photosynthesizes
++photosynthesizing
++photosynthetic
++phototropic
++phototropism
++phototypesetter
++phototypesetting
++phrasal
++phrase
++phrasebook
++phrasebooks
++phrased
++phraseology
++phrases
++phrasing
++phrasings
++phreaking
++phrenologist
++phrenologists
++phrenology
++phyla
++phylacteries
++phylactery
++phylogeny
++phylum
++phys
++physic
++physical
++physicality
++physically
++physicals
++physician
++physicians
++physicist
++physicists
++physicked
++physicking
++physics
++physio
++physiognomies
++physiognomy
++physiography
++physiologic
++physiological
++physiologically
++physiologist
++physiologists
++physiology
++physios
++physiotherapist
++physiotherapists
++physiotherapy
++physique
++physiques
++pi
++pianissimo
++pianissimos
++pianist
++pianists
++piano
++pianoforte
++pianofortes
++pianola
++pianolas
++pianos
++piaster
++piasters
++piazza
++piazzas
++pibroch
++pibrochs
++pic
++pica
++picador
++picadors
++picante
++picaresque
++picayune
++piccalilli
++piccolo
++piccolos
++pick
++pickax
++pickaxed
++pickaxes
++pickaxing
++picked
++picker
++pickerel
++pickerels
++pickers
++picket
++picketed
++picketer
++picketers
++picketing
++pickets
++pickier
++pickiest
++pickiness
++picking
++pickings
++pickle
++pickled
++pickles
++pickling
++pickpocket
++pickpockets
++picks
++pickup
++pickups
++picky
++picnic
++picnicked
++picnicker
++picnickers
++picnicking
++picnics
++picot
++picots
++pics
++pictogram
++pictograms
++pictograph
++pictographs
++pictorial
++pictorially
++pictorials
++picture
++pictured
++pictures
++picturesque
++picturesquely
++picturesqueness
++picturing
++piddle
++piddled
++piddles
++piddling
++piddly
++pidgin
++pidgins
++pie
++piebald
++piebalds
++piece
++pieced
++piecemeal
++pieces
++piecework
++pieceworker
++pieceworkers
++piecing
++piecrust
++piecrusts
++pied
++pieing
++pier
++pierce
++pierced
++pierces
++piercing
++piercingly
++piercings
++piers
++pies
++piety
++piezoelectric
++piffle
++piffling
++pig
++pigeon
++pigeonhole
++pigeonholed
++pigeonholes
++pigeonholing
++pigeons
++pigged
++piggeries
++piggery
++piggier
++piggies
++piggiest
++pigging
++piggish
++piggishly
++piggishness
++piggy
++piggyback
++piggybacked
++piggybacking
++piggybacks
++pigheaded
++pigheadedly
++pigheadedness
++piglet
++piglets
++pigment
++pigmentation
++pigmented
++pigments
++pigpen
++pigpens
++pigs
++pigskin
++pigskins
++pigsties
++pigsty
++pigswill
++pigtail
++pigtails
++piing
++pike
++piked
++piker
++pikers
++pikes
++pikestaff
++pikestaffs
++piking
++pilaf
++pilafs
++pilaster
++pilasters
++pilchard
++pilchards
++pile
++piled
++piles
++pileup
++pileups
++pilfer
++pilferage
++pilfered
++pilferer
++pilferers
++pilfering
++pilfers
++pilgrim
++pilgrimage
++pilgrimages
++pilgrims
++piling
++pilings
++pill
++pillage
++pillaged
++pillager
++pillagers
++pillages
++pillaging
++pillar
++pillared
++pillars
++pillbox
++pillboxes
++pilled
++pilling
++pillion
++pillions
++pillock
++pillocks
++pilloried
++pillories
++pillory
++pillorying
++pillow
++pillowcase
++pillowcases
++pillowed
++pillowing
++pillows
++pillowslip
++pillowslips
++pills
++pilot
++piloted
++pilothouse
++pilothouses
++piloting
++pilots
++pimento
++pimentos
++pimiento
++pimientos
++pimp
++pimped
++pimpernel
++pimpernels
++pimping
++pimple
++pimpled
++pimples
++pimplier
++pimpliest
++pimply
++pimps
++pin
++pinafore
++pinafores
++pinata
++pinatas
++pinball
++pincer
++pincers
++pinch
++pinched
++pinches
++pinching
++pincushion
++pincushions
++pine
++pineapple
++pineapples
++pined
++pines
++pinewood
++pinewoods
++piney
++pinfeather
++pinfeathers
++ping
++pinged
++pinging
++pings
++pinhead
++pinheads
++pinhole
++pinholes
++pinier
++piniest
++pining
++pinion
++pinioned
++pinioning
++pinions
++pink
++pinked
++pinker
++pinkest
++pinkeye
++pinkie
++pinkies
++pinking
++pinkish
++pinkness
++pinko
++pinkos
++pinks
++pinnacle
++pinnacles
++pinnate
++pinned
++pinnies
++pinning
++pinny
++pinochle
++pinon
++pinons
++pinpoint
++pinpointed
++pinpointing
++pinpoints
++pinprick
++pinpricks
++pins
++pinsetter
++pinsetters
++pinstripe
++pinstriped
++pinstripes
++pint
++pinto
++pintos
++pints
++pinup
++pinups
++pinwheel
++pinwheeled
++pinwheeling
++pinwheels
++pinyin
++pinyon
++pinyons
++pioneer
++pioneered
++pioneering
++pioneers
++pious
++piously
++piousness
++pip
++pipe
++piped
++pipeline
++pipelines
++piper
++pipers
++pipes
++pipette
++pipettes
++pipework
++piping
++pipit
++pipits
++pipped
++pippin
++pipping
++pippins
++pips
++pipsqueak
++pipsqueaks
++piquancy
++piquant
++piquantly
++pique
++piqued
++piques
++piquing
++piracy
++piranha
++piranhas
++pirate
++pirated
++pirates
++piratical
++piratically
++pirating
++pirogi
++piroshki
++pirouette
++pirouetted
++pirouettes
++pirouetting
++pis
++piscatorial
++pismire
++pismires
++piss
++pissed
++pisser
++pissers
++pisses
++pissing
++pissoir
++pissoirs
++pistachio
++pistachios
++piste
++pistes
++pistil
++pistillate
++pistils
++pistol
++pistols
++piston
++pistons
++pit
++pita
++pitapat
++pitapats
++pitas
++pitch
++pitchblende
++pitched
++pitcher
++pitchers
++pitches
++pitchfork
++pitchforked
++pitchforking
++pitchforks
++pitching
++pitchman
++pitchmen
++piteous
++piteously
++piteousness
++pitfall
++pitfalls
++pith
++pithead
++pitheads
++pithier
++pithiest
++pithily
++pithiness
++pithy
++pitiable
++pitiably
++pitied
++pities
++pitiful
++pitifully
++pitiless
++pitilessly
++pitilessness
++piton
++pitons
++pits
++pitta
++pittance
++pittances
++pittas
++pitted
++pitting
++pituitaries
++pituitary
++pity
++pitying
++pityingly
++pivot
++pivotal
++pivoted
++pivoting
++pivots
++pix
++pixel
++pixels
++pixie
++pixies
++pizza
++pizzas
++pizzazz
++pizzeria
++pizzerias
++pizzicati
++pizzicato
++pk
++pkg
++pkt
++pkwy
++pl
++placard
++placarded
++placarding
++placards
++placate
++placated
++placates
++placating
++placation
++placatory
++place
++placebo
++placebos
++placed
++placeholder
++placeholders
++placekick
++placekicked
++placekicker
++placekickers
++placekicking
++placekicks
++placement
++placements
++placenta
++placental
++placentals
++placentas
++placer
++placers
++places
++placid
++placidity
++placidly
++placing
++placings
++placket
++plackets
++plagiarism
++plagiarisms
++plagiarist
++plagiarists
++plagiarize
++plagiarized
++plagiarizer
++plagiarizers
++plagiarizes
++plagiarizing
++plagiary
++plague
++plagued
++plagues
++plaguing
++plaice
++plaid
++plaids
++plain
++plainchant
++plainclothes
++plainclothesman
++plainclothesmen
++plainer
++plainest
++plainly
++plainness
++plains
++plainsman
++plainsmen
++plainsong
++plainspoken
++plaint
++plaintiff
++plaintiffs
++plaintive
++plaintively
++plaints
++plait
++plaited
++plaiting
++plaits
++plan
++planar
++plane
++planed
++planeload
++planeloads
++planer
++planers
++planes
++planet
++planetarium
++planetariums
++planetary
++planets
++plangency
++plangent
++planing
++plank
++planked
++planking
++planks
++plankton
++planned
++planner
++planners
++planning
++plannings
++plans
++plant
++plantain
++plantains
++plantar
++plantation
++plantations
++planted
++planter
++planters
++planting
++plantings
++plantlike
++plants
++plaque
++plaques
++plash
++plashed
++plashes
++plashing
++plasma
++plaster
++plasterboard
++plastered
++plasterer
++plasterers
++plastering
++plasters
++plastic
++plasticity
++plasticize
++plasticized
++plasticizes
++plasticizing
++plastics
++plastique
++plat
++plate
++plateau
++plateaued
++plateauing
++plateaus
++plated
++plateful
++platefuls
++platelet
++platelets
++platen
++platens
++plates
++platform
++platformed
++platforming
++platforms
++plating
++platinum
++platitude
++platitudes
++platitudinous
++platonic
++platoon
++platooned
++platooning
++platoons
++plats
++platted
++platter
++platters
++platting
++platy
++platypus
++platypuses
++platys
++plaudit
++plaudits
++plausibility
++plausible
++plausibly
++play
++playable
++playact
++playacted
++playacting
++playacts
++playback
++playbacks
++playbill
++playbills
++playbook
++playbooks
++playboy
++playboys
++played
++player
++players
++playfellow
++playfellows
++playful
++playfully
++playfulness
++playgirl
++playgirls
++playgoer
++playgoers
++playground
++playgrounds
++playgroup
++playgroups
++playhouse
++playhouses
++playing
++playlist
++playlists
++playmate
++playmates
++playoff
++playoffs
++playpen
++playpens
++playroom
++playrooms
++plays
++playschool
++playschools
++plaything
++playthings
++playtime
++playwright
++playwrights
++plaza
++plazas
++plea
++plead
++pleaded
++pleader
++pleaders
++pleading
++pleadingly
++pleadings
++pleads
++pleas
++pleasant
++pleasanter
++pleasantest
++pleasantly
++pleasantness
++pleasantries
++pleasantry
++please
++pleased
++pleases
++pleasing
++pleasingly
++pleasings
++pleasurable
++pleasurably
++pleasure
++pleasured
++pleasureful
++pleasures
++pleasuring
++pleat
++pleated
++pleating
++pleats
++pleb
++plebby
++plebe
++plebeian
++plebeians
++plebes
++plebiscite
++plebiscites
++plebs
++plectra
++plectrum
++plectrums
++pledge
++pledged
++pledges
++pledging
++plenaries
++plenary
++plenipotentiaries
++plenipotentiary
++plenitude
++plenitudes
++plenteous
++plentiful
++plentifully
++plenty
++plenum
++plenums
++pleonasm
++pleonasms
++plethora
++pleura
++pleurae
++pleurisy
++plexus
++plexuses
++pliability
++pliable
++pliancy
++pliant
++pliantly
++plied
++pliers
++plies
++plight
++plighted
++plighting
++plights
++plimsoll
++plimsolls
++plinth
++plinths
++plod
++plodded
++plodder
++plodders
++plodding
++ploddings
++plods
++plonk
++plonked
++plonker
++plonkers
++plonking
++plonks
++plop
++plopped
++plopping
++plops
++plosive
++plosives
++plot
++plots
++plotted
++plotter
++plotters
++plotting
++plover
++plovers
++plow
++plowed
++plowing
++plowman
++plowmen
++plows
++plowshare
++plowshares
++ploy
++ploys
++pluck
++plucked
++pluckier
++pluckiest
++pluckily
++pluckiness
++plucking
++plucks
++plucky
++plug
++plugged
++plugging
++plughole
++plugholes
++plugin
++plugins
++plugs
++plum
++plumage
++plumb
++plumbed
++plumber
++plumbers
++plumbing
++plumbings
++plumbs
++plume
++plumed
++plumes
++plumier
++plumiest
++pluming
++plummet
++plummeted
++plummeting
++plummets
++plummy
++plump
++plumped
++plumper
++plumpest
++plumping
++plumply
++plumpness
++plumps
++plums
++plumy
++plunder
++plundered
++plunderer
++plunderers
++plundering
++plunders
++plunge
++plunged
++plunger
++plungers
++plunges
++plunging
++plunk
++plunked
++plunking
++plunks
++pluperfect
++pluperfects
++plural
++pluralism
++pluralist
++pluralistic
++pluralists
++pluralities
++plurality
++pluralization
++pluralize
++pluralized
++pluralizes
++pluralizing
++plurals
++plus
++pluses
++plush
++plusher
++plushest
++plushier
++plushiest
++plushly
++plushness
++plushy
++plutocracies
++plutocracy
++plutocrat
++plutocratic
++plutocrats
++plutonium
++pluvial
++ply
++plying
++plywood
++pm
++pneumatic
++pneumatically
++pneumococcal
++pneumococci
++pneumococcus
++pneumonia
++poach
++poached
++poacher
++poachers
++poaches
++poaching
++pock
++pocked
++pocket
++pocketbook
++pocketbooks
++pocketed
++pocketful
++pocketfuls
++pocketing
++pocketknife
++pocketknives
++pockets
++pocking
++pockmark
++pockmarked
++pockmarking
++pockmarks
++pocks
++pod
++podcast
++podcasting
++podcasts
++podded
++podding
++podiatrist
++podiatrists
++podiatry
++podium
++podiums
++pods
++poem
++poems
++poesy
++poet
++poetaster
++poetasters
++poetess
++poetesses
++poetic
++poetical
++poetically
++poetics
++poetry
++poets
++pogrom
++pogroms
++poi
++poignancy
++poignant
++poignantly
++poinciana
++poincianas
++poinsettia
++poinsettias
++point
++pointblank
++pointed
++pointedly
++pointer
++pointers
++pointier
++pointiest
++pointillism
++pointillist
++pointillists
++pointing
++pointless
++pointlessly
++pointlessness
++points
++pointy
++poise
++poised
++poises
++poising
++poison
++poisoned
++poisoner
++poisoners
++poisoning
++poisonings
++poisonous
++poisonously
++poisons
++poke
++poked
++poker
++pokers
++pokes
++pokey
++pokeys
++pokier
++pokiest
++poking
++poky
++pol
++polar
++polarities
++polarity
++polarization
++polarize
++polarized
++polarizes
++polarizing
++pole
++poleaxe
++poleaxed
++poleaxes
++poleaxing
++polecat
++polecats
++poled
++polemic
++polemical
++polemically
++polemicist
++polemicists
++polemics
++poles
++polestar
++polestars
++police
++policed
++policeman
++policemen
++polices
++policewoman
++policewomen
++policies
++policing
++policy
++policyholder
++policyholders
++policymaker
++policymakers
++poling
++polio
++poliomyelitis
++polios
++polish
++polished
++polisher
++polishers
++polishes
++polishing
++politburo
++politburos
++polite
++politely
++politeness
++politer
++politesse
++politest
++politic
++political
++politically
++politician
++politicians
++politicization
++politicize
++politicized
++politicizes
++politicizing
++politicking
++politico
++politicos
++politics
++polities
++polity
++polka
++polkaed
++polkaing
++polkas
++poll
++pollack
++pollacks
++pollard
++pollards
++polled
++pollen
++pollinate
++pollinated
++pollinates
++pollinating
++pollination
++pollinator
++pollinators
++polling
++polliwog
++polliwogs
++polls
++pollster
++pollsters
++pollutant
++pollutants
++pollute
++polluted
++polluter
++polluters
++pollutes
++polluting
++pollution
++polo
++polonaise
++polonaises
++polonium
++pols
++poltergeist
++poltergeists
++poltroon
++poltroons
++poly
++polyacrylamide
++polyamories
++polyamory
++polyandrous
++polyandry
++polyclinic
++polyclinics
++polyester
++polyesters
++polyethylene
++polygamist
++polygamists
++polygamous
++polygamy
++polyglot
++polyglots
++polygon
++polygonal
++polygons
++polygraph
++polygraphed
++polygraphing
++polygraphs
++polyhedral
++polyhedron
++polyhedrons
++polymath
++polymaths
++polymer
++polymeric
++polymerization
++polymerize
++polymerized
++polymerizes
++polymerizing
++polymers
++polymorphic
++polymorphous
++polynomial
++polynomials
++polyp
++polyphonic
++polyphony
++polypropylene
++polyps
++polys
++polysemous
++polystyrene
++polysyllabic
++polysyllable
++polysyllables
++polytechnic
++polytechnics
++polytheism
++polytheist
++polytheistic
++polytheists
++polythene
++polyunsaturate
++polyunsaturated
++polyunsaturates
++polyurethane
++polyurethanes
++polyvinyl
++pom
++pomade
++pomaded
++pomades
++pomading
++pomander
++pomanders
++pomegranate
++pomegranates
++pommel
++pommeled
++pommeling
++pommels
++pommies
++pommy
++pomp
++pompadour
++pompadoured
++pompadours
++pompano
++pompanos
++pompom
++pompoms
++pomposity
++pompous
++pompously
++pompousness
++poms
++ponce
++ponced
++ponces
++poncho
++ponchos
++poncing
++poncy
++pond
++ponder
++pondered
++ponderer
++ponderers
++pondering
++ponderous
++ponderously
++ponderousness
++ponders
++ponds
++pone
++pones
++pong
++ponged
++pongee
++ponging
++pongs
++poniard
++poniards
++ponied
++ponies
++pontiff
++pontiffs
++pontifical
++pontifically
++pontificate
++pontificated
++pontificates
++pontificating
++pontoon
++pontoons
++pony
++ponying
++ponytail
++ponytails
++poo
++pooch
++pooched
++pooches
++pooching
++poodle
++poodles
++pooed
++poof
++poofs
++poofter
++poofters
++pooh
++poohed
++poohing
++poohs
++pooing
++pool
++pooled
++pooling
++poolroom
++poolrooms
++pools
++poolside
++poolsides
++poop
++pooped
++pooping
++poops
++poor
++poorboy
++poorer
++poorest
++poorhouse
++poorhouses
++poorly
++poorness
++poos
++pop
++popcorn
++pope
++popes
++popgun
++popguns
++popinjay
++popinjays
++poplar
++poplars
++poplin
++popover
++popovers
++poppa
++poppadom
++poppadoms
++poppas
++popped
++popper
++poppers
++poppet
++poppets
++poppies
++popping
++poppy
++poppycock
++pops
++populace
++populaces
++popular
++popularity
++popularization
++popularize
++popularized
++popularizes
++popularizing
++popularly
++populate
++populated
++populates
++populating
++population
++populations
++populism
++populist
++populists
++populous
++populousness
++popup
++popups
++porcelain
++porcelains
++porch
++porches
++porcine
++porcupine
++porcupines
++pore
++pored
++pores
++porgies
++porgy
++poring
++pork
++porker
++porkers
++porkier
++porkies
++porkiest
++porky
++porn
++porno
++pornographer
++pornographers
++pornographic
++pornographically
++pornography
++porosity
++porous
++porousness
++porphyritic
++porphyry
++porpoise
++porpoised
++porpoises
++porpoising
++porridge
++porringer
++porringers
++port
++portability
++portable
++portables
++portage
++portaged
++portages
++portaging
++portal
++portals
++portcullis
++portcullises
++ported
++portend
++portended
++portending
++portends
++portent
++portentous
++portentously
++portentousness
++portents
++porter
++porterhouse
++porterhouses
++porters
++portfolio
++portfolios
++porthole
++portholes
++portico
++porticoes
++portiere
++portieres
++porting
++portion
++portioned
++portioning
++portions
++portlier
++portliest
++portliness
++portly
++portmanteau
++portmanteaus
++portrait
++portraitist
++portraitists
++portraits
++portraiture
++portray
++portrayal
++portrayals
++portrayed
++portraying
++portrays
++ports
++portulaca
++pose
++posed
++poser
++posers
++poses
++poseur
++poseurs
++posh
++posher
++poshest
++posies
++posing
++posit
++posited
++positing
++position
++positional
++positioned
++positioning
++positions
++positive
++positively
++positiveness
++positives
++positivism
++positivist
++positivists
++positron
++positrons
++posits
++poss
++posse
++posses
++possess
++possessed
++possesses
++possessing
++possession
++possessions
++possessive
++possessively
++possessiveness
++possessives
++possessor
++possessors
++possibilities
++possibility
++possible
++possibles
++possibly
++possum
++possums
++post
++postage
++postal
++postbag
++postbags
++postbox
++postboxes
++postcard
++postcards
++postcode
++postcodes
++postcolonial
++postconsonantal
++postdate
++postdated
++postdates
++postdating
++postdoc
++postdocs
++postdoctoral
++posted
++poster
++posterior
++posteriors
++posterity
++posters
++postgraduate
++postgraduates
++posthaste
++posthumous
++posthumously
++posthypnotic
++postie
++posties
++postilion
++postilions
++postindustrial
++posting
++postings
++postlude
++postludes
++postman
++postmark
++postmarked
++postmarking
++postmarks
++postmaster
++postmasters
++postmen
++postmenopausal
++postmeridian
++postmistress
++postmistresses
++postmodern
++postmodernism
++postmodernist
++postmodernists
++postmortem
++postmortems
++postnasal
++postnatal
++postoperative
++postpaid
++postpartum
++postpone
++postponed
++postponement
++postponements
++postpones
++postponing
++postprandial
++posts
++postscript
++postscripts
++postseason
++postseasons
++postsynaptic
++postulate
++postulated
++postulates
++postulating
++postulation
++postulations
++postural
++posture
++postured
++postures
++posturing
++posturings
++postwar
++postwoman
++postwomen
++posy
++pot
++potability
++potable
++potables
++potash
++potassium
++potato
++potatoes
++potbellied
++potbellies
++potbelly
++potboiler
++potboilers
++potency
++potent
++potentate
++potentates
++potential
++potentialities
++potentiality
++potentially
++potentials
++potentiate
++potentiated
++potentiates
++potentiating
++potently
++potful
++potfuls
++pothead
++potheads
++pother
++potherb
++potherbs
++pothered
++pothering
++pothers
++potholder
++potholders
++pothole
++potholed
++potholer
++potholers
++potholes
++potholing
++pothook
++pothooks
++potion
++potions
++potluck
++potlucks
++potpie
++potpies
++potpourri
++potpourris
++pots
++potsherd
++potsherds
++potshot
++potshots
++pottage
++potted
++potter
++pottered
++potteries
++pottering
++potters
++pottery
++pottier
++potties
++pottiest
++pottiness
++potting
++potty
++pouch
++pouched
++pouches
++pouching
++pouf
++pouffe
++pouffes
++poufs
++poulterer
++poulterers
++poultice
++poulticed
++poultices
++poulticing
++poultry
++pounce
++pounced
++pounces
++pouncing
++pound
++poundage
++pounded
++pounding
++poundings
++pounds
++pour
++poured
++pouring
++pourings
++pours
++pout
++pouted
++pouter
++pouters
++pouting
++pouts
++poverty
++pow
++powder
++powdered
++powdering
++powders
++powdery
++power
++powerboat
++powerboats
++powered
++powerful
++powerfully
++powerhouse
++powerhouses
++powering
++powerless
++powerlessly
++powerlessness
++powers
++powwow
++powwowed
++powwowing
++powwows
++pox
++poxes
++pp
++ppm
++ppr
++pr
++practicability
++practicable
++practicably
++practical
++practicalities
++practicality
++practically
++practicals
++practice
++practiced
++practices
++practicing
++practicum
++practicums
++practitioner
++practitioners
++praetor
++praetorian
++praetors
++pragmatic
++pragmatical
++pragmatically
++pragmatics
++pragmatism
++pragmatist
++pragmatists
++prairie
++prairies
++praise
++praised
++praises
++praiseworthiness
++praiseworthy
++praising
++praline
++pralines
++pram
++prams
++prance
++pranced
++prancer
++prancers
++prances
++prancing
++prancingly
++prang
++pranged
++pranging
++prangs
++prank
++pranks
++prankster
++pranksters
++praseodymium
++prat
++prate
++prated
++prater
++praters
++prates
++pratfall
++pratfalls
++prating
++prats
++prattle
++prattled
++prattler
++prattlers
++prattles
++prattling
++prawn
++prawned
++prawning
++prawns
++pray
++prayed
++prayer
++prayerful
++prayerfully
++prayers
++praying
++prays
++preach
++preached
++preacher
++preachers
++preaches
++preachier
++preachiest
++preaching
++preachment
++preachy
++preadolescence
++preadolescences
++preamble
++preambled
++preambles
++preambling
++prearrange
++prearranged
++prearrangement
++prearranges
++prearranging
++preassigned
++precancel
++precanceled
++precanceling
++precancels
++precancerous
++precarious
++precariously
++precariousness
++precast
++precaution
++precautionary
++precautions
++precede
++preceded
++precedence
++precedent
++precedents
++precedes
++preceding
++precept
++preceptor
++preceptors
++precepts
++precinct
++precincts
++preciosity
++precious
++preciously
++preciousness
++precipice
++precipices
++precipitant
++precipitants
++precipitate
++precipitated
++precipitately
++precipitates
++precipitating
++precipitation
++precipitations
++precipitous
++precipitously
++precis
++precise
++precised
++precisely
++preciseness
++preciser
++precises
++precisest
++precising
++precision
++preclude
++precluded
++precludes
++precluding
++preclusion
++precocious
++precociously
++precociousness
++precocity
++precognition
++precognitive
++precolonial
++preconceive
++preconceived
++preconceives
++preconceiving
++preconception
++preconceptions
++precondition
++preconditioned
++preconditioning
++preconditions
++precook
++precooked
++precooking
++precooks
++precursor
++precursors
++precursory
++predate
++predated
++predates
++predating
++predator
++predators
++predatory
++predawn
++predecease
++predeceased
++predeceases
++predeceasing
++predecessor
++predecessors
++predefined
++predesignate
++predesignated
++predesignates
++predesignating
++predestination
++predestine
++predestined
++predestines
++predestining
++predetermination
++predetermine
++predetermined
++predeterminer
++predeterminers
++predetermines
++predetermining
++predicable
++predicament
++predicaments
++predicate
++predicated
++predicates
++predicating
++predication
++predicative
++predicatively
++predict
++predictability
++predictable
++predictably
++predicted
++predicting
++prediction
++predictions
++predictive
++predictor
++predictors
++predicts
++predigest
++predigested
++predigesting
++predigests
++predilection
++predilections
++predispose
++predisposed
++predisposes
++predisposing
++predisposition
++predispositions
++predominance
++predominant
++predominantly
++predominate
++predominated
++predominately
++predominates
++predominating
++preemie
++preemies
++preeminence
++preeminent
++preeminently
++preempt
++preempted
++preempting
++preemption
++preemptive
++preemptively
++preempts
++preen
++preened
++preening
++preens
++preexist
++preexisted
++preexistence
++preexisting
++preexists
++pref
++prefab
++prefabbed
++prefabbing
++prefabricate
++prefabricated
++prefabricates
++prefabricating
++prefabrication
++prefabs
++preface
++prefaced
++prefaces
++prefacing
++prefatory
++prefect
++prefects
++prefecture
++prefectures
++prefer
++preferable
++preferably
++preference
++preferences
++preferential
++preferentially
++preferment
++preferred
++preferring
++prefers
++prefigure
++prefigured
++prefigures
++prefiguring
++prefix
++prefixed
++prefixes
++prefixing
++preform
++preformed
++preforming
++preforms
++prefrontal
++pregame
++pregames
++pregnancies
++pregnancy
++pregnant
++preheat
++preheated
++preheating
++preheats
++prehensile
++prehistorian
++prehistorians
++prehistoric
++prehistorical
++prehistorically
++prehistory
++prehuman
++prejudge
++prejudged
++prejudges
++prejudging
++prejudgment
++prejudgments
++prejudice
++prejudiced
++prejudices
++prejudicial
++prejudicing
++prekindergarten
++prekindergartens
++prelacy
++prelate
++prelates
++prelim
++preliminaries
++preliminary
++prelims
++preliterate
++prelude
++preludes
++premarital
++premature
++prematurely
++premed
++premedical
++premeditate
++premeditated
++premeditates
++premeditating
++premeditation
++premeds
++premenstrual
++premier
++premiere
++premiered
++premieres
++premiering
++premiers
++premiership
++premierships
++premise
++premised
++premises
++premising
++premium
++premiums
++premix
++premixed
++premixes
++premixing
++premolar
++premolars
++premonition
++premonitions
++premonitory
++prenatal
++prenatally
++prenup
++prenups
++prenuptial
++preoccupation
++preoccupations
++preoccupied
++preoccupies
++preoccupy
++preoccupying
++preoperative
++preordain
++preordained
++preordaining
++preordains
++preowned
++prep
++prepackage
++prepackaged
++prepackages
++prepackaging
++prepacked
++prepaid
++preparation
++preparations
++preparatory
++prepare
++prepared
++preparedness
++prepares
++preparing
++prepay
++prepaying
++prepayment
++prepayments
++prepays
++preponderance
++preponderances
++preponderant
++preponderantly
++preponderate
++preponderated
++preponderates
++preponderating
++preposition
++prepositional
++prepositionally
++prepositions
++prepossess
++prepossessed
++prepossesses
++prepossessing
++prepossession
++prepossessions
++preposterous
++preposterously
++prepped
++preppier
++preppies
++preppiest
++prepping
++preppy
++preps
++prepubescence
++prepubescent
++prepubescents
++prepuce
++prepuces
++prequel
++prequels
++prerecord
++prerecorded
++prerecording
++prerecords
++preregister
++preregistered
++preregistering
++preregisters
++preregistration
++prerequisite
++prerequisites
++prerogative
++prerogatives
++pres
++presage
++presaged
++presages
++presaging
++presbyopia
++presbyter
++presbyteries
++presbyters
++presbytery
++preschool
++preschooler
++preschoolers
++preschools
++prescience
++prescient
++presciently
++prescribe
++prescribed
++prescribes
++prescribing
++prescript
++prescription
++prescriptions
++prescriptive
++prescriptively
++prescripts
++preseason
++preseasons
++presence
++presences
++present
++presentable
++presentably
++presentation
++presentations
++presented
++presenter
++presenters
++presentiment
++presentiments
++presenting
++presently
++presentment
++presentments
++presents
++preservable
++preservation
++preservationist
++preservationists
++preservative
++preservatives
++preserve
++preserved
++preserver
++preservers
++preserves
++preserving
++preset
++presets
++presetting
++preshrank
++preshrink
++preshrinking
++preshrinks
++preshrunk
++preside
++presided
++presidencies
++presidency
++president
++presidential
++presidents
++presides
++presiding
++presidium
++presort
++presorted
++presorting
++presorts
++press
++pressed
++presser
++pressers
++presses
++pressie
++pressies
++pressing
++pressingly
++pressings
++pressman
++pressmen
++pressure
++pressured
++pressures
++pressuring
++pressurization
++pressurize
++pressurized
++pressurizer
++pressurizers
++pressurizes
++pressurizing
++prestidigitation
++prestige
++prestigious
++presto
++prestos
++presumable
++presumably
++presume
++presumed
++presumes
++presuming
++presumption
++presumptions
++presumptive
++presumptuous
++presumptuously
++presumptuousness
++presuppose
++presupposed
++presupposes
++presupposing
++presupposition
++presuppositions
++pretax
++preteen
++preteens
++pretend
++pretended
++pretender
++pretenders
++pretending
++pretends
++pretense
++pretenses
++pretension
++pretensions
++pretentious
++pretentiously
++pretentiousness
++preterit
++preterits
++preterm
++preternatural
++preternaturally
++pretest
++pretested
++pretesting
++pretests
++pretext
++pretexts
++pretrial
++pretrials
++prettied
++prettier
++pretties
++prettiest
++prettified
++prettifies
++prettify
++prettifying
++prettily
++prettiness
++pretty
++prettying
++pretzel
++pretzels
++prevail
++prevailed
++prevailing
++prevails
++prevalence
++prevalent
++prevaricate
++prevaricated
++prevaricates
++prevaricating
++prevarication
++prevarications
++prevaricator
++prevaricators
++prevent
++preventable
++preventative
++preventatives
++prevented
++preventing
++prevention
++preventive
++preventives
++prevents
++preview
++previewed
++previewer
++previewers
++previewing
++previews
++previous
++previously
++prevision
++previsions
++prewar
++prey
++preyed
++preying
++preys
++prezzie
++prezzies
++priapic
++price
++priced
++priceless
++prices
++pricey
++pricier
++priciest
++pricing
++prick
++pricked
++pricker
++prickers
++pricking
++prickle
++prickled
++prickles
++pricklier
++prickliest
++prickliness
++prickling
++prickly
++pricks
++pride
++prided
++prideful
++pridefully
++prides
++priding
++pried
++prier
++priers
++pries
++priest
++priestess
++priestesses
++priesthood
++priesthoods
++priestlier
++priestliest
++priestliness
++priestly
++priests
++prig
++priggish
++priggishness
++prigs
++prim
++primacy
++primal
++primaries
++primarily
++primary
++primate
++primates
++prime
++primed
++primer
++primers
++primes
++primeval
++priming
++primitive
++primitively
++primitiveness
++primitives
++primly
++primmer
++primmest
++primness
++primogenitor
++primogenitors
++primogeniture
++primordial
++primordially
++primp
++primped
++primping
++primps
++primrose
++primroses
++primula
++primulas
++prince
++princedom
++princedoms
++princelier
++princeliest
++princeliness
++princely
++princes
++princess
++princesses
++principal
++principalities
++principality
++principally
++principals
++principle
++principled
++principles
++print
++printable
++printed
++printer
++printers
++printing
++printings
++printmaking
++printout
++printouts
++prints
++prion
++prions
++prior
++prioress
++prioresses
++priories
++priorities
++prioritization
++prioritize
++prioritized
++prioritizes
++prioritizing
++priority
++priors
++priory
++prism
++prismatic
++prisms
++prison
++prisoner
++prisoners
++prisons
++prissier
++prissiest
++prissily
++prissiness
++prissy
++pristine
++prithee
++privacy
++private
++privateer
++privateers
++privately
++privater
++privates
++privatest
++privation
++privations
++privatization
++privatizations
++privatize
++privatized
++privatizes
++privatizing
++privet
++privets
++privier
++privies
++priviest
++privilege
++privileged
++privileges
++privileging
++privily
++privy
++prize
++prized
++prizefight
++prizefighter
++prizefighters
++prizefighting
++prizefights
++prizes
++prizewinner
++prizewinners
++prizewinning
++prizing
++pro
++proactive
++proactively
++prob
++probabilistic
++probabilities
++probability
++probable
++probables
++probably
++probate
++probated
++probates
++probating
++probation
++probational
++probationary
++probationer
++probationers
++probe
++probed
++probes
++probing
++probings
++probity
++problem
++problematic
++problematical
++problematically
++problems
++probosces
++proboscis
++proboscises
++procaine
++procedural
++procedure
++procedures
++proceed
++proceeded
++proceeding
++proceedings
++proceeds
++process
++processable
++processed
++processes
++processing
++procession
++processional
++processionals
++processioned
++processioning
++processions
++processor
++processors
++proclaim
++proclaimed
++proclaiming
++proclaims
++proclamation
++proclamations
++proclivities
++proclivity
++proconsul
++proconsular
++proconsuls
++procrastinate
++procrastinated
++procrastinates
++procrastinating
++procrastination
++procrastinator
++procrastinators
++procreate
++procreated
++procreates
++procreating
++procreation
++procreative
++proctor
++proctored
++proctoring
++proctors
++procurable
++procurator
++procurators
++procure
++procured
++procurement
++procurer
++procurers
++procures
++procuring
++prod
++prodded
++prodding
++prodigal
++prodigality
++prodigally
++prodigals
++prodigies
++prodigious
++prodigiously
++prodigy
++prods
++produce
++produced
++producer
++producers
++produces
++producible
++producing
++product
++production
++productions
++productive
++productively
++productiveness
++productivity
++products
++prof
++profanation
++profanations
++profane
++profaned
++profanely
++profaneness
++profanes
++profaning
++profanities
++profanity
++profess
++professed
++professedly
++professes
++professing
++profession
++professional
++professionalism
++professionalization
++professionalize
++professionalized
++professionalizes
++professionalizing
++professionally
++professionals
++professions
++professor
++professorial
++professorially
++professors
++professorship
++professorships
++proffer
++proffered
++proffering
++proffers
++proficiency
++proficient
++proficiently
++proficients
++profile
++profiled
++profiles
++profiling
++profit
++profitability
++profitable
++profitably
++profited
++profiteer
++profiteered
++profiteering
++profiteers
++profiterole
++profiteroles
++profiting
++profitless
++profits
++profligacy
++profligate
++profligately
++profligates
++proforma
++profound
++profounder
++profoundest
++profoundly
++profoundness
++profs
++profundities
++profundity
++profuse
++profusely
++profuseness
++profusion
++profusions
++progenitor
++progenitors
++progeny
++progesterone
++progestin
++progestins
++prognathous
++prognoses
++prognosis
++prognostic
++prognosticate
++prognosticated
++prognosticates
++prognosticating
++prognostication
++prognostications
++prognosticator
++prognosticators
++prognostics
++program
++programmable
++programmables
++programmatic
++programmed
++programmer
++programmers
++programming
++programmings
++programs
++progress
++progressed
++progresses
++progressing
++progression
++progressions
++progressive
++progressively
++progressiveness
++progressives
++prohibit
++prohibited
++prohibiting
++prohibition
++prohibitionist
++prohibitionists
++prohibitions
++prohibitive
++prohibitively
++prohibitory
++prohibits
++project
++projected
++projectile
++projectiles
++projecting
++projection
++projectionist
++projectionists
++projections
++projector
++projectors
++projects
++prokaryotic
++prolapse
++prolapsed
++prolapses
++prolapsing
++prole
++proles
++proletarian
++proletarians
++proletariat
++proliferate
++proliferated
++proliferates
++proliferating
++proliferation
++prolific
++prolifically
++prolix
++prolixity
++prolixly
++prologue
++prologues
++prolong
++prolongation
++prolongations
++prolonged
++prolonging
++prolongs
++prom
++promenade
++promenaded
++promenades
++promenading
++promethium
++prominence
++prominent
++prominently
++promiscuity
++promiscuous
++promiscuously
++promise
++promised
++promises
++promising
++promisingly
++promissory
++promo
++promontories
++promontory
++promos
++promote
++promoted
++promoter
++promoters
++promotes
++promoting
++promotion
++promotional
++promotions
++prompt
++prompted
++prompter
++prompters
++promptest
++prompting
++promptings
++promptitude
++promptly
++promptness
++prompts
++proms
++promulgate
++promulgated
++promulgates
++promulgating
++promulgation
++promulgator
++promulgators
++pron
++prone
++proneness
++prong
++pronged
++pronghorn
++pronghorns
++prongs
++pronominal
++pronoun
++pronounce
++pronounceable
++pronounced
++pronouncement
++pronouncements
++pronounces
++pronouncing
++pronouns
++pronto
++pronuclear
++pronunciation
++pronunciations
++proof
++proofed
++proofing
++proofread
++proofreader
++proofreaders
++proofreading
++proofreads
++proofs
++prop
++propaganda
++propagandist
++propagandists
++propagandize
++propagandized
++propagandizes
++propagandizing
++propagate
++propagated
++propagates
++propagating
++propagation
++propagator
++propagators
++propane
++propel
++propellant
++propellants
++propelled
++propeller
++propellers
++propelling
++propels
++propensities
++propensity
++proper
++properer
++properest
++properly
++propertied
++properties
++property
++prophecies
++prophecy
++prophesied
++prophesier
++prophesiers
++prophesies
++prophesy
++prophesying
++prophet
++prophetess
++prophetesses
++prophetic
++prophetical
++prophetically
++prophets
++prophylactic
++prophylactics
++prophylaxes
++prophylaxis
++propinquity
++propitiate
++propitiated
++propitiates
++propitiating
++propitiation
++propitiatory
++propitious
++propitiously
++proponent
++proponents
++proportion
++proportional
++proportionality
++proportionally
++proportionals
++proportionate
++proportionately
++proportioned
++proportioning
++proportions
++proposal
++proposals
++propose
++proposed
++proposer
++proposers
++proposes
++proposing
++proposition
++propositional
++propositioned
++propositioning
++propositions
++propound
++propounded
++propounding
++propounds
++propped
++propping
++proprietaries
++proprietary
++proprieties
++proprietor
++proprietorial
++proprietorially
++proprietors
++proprietorship
++proprietress
++proprietresses
++propriety
++props
++propulsion
++propulsive
++prorate
++prorated
++prorates
++prorating
++prorogation
++prorogue
++prorogued
++prorogues
++proroguing
++pros
++prosaic
++prosaically
++proscenium
++prosceniums
++prosciutto
++proscribe
++proscribed
++proscribes
++proscribing
++proscription
++proscriptions
++prose
++prosecute
++prosecuted
++prosecutes
++prosecuting
++prosecution
++prosecutions
++prosecutor
++prosecutors
++proselyte
++proselyted
++proselytes
++proselyting
++proselytism
++proselytize
++proselytized
++proselytizer
++proselytizers
++proselytizes
++proselytizing
++prosier
++prosiest
++prosodies
++prosody
++prospect
++prospected
++prospecting
++prospective
++prospectively
++prospector
++prospectors
++prospects
++prospectus
++prospectuses
++prosper
++prospered
++prospering
++prosperity
++prosperous
++prosperously
++prospers
++prostate
++prostates
++prostheses
++prosthesis
++prosthetic
++prostitute
++prostituted
++prostitutes
++prostituting
++prostitution
++prostrate
++prostrated
++prostrates
++prostrating
++prostration
++prostrations
++prosy
++protactinium
++protagonist
++protagonists
++protean
++protect
++protected
++protecting
++protection
++protectionism
++protectionist
++protectionists
++protections
++protective
++protectively
++protectiveness
++protector
++protectorate
++protectorates
++protectors
++protects
++protege
++protegee
++protegees
++proteges
++protein
++proteins
++protest
++protestant
++protestants
++protestation
++protestations
++protested
++protester
++protesters
++protesting
++protests
++protocol
++protocols
++proton
++protons
++protoplasm
++protoplasmic
++prototype
++prototypes
++prototypical
++prototyping
++protozoa
++protozoan
++protozoans
++protozoic
++protract
++protracted
++protracting
++protraction
++protractor
++protractors
++protracts
++protrude
++protruded
++protrudes
++protruding
++protrusile
++protrusion
++protrusions
++protuberance
++protuberances
++protuberant
++proud
++prouder
++proudest
++proudly
++prov
++provability
++provable
++provably
++prove
++proved
++proven
++provenance
++provenances
++provender
++provenience
++proverb
++proverbial
++proverbially
++proverbs
++proves
++provide
++provided
++providence
++provident
++providential
++providentially
++providently
++provider
++providers
++provides
++providing
++province
++provinces
++provincial
++provincialism
++provincially
++provincials
++proving
++provision
++provisional
++provisionally
++provisioned
++provisioning
++provisions
++proviso
++provisos
++provocateur
++provocateurs
++provocation
++provocations
++provocative
++provocatively
++provocativeness
++provoke
++provoked
++provoker
++provokers
++provokes
++provoking
++provokingly
++provolone
++provost
++provosts
++prow
++prowess
++prowl
++prowled
++prowler
++prowlers
++prowling
++prowls
++prows
++proxies
++proximal
++proximate
++proximity
++proxy
++prude
++prudence
++prudent
++prudential
++prudentially
++prudently
++prudery
++prudes
++prudish
++prudishly
++prudishness
++prune
++pruned
++pruner
++pruners
++prunes
++pruning
++prurience
++prurient
++pruriently
++pry
++prying
++psalm
++psalmist
++psalmists
++psalms
++psalteries
++psaltery
++psephologist
++psephologists
++psephology
++pseud
++pseudo
++pseudonym
++pseudonymous
++pseudonyms
++pseudos
++pseudoscience
++pseudosciences
++pseuds
++pseudy
++pshaw
++pshaws
++psi
++psis
++psittacosis
++psoriasis
++psst
++psych
++psyche
++psyched
++psychedelia
++psychedelic
++psychedelically
++psychedelics
++psyches
++psychiatric
++psychiatrist
++psychiatrists
++psychiatry
++psychic
++psychical
++psychically
++psychics
++psyching
++psycho
++psychoactive
++psychoanalyses
++psychoanalysis
++psychoanalyst
++psychoanalysts
++psychoanalytic
++psychoanalytical
++psychoanalytically
++psychoanalyze
++psychoanalyzed
++psychoanalyzes
++psychoanalyzing
++psychobabble
++psychodrama
++psychodramas
++psychogenic
++psychokinesis
++psychokinetic
++psychological
++psychologically
++psychologies
++psychologist
++psychologists
++psychology
++psychometric
++psychoneuroses
++psychoneurosis
++psychopath
++psychopathic
++psychopathology
++psychopaths
++psychopathy
++psychopharmacology
++psychos
++psychoses
++psychosis
++psychosomatic
++psychotherapies
++psychotherapist
++psychotherapists
++psychotherapy
++psychotic
++psychotically
++psychotics
++psychotropic
++psychotropics
++psychs
++pt
++ptarmigan
++ptarmigans
++pterodactyl
++pterodactyls
++ptomaine
++ptomaines
++pub
++pubertal
++puberty
++pubes
++pubescence
++pubescent
++pubic
++pubis
++public
++publican
++publicans
++publication
++publications
++publicist
++publicists
++publicity
++publicize
++publicized
++publicizes
++publicizing
++publicly
++publish
++publishable
++published
++publisher
++publishers
++publishes
++publishing
++pubs
++puce
++puck
++pucker
++puckered
++puckering
++puckers
++puckish
++puckishly
++puckishness
++pucks
++pud
++pudding
++puddings
++puddle
++puddled
++puddles
++puddling
++pudenda
++pudendum
++pudgier
++pudgiest
++pudginess
++pudgy
++puds
++pueblo
++pueblos
++puerile
++puerility
++puerperal
++puff
++puffball
++puffballs
++puffed
++puffer
++puffers
++puffier
++puffiest
++puffin
++puffiness
++puffing
++puffins
++puffs
++puffy
++pug
++pugilism
++pugilist
++pugilistic
++pugilists
++pugnacious
++pugnaciously
++pugnaciousness
++pugnacity
++pugs
++puke
++puked
++pukes
++puking
++pukka
++pulchritude
++pulchritudinous
++pule
++puled
++pules
++puling
++pull
++pullback
++pullbacks
++pulled
++puller
++pullers
++pullet
++pullets
++pulley
++pulleys
++pulling
++pullout
++pullouts
++pullover
++pullovers
++pulls
++pulmonary
++pulp
++pulped
++pulpier
++pulpiest
++pulpiness
++pulping
++pulpit
++pulpits
++pulps
++pulpwood
++pulpy
++pulsar
++pulsars
++pulsate
++pulsated
++pulsates
++pulsating
++pulsation
++pulsations
++pulse
++pulsed
++pulses
++pulsing
++pulverization
++pulverize
++pulverized
++pulverizes
++pulverizing
++puma
++pumas
++pumice
++pumices
++pummel
++pummeled
++pummeling
++pummels
++pump
++pumped
++pumper
++pumpernickel
++pumpers
++pumping
++pumpkin
++pumpkins
++pumps
++pun
++punch
++punchbag
++punchbags
++punched
++puncheon
++puncheons
++puncher
++punchers
++punches
++punchier
++punchiest
++punching
++punchline
++punchlines
++punchy
++punctilio
++punctilious
++punctiliously
++punctiliousness
++punctual
++punctuality
++punctually
++punctuate
++punctuated
++punctuates
++punctuating
++punctuation
++puncture
++punctured
++punctures
++puncturing
++pundit
++punditry
++pundits
++pungency
++pungent
++pungently
++punier
++puniest
++puniness
++punish
++punishable
++punished
++punishes
++punishing
++punishingly
++punishment
++punishments
++punitive
++punitively
++punk
++punker
++punkest
++punks
++punned
++punnet
++punnets
++punning
++puns
++punster
++punsters
++punt
++punted
++punter
++punters
++punting
++punts
++puny
++pup
++pupa
++pupae
++pupal
++pupate
++pupated
++pupates
++pupating
++pupil
++pupils
++pupped
++puppet
++puppeteer
++puppeteers
++puppetry
++puppets
++puppies
++pupping
++puppy
++pups
++purblind
++purchasable
++purchase
++purchased
++purchaser
++purchasers
++purchases
++purchasing
++purdah
++pure
++purebred
++purebreds
++puree
++pureed
++pureeing
++purees
++purely
++pureness
++purer
++purest
++purgative
++purgatives
++purgatorial
++purgatories
++purgatory
++purge
++purged
++purger
++purgers
++purges
++purging
++purification
++purified
++purifier
++purifiers
++purifies
++purify
++purifying
++purine
++purines
++purism
++purist
++puristic
++purists
++puritan
++puritanical
++puritanically
++puritanism
++puritans
++purity
++purl
++purled
++purlieu
++purlieus
++purling
++purloin
++purloined
++purloining
++purloins
++purls
++purple
++purpler
++purples
++purplest
++purplish
++purport
++purported
++purportedly
++purporting
++purports
++purpose
++purposed
++purposeful
++purposefully
++purposefulness
++purposeless
++purposelessly
++purposelessness
++purposely
++purposes
++purposing
++purr
++purred
++purring
++purrs
++purse
++pursed
++purser
++pursers
++purses
++pursing
++pursuance
++pursuant
++pursue
++pursued
++pursuer
++pursuers
++pursues
++pursuing
++pursuit
++pursuits
++purulence
++purulent
++purvey
++purveyance
++purveyed
++purveying
++purveyor
++purveyors
++purveys
++purview
++pus
++push
++pushbike
++pushbikes
++pushcart
++pushcarts
++pushchair
++pushchairs
++pushed
++pusher
++pushers
++pushes
++pushier
++pushiest
++pushily
++pushiness
++pushing
++pushover
++pushovers
++pushpin
++pushpins
++pushy
++pusillanimity
++pusillanimous
++pusillanimously
++puss
++pusses
++pussier
++pussies
++pussiest
++pussy
++pussycat
++pussycats
++pussyfoot
++pussyfooted
++pussyfooting
++pussyfoots
++pustular
++pustule
++pustules
++put
++putative
++putout
++putouts
++putrefaction
++putrefactive
++putrefied
++putrefies
++putrefy
++putrefying
++putrescence
++putrescent
++putrid
++puts
++putsch
++putsches
++putt
++putted
++puttee
++puttees
++putter
++puttered
++putterer
++putterers
++puttering
++putters
++puttied
++putties
++putting
++putts
++putty
++puttying
++putz
++putzes
++puzzle
++puzzled
++puzzlement
++puzzler
++puzzlers
++puzzles
++puzzling
++pvt
++pwn
++pwned
++pwning
++pwns
++pyelonephritis
++pygmies
++pygmy
++pylon
++pylons
++pylori
++pyloric
++pylorus
++pyorrhea
++pyramid
++pyramidal
++pyramided
++pyramiding
++pyramids
++pyre
++pyres
++pyrimidine
++pyrimidines
++pyrite
++pyrites
++pyromania
++pyromaniac
++pyromaniacs
++pyrotechnic
++pyrotechnical
++pyrotechnics
++pyruvate
++python
++pythons
++pyx
++pyxes
++pzazz
++q
++qr
++qt
++qts
++qty
++qua
++quack
++quacked
++quackery
++quacking
++quacks
++quad
++quadrangle
++quadrangles
++quadrangular
++quadrant
++quadrants
++quadraphonic
++quadratic
++quadratics
++quadrature
++quadrennial
++quadrennium
++quadrenniums
++quadriceps
++quadricepses
++quadrilateral
++quadrilaterals
++quadrille
++quadrilles
++quadrillion
++quadrillions
++quadriplegia
++quadriplegic
++quadriplegics
++quadrivium
++quadruped
++quadrupedal
++quadrupeds
++quadruple
++quadrupled
++quadruples
++quadruplet
++quadruplets
++quadruplicate
++quadruplicated
++quadruplicates
++quadruplicating
++quadruplication
++quadrupling
++quads
++quaff
++quaffed
++quaffing
++quaffs
++quagmire
++quagmires
++quahog
++quahogs
++quail
++quailed
++quailing
++quails
++quaint
++quainter
++quaintest
++quaintly
++quaintness
++quake
++quaked
++quakes
++quaking
++quaky
++qualification
++qualifications
++qualified
++qualifier
++qualifiers
++qualifies
++qualify
++qualifying
++qualitative
++qualitatively
++qualities
++quality
++qualm
++qualmish
++qualms
++quandaries
++quandary
++quango
++quangos
++quanta
++quantifiable
++quantification
++quantified
++quantifier
++quantifiers
++quantifies
++quantify
++quantifying
++quantitative
++quantitatively
++quantities
++quantity
++quantum
++quarantine
++quarantined
++quarantines
++quarantining
++quark
++quarks
++quarrel
++quarreled
++quarreler
++quarrelers
++quarreling
++quarrels
++quarrelsome
++quarrelsomeness
++quarried
++quarries
++quarry
++quarrying
++quart
++quarter
++quarterback
++quarterbacked
++quarterbacking
++quarterbacks
++quarterdeck
++quarterdecks
++quartered
++quarterfinal
++quarterfinals
++quartering
++quarterlies
++quarterly
++quartermaster
++quartermasters
++quarters
++quarterstaff
++quarterstaves
++quartet
++quartets
++quarto
++quartos
++quarts
++quartz
++quasar
++quasars
++quash
++quashed
++quashes
++quashing
++quasi
++quatrain
++quatrains
++quaver
++quavered
++quavering
++quavers
++quavery
++quay
++quays
++quayside
++quaysides
++queasier
++queasiest
++queasily
++queasiness
++queasy
++queen
++queened
++queening
++queenlier
++queenliest
++queenly
++queens
++queer
++queered
++queerer
++queerest
++queering
++queerly
++queerness
++queers
++quell
++quelled
++quelling
++quells
++quench
++quenchable
++quenched
++quencher
++quenchers
++quenches
++quenching
++quenchless
++queried
++queries
++querulous
++querulously
++querulousness
++query
++querying
++ques
++quesadilla
++quesadillas
++quest
++quested
++questing
++question
++questionable
++questionably
++questioned
++questioner
++questioners
++questioning
++questioningly
++questionings
++questionnaire
++questionnaires
++questions
++quests
++queue
++queued
++queues
++queuing
++quibble
++quibbled
++quibbler
++quibblers
++quibbles
++quibbling
++quiche
++quiches
++quick
++quicken
++quickened
++quickening
++quickens
++quicker
++quickest
++quickfire
++quickie
++quickies
++quicklime
++quickly
++quickness
++quicksand
++quicksands
++quicksilver
++quickstep
++quicksteps
++quid
++quids
++quiescence
++quiescent
++quiescently
++quiet
++quieted
++quieten
++quietened
++quietening
++quietens
++quieter
++quietest
++quieting
++quietism
++quietly
++quietness
++quiets
++quietude
++quietus
++quietuses
++quiff
++quiffs
++quill
++quills
++quilt
++quilted
++quilter
++quilters
++quilting
++quilts
++quin
++quince
++quinces
++quine
++quines
++quinidine
++quinine
++quinoa
++quins
++quinsy
++quint
++quintessence
++quintessences
++quintessential
++quintessentially
++quintet
++quintets
++quints
++quintuple
++quintupled
++quintuples
++quintuplet
++quintuplets
++quintupling
++quip
++quipped
++quipping
++quips
++quipster
++quipsters
++quire
++quires
++quirk
++quirked
++quirkier
++quirkiest
++quirkiness
++quirking
++quirks
++quirky
++quirt
++quirts
++quisling
++quislings
++quit
++quitclaim
++quitclaims
++quite
++quits
++quittance
++quitter
++quitters
++quitting
++quiver
++quivered
++quivering
++quivers
++quivery
++quixotic
++quixotically
++quiz
++quizzed
++quizzer
++quizzers
++quizzes
++quizzical
++quizzically
++quizzing
++quo
++quoin
++quoins
++quoit
++quoited
++quoiting
++quoits
++quondam
++quorate
++quorum
++quorums
++quot
++quota
++quotability
++quotable
++quotas
++quotation
++quotations
++quote
++quoted
++quotes
++quoth
++quotidian
++quotient
++quotients
++quoting
++qwerty
++r
++rabbet
++rabbeted
++rabbeting
++rabbets
++rabbi
++rabbinate
++rabbinic
++rabbinical
++rabbis
++rabbit
++rabbited
++rabbiting
++rabbits
++rabble
++rabbles
++rabid
++rabidly
++rabidness
++rabies
++raccoon
++race
++racecourse
++racecourses
++raced
++racegoer
++racegoers
++racehorse
++racehorses
++raceme
++racemes
++racer
++racers
++races
++racetrack
++racetracks
++raceway
++raceways
++racial
++racialism
++racialist
++racialists
++racially
++racier
++raciest
++racily
++raciness
++racing
++racism
++racist
++racists
++rack
++racked
++racket
++racketed
++racketeer
++racketeered
++racketeering
++racketeers
++racketing
++rackets
++racking
++racks
++raconteur
++raconteurs
++racquetball
++racquetballs
++racy
++rad
++radar
++radars
++radarscope
++radarscopes
++raddled
++radial
++radially
++radials
++radian
++radiance
++radians
++radiant
++radiantly
++radiate
++radiated
++radiates
++radiating
++radiation
++radiations
++radiator
++radiators
++radical
++radicalism
++radicalization
++radicalize
++radicalized
++radicalizes
++radicalizing
++radically
++radicals
++radicchio
++radii
++radio
++radioactive
++radioactively
++radioactivity
++radiocarbon
++radioed
++radiogram
++radiograms
++radiographer
++radiographers
++radiography
++radioing
++radioisotope
++radioisotopes
++radiologist
++radiologists
++radiology
++radioman
++radiomen
++radiometer
++radiometers
++radiometric
++radiometry
++radiophone
++radiophones
++radios
++radioscopy
++radiosonde
++radiosondes
++radiosurgery
++radiotelegraph
++radiotelegraphs
++radiotelegraphy
++radiotelephone
++radiotelephones
++radiotherapist
++radiotherapists
++radiotherapy
++radish
++radishes
++radium
++radius
++radon
++rads
++raffia
++raffish
++raffishly
++raffishness
++raffle
++raffled
++raffles
++raffling
++raft
++rafted
++rafter
++rafters
++rafting
++rafts
++rag
++raga
++ragamuffin
++ragamuffins
++ragas
++ragbag
++rage
++raged
++rages
++ragga
++ragged
++raggeder
++raggedest
++raggedier
++raggediest
++raggedly
++raggedness
++raggedy
++ragging
++raging
++ragingly
++raglan
++raglans
++ragout
++ragouts
++rags
++ragtag
++ragtags
++ragtime
++ragweed
++ragwort
++rah
++raid
++raided
++raider
++raiders
++raiding
++raids
++rail
++railcard
++railcards
++railed
++railing
++railings
++railleries
++raillery
++railroad
++railroaded
++railroader
++railroaders
++railroading
++railroads
++rails
++railway
++railwayman
++railwaymen
++railways
++raiment
++rain
++rainbow
++rainbows
++raincoat
++raincoats
++raindrop
++raindrops
++rained
++rainfall
++rainfalls
++rainier
++rainiest
++raining
++rainmaker
++rainmakers
++rainmaking
++rainproof
++rains
++rainstorm
++rainstorms
++rainwater
++rainy
++raise
++raised
++raiser
++raisers
++raises
++raisin
++raising
++raisins
++rajah
++rajahs
++rake
++raked
++rakes
++raking
++rakish
++rakishly
++rakishness
++rallied
++rallies
++rally
++rallying
++ram
++ramble
++rambled
++rambler
++ramblers
++rambles
++rambling
++ramblings
++rambunctious
++rambunctiously
++rambunctiousness
++ramekin
++ramekins
++ramie
++ramification
++ramifications
++ramified
++ramifies
++ramify
++ramifying
++ramjet
++ramjets
++rammed
++ramming
++ramp
++rampage
++rampaged
++rampages
++rampaging
++rampancy
++rampant
++rampantly
++rampart
++ramparts
++ramping
++ramps
++ramrod
++ramrodded
++ramrodding
++ramrods
++rams
++ramshackle
++ran
++ranch
++ranched
++rancher
++ranchers
++ranches
++ranching
++rancid
++rancidity
++rancidness
++rancor
++rancorous
++rancorously
++rand
++randier
++randiest
++randiness
++random
++randomization
++randomize
++randomized
++randomizes
++randomizing
++randomly
++randomness
++randomnesses
++randoms
++randy
++ranee
++ranees
++rang
++range
++ranged
++rangefinder
++rangefinders
++ranger
++rangers
++ranges
++rangier
++rangiest
++ranginess
++ranging
++rangy
++rank
++ranked
++ranker
++rankest
++ranking
++rankings
++rankle
++rankled
++rankles
++rankling
++rankly
++rankness
++ranks
++ransack
++ransacked
++ransacking
++ransacks
++ransom
++ransomed
++ransomer
++ransomers
++ransoming
++ransoms
++ransomware
++rant
++ranted
++ranter
++ranters
++ranting
++rantings
++rants
++rap
++rapacious
++rapaciously
++rapaciousness
++rapacity
++rape
++raped
++raper
++rapers
++rapes
++rapeseed
++rapid
++rapider
++rapidest
++rapidity
++rapidly
++rapidness
++rapids
++rapier
++rapiers
++rapine
++raping
++rapist
++rapists
++rapped
++rappel
++rappelled
++rappelling
++rappels
++rapper
++rappers
++rapping
++rapport
++rapporteur
++rapporteurs
++rapports
++rapprochement
++rapprochements
++raps
++rapscallion
++rapscallions
++rapt
++raptly
++raptness
++raptor
++raptors
++rapture
++raptures
++rapturous
++rapturously
++rare
++rarebit
++rarebits
++rared
++rarefaction
++rarefied
++rarefies
++rarefy
++rarefying
++rarely
++rareness
++rarer
++rares
++rarest
++raring
++rarities
++rarity
++rascal
++rascally
++rascals
++rash
++rasher
++rashers
++rashes
++rashest
++rashly
++rashness
++rasp
++raspberries
++raspberry
++rasped
++raspier
++raspiest
++rasping
++rasps
++raspy
++raster
++rat
++ratatouille
++ratbag
++ratbags
++ratchet
++ratcheted
++ratcheting
++ratchets
++rate
++rated
++ratepayer
++ratepayers
++rater
++raters
++rates
++rather
++rathskeller
++rathskellers
++ratification
++ratified
++ratifier
++ratifiers
++ratifies
++ratify
++ratifying
++rating
++ratings
++ratio
++ratiocinate
++ratiocinated
++ratiocinates
++ratiocinating
++ratiocination
++ration
++rational
++rationale
++rationales
++rationalism
++rationalist
++rationalistic
++rationalists
++rationality
++rationalization
++rationalizations
++rationalize
++rationalized
++rationalizes
++rationalizing
++rationally
++rationals
++rationed
++rationing
++rations
++ratios
++ratlike
++ratline
++ratlines
++rats
++rattan
++rattans
++ratted
++ratter
++ratters
++rattier
++rattiest
++ratting
++rattle
++rattlebrain
++rattlebrained
++rattlebrains
++rattled
++rattler
++rattlers
++rattles
++rattlesnake
++rattlesnakes
++rattletrap
++rattletraps
++rattling
++rattlings
++rattly
++rattrap
++rattraps
++ratty
++raucous
++raucously
++raucousness
++raunchier
++raunchiest
++raunchily
++raunchiness
++raunchy
++ravage
++ravaged
++ravager
++ravagers
++ravages
++ravaging
++rave
++raved
++ravel
++raveled
++raveling
++ravelings
++ravels
++raven
++ravened
++ravening
++ravenous
++ravenously
++ravens
++raver
++ravers
++raves
++ravine
++ravines
++raving
++ravings
++ravioli
++raviolis
++ravish
++ravished
++ravisher
++ravishers
++ravishes
++ravishing
++ravishingly
++ravishment
++raw
++rawboned
++rawer
++rawest
++rawhide
++rawness
++ray
++rayon
++rays
++raze
++razed
++razes
++razing
++razor
++razorback
++razorbacks
++razors
++razz
++razzed
++razzes
++razzing
++razzmatazz
++rcpt
++rd
++re
++reabsorb
++reabsorbed
++reabsorbing
++reabsorbs
++reach
++reachable
++reached
++reaches
++reaching
++reacquaint
++reacquainted
++reacquainting
++reacquaints
++reacquire
++reacquired
++reacquires
++reacquiring
++react
++reactant
++reactants
++reacted
++reacting
++reaction
++reactionaries
++reactionary
++reactions
++reactivate
++reactivated
++reactivates
++reactivating
++reactivation
++reactive
++reactivity
++reactor
++reactors
++reacts
++read
++readabilities
++readability
++readable
++readdress
++readdressed
++readdresses
++readdressing
++reader
++readers
++readership
++readerships
++readied
++readier
++readies
++readiest
++readily
++readiness
++reading
++readings
++readjust
++readjusted
++readjusting
++readjustment
++readjustments
++readjusts
++readmission
++readmit
++readmits
++readmitted
++readmitting
++readopt
++readopted
++readopting
++readopts
++readout
++readouts
++reads
++ready
++readying
++reaffirm
++reaffirmation
++reaffirmations
++reaffirmed
++reaffirming
++reaffirms
++reafforestation
++reagent
++reagents
++real
++realer
++realest
++realign
++realigned
++realigning
++realignment
++realignments
++realigns
++realism
++realist
++realistic
++realistically
++realists
++realities
++reality
++realizable
++realization
++realizations
++realize
++realized
++realizes
++realizing
++reallocate
++reallocated
++reallocates
++reallocating
++reallocation
++really
++realm
++realms
++realness
++realpolitik
++reals
++realty
++ream
++reamed
++reamer
++reamers
++reaming
++reams
++reanalyses
++reanalysis
++reanalyze
++reanalyzed
++reanalyzes
++reanalyzing
++reanimate
++reanimated
++reanimates
++reanimating
++reanimation
++reap
++reaped
++reaper
++reapers
++reaping
++reappear
++reappearance
++reappearances
++reappeared
++reappearing
++reappears
++reapplication
++reapplications
++reapplied
++reapplies
++reapply
++reapplying
++reappoint
++reappointed
++reappointing
++reappointment
++reappoints
++reapportion
++reapportioned
++reapportioning
++reapportionment
++reapportions
++reappraisal
++reappraisals
++reappraise
++reappraised
++reappraises
++reappraising
++reaps
++rear
++reared
++rearguard
++rearguards
++rearing
++rearm
++rearmament
++rearmed
++rearming
++rearmost
++rearms
++rearrange
++rearranged
++rearrangement
++rearrangements
++rearranges
++rearranging
++rearrest
++rearrested
++rearresting
++rearrests
++rears
++rearward
++rearwards
++reascend
++reascended
++reascending
++reascends
++reason
++reasonable
++reasonableness
++reasonably
++reasoned
++reasoner
++reasoners
++reasoning
++reasons
++reassemble
++reassembled
++reassembles
++reassembling
++reassembly
++reassert
++reasserted
++reasserting
++reassertion
++reasserts
++reassess
++reassessed
++reassesses
++reassessing
++reassessment
++reassessments
++reassign
++reassigned
++reassigning
++reassignment
++reassignments
++reassigns
++reassurance
++reassurances
++reassure
++reassured
++reassures
++reassuring
++reassuringly
++reattach
++reattached
++reattaches
++reattaching
++reattachment
++reattain
++reattained
++reattaining
++reattains
++reattempt
++reattempted
++reattempting
++reattempts
++reauthorize
++reauthorized
++reauthorizes
++reauthorizing
++reawaken
++reawakened
++reawakening
++reawakens
++rebate
++rebated
++rebates
++rebating
++rebel
++rebelled
++rebelling
++rebellion
++rebellions
++rebellious
++rebelliously
++rebelliousness
++rebels
++rebid
++rebidding
++rebids
++rebind
++rebinding
++rebinds
++rebirth
++rebirths
++reboil
++reboiled
++reboiling
++reboils
++reboot
++rebooted
++rebooting
++reboots
++reborn
++rebound
++rebounded
++rebounding
++rebounds
++rebroadcast
++rebroadcasting
++rebroadcasts
++rebuff
++rebuffed
++rebuffing
++rebuffs
++rebuild
++rebuilding
++rebuilds
++rebuilt
++rebuke
++rebuked
++rebukes
++rebuking
++rebukingly
++reburial
++reburials
++reburied
++reburies
++rebury
++reburying
++rebus
++rebuses
++rebut
++rebuts
++rebuttal
++rebuttals
++rebutted
++rebutting
++rec
++recalcitrance
++recalcitrant
++recalculate
++recalculated
++recalculates
++recalculating
++recalculation
++recalculations
++recall
++recalled
++recalling
++recalls
++recant
++recantation
++recantations
++recanted
++recanting
++recants
++recap
++recapitalization
++recapitalize
++recapitalized
++recapitalizes
++recapitalizing
++recapitulate
++recapitulated
++recapitulates
++recapitulating
++recapitulation
++recapitulations
++recapped
++recapping
++recaps
++recapture
++recaptured
++recaptures
++recapturing
++recast
++recasting
++recasts
++recce
++recces
++recd
++recede
++receded
++recedes
++receding
++receipt
++receipted
++receipting
++receipts
++receivable
++receivables
++receive
++received
++receiver
++receivers
++receivership
++receives
++receiving
++recent
++recenter
++recentest
++recently
++recentness
++receptacle
++receptacles
++reception
++receptionist
++receptionists
++receptions
++receptive
++receptively
++receptiveness
++receptivity
++receptor
++receptors
++recess
++recessed
++recesses
++recessing
++recession
++recessional
++recessionals
++recessionary
++recessions
++recessive
++recessives
++recharge
++rechargeable
++recharged
++recharges
++recharging
++recharter
++rechartered
++rechartering
++recharters
++recheck
++rechecked
++rechecking
++rechecks
++recherche
++rechristen
++rechristened
++rechristening
++rechristens
++recidivism
++recidivist
++recidivists
++recipe
++recipes
++recipient
++recipients
++reciprocal
++reciprocally
++reciprocals
++reciprocate
++reciprocated
++reciprocates
++reciprocating
++reciprocation
++reciprocity
++recirculate
++recirculated
++recirculates
++recirculating
++recital
++recitalist
++recitalists
++recitals
++recitation
++recitations
++recitative
++recitatives
++recite
++recited
++reciter
++reciters
++recites
++reciting
++reckless
++recklessly
++recklessness
++reckon
++reckoned
++reckoning
++reckonings
++reckons
++reclaim
++reclaimable
++reclaimed
++reclaiming
++reclaims
++reclamation
++reclassification
++reclassified
++reclassifies
++reclassify
++reclassifying
++recline
++reclined
++recliner
++recliners
++reclines
++reclining
++recluse
++recluses
++reclusive
++recognition
++recognizable
++recognizably
++recognizance
++recognize
++recognized
++recognizer
++recognizes
++recognizing
++recoil
++recoiled
++recoiling
++recoils
++recollect
++recollected
++recollecting
++recollection
++recollections
++recollects
++recolonization
++recolonize
++recolonized
++recolonizes
++recolonizing
++recolor
++recolored
++recoloring
++recolors
++recombination
++recombine
++recombined
++recombines
++recombining
++recommence
++recommenced
++recommencement
++recommences
++recommencing
++recommend
++recommendable
++recommendation
++recommendations
++recommended
++recommending
++recommends
++recommission
++recommissioned
++recommissioning
++recommissions
++recommit
++recommits
++recommitted
++recommitting
++recompense
++recompensed
++recompenses
++recompensing
++recompilation
++recompile
++recompiled
++recompiling
++recompose
++recomposed
++recomposes
++recomposing
++recompute
++recomputed
++recomputes
++recomputing
++recon
++reconcilable
++reconcile
++reconciled
++reconciles
++reconciliation
++reconciliations
++reconciling
++recondite
++recondition
++reconditioned
++reconditioning
++reconditions
++reconfiguration
++reconfigure
++reconfigured
++reconfirm
++reconfirmation
++reconfirmations
++reconfirmed
++reconfirming
++reconfirms
++reconnaissance
++reconnaissances
++reconnect
++reconnected
++reconnecting
++reconnects
++reconnoiter
++reconnoitered
++reconnoitering
++reconnoiters
++reconquer
++reconquered
++reconquering
++reconquers
++reconquest
++recons
++reconsecrate
++reconsecrated
++reconsecrates
++reconsecrating
++reconsecration
++reconsider
++reconsideration
++reconsidered
++reconsidering
++reconsiders
++reconsign
++reconsigned
++reconsigning
++reconsigns
++reconstitute
++reconstituted
++reconstitutes
++reconstituting
++reconstitution
++reconstruct
++reconstructed
++reconstructing
++reconstruction
++reconstructions
++reconstructive
++reconstructs
++recontact
++recontacted
++recontacting
++recontacts
++recontaminate
++recontaminated
++recontaminates
++recontaminating
++reconvene
++reconvened
++reconvenes
++reconvening
++reconvert
++reconverted
++reconverting
++reconverts
++recook
++recooked
++recooking
++recooks
++recopied
++recopies
++recopy
++recopying
++record
++recorded
++recorder
++recorders
++recording
++recordings
++records
++recount
++recounted
++recounting
++recounts
++recoup
++recouped
++recouping
++recoups
++recourse
++recover
++recoverable
++recovered
++recoveries
++recovering
++recovers
++recovery
++recreant
++recreants
++recreate
++recreated
++recreates
++recreating
++recreation
++recreational
++recreations
++recriminate
++recriminated
++recriminates
++recriminating
++recrimination
++recriminations
++recriminatory
++recross
++recrossed
++recrosses
++recrossing
++recrudesce
++recrudesced
++recrudescence
++recrudescent
++recrudesces
++recrudescing
++recruit
++recruited
++recruiter
++recruiters
++recruiting
++recruitment
++recruits
++recrystallize
++recrystallized
++recrystallizes
++recrystallizing
++rectal
++rectally
++rectangle
++rectangles
++rectangular
++rectifiable
++rectification
++rectifications
++rectified
++rectifier
++rectifiers
++rectifies
++rectify
++rectifying
++rectilinear
++rectitude
++recto
++rector
++rectories
++rectors
++rectory
++rectos
++rectum
++rectums
++recumbent
++recuperate
++recuperated
++recuperates
++recuperating
++recuperation
++recuperative
++recur
++recurred
++recurrence
++recurrences
++recurrent
++recurrently
++recurring
++recurs
++recursion
++recursions
++recursive
++recursively
++recuse
++recused
++recuses
++recusing
++recyclable
++recyclables
++recycle
++recycled
++recycles
++recycling
++red
++redact
++redacted
++redacting
++redaction
++redactor
++redactors
++redacts
++redbird
++redbirds
++redbreast
++redbreasts
++redbrick
++redcap
++redcaps
++redcoat
++redcoats
++redcurrant
++redcurrants
++redden
++reddened
++reddening
++reddens
++redder
++reddest
++reddish
++redecorate
++redecorated
++redecorates
++redecorating
++redecoration
++rededicate
++rededicated
++rededicates
++rededicating
++redeem
++redeemable
++redeemed
++redeemer
++redeemers
++redeeming
++redeems
++redefine
++redefined
++redefines
++redefining
++redefinition
++redeliver
++redelivered
++redelivering
++redelivers
++redemption
++redemptive
++redeploy
++redeployed
++redeploying
++redeployment
++redeploys
++redeposit
++redeposited
++redepositing
++redeposits
++redesign
++redesigned
++redesigning
++redesigns
++redetermine
++redetermined
++redetermines
++redetermining
++redevelop
++redeveloped
++redeveloping
++redevelopment
++redevelopments
++redevelops
++redhead
++redheaded
++redheads
++redial
++redialed
++redialing
++redials
++redid
++redirect
++redirected
++redirecting
++redirection
++redirects
++rediscover
++rediscovered
++rediscoveries
++rediscovering
++rediscovers
++rediscovery
++redissolve
++redissolved
++redissolves
++redissolving
++redistribute
++redistributed
++redistributes
++redistributing
++redistribution
++redistributor
++redistributors
++redistrict
++redistricted
++redistricting
++redistricts
++redivide
++redivided
++redivides
++redividing
++redlining
++redneck
++rednecks
++redness
++redo
++redoes
++redoing
++redolence
++redolent
++redone
++redouble
++redoubled
++redoubles
++redoubling
++redoubt
++redoubtable
++redoubtably
++redoubts
++redound
++redounded
++redounding
++redounds
++redraft
++redrafted
++redrafting
++redrafts
++redraw
++redrawing
++redrawn
++redraws
++redress
++redressed
++redresses
++redressing
++redrew
++reds
++redskin
++redskins
++reduce
++reduced
++reducer
++reducers
++reduces
++reducible
++reducing
++reductase
++reduction
++reductionist
++reductions
++reductive
++redundancies
++redundancy
++redundant
++redundantly
++reduplicate
++reduplicated
++reduplicates
++reduplicating
++reduplication
++redwood
++redwoods
++redye
++redyed
++redyeing
++redyes
++reecho
++reechoed
++reechoes
++reechoing
++reed
++reedier
++reediest
++reediness
++reedit
++reedited
++reediting
++reedits
++reeds
++reeducate
++reeducated
++reeducates
++reeducating
++reeducation
++reedy
++reef
++reefed
++reefer
++reefers
++reefing
++reefs
++reek
++reeked
++reeking
++reeks
++reel
++reelect
++reelected
++reelecting
++reelection
++reelections
++reelects
++reeled
++reeling
++reels
++reembark
++reembarked
++reembarking
++reembarks
++reembodied
++reembodies
++reembody
++reembodying
++reemerge
++reemerged
++reemergence
++reemerges
++reemerging
++reemphasize
++reemphasized
++reemphasizes
++reemphasizing
++reemploy
++reemployed
++reemploying
++reemployment
++reemploys
++reenact
++reenacted
++reenacting
++reenactment
++reenactments
++reenacts
++reengage
++reengaged
++reengages
++reengaging
++reenlist
++reenlisted
++reenlisting
++reenlistment
++reenlists
++reenter
++reentered
++reentering
++reenters
++reentries
++reentry
++reequip
++reequipped
++reequipping
++reequips
++reestablish
++reestablished
++reestablishes
++reestablishing
++reestablishment
++reevaluate
++reevaluated
++reevaluates
++reevaluating
++reevaluation
++reevaluations
++reeve
++reeves
++reeving
++reexamination
++reexaminations
++reexamine
++reexamined
++reexamines
++reexamining
++reexplain
++reexplained
++reexplaining
++reexplains
++reexport
++reexported
++reexporting
++reexports
++ref
++reface
++refaced
++refaces
++refacing
++refactor
++refactored
++refactoring
++refactors
++refashion
++refashioned
++refashioning
++refashions
++refasten
++refastened
++refastening
++refastens
++refection
++refectories
++refectory
++refer
++referable
++referee
++refereed
++refereeing
++referees
++reference
++referenced
++references
++referencing
++referendum
++referendums
++referent
++referential
++referents
++referral
++referrals
++referred
++referrer
++referrers
++referring
++refers
++reffed
++reffing
++refile
++refiled
++refiles
++refiling
++refill
++refillable
++refilled
++refilling
++refills
++refinance
++refinanced
++refinances
++refinancing
++refine
++refined
++refinement
++refinements
++refiner
++refineries
++refiners
++refinery
++refines
++refining
++refinish
++refinished
++refinishes
++refinishing
++refit
++refits
++refitted
++refitting
++reflate
++reflated
++reflates
++reflating
++reflation
++reflationary
++reflations
++reflect
++reflected
++reflecting
++reflection
++reflections
++reflective
++reflectively
++reflector
++reflectors
++reflects
++reflex
++reflexes
++reflexive
++reflexively
++reflexives
++reflexology
++refocus
++refocused
++refocuses
++refocusing
++refold
++refolded
++refolding
++refolds
++reforest
++reforestation
++reforested
++reforesting
++reforests
++reforge
++reforged
++reforges
++reforging
++reform
++reformat
++reformation
++reformations
++reformative
++reformatories
++reformatory
++reformatted
++reformatting
++reformed
++reformer
++reformers
++reforming
++reformist
++reformists
++reforms
++reformulate
++reformulated
++reformulates
++reformulating
++reformulation
++reformulations
++refortified
++refortifies
++refortify
++refortifying
++refract
++refracted
++refracting
++refraction
++refractive
++refractories
++refractory
++refracts
++refrain
++refrained
++refraining
++refrains
++refreeze
++refreezes
++refreezing
++refresh
++refreshed
++refresher
++refreshers
++refreshes
++refreshing
++refreshingly
++refreshment
++refreshments
++refrigerant
++refrigerants
++refrigerate
++refrigerated
++refrigerates
++refrigerating
++refrigeration
++refrigerator
++refrigerators
++refroze
++refrozen
++refs
++refuel
++refueled
++refueling
++refuels
++refuge
++refugee
++refugees
++refuges
++refulgence
++refulgent
++refund
++refundable
++refunded
++refunding
++refunds
++refurbish
++refurbished
++refurbishes
++refurbishing
++refurbishment
++refurbishments
++refurnish
++refurnished
++refurnishes
++refurnishing
++refusal
++refusals
++refuse
++refused
++refuses
++refusing
++refutable
++refutation
++refutations
++refute
++refuted
++refuter
++refuters
++refutes
++refuting
++reg
++regain
++regained
++regaining
++regains
++regal
++regale
++regaled
++regalement
++regales
++regalia
++regaling
++regally
++regard
++regarded
++regarding
++regardless
++regards
++regather
++regathered
++regathering
++regathers
++regatta
++regattas
++regencies
++regency
++regeneracy
++regenerate
++regenerated
++regenerates
++regenerating
++regeneration
++regenerative
++regent
++regents
++regex
++regexp
++regexps
++reggae
++regicide
++regicides
++regime
++regimen
++regimens
++regiment
++regimental
++regimentation
++regimented
++regimenting
++regiments
++regimes
++region
++regional
++regionalism
++regionalisms
++regionally
++regions
++register
++registered
++registering
++registers
++registrant
++registrants
++registrar
++registrars
++registration
++registrations
++registries
++registry
++regnant
++regrade
++regraded
++regrades
++regrading
++regress
++regressed
++regresses
++regressing
++regression
++regressions
++regressive
++regret
++regretful
++regretfully
++regrets
++regrettable
++regrettably
++regretted
++regretting
++regrew
++regrind
++regrinding
++regrinds
++reground
++regroup
++regrouped
++regrouping
++regroups
++regrow
++regrowing
++regrown
++regrows
++regrowth
++regular
++regularities
++regularity
++regularization
++regularize
++regularized
++regularizes
++regularizing
++regularly
++regulars
++regulate
++regulated
++regulates
++regulating
++regulation
++regulations
++regulative
++regulator
++regulators
++regulatory
++regurgitate
++regurgitated
++regurgitates
++regurgitating
++regurgitation
++rehab
++rehabbed
++rehabbing
++rehabilitate
++rehabilitated
++rehabilitates
++rehabilitating
++rehabilitation
++rehabilitative
++rehabs
++rehang
++rehanged
++rehanging
++rehangs
++rehash
++rehashed
++rehashes
++rehashing
++rehear
++reheard
++rehearing
++rehearings
++rehears
++rehearsal
++rehearsals
++rehearse
++rehearsed
++rehearses
++rehearsing
++reheat
++reheated
++reheating
++reheats
++rehi
++rehire
++rehired
++rehires
++rehiring
++rehouse
++rehoused
++rehouses
++rehousing
++rehung
++reign
++reigned
++reigning
++reignite
++reignited
++reignites
++reigniting
++reigns
++reimbursable
++reimburse
++reimbursed
++reimbursement
++reimbursements
++reimburses
++reimbursing
++reimpose
++reimposed
++reimposes
++reimposing
++rein
++reincarnate
++reincarnated
++reincarnates
++reincarnating
++reincarnation
++reincarnations
++reincorporate
++reincorporated
++reincorporates
++reincorporating
++reincorporation
++reindeer
++reined
++reinfect
++reinfected
++reinfecting
++reinfection
++reinfections
++reinfects
++reinflate
++reinflated
++reinflates
++reinflating
++reinforce
++reinforced
++reinforcement
++reinforcements
++reinforces
++reinforcing
++reining
++reinitialize
++reinitialized
++reinoculate
++reinoculated
++reinoculates
++reinoculating
++reins
++reinsert
++reinserted
++reinserting
++reinsertion
++reinserts
++reinspect
++reinspected
++reinspecting
++reinspects
++reinstall
++reinstalled
++reinstalling
++reinstate
++reinstated
++reinstatement
++reinstates
++reinstating
++reinsurance
++reintegrate
++reintegrated
++reintegrates
++reintegrating
++reintegration
++reinterpret
++reinterpretation
++reinterpretations
++reinterpreted
++reinterpreting
++reinterprets
++reintroduce
++reintroduced
++reintroduces
++reintroducing
++reintroduction
++reinvent
++reinvented
++reinventing
++reinvention
++reinventions
++reinvents
++reinvest
++reinvested
++reinvesting
++reinvestment
++reinvests
++reinvigorate
++reinvigorated
++reinvigorates
++reinvigorating
++reissue
++reissued
++reissues
++reissuing
++reiterate
++reiterated
++reiterates
++reiterating
++reiteration
++reiterations
++reiterative
++reject
++rejected
++rejecting
++rejection
++rejections
++rejects
++rejig
++rejigged
++rejigger
++rejiggered
++rejiggering
++rejiggers
++rejigging
++rejigs
++rejoice
++rejoiced
++rejoices
++rejoicing
++rejoicings
++rejoin
++rejoinder
++rejoinders
++rejoined
++rejoining
++rejoins
++rejudge
++rejudged
++rejudges
++rejudging
++rejuvenate
++rejuvenated
++rejuvenates
++rejuvenating
++rejuvenation
++rekindle
++rekindled
++rekindles
++rekindling
++rel
++relabel
++relabeled
++relabeling
++relabels
++relaid
++relapse
++relapsed
++relapses
++relapsing
++relate
++related
++relatedness
++relater
++relaters
++relates
++relating
++relation
++relational
++relations
++relationship
++relationships
++relative
++relatively
++relatives
++relativism
++relativist
++relativistic
++relativists
++relativity
++relaunch
++relaunched
++relaunches
++relaunching
++relax
++relaxant
++relaxants
++relaxation
++relaxations
++relaxed
++relaxer
++relaxers
++relaxes
++relaxing
++relay
++relayed
++relaying
++relays
++relearn
++relearned
++relearning
++relearns
++releasable
++release
++released
++releases
++releasing
++relegate
++relegated
++relegates
++relegating
++relegation
++relent
++relented
++relenting
++relentless
++relentlessly
++relentlessness
++relents
++relevance
++relevancy
++relevant
++relevantly
++reliability
++reliable
++reliably
++reliance
++reliant
++relic
++relics
++relied
++relief
++reliefs
++relies
++relieve
++relieved
++reliever
++relievers
++relieves
++relieving
++relight
++relighted
++relighting
++relights
++religion
++religions
++religiosity
++religious
++religiously
++religiousness
++reline
++relined
++relines
++relining
++relinquish
++relinquished
++relinquishes
++relinquishing
++relinquishment
++reliquaries
++reliquary
++relish
++relished
++relishes
++relishing
++relist
++relisted
++relisting
++relists
++relivable
++relive
++relived
++relives
++reliving
++reload
++reloaded
++reloading
++reloads
++relocatable
++relocate
++relocated
++relocates
++relocating
++relocation
++reluctance
++reluctant
++reluctantly
++rely
++relying
++rem
++remade
++remain
++remainder
++remaindered
++remaindering
++remainders
++remained
++remaining
++remains
++remake
++remakes
++remaking
++remand
++remanded
++remanding
++remands
++remap
++remapped
++remapping
++remaps
++remark
++remarkable
++remarkableness
++remarkably
++remarked
++remarking
++remarks
++remarriage
++remarriages
++remarried
++remarries
++remarry
++remarrying
++remaster
++remastered
++remastering
++remasters
++rematch
++rematches
++remeasure
++remeasured
++remeasures
++remeasuring
++remediable
++remedial
++remedially
++remediation
++remedied
++remedies
++remedy
++remedying
++remelt
++remelted
++remelting
++remelts
++remember
++remembered
++remembering
++remembers
++remembrance
++remembrances
++remigrate
++remigrated
++remigrates
++remigrating
++remind
++reminded
++reminder
++reminders
++reminding
++reminds
++reminisce
++reminisced
++reminiscence
++reminiscences
++reminiscent
++reminiscently
++reminisces
++reminiscing
++remiss
++remission
++remissions
++remissly
++remissness
++remit
++remits
++remittance
++remittances
++remitted
++remitting
++remix
++remixed
++remixes
++remixing
++remnant
++remnants
++remodel
++remodeled
++remodeling
++remodels
++remold
++remolded
++remolding
++remolds
++remonstrance
++remonstrances
++remonstrant
++remonstrants
++remonstrate
++remonstrated
++remonstrates
++remonstrating
++remorse
++remorseful
++remorsefully
++remorseless
++remorselessly
++remorselessness
++remortgage
++remortgaged
++remortgages
++remortgaging
++remote
++remotely
++remoteness
++remoter
++remotes
++remotest
++remount
++remounted
++remounting
++remounts
++removable
++removal
++removals
++remove
++removed
++remover
++removers
++removes
++removing
++rems
++remunerate
++remunerated
++remunerates
++remunerating
++remuneration
++remunerations
++remunerative
++renaissance
++renaissances
++renal
++rename
++renamed
++renames
++renaming
++renascence
++renascences
++renascent
++rend
++render
++rendered
++rendering
++renderings
++renders
++rendezvous
++rendezvoused
++rendezvouses
++rendezvousing
++rending
++rendition
++renditions
++rends
++renegade
++renegaded
++renegades
++renegading
++renege
++reneged
++reneger
++renegers
++reneges
++reneging
++renegotiable
++renegotiate
++renegotiated
++renegotiates
++renegotiating
++renegotiation
++renew
++renewable
++renewal
++renewals
++renewed
++renewing
++renews
++rennet
++rennin
++renominate
++renominated
++renominates
++renominating
++renomination
++renounce
++renounced
++renouncement
++renounces
++renouncing
++renovate
++renovated
++renovates
++renovating
++renovation
++renovations
++renovator
++renovators
++renown
++renowned
++rent
++rental
++rentals
++rented
++renter
++renters
++renting
++rents
++renumber
++renumbered
++renumbering
++renumbers
++renunciation
++renunciations
++reoccupation
++reoccupied
++reoccupies
++reoccupy
++reoccupying
++reoccur
++reoccurred
++reoccurring
++reoccurs
++reopen
++reopened
++reopening
++reopens
++reorder
++reordered
++reordering
++reorders
++reorg
++reorganization
++reorganizations
++reorganize
++reorganized
++reorganizes
++reorganizing
++reorged
++reorging
++reorgs
++reorient
++reorientation
++reoriented
++reorienting
++reorients
++rep
++repack
++repackage
++repackaged
++repackages
++repackaging
++repacked
++repacking
++repacks
++repaid
++repaint
++repainted
++repainting
++repaints
++repair
++repairable
++repaired
++repairer
++repairers
++repairing
++repairman
++repairmen
++repairs
++reparable
++reparation
++reparations
++repartee
++repast
++repasts
++repatriate
++repatriated
++repatriates
++repatriating
++repatriation
++repatriations
++repave
++repaved
++repaves
++repaving
++repay
++repayable
++repaying
++repayment
++repayments
++repays
++repeal
++repealed
++repealing
++repeals
++repeat
++repeatability
++repeatable
++repeatably
++repeated
++repeatedly
++repeater
++repeaters
++repeating
++repeats
++repel
++repelled
++repellent
++repellents
++repelling
++repels
++repent
++repentance
++repentant
++repentantly
++repented
++repenting
++repents
++repercussion
++repercussions
++repertoire
++repertoires
++repertories
++repertory
++repetition
++repetitions
++repetitious
++repetitiously
++repetitiousness
++repetitive
++repetitively
++repetitiveness
++rephotograph
++rephotographed
++rephotographing
++rephotographs
++rephrase
++rephrased
++rephrases
++rephrasing
++repine
++repined
++repines
++repining
++replace
++replaceable
++replaced
++replacement
++replacements
++replaces
++replacing
++replant
++replanted
++replanting
++replants
++replay
++replayed
++replaying
++replays
++replenish
++replenished
++replenishes
++replenishing
++replenishment
++replete
++repleted
++repleteness
++repletes
++repleting
++repletion
++replica
++replicas
++replicate
++replicated
++replicates
++replicating
++replication
++replications
++replicator
++replicators
++replied
++replies
++reply
++replying
++repopulate
++repopulated
++repopulates
++repopulating
++report
++reportage
++reported
++reportedly
++reporter
++reporters
++reporting
++reportorial
++reports
++repose
++reposed
++reposeful
++reposes
++reposing
++reposition
++repositioning
++repositories
++repository
++repossess
++repossessed
++repossesses
++repossessing
++repossession
++repossessions
++reprehend
++reprehended
++reprehending
++reprehends
++reprehensibility
++reprehensible
++reprehensibly
++reprehension
++represent
++representation
++representational
++representations
++representative
++representatives
++represented
++representing
++represents
++repress
++repressed
++represses
++repressing
++repression
++repressions
++repressive
++repressively
++repressiveness
++reprice
++repriced
++reprices
++repricing
++reprieve
++reprieved
++reprieves
++reprieving
++reprimand
++reprimanded
++reprimanding
++reprimands
++reprint
++reprinted
++reprinting
++reprints
++reprisal
++reprisals
++reprise
++reprises
++reprising
++reprized
++reproach
++reproachable
++reproached
++reproaches
++reproachful
++reproachfully
++reproaching
++reprobate
++reprobates
++reprocess
++reprocessed
++reprocesses
++reprocessing
++reproduce
++reproduced
++reproducer
++reproducers
++reproduces
++reproducible
++reproducing
++reproduction
++reproductions
++reproductive
++reprogram
++reprogrammed
++reprogramming
++reprograms
++reproof
++reproofed
++reproofing
++reproofs
++reprove
++reproved
++reproves
++reproving
++reprovingly
++reps
++reptile
++reptiles
++reptilian
++reptilians
++republic
++republican
++republicanism
++republicans
++republication
++republications
++republics
++republish
++republished
++republishes
++republishing
++repudiate
++repudiated
++repudiates
++repudiating
++repudiation
++repudiations
++repudiator
++repudiators
++repugnance
++repugnant
++repulse
++repulsed
++repulses
++repulsing
++repulsion
++repulsive
++repulsively
++repulsiveness
++repurchase
++repurchased
++repurchases
++repurchasing
++reputability
++reputable
++reputably
++reputation
++reputations
++repute
++reputed
++reputedly
++reputes
++reputing
++request
++requested
++requester
++requesting
++requests
++requiem
++requiems
++require
++required
++requirement
++requirements
++requires
++requiring
++requisite
++requisites
++requisition
++requisitioned
++requisitioning
++requisitions
++requital
++requite
++requited
++requiter
++requiters
++requites
++requiting
++reran
++reread
++rereading
++rereads
++rerecord
++rerecorded
++rerecording
++rerecords
++reroute
++rerouted
++reroutes
++rerouting
++rerun
++rerunning
++reruns
++res
++resalable
++resale
++resales
++resat
++reschedule
++rescheduled
++reschedules
++rescheduling
++rescind
++rescinded
++rescinding
++rescinds
++rescission
++rescue
++rescued
++rescuer
++rescuers
++rescues
++rescuing
++reseal
++resealable
++resealed
++resealing
++reseals
++research
++researched
++researcher
++researchers
++researches
++researching
++resection
++resections
++reseed
++reseeded
++reseeding
++reseeds
++resell
++reseller
++resellers
++reselling
++resells
++resemblance
++resemblances
++resemble
++resembled
++resembles
++resembling
++resend
++resent
++resented
++resentful
++resentfully
++resentfulness
++resenting
++resentment
++resentments
++resents
++reserpine
++reservation
++reservations
++reserve
++reserved
++reservedly
++reservedness
++reserves
++reserving
++reservist
++reservists
++reservoir
++reservoirs
++reset
++resets
++resetting
++resettle
++resettled
++resettlement
++resettles
++resettling
++resew
++resewed
++resewing
++resewn
++resews
++reshape
++reshaped
++reshapes
++reshaping
++resharpen
++resharpened
++resharpening
++resharpens
++reship
++reshipment
++reshipped
++reshipping
++reships
++reshuffle
++reshuffled
++reshuffles
++reshuffling
++reside
++resided
++residence
++residences
++residencies
++residency
++resident
++residential
++residents
++resides
++residing
++residua
++residual
++residuals
++residue
++residues
++residuum
++resign
++resignation
++resignations
++resigned
++resignedly
++resigning
++resigns
++resilience
++resiliency
++resilient
++resiliently
++resin
++resinous
++resins
++resist
++resistance
++resistances
++resistant
++resisted
++resister
++resisters
++resistible
++resisting
++resistivity
++resistless
++resistor
++resistors
++resists
++resit
++resits
++resitting
++resize
++resized
++resizes
++resizing
++resold
++resole
++resoled
++resoles
++resoling
++resolute
++resolutely
++resoluteness
++resolution
++resolutions
++resolvable
++resolve
++resolved
++resolver
++resolves
++resolving
++resonance
++resonances
++resonant
++resonantly
++resonate
++resonated
++resonates
++resonating
++resonator
++resonators
++resorption
++resort
++resorted
++resorting
++resorts
++resound
++resounded
++resounding
++resoundingly
++resounds
++resource
++resourced
++resourceful
++resourcefully
++resourcefulness
++resources
++resourcing
++resow
++resowed
++resowing
++resown
++resows
++resp
++respect
++respectability
++respectable
++respectably
++respected
++respecter
++respecters
++respectful
++respectfully
++respectfulness
++respecting
++respective
++respectively
++respects
++respell
++respelled
++respelling
++respells
++respiration
++respirator
++respirators
++respiratory
++respire
++respired
++respires
++respiring
++respite
++respites
++resplendence
++resplendent
++resplendently
++respond
++responded
++respondent
++respondents
++responding
++responds
++response
++responses
++responsibilities
++responsibility
++responsible
++responsibly
++responsive
++responsively
++responsiveness
++respray
++resprayed
++respraying
++resprays
++rest
++restaff
++restaffed
++restaffing
++restaffs
++restart
++restarted
++restarting
++restarts
++restate
++restated
++restatement
++restatements
++restates
++restating
++restaurant
++restaurants
++restaurateur
++restaurateurs
++rested
++restful
++restfuller
++restfullest
++restfully
++restfulness
++resting
++restitch
++restitched
++restitches
++restitching
++restitution
++restive
++restively
++restiveness
++restless
++restlessly
++restlessness
++restock
++restocked
++restocking
++restocks
++restoration
++restorations
++restorative
++restoratives
++restore
++restored
++restorer
++restorers
++restores
++restoring
++restrain
++restrained
++restrainer
++restrainers
++restraining
++restrains
++restraint
++restraints
++restrengthen
++restrengthened
++restrengthening
++restrengthens
++restrict
++restricted
++restricting
++restriction
++restrictions
++restrictive
++restrictively
++restrictiveness
++restricts
++restring
++restringing
++restrings
++restroom
++restrooms
++restructure
++restructured
++restructures
++restructuring
++restructurings
++restrung
++rests
++restudied
++restudies
++restudy
++restudying
++restyle
++restyled
++restyles
++restyling
++resubmit
++resubmits
++resubmitted
++resubmitting
++resubscribe
++resubscribed
++resubscribes
++resubscribing
++result
++resultant
++resultants
++resulted
++resulting
++results
++resume
++resumed
++resumes
++resuming
++resumption
++resumptions
++resupplied
++resupplies
++resupply
++resupplying
++resurface
++resurfaced
++resurfaces
++resurfacing
++resurgence
++resurgences
++resurgent
++resurrect
++resurrected
++resurrecting
++resurrection
++resurrections
++resurrects
++resurvey
++resurveyed
++resurveying
++resurveys
++resuscitate
++resuscitated
++resuscitates
++resuscitating
++resuscitation
++resuscitator
++resuscitators
++retail
++retailed
++retailer
++retailers
++retailing
++retails
++retain
++retained
++retainer
++retainers
++retaining
++retains
++retake
++retaken
++retakes
++retaking
++retaliate
++retaliated
++retaliates
++retaliating
++retaliation
++retaliations
++retaliative
++retaliatory
++retard
++retardant
++retardants
++retardation
++retarded
++retarder
++retarders
++retarding
++retards
++retaught
++retch
++retched
++retches
++retching
++reteach
++reteaches
++reteaching
++retell
++retelling
++retells
++retention
++retentive
++retentively
++retentiveness
++retest
++retested
++retesting
++retests
++rethink
++rethinking
++rethinks
++rethought
++reticence
++reticent
++reticently
++reticulated
++reticulation
++reticulations
++retie
++retied
++reties
++retina
++retinal
++retinas
++retinue
++retinues
++retire
++retired
++retiree
++retirees
++retirement
++retirements
++retires
++retiring
++retold
++retook
++retool
++retooled
++retooling
++retools
++retort
++retorted
++retorting
++retorts
++retouch
++retouched
++retouches
++retouching
++retrace
++retraced
++retraces
++retracing
++retract
++retractable
++retracted
++retractile
++retracting
++retraction
++retractions
++retracts
++retrain
++retrained
++retraining
++retrains
++retread
++retreaded
++retreading
++retreads
++retreat
++retreated
++retreating
++retreats
++retrench
++retrenched
++retrenches
++retrenching
++retrenchment
++retrenchments
++retrial
++retrials
++retribution
++retributions
++retributive
++retried
++retries
++retrievable
++retrieval
++retrievals
++retrieve
++retrieved
++retriever
++retrievers
++retrieves
++retrieving
++retro
++retroactive
++retroactively
++retrod
++retrodden
++retrofire
++retrofired
++retrofires
++retrofiring
++retrofit
++retrofits
++retrofitted
++retrofitting
++retrograde
++retrograded
++retrogrades
++retrograding
++retrogress
++retrogressed
++retrogresses
++retrogressing
++retrogression
++retrogressive
++retrorocket
++retrorockets
++retros
++retrospect
++retrospected
++retrospecting
++retrospection
++retrospective
++retrospectively
++retrospectives
++retrospects
++retrovirus
++retroviruses
++retry
++retrying
++retsina
++return
++returnable
++returnables
++returned
++returnee
++returnees
++returner
++returners
++returning
++returns
++retweet
++retweeted
++retweeting
++retweets
++retying
++retype
++retyped
++retypes
++retyping
++reunification
++reunified
++reunifies
++reunify
++reunifying
++reunion
++reunions
++reunite
++reunited
++reunites
++reuniting
++reupholster
++reupholstered
++reupholstering
++reupholsters
++reusable
++reuse
++reused
++reuses
++reusing
++rev
++revaluation
++revaluations
++revalue
++revalued
++revalues
++revaluing
++revamp
++revamped
++revamping
++revamps
++reveal
++revealed
++revealing
++revealingly
++revealings
++reveals
++reveille
++revel
++revelation
++revelations
++reveled
++reveler
++revelers
++reveling
++revelings
++revelries
++revelry
++revels
++revenge
++revenged
++revengeful
++revengefully
++revenges
++revenging
++revenue
++revenuer
++revenuers
++revenues
++reverb
++reverberate
++reverberated
++reverberates
++reverberating
++reverberation
++reverberations
++revere
++revered
++reverence
++reverenced
++reverences
++reverencing
++reverend
++reverends
++reverent
++reverential
++reverentially
++reverently
++reveres
++reverie
++reveries
++revering
++revers
++reversal
++reversals
++reverse
++reversed
++reversely
++reverses
++reversibility
++reversible
++reversibly
++reversing
++reversion
++reversions
++revert
++reverted
++revertible
++reverting
++reverts
++revetment
++revetments
++review
++reviewed
++reviewer
++reviewers
++reviewing
++reviews
++revile
++reviled
++revilement
++reviler
++revilers
++reviles
++reviling
++revise
++revised
++reviser
++revisers
++revises
++revising
++revision
++revisionism
++revisionist
++revisionists
++revisions
++revisit
++revisited
++revisiting
++revisits
++revitalization
++revitalize
++revitalized
++revitalizes
++revitalizing
++revival
++revivalism
++revivalist
++revivalists
++revivals
++revive
++revived
++revives
++revivification
++revivified
++revivifies
++revivify
++revivifying
++reviving
++revocable
++revocation
++revocations
++revoke
++revoked
++revokes
++revoking
++revolt
++revolted
++revolting
++revoltingly
++revolts
++revolution
++revolutionaries
++revolutionary
++revolutionist
++revolutionists
++revolutionize
++revolutionized
++revolutionizes
++revolutionizing
++revolutions
++revolvable
++revolve
++revolved
++revolver
++revolvers
++revolves
++revolving
++revs
++revue
++revues
++revulsion
++revved
++revving
++reward
++rewarded
++rewarding
++rewards
++rewarm
++rewarmed
++rewarming
++rewarms
++rewash
++rewashed
++rewashes
++rewashing
++reweave
++reweaves
++reweaving
++rewed
++rewedded
++rewedding
++reweds
++reweigh
++reweighed
++reweighing
++reweighs
++rewind
++rewindable
++rewinding
++rewinds
++rewire
++rewired
++rewires
++rewiring
++reword
++reworded
++rewording
++rewords
++rework
++reworked
++reworking
++reworkings
++reworks
++rewound
++rewove
++rewoven
++rewrite
++rewrites
++rewriting
++rewritten
++rewrote
++rezone
++rezoned
++rezones
++rezoning
++rhapsodic
++rhapsodical
++rhapsodies
++rhapsodize
++rhapsodized
++rhapsodizes
++rhapsodizing
++rhapsody
++rhea
++rheas
++rhenium
++rheostat
++rheostats
++rhesus
++rhesuses
++rhetoric
++rhetorical
++rhetorically
++rhetorician
++rhetoricians
++rheum
++rheumatic
++rheumatically
++rheumatics
++rheumatism
++rheumatoid
++rheumy
++rhinestone
++rhinestones
++rhinitis
++rhino
++rhinoceros
++rhinoceroses
++rhinoplasty
++rhinos
++rhinovirus
++rhinoviruses
++rhizome
++rhizomes
++rho
++rhodium
++rhododendron
++rhododendrons
++rhomboid
++rhomboidal
++rhomboids
++rhombus
++rhombuses
++rhos
++rhubarb
++rhubarbs
++rhyme
++rhymed
++rhymer
++rhymers
++rhymes
++rhymester
++rhymesters
++rhyming
++rhythm
++rhythmic
++rhythmical
++rhythmically
++rhythms
++rial
++rials
++rib
++ribald
++ribaldry
++ribbed
++ribber
++ribbers
++ribbing
++ribbon
++ribbons
++riboflavin
++ribs
++rice
++riced
++ricer
++ricers
++rices
++rich
++richer
++riches
++richest
++richly
++richness
++ricing
++rick
++ricked
++ricketier
++ricketiest
++rickets
++rickety
++ricking
++rickrack
++ricks
++rickshaw
++rickshaws
++ricochet
++ricocheted
++ricocheting
++ricochets
++ricotta
++rid
++riddance
++ridden
++ridding
++riddle
++riddled
++riddles
++riddling
++ride
++rider
++riderless
++riders
++ridership
++rides
++ridge
++ridged
++ridgepole
++ridgepoles
++ridges
++ridging
++ridgy
++ridicule
++ridiculed
++ridicules
++ridiculing
++ridiculous
++ridiculously
++ridiculousness
++riding
++rids
++rife
++rifer
++rifest
++riff
++riffed
++riffing
++riffle
++riffled
++riffles
++riffling
++riffraff
++riffs
++rifle
++rifled
++rifleman
++riflemen
++rifler
++riflers
++rifles
++rifling
++rift
++rifted
++rifting
++rifts
++rig
++rigatoni
++rigged
++rigger
++riggers
++rigging
++right
++righted
++righteous
++righteously
++righteousness
++righter
++rightest
++rightful
++rightfully
++rightfulness
++righting
++rightism
++rightist
++rightists
++rightly
++rightmost
++rightness
++righto
++rights
++rightsize
++rightsized
++rightsizes
++rightsizing
++rightward
++rightwards
++rigid
++rigidity
++rigidly
++rigidness
++rigmarole
++rigmaroles
++rigor
++rigorous
++rigorously
++rigorousness
++rigors
++rigs
++rile
++riled
++riles
++riling
++rill
++rills
++rim
++rime
++rimed
++rimes
++riming
++rimless
++rimmed
++rimming
++rims
++rind
++rinds
++ring
++ringed
++ringer
++ringers
++ringgit
++ringgits
++ringing
++ringings
++ringleader
++ringleaders
++ringlet
++ringlets
++ringlike
++ringmaster
++ringmasters
++rings
++ringside
++ringtone
++ringtones
++ringworm
++rink
++rinks
++rinse
++rinsed
++rinses
++rinsing
++riot
++rioted
++rioter
++rioters
++rioting
++riotous
++riotously
++riotousness
++riots
++rip
++riparian
++ripcord
++ripcords
++ripe
++ripely
++ripen
++ripened
++ripeness
++ripening
++ripens
++riper
++ripest
++ripoff
++ripoffs
++riposte
++riposted
++ripostes
++riposting
++ripped
++ripper
++rippers
++ripping
++ripple
++rippled
++ripples
++rippling
++ripply
++rips
++ripsaw
++ripsaws
++riptide
++riptides
++rise
++risen
++riser
++risers
++rises
++risibility
++risible
++rising
++risings
++risk
++risked
++riskier
++riskiest
++riskily
++riskiness
++risking
++risks
++risky
++risotto
++risottos
++risque
++rissole
++rissoles
++rite
++rites
++ritual
++ritualism
++ritualistic
++ritualistically
++ritualized
++ritually
++rituals
++ritzier
++ritziest
++ritzy
++riv
++rival
++rivaled
++rivaling
++rivalries
++rivalry
++rivals
++rive
++rived
++riven
++river
++riverbank
++riverbanks
++riverbed
++riverbeds
++riverboat
++riverboats
++riverfront
++rivers
++riverside
++riversides
++rives
++rivet
++riveted
++riveter
++riveters
++riveting
++rivets
++riviera
++rivieras
++riving
++rivulet
++rivulets
++riyal
++riyals
++rm
++roach
++roached
++roaches
++roaching
++road
++roadbed
++roadbeds
++roadblock
++roadblocked
++roadblocking
++roadblocks
++roadhouse
++roadhouses
++roadie
++roadies
++roadkill
++roadrunner
++roadrunners
++roads
++roadshow
++roadshows
++roadside
++roadsides
++roadster
++roadsters
++roadway
++roadways
++roadwork
++roadworks
++roadworthy
++roam
++roamed
++roamer
++roamers
++roaming
++roams
++roan
++roans
++roar
++roared
++roarer
++roarers
++roaring
++roars
++roast
++roasted
++roaster
++roasters
++roasting
++roastings
++roasts
++rob
++robbed
++robber
++robberies
++robbers
++robbery
++robbing
++robe
++robed
++robes
++robin
++robing
++robins
++robocall
++robocalled
++robocalling
++robocalls
++robot
++robotic
++robotics
++robotize
++robotized
++robotizes
++robotizing
++robots
++robs
++robust
++robuster
++robustest
++robustly
++robustness
++rock
++rockabilly
++rockbound
++rocked
++rocker
++rockeries
++rockers
++rockery
++rocket
++rocketed
++rocketing
++rocketry
++rockets
++rockfall
++rockfalls
++rockier
++rockiest
++rockiness
++rocking
++rocks
++rocky
++rococo
++rod
++rode
++rodent
++rodents
++rodeo
++rodeos
++rods
++roe
++roebuck
++roebucks
++roentgen
++roentgens
++roes
++roger
++rogered
++rogering
++rogers
++rogue
++roguery
++rogues
++roguish
++roguishly
++roguishness
++roil
++roiled
++roiling
++roils
++roister
++roistered
++roisterer
++roisterers
++roistering
++roisters
++role
++roles
++roll
++rollback
++rollbacks
++rolled
++roller
++rollerblading
++rollers
++rollerskating
++rollick
++rollicked
++rollicking
++rollicks
++rolling
++rollings
++rollmop
++rollmops
++rollover
++rollovers
++rolls
++romaine
++romaines
++roman
++romance
++romanced
++romancer
++romancers
++romances
++romancing
++romantic
++romantically
++romanticism
++romanticist
++romanticists
++romanticize
++romanticized
++romanticizes
++romanticizing
++romantics
++romeo
++romeos
++romp
++romped
++romper
++rompers
++romping
++romps
++rondo
++rondos
++rood
++roods
++roof
++roofed
++roofer
++roofers
++roofing
++roofless
++roofs
++rooftop
++rooftops
++rook
++rooked
++rookeries
++rookery
++rookie
++rookies
++rooking
++rooks
++room
++roomed
++roomer
++roomers
++roomette
++roomettes
++roomful
++roomfuls
++roomier
++roomiest
++roominess
++rooming
++roommate
++roommates
++rooms
++roomy
++roost
++roosted
++rooster
++roosters
++roosting
++roosts
++root
++rooted
++rooter
++rooters
++rooting
++rootkit
++rootkits
++rootless
++rootlessness
++rootlet
++rootlets
++roots
++rope
++roped
++roper
++ropers
++ropes
++ropier
++ropiest
++roping
++ropy
++rosaries
++rosary
++rose
++roseate
++rosebud
++rosebuds
++rosebush
++rosebushes
++rosemary
++roses
++rosette
++rosettes
++rosewater
++rosewood
++rosewoods
++rosier
++rosiest
++rosily
++rosin
++rosined
++rosiness
++rosining
++rosins
++roster
++rosters
++rostrum
++rostrums
++rosy
++rot
++rota
++rotaries
++rotary
++rotas
++rotate
++rotated
++rotates
++rotating
++rotation
++rotational
++rotations
++rotatory
++rote
++rotgut
++rotisserie
++rotisseries
++rotogravure
++rotogravures
++rotor
++rotors
++rototiller
++rototillers
++rots
++rotted
++rotten
++rottener
++rottenest
++rottenly
++rottenness
++rotter
++rotters
++rotting
++rottweiler
++rottweilers
++rotund
++rotunda
++rotundas
++rotundity
++rotundness
++roue
++roues
++rouge
++rouged
++rouges
++rough
++roughage
++roughcast
++roughed
++roughen
++roughened
++roughening
++roughens
++rougher
++roughest
++roughhouse
++roughhoused
++roughhouses
++roughhousing
++roughing
++roughly
++roughneck
++roughnecked
++roughnecking
++roughnecks
++roughness
++roughs
++roughshod
++rouging
++roulette
++round
++roundabout
++roundabouts
++rounded
++roundel
++roundelay
++roundelays
++roundels
++rounder
++rounders
++roundest
++roundhouse
++roundhouses
++rounding
++roundish
++roundly
++roundness
++rounds
++roundup
++roundups
++roundworm
++roundworms
++rouse
++roused
++rouses
++rousing
++roust
++roustabout
++roustabouts
++rousted
++rousting
++rousts
++rout
++route
++routed
++routeing
++router
++routers
++routes
++routine
++routinely
++routines
++routing
++routinize
++routinized
++routinizes
++routinizing
++routs
++roux
++rove
++roved
++rover
++rovers
++roves
++roving
++row
++rowan
++rowans
++rowboat
++rowboats
++rowdier
++rowdies
++rowdiest
++rowdily
++rowdiness
++rowdy
++rowdyism
++rowed
++rowel
++roweled
++roweling
++rowels
++rower
++rowers
++rowing
++rowlock
++rowlocks
++rows
++royal
++royalist
++royalists
++royally
++royals
++royalties
++royalty
++rpm
++rps
++rs
++rt
++rte
++rub
++rubato
++rubatos
++rubbed
++rubber
++rubberize
++rubberized
++rubberizes
++rubberizing
++rubberneck
++rubbernecked
++rubbernecker
++rubberneckers
++rubbernecking
++rubbernecks
++rubbers
++rubbery
++rubbing
++rubbings
++rubbish
++rubbished
++rubbishes
++rubbishing
++rubbishy
++rubble
++rubdown
++rubdowns
++rube
++rubella
++rubes
++rubicund
++rubidium
++rubier
++rubies
++rubiest
++ruble
++rubles
++rubric
++rubrics
++rubs
++ruby
++ruched
++ruck
++rucked
++rucking
++rucks
++rucksack
++rucksacks
++ruckus
++ruckuses
++ructions
++rudder
++rudderless
++rudders
++ruddier
++ruddiest
++ruddiness
++ruddy
++rude
++rudely
++rudeness
++ruder
++rudest
++rudiment
++rudimentary
++rudiments
++rue
++rued
++rueful
++ruefully
++ruefulness
++rues
++ruff
++ruffed
++ruffian
++ruffianly
++ruffians
++ruffing
++ruffle
++ruffled
++ruffles
++ruffling
++ruffly
++ruffs
++rug
++rugby
++rugged
++ruggeder
++ruggedest
++ruggedly
++ruggedness
++rugger
++rugrat
++rugrats
++rugs
++ruin
++ruination
++ruined
++ruing
++ruining
++ruinous
++ruinously
++ruins
++rule
++ruled
++ruler
++rulers
++rules
++ruling
++rulings
++rum
++rumba
++rumbaed
++rumbaing
++rumbas
++rumble
++rumbled
++rumbles
++rumbling
++rumblings
++rumbustious
++ruminant
++ruminants
++ruminate
++ruminated
++ruminates
++ruminating
++rumination
++ruminations
++ruminative
++ruminatively
++rummage
++rummaged
++rummages
++rummaging
++rummer
++rummest
++rummy
++rumor
++rumored
++rumoring
++rumormonger
++rumormongers
++rumors
++rump
++rumple
++rumpled
++rumples
++rumpling
++rumply
++rumps
++rumpus
++rumpuses
++rums
++run
++runabout
++runabouts
++runaround
++runarounds
++runaway
++runaways
++rundown
++rundowns
++rune
++runes
++rung
++rungs
++runic
++runlet
++runlets
++runnel
++runnels
++runner
++runners
++runnier
++runniest
++running
++runny
++runoff
++runoffs
++runs
++runt
++runtier
++runtiest
++runts
++runty
++runway
++runways
++rupee
++rupees
++rupiah
++rupiahs
++rupture
++ruptured
++ruptures
++rupturing
++rural
++ruse
++ruses
++rush
++rushed
++rusher
++rushers
++rushes
++rushing
++rushy
++rusk
++rusks
++russet
++russets
++rust
++rusted
++rustic
++rustically
++rusticate
++rusticated
++rusticates
++rusticating
++rustication
++rusticity
++rustics
++rustier
++rustiest
++rustiness
++rusting
++rustle
++rustled
++rustler
++rustlers
++rustles
++rustling
++rustlings
++rustproof
++rustproofed
++rustproofing
++rustproofs
++rusts
++rusty
++rut
++rutabaga
++rutabagas
++ruthenium
++rutherfordium
++ruthless
++ruthlessly
++ruthlessness
++ruts
++rutted
++ruttier
++ruttiest
++rutting
++rutty
++rye
++s
++sabbath
++sabbaths
++sabbatical
++sabbaticals
++saber
++sabers
++sable
++sables
++sabot
++sabotage
++sabotaged
++sabotages
++sabotaging
++saboteur
++saboteurs
++sabots
++sabra
++sabras
++sac
++saccharin
++saccharine
++sacerdotal
++sachem
++sachems
++sachet
++sachets
++sack
++sackcloth
++sacked
++sacker
++sackers
++sackful
++sackfuls
++sacking
++sackings
++sacks
++sacra
++sacrament
++sacramental
++sacraments
++sacred
++sacredly
++sacredness
++sacrifice
++sacrificed
++sacrifices
++sacrificial
++sacrificially
++sacrificing
++sacrilege
++sacrileges
++sacrilegious
++sacrilegiously
++sacristan
++sacristans
++sacristies
++sacristy
++sacroiliac
++sacroiliacs
++sacrosanct
++sacrosanctness
++sacrum
++sacs
++sad
++sadden
++saddened
++saddening
++saddens
++sadder
++saddest
++saddle
++saddlebag
++saddlebags
++saddled
++saddler
++saddlers
++saddlery
++saddles
++saddling
++sades
++sadhu
++sadhus
++sadism
++sadist
++sadistic
++sadistically
++sadists
++sadly
++sadness
++sadomasochism
++sadomasochist
++sadomasochistic
++sadomasochists
++safari
++safaried
++safariing
++safaris
++safe
++safeguard
++safeguarded
++safeguarding
++safeguards
++safekeeping
++safely
++safeness
++safer
++safes
++safest
++safeties
++safety
++safflower
++safflowers
++saffron
++saffrons
++sag
++saga
++sagacious
++sagaciously
++sagacity
++sagas
++sage
++sagebrush
++sagely
++sager
++sages
++sagest
++sagged
++saggier
++saggiest
++sagging
++saggy
++sago
++sags
++saguaro
++saguaros
++sahib
++sahibs
++said
++sail
++sailboard
++sailboarder
++sailboarders
++sailboarding
++sailboards
++sailboat
++sailboats
++sailcloth
++sailed
++sailfish
++sailfishes
++sailing
++sailings
++sailor
++sailors
++sailplane
++sailplanes
++sails
++saint
++sainted
++sainthood
++saintlier
++saintliest
++saintlike
++saintliness
++saintly
++saints
++saith
++sake
++salaam
++salaamed
++salaaming
++salaams
++salable
++salacious
++salaciously
++salaciousness
++salacity
++salad
++salads
++salamander
++salamanders
++salami
++salamis
++salaried
++salaries
++salary
++sale
++saleroom
++salerooms
++sales
++salesclerk
++salesclerks
++salesgirl
++salesgirls
++salesladies
++saleslady
++salesman
++salesmanship
++salesmen
++salespeople
++salesperson
++salespersons
++salesroom
++salesrooms
++saleswoman
++saleswomen
++salience
++salient
++saliently
++salients
++saline
++salines
++salinity
++saliva
++salivary
++salivate
++salivated
++salivates
++salivating
++salivation
++sallied
++sallies
++sallow
++sallower
++sallowest
++sallowness
++sally
++sallying
++salmon
++salmonella
++salmonellae
++salmons
++salon
++salons
++saloon
++saloons
++salsa
++salsas
++salt
++saltbox
++saltboxes
++saltcellar
++saltcellars
++salted
++salter
++saltest
++saltier
++saltiest
++saltine
++saltines
++saltiness
++salting
++saltpeter
++salts
++saltshaker
++saltshakers
++saltwater
++salty
++salubrious
++salutary
++salutation
++salutations
++salutatorian
++salutatorians
++salutatory
++salute
++saluted
++salutes
++saluting
++salvage
++salvageable
++salvaged
++salvages
++salvaging
++salvation
++salve
++salved
++salver
++salvers
++salves
++salving
++salvo
++salvos
++samarium
++samba
++sambaed
++sambaing
++sambas
++same
++sameness
++sames
++samey
++samizdat
++samizdats
++samosa
++samosas
++samovar
++samovars
++sampan
++sampans
++sample
++sampled
++sampler
++samplers
++samples
++sampling
++samplings
++samurai
++samurais
++sanatorium
++sanatoriums
++sanctification
++sanctified
++sanctifies
++sanctify
++sanctifying
++sanctimonious
++sanctimoniously
++sanctimoniousness
++sanctimony
++sanction
++sanctioned
++sanctioning
++sanctions
++sanctity
++sanctuaries
++sanctuary
++sanctum
++sanctums
++sand
++sandal
++sandals
++sandalwood
++sandbag
++sandbagged
++sandbagger
++sandbaggers
++sandbagging
++sandbags
++sandbank
++sandbanks
++sandbar
++sandbars
++sandblast
++sandblasted
++sandblaster
++sandblasters
++sandblasting
++sandblasts
++sandbox
++sandboxes
++sandcastle
++sandcastles
++sanded
++sander
++sanders
++sandhog
++sandhogs
++sandier
++sandiest
++sandiness
++sanding
++sandlot
++sandlots
++sandlotter
++sandlotters
++sandman
++sandmen
++sandpaper
++sandpapered
++sandpapering
++sandpapers
++sandpiper
++sandpipers
++sandpit
++sandpits
++sands
++sandstone
++sandstorm
++sandstorms
++sandwich
++sandwiched
++sandwiches
++sandwiching
++sandy
++sane
++sanely
++saneness
++saner
++sanest
++sang
++sangfroid
++sangria
++sangs
++sanguinary
++sanguine
++sanguinely
++sanitarian
++sanitarians
++sanitarium
++sanitariums
++sanitary
++sanitation
++sanitize
++sanitized
++sanitizes
++sanitizing
++sanity
++sank
++sans
++sanserif
++sap
++sapience
++sapiens
++sapient
++sapless
++sapling
++saplings
++sapped
++sapper
++sappers
++sapphire
++sapphires
++sappier
++sappiest
++sappiness
++sapping
++sappy
++saprophyte
++saprophytes
++saprophytic
++saps
++sapsucker
++sapsuckers
++sapwood
++saran
++sarcasm
++sarcasms
++sarcastic
++sarcastically
++sarcoma
++sarcomas
++sarcophagi
++sarcophagus
++sardine
++sardines
++sardonic
++sardonically
++sarge
++sarges
++sari
++saris
++sarky
++sarnie
++sarnies
++sarong
++sarongs
++sarsaparilla
++sarsaparillas
++sartorial
++sartorially
++sash
++sashay
++sashayed
++sashaying
++sashays
++sashes
++sass
++sassafras
++sassafrases
++sassed
++sasses
++sassier
++sassiest
++sassing
++sassy
++sat
++satanic
++satanical
++satanically
++satanism
++satanist
++satanists
++satay
++satchel
++satchels
++sate
++sated
++sateen
++satellite
++satellited
++satellites
++satelliting
++sates
++satiable
++satiate
++satiated
++satiates
++satiating
++satiation
++satiety
++satin
++sating
++satinwood
++satinwoods
++satiny
++satire
++satires
++satiric
++satirical
++satirically
++satirist
++satirists
++satirize
++satirized
++satirizes
++satirizing
++satisfaction
++satisfactions
++satisfactorily
++satisfactory
++satisfied
++satisfies
++satisfy
++satisfying
++satisfyingly
++satori
++satrap
++satraps
++satsuma
++satsumas
++saturate
++saturated
++saturates
++saturating
++saturation
++saturnine
++satyr
++satyriasis
++satyric
++satyrs
++sauce
++sauced
++saucepan
++saucepans
++saucer
++saucers
++sauces
++saucier
++sauciest
++saucily
++sauciness
++saucing
++saucy
++sauerkraut
++sauna
++saunaed
++saunaing
++saunas
++saunter
++sauntered
++sauntering
++saunters
++saurian
++sauropod
++sauropods
++sausage
++sausages
++saute
++sauteed
++sauteing
++sautes
++savable
++savage
++savaged
++savagely
++savageness
++savager
++savageries
++savagery
++savages
++savagest
++savaging
++savanna
++savannas
++savant
++savants
++save
++saved
++saver
++savers
++saves
++saving
++savings
++savior
++saviors
++savor
++savored
++savorier
++savories
++savoriest
++savoriness
++savoring
++savors
++savory
++savoy
++savoys
++savvied
++savvier
++savvies
++savviest
++savvy
++savvying
++saw
++sawbones
++sawbuck
++sawbucks
++sawdust
++sawed
++sawflies
++sawfly
++sawhorse
++sawhorses
++sawing
++sawmill
++sawmills
++saws
++sawyer
++sawyers
++sax
++saxes
++saxifrage
++saxifrages
++saxophone
++saxophones
++saxophonist
++saxophonists
++say
++saying
++sayings
++says
++scab
++scabbard
++scabbards
++scabbed
++scabbier
++scabbiest
++scabbiness
++scabbing
++scabby
++scabies
++scabrous
++scabs
++scad
++scads
++scaffold
++scaffolding
++scaffolds
++scag
++scagged
++scags
++scalar
++scalars
++scalawag
++scalawags
++scald
++scalded
++scalding
++scalds
++scale
++scaled
++scaleless
++scalene
++scales
++scalier
++scaliest
++scaliness
++scaling
++scallion
++scallions
++scallop
++scalloped
++scalloping
++scallops
++scalp
++scalped
++scalpel
++scalpels
++scalper
++scalpers
++scalping
++scalps
++scaly
++scam
++scammed
++scammer
++scammers
++scamming
++scamp
++scamper
++scampered
++scampering
++scampers
++scampi
++scamps
++scams
++scan
++scandal
++scandalize
++scandalized
++scandalizes
++scandalizing
++scandalmonger
++scandalmongers
++scandalous
++scandalously
++scandals
++scandium
++scanned
++scanner
++scanners
++scanning
++scans
++scansion
++scant
++scanted
++scanter
++scantest
++scantier
++scanties
++scantiest
++scantily
++scantiness
++scanting
++scantly
++scantness
++scants
++scanty
++scapegoat
++scapegoated
++scapegoating
++scapegoats
++scapegrace
++scapegraces
++scapula
++scapulae
++scapular
++scapulars
++scar
++scarab
++scarabs
++scarce
++scarcely
++scarceness
++scarcer
++scarcest
++scarcities
++scarcity
++scare
++scarecrow
++scarecrows
++scared
++scaremonger
++scaremongering
++scaremongers
++scares
++scarf
++scarfed
++scarfing
++scarfs
++scarier
++scariest
++scarification
++scarified
++scarifies
++scarify
++scarifying
++scarily
++scariness
++scaring
++scarlatina
++scarlet
++scarp
++scarped
++scarper
++scarpered
++scarpering
++scarpers
++scarping
++scarps
++scarred
++scarring
++scars
++scarves
++scary
++scat
++scathing
++scathingly
++scatological
++scatology
++scats
++scatted
++scatter
++scatterbrain
++scatterbrained
++scatterbrains
++scattered
++scattering
++scatterings
++scatters
++scattershot
++scatting
++scatty
++scavenge
++scavenged
++scavenger
++scavengers
++scavenges
++scavenging
++scenario
++scenarios
++scenarist
++scenarists
++scene
++scenery
++scenes
++scenic
++scenically
++scent
++scented
++scenting
++scentless
++scents
++scepter
++scepters
++sch
++schadenfreude
++schedule
++scheduled
++scheduler
++schedulers
++schedules
++scheduling
++schema
++schemata
++schematic
++schematically
++schematics
++schematize
++schematized
++schematizes
++schematizing
++scheme
++schemed
++schemer
++schemers
++schemes
++scheming
++scherzo
++scherzos
++schilling
++schillings
++schism
++schismatic
++schismatics
++schisms
++schist
++schizo
++schizoid
++schizoids
++schizophrenia
++schizophrenic
++schizophrenics
++schizos
++schlemiel
++schlemiels
++schlep
++schlepped
++schlepping
++schleps
++schlock
++schmaltz
++schmaltzier
++schmaltziest
++schmaltzy
++schmo
++schmoes
++schmooze
++schmoozed
++schmoozer
++schmoozers
++schmoozes
++schmoozing
++schmuck
++schmucks
++schnapps
++schnauzer
++schnauzers
++schnitzel
++schnitzels
++schnook
++schnooks
++schnoz
++schnozes
++schnozzle
++schnozzles
++scholar
++scholarly
++scholars
++scholarship
++scholarships
++scholastic
++scholastically
++scholasticism
++school
++schoolbag
++schoolbags
++schoolbook
++schoolbooks
++schoolboy
++schoolboys
++schoolchild
++schoolchildren
++schooldays
++schooled
++schoolfellow
++schoolfellows
++schoolgirl
++schoolgirls
++schoolhouse
++schoolhouses
++schooling
++schoolkid
++schoolkids
++schoolmarm
++schoolmarmish
++schoolmarms
++schoolmaster
++schoolmasters
++schoolmate
++schoolmates
++schoolmistress
++schoolmistresses
++schoolroom
++schoolrooms
++schools
++schoolteacher
++schoolteachers
++schoolwork
++schoolyard
++schoolyards
++schooner
++schooners
++schuss
++schussboomer
++schussboomers
++schussed
++schusses
++schussing
++schwa
++schwas
++sci
++sciatic
++sciatica
++science
++sciences
++scientific
++scientifically
++scientist
++scientists
++scimitar
++scimitars
++scintilla
++scintillas
++scintillate
++scintillated
++scintillates
++scintillating
++scintillation
++scion
++scions
++scissor
++scissored
++scissoring
++scissors
++scleroses
++sclerosis
++sclerotic
++scoff
++scoffed
++scoffer
++scoffers
++scoffing
++scofflaw
++scofflaws
++scoffs
++scold
++scolded
++scolding
++scoldings
++scolds
++scoliosis
++sconce
++sconces
++scone
++scones
++scoop
++scooped
++scoopful
++scoopfuls
++scooping
++scoops
++scoot
++scooted
++scooter
++scooters
++scooting
++scoots
++scope
++scoped
++scopes
++scoping
++scorbutic
++scorch
++scorched
++scorcher
++scorchers
++scorches
++scorching
++score
++scoreboard
++scoreboards
++scorecard
++scorecards
++scored
++scorekeeper
++scorekeepers
++scoreless
++scoreline
++scorelines
++scorer
++scorers
++scores
++scoring
++scorn
++scorned
++scorner
++scorners
++scornful
++scornfully
++scorning
++scorns
++scorpion
++scorpions
++scotch
++scotched
++scotches
++scotching
++scotchs
++scoundrel
++scoundrels
++scour
++scoured
++scourer
++scourers
++scourge
++scourged
++scourges
++scourging
++scouring
++scours
++scout
++scouted
++scouter
++scouters
++scouting
++scoutmaster
++scoutmasters
++scouts
++scow
++scowl
++scowled
++scowling
++scowls
++scows
++scrabble
++scrabbled
++scrabbler
++scrabblers
++scrabbles
++scrabbling
++scrag
++scraggier
++scraggiest
++scragglier
++scraggliest
++scraggly
++scraggy
++scrags
++scram
++scramble
++scrambled
++scrambler
++scramblers
++scrambles
++scrambling
++scrammed
++scramming
++scrams
++scrap
++scrapbook
++scrapbooks
++scrape
++scraped
++scraper
++scrapers
++scrapes
++scrapheap
++scrapheaps
++scrapie
++scraping
++scrapings
++scrapped
++scrapper
++scrappers
++scrappier
++scrappiest
++scrapping
++scrappy
++scraps
++scrapyard
++scrapyards
++scratch
++scratchcard
++scratchcards
++scratched
++scratches
++scratchier
++scratchiest
++scratchily
++scratchiness
++scratching
++scratchpad
++scratchpads
++scratchy
++scrawl
++scrawled
++scrawling
++scrawls
++scrawly
++scrawnier
++scrawniest
++scrawniness
++scrawny
++scream
++screamed
++screamer
++screamers
++screaming
++screamingly
++screams
++scree
++screech
++screeched
++screeches
++screechier
++screechiest
++screeching
++screechy
++screed
++screeds
++screen
++screened
++screening
++screenings
++screenplay
++screenplays
++screens
++screensaver
++screensavers
++screenshot
++screenshots
++screenwriter
++screenwriters
++screenwriting
++screes
++screw
++screwball
++screwballs
++screwdriver
++screwdrivers
++screwed
++screwier
++screwiest
++screwiness
++screwing
++screws
++screwworm
++screwworms
++screwy
++scribal
++scribble
++scribbled
++scribbler
++scribblers
++scribbles
++scribbling
++scribe
++scribes
++scrim
++scrimmage
++scrimmaged
++scrimmages
++scrimmaging
++scrimp
++scrimped
++scrimping
++scrimps
++scrims
++scrimshaw
++scrimshawed
++scrimshawing
++scrimshaws
++scrip
++scrips
++script
++scripted
++scripting
++scripts
++scriptural
++scripture
++scriptures
++scriptwriter
++scriptwriters
++scrivener
++scriveners
++scrod
++scrofula
++scrofulous
++scrog
++scrogs
++scroll
++scrolled
++scrolling
++scrolls
++scrooge
++scrooges
++scrota
++scrotal
++scrotum
++scrounge
++scrounged
++scrounger
++scroungers
++scrounges
++scroungier
++scroungiest
++scrounging
++scroungy
++scrub
++scrubbed
++scrubber
++scrubbers
++scrubbier
++scrubbiest
++scrubbing
++scrubby
++scrubs
++scruff
++scruffier
++scruffiest
++scruffily
++scruffiness
++scruffs
++scruffy
++scrum
++scrumhalf
++scrumhalves
++scrummage
++scrummages
++scrummed
++scrumming
++scrump
++scrumped
++scrumping
++scrumps
++scrumptious
++scrumptiously
++scrumpy
++scrums
++scrunch
++scrunched
++scrunches
++scrunchies
++scrunching
++scrunchy
++scruple
++scrupled
++scruples
++scrupling
++scrupulosity
++scrupulous
++scrupulously
++scrupulousness
++scrutineer
++scrutineers
++scrutinize
++scrutinized
++scrutinizes
++scrutinizing
++scrutiny
++scuba
++scubaed
++scubaing
++scubas
++scud
++scudded
++scudding
++scuds
++scuff
++scuffed
++scuffing
++scuffle
++scuffled
++scuffles
++scuffling
++scuffs
++scull
++sculled
++sculler
++sculleries
++scullers
++scullery
++sculling
++scullion
++scullions
++sculls
++sculpt
++sculpted
++sculpting
++sculptor
++sculptors
++sculptress
++sculptresses
++sculpts
++sculptural
++sculpture
++sculptured
++sculptures
++sculpturing
++scum
++scumbag
++scumbags
++scummed
++scummier
++scummiest
++scumming
++scummy
++scums
++scupper
++scuppered
++scuppering
++scuppers
++scurf
++scurfy
++scurried
++scurries
++scurrility
++scurrilous
++scurrilously
++scurrilousness
++scurry
++scurrying
++scurvier
++scurviest
++scurvily
++scurvy
++scutcheon
++scutcheons
++scuttle
++scuttlebutt
++scuttled
++scuttles
++scuttling
++scuzzier
++scuzziest
++scuzzy
++scythe
++scythed
++scythes
++scything
++sea
++seabed
++seabeds
++seabird
++seabirds
++seaboard
++seaboards
++seaborne
++seacoast
++seacoasts
++seafarer
++seafarers
++seafaring
++seafloor
++seafloors
++seafood
++seafront
++seafronts
++seagoing
++seagull
++seagulls
++seahorse
++seahorses
++seal
++sealant
++sealants
++sealed
++sealer
++sealers
++sealing
++seals
++sealskin
++seam
++seaman
++seamanship
++seamed
++seamen
++seamier
++seamiest
++seaming
++seamless
++seamlessly
++seamount
++seamounts
++seams
++seamstress
++seamstresses
++seamy
++seance
++seances
++seaplane
++seaplanes
++seaport
++seaports
++sear
++search
++searchable
++searched
++searcher
++searchers
++searches
++searching
++searchingly
++searchlight
++searchlights
++seared
++searing
++searingly
++sears
++seas
++seascape
++seascapes
++seashell
++seashells
++seashore
++seashores
++seasick
++seasickness
++seaside
++seasides
++season
++seasonable
++seasonably
++seasonal
++seasonality
++seasonally
++seasoned
++seasoning
++seasonings
++seasons
++seat
++seated
++seating
++seatmate
++seatmates
++seats
++seawall
++seawalls
++seaward
++seawards
++seawater
++seaway
++seaways
++seaweed
++seaweeds
++seaworthiness
++seaworthy
++sebaceous
++seborrhea
++sebum
++sec
++secant
++secants
++secateurs
++secede
++seceded
++secedes
++seceding
++secession
++secessionist
++secessionists
++seclude
++secluded
++secludes
++secluding
++seclusion
++seclusive
++second
++secondaries
++secondarily
++secondary
++seconded
++seconder
++seconders
++secondhand
++seconding
++secondly
++secondment
++secondments
++seconds
++secrecy
++secret
++secretarial
++secretariat
++secretariats
++secretaries
++secretary
++secretaryship
++secrete
++secreted
++secretes
++secreting
++secretion
++secretions
++secretive
++secretively
++secretiveness
++secretly
++secretory
++secrets
++secs
++sect
++sectarian
++sectarianism
++sectarians
++sectaries
++sectary
++section
++sectional
++sectionalism
++sectionals
++sectioned
++sectioning
++sections
++sector
++sectors
++sects
++secular
++secularism
++secularist
++secularists
++secularization
++secularize
++secularized
++secularizes
++secularizing
++secure
++secured
++securely
++securer
++secures
++securest
++securing
++securities
++security
++secy
++sedan
++sedans
++sedate
++sedated
++sedately
++sedateness
++sedater
++sedates
++sedatest
++sedating
++sedation
++sedative
++sedatives
++sedentary
++sedge
++sedgy
++sediment
++sedimentary
++sedimentation
++sediments
++sedition
++seditious
++seduce
++seduced
++seducer
++seducers
++seduces
++seducing
++seduction
++seductions
++seductive
++seductively
++seductiveness
++seductress
++seductresses
++sedulous
++sedulously
++see
++seed
++seedbed
++seedbeds
++seedcase
++seedcases
++seeded
++seeder
++seeders
++seedier
++seediest
++seediness
++seeding
++seedless
++seedling
++seedlings
++seedpod
++seedpods
++seeds
++seedy
++seeing
++seeings
++seek
++seeker
++seekers
++seeking
++seeks
++seem
++seemed
++seeming
++seemingly
++seemlier
++seemliest
++seemliness
++seemly
++seems
++seen
++seep
++seepage
++seeped
++seeping
++seeps
++seer
++seers
++seersucker
++sees
++seesaw
++seesawed
++seesawing
++seesaws
++seethe
++seethed
++seethes
++seething
++segfault
++segfaults
++segment
++segmentation
++segmented
++segmenting
++segments
++segregate
++segregated
++segregates
++segregating
++segregation
++segregationist
++segregationists
++segue
++segued
++segueing
++segues
++seguing
++seigneur
++seigneurs
++seignior
++seigniors
++seine
++seined
++seiner
++seiners
++seines
++seining
++seismic
++seismically
++seismograph
++seismographer
++seismographers
++seismographic
++seismographs
++seismography
++seismologic
++seismological
++seismologist
++seismologists
++seismology
++seize
++seized
++seizes
++seizing
++seizure
++seizures
++seldom
++select
++selected
++selecting
++selection
++selections
++selective
++selectively
++selectivity
++selectman
++selectmen
++selectness
++selector
++selectors
++selects
++selenium
++selenographer
++selenographers
++selenography
++self
++selfie
++selfies
++selfish
++selfishly
++selfishness
++selfless
++selflessly
++selflessness
++selfsame
++sell
++seller
++sellers
++selling
++selloff
++selloffs
++sellotape
++sellotaped
++sellotapes
++sellotaping
++sellout
++sellouts
++sells
++seltzer
++seltzers
++selvage
++selvages
++selves
++semantic
++semantically
++semanticist
++semanticists
++semantics
++semaphore
++semaphored
++semaphores
++semaphoring
++semblance
++semblances
++semen
++semester
++semesters
++semi
++semiannual
++semiannually
++semiarid
++semiautomatic
++semiautomatics
++semibreve
++semibreves
++semicircle
++semicircles
++semicircular
++semicolon
++semicolons
++semiconducting
++semiconductor
++semiconductors
++semiconscious
++semidarkness
++semidetached
++semifinal
++semifinalist
++semifinalists
++semifinals
++semigloss
++semiglosses
++semimonthlies
++semimonthly
++seminal
++seminar
++seminarian
++seminarians
++seminaries
++seminars
++seminary
++semiofficial
++semiotic
++semiotics
++semipermeable
++semiprecious
++semiprivate
++semipro
++semiprofessional
++semiprofessionals
++semipros
++semiquaver
++semiquavers
++semiretired
++semis
++semiskilled
++semisolid
++semisweet
++semitone
++semitones
++semitrailer
++semitrailers
++semitransparent
++semitropical
++semivowel
++semivowels
++semiweeklies
++semiweekly
++semiyearly
++semolina
++sempstress
++sempstresses
++sen
++senate
++senates
++senator
++senatorial
++senators
++send
++sender
++senders
++sending
++sendoff
++sendoffs
++sends
++senescence
++senescent
++senile
++senility
++senior
++seniority
++seniors
++senna
++senor
++senora
++senoras
++senorita
++senoritas
++senors
++sens
++sensation
++sensational
++sensationalism
++sensationalist
++sensationalists
++sensationalize
++sensationalized
++sensationalizes
++sensationalizing
++sensationally
++sensations
++sense
++sensed
++senseless
++senselessly
++senselessness
++senses
++sensibilities
++sensibility
++sensible
++sensibleness
++sensibly
++sensing
++sensitive
++sensitively
++sensitiveness
++sensitives
++sensitivities
++sensitivity
++sensitization
++sensitize
++sensitized
++sensitizes
++sensitizing
++sensor
++sensors
++sensory
++sensual
++sensualist
++sensualists
++sensuality
++sensually
++sensuous
++sensuously
++sensuousness
++sent
++sentence
++sentenced
++sentences
++sentencing
++sententious
++sententiously
++sentience
++sentient
++sentiment
++sentimental
++sentimentalism
++sentimentalist
++sentimentalists
++sentimentality
++sentimentalization
++sentimentalize
++sentimentalized
++sentimentalizes
++sentimentalizing
++sentimentally
++sentiments
++sentinel
++sentinels
++sentries
++sentry
++sepal
++sepals
++separability
++separable
++separably
++separate
++separated
++separately
++separateness
++separates
++separating
++separation
++separations
++separatism
++separatist
++separatists
++separative
++separator
++separators
++sepia
++sepsis
++septa
++septal
++septet
++septets
++septic
++septicemia
++septicemic
++septuagenarian
++septuagenarians
++septum
++sepulcher
++sepulchered
++sepulchering
++sepulchers
++sepulchral
++seq
++sequel
++sequels
++sequence
++sequenced
++sequencer
++sequencers
++sequences
++sequencing
++sequential
++sequentially
++sequester
++sequestered
++sequestering
++sequesters
++sequestrate
++sequestrated
++sequestrates
++sequestrating
++sequestration
++sequestrations
++sequin
++sequined
++sequinned
++sequins
++sequitur
++sequoia
++sequoias
++seraglio
++seraglios
++serape
++serapes
++seraph
++seraphic
++seraphs
++sere
++serenade
++serenaded
++serenades
++serenading
++serendipitous
++serendipity
++serene
++serenely
++sereneness
++serener
++serenest
++serenity
++serer
++serest
++serf
++serfdom
++serfs
++serge
++sergeant
++sergeants
++serial
++serialization
++serializations
++serialize
++serialized
++serializes
++serializing
++serially
++serials
++series
++serif
++serifs
++serigraph
++serigraphs
++serine
++serious
++seriously
++seriousness
++sermon
++sermonize
++sermonized
++sermonizes
++sermonizing
++sermons
++serology
++serotonin
++serous
++serpent
++serpentine
++serpents
++serrate
++serrated
++serration
++serrations
++serried
++serum
++serums
++servant
++servants
++serve
++served
++server
++serveries
++servers
++servery
++serves
++service
++serviceability
++serviceable
++serviced
++serviceman
++servicemen
++services
++servicewoman
++servicewomen
++servicing
++serviette
++serviettes
++servile
++servility
++serving
++servings
++servitor
++servitors
++servitude
++servo
++servomechanism
++servomechanisms
++servomotor
++servomotors
++servos
++sesame
++sesames
++sesquicentennial
++sesquicentennials
++session
++sessions
++set
++setback
++setbacks
++sets
++setscrew
++setscrews
++setsquare
++setsquares
++sett
++settable
++settee
++settees
++setter
++setters
++setting
++settings
++settle
++settled
++settlement
++settlements
++settler
++settlers
++settles
++settling
++setts
++setup
++setups
++seven
++sevens
++seventeen
++seventeens
++seventeenth
++seventeenths
++seventh
++sevenths
++seventies
++seventieth
++seventieths
++seventy
++sever
++several
++severally
++severance
++severances
++severe
++severed
++severely
++severeness
++severer
++severest
++severing
++severity
++severs
++sew
++sewage
++sewed
++sewer
++sewerage
++sewers
++sewing
++sewn
++sews
++sex
++sexagenarian
++sexagenarians
++sexed
++sexes
++sexier
++sexiest
++sexily
++sexiness
++sexing
++sexism
++sexist
++sexists
++sexless
++sexologist
++sexologists
++sexology
++sexpot
++sexpots
++sextant
++sextants
++sextet
++sextets
++sexting
++sexton
++sextons
++sextuplet
++sextuplets
++sexual
++sexuality
++sexually
++sexy
++sf
++sh
++shabbier
++shabbiest
++shabbily
++shabbiness
++shabby
++shack
++shacked
++shacking
++shackle
++shackled
++shackles
++shackling
++shacks
++shad
++shade
++shaded
++shades
++shadier
++shadiest
++shadily
++shadiness
++shading
++shadings
++shadow
++shadowbox
++shadowboxed
++shadowboxes
++shadowboxing
++shadowed
++shadowier
++shadowiest
++shadowing
++shadows
++shadowy
++shads
++shady
++shaft
++shafted
++shafting
++shafts
++shag
++shagged
++shaggier
++shaggiest
++shagginess
++shagging
++shaggy
++shags
++shah
++shahs
++shake
++shakedown
++shakedowns
++shaken
++shakeout
++shakeouts
++shaker
++shakers
++shakes
++shakeup
++shakeups
++shakier
++shakiest
++shakily
++shakiness
++shaking
++shaky
++shale
++shall
++shallot
++shallots
++shallow
++shallower
++shallowest
++shallowly
++shallowness
++shallows
++shalom
++shalt
++sham
++shaman
++shamanic
++shamanism
++shamanistic
++shamans
++shamble
++shambled
++shambles
++shambling
++shambolic
++shame
++shamed
++shamefaced
++shamefacedly
++shameful
++shamefully
++shamefulness
++shameless
++shamelessly
++shamelessness
++shames
++shaming
++shammed
++shamming
++shampoo
++shampooed
++shampooer
++shampooers
++shampooing
++shampoos
++shamrock
++shamrocks
++shams
++shandies
++shandy
++shanghai
++shanghaied
++shanghaiing
++shanghais
++shank
++shanks
++shanties
++shantung
++shanty
++shantytown
++shantytowns
++shape
++shaped
++shapeless
++shapelessly
++shapelessness
++shapelier
++shapeliest
++shapeliness
++shapely
++shapes
++shaping
++shard
++shards
++share
++shareable
++sharecrop
++sharecropped
++sharecropper
++sharecroppers
++sharecropping
++sharecrops
++shared
++shareholder
++shareholders
++shareholding
++shareholdings
++sharer
++sharers
++shares
++shareware
++sharia
++shariah
++sharing
++shark
++sharked
++sharking
++sharks
++sharkskin
++sharp
++sharped
++sharpen
++sharpened
++sharpener
++sharpeners
++sharpening
++sharpens
++sharper
++sharpers
++sharpest
++sharpie
++sharpies
++sharping
++sharpish
++sharply
++sharpness
++sharps
++sharpshooter
++sharpshooters
++sharpshooting
++shatter
++shattered
++shattering
++shatterproof
++shatters
++shave
++shaved
++shaven
++shaver
++shavers
++shaves
++shaving
++shavings
++shawl
++shawls
++shay
++shays
++she
++sheaf
++shear
++sheared
++shearer
++shearers
++shearing
++shears
++sheath
++sheathe
++sheathed
++sheathes
++sheathing
++sheathings
++sheaths
++sheave
++sheaved
++sheaves
++sheaving
++shebang
++shebangs
++shebeen
++shebeens
++shed
++shedding
++sheds
++sheen
++sheenier
++sheeniest
++sheeny
++sheep
++sheepdog
++sheepdogs
++sheepfold
++sheepfolds
++sheepherder
++sheepherders
++sheepish
++sheepishly
++sheepishness
++sheepskin
++sheepskins
++sheer
++sheered
++sheerer
++sheerest
++sheering
++sheerness
++sheers
++sheet
++sheeting
++sheetlike
++sheets
++sheikdom
++sheikdoms
++sheikh
++sheikhs
++sheila
++sheilas
++shekel
++shekels
++shelf
++shell
++shellac
++shellacked
++shellacking
++shellackings
++shellacs
++shelled
++sheller
++shellfire
++shellfish
++shellfishes
++shelling
++shells
++shelter
++sheltered
++sheltering
++shelters
++shelve
++shelved
++shelves
++shelving
++shenanigan
++shenanigans
++shepherd
++shepherded
++shepherdess
++shepherdesses
++shepherding
++shepherds
++sherbet
++sherbets
++sheriff
++sheriffs
++sherries
++sherry
++shes
++shew
++shewed
++shewing
++shewn
++shews
++shh
++shiatsu
++shibboleth
++shibboleths
++shied
++shield
++shielded
++shielding
++shields
++shier
++shies
++shiest
++shift
++shifted
++shiftier
++shiftiest
++shiftily
++shiftiness
++shifting
++shiftless
++shiftlessly
++shiftlessness
++shifts
++shifty
++shiitake
++shiitakes
++shill
++shilled
++shillelagh
++shillelaghs
++shilling
++shillings
++shills
++shim
++shimmed
++shimmer
++shimmered
++shimmering
++shimmers
++shimmery
++shimmied
++shimmies
++shimming
++shimmy
++shimmying
++shims
++shin
++shinbone
++shinbones
++shindig
++shindigs
++shine
++shined
++shiner
++shiners
++shines
++shingle
++shingled
++shingles
++shingling
++shinguard
++shinier
++shiniest
++shininess
++shining
++shinned
++shinnied
++shinnies
++shinning
++shinny
++shinnying
++shins
++shinsplints
++shiny
++ship
++shipboard
++shipboards
++shipbuilder
++shipbuilders
++shipbuilding
++shipload
++shiploads
++shipmate
++shipmates
++shipment
++shipments
++shipowner
++shipowners
++shipped
++shipper
++shippers
++shipping
++ships
++shipshape
++shipwreck
++shipwrecked
++shipwrecking
++shipwrecks
++shipwright
++shipwrights
++shipyard
++shipyards
++shire
++shires
++shirk
++shirked
++shirker
++shirkers
++shirking
++shirks
++shirr
++shirred
++shirring
++shirrings
++shirrs
++shirt
++shirted
++shirtfront
++shirtfronts
++shirting
++shirtless
++shirts
++shirtsleeve
++shirtsleeves
++shirttail
++shirttails
++shirtwaist
++shirtwaists
++shirty
++shit
++shitfaced
++shithead
++shitheads
++shitload
++shits
++shitted
++shittier
++shittiest
++shitting
++shitty
++shiv
++shiver
++shivered
++shivering
++shivers
++shivery
++shivs
++shoal
++shoaled
++shoaling
++shoals
++shoat
++shoats
++shock
++shocked
++shocker
++shockers
++shocking
++shockingly
++shockproof
++shocks
++shod
++shoddier
++shoddiest
++shoddily
++shoddiness
++shoddy
++shoe
++shoehorn
++shoehorned
++shoehorning
++shoehorns
++shoeing
++shoelace
++shoelaces
++shoemaker
++shoemakers
++shoes
++shoeshine
++shoeshines
++shoestring
++shoestrings
++shoetree
++shoetrees
++shogun
++shogunate
++shoguns
++shone
++shoo
++shooed
++shooing
++shook
++shoos
++shoot
++shooter
++shooters
++shooting
++shootings
++shootout
++shootouts
++shoots
++shop
++shopaholic
++shopaholics
++shopfitter
++shopfitters
++shopfitting
++shopfront
++shopfronts
++shopkeeper
++shopkeepers
++shoplift
++shoplifted
++shoplifter
++shoplifters
++shoplifting
++shoplifts
++shoppe
++shopped
++shopper
++shoppers
++shoppes
++shopping
++shops
++shoptalk
++shopworn
++shore
++shorebird
++shorebirds
++shored
++shoreline
++shorelines
++shores
++shoring
++short
++shortage
++shortages
++shortbread
++shortcake
++shortcakes
++shortchange
++shortchanged
++shortchanges
++shortchanging
++shortcoming
++shortcomings
++shortcrust
++shortcut
++shortcuts
++shorted
++shorten
++shortened
++shortening
++shortenings
++shortens
++shorter
++shortest
++shortfall
++shortfalls
++shorthand
++shorthanded
++shorthorn
++shorthorns
++shorties
++shorting
++shortish
++shortlist
++shortlisted
++shortlisting
++shortlists
++shortly
++shortness
++shorts
++shortsighted
++shortsightedly
++shortsightedness
++shortstop
++shortstops
++shortwave
++shortwaves
++shorty
++shot
++shotgun
++shotgunned
++shotgunning
++shotguns
++shots
++should
++shoulder
++shouldered
++shouldering
++shoulders
++shout
++shouted
++shouter
++shouters
++shouting
++shouts
++shove
++shoved
++shovel
++shoveled
++shovelful
++shovelfuls
++shoveling
++shovels
++shoves
++shoving
++show
++showbiz
++showboat
++showboated
++showboating
++showboats
++showcase
++showcased
++showcases
++showcasing
++showdown
++showdowns
++showed
++shower
++showered
++showering
++showerproof
++showers
++showery
++showgirl
++showgirls
++showground
++showgrounds
++showier
++showiest
++showily
++showiness
++showing
++showings
++showjumping
++showman
++showmanship
++showmen
++shown
++showoff
++showoffs
++showpiece
++showpieces
++showplace
++showplaces
++showroom
++showrooms
++shows
++showstopper
++showstoppers
++showstopping
++showtime
++showy
++shpt
++shrank
++shrapnel
++shred
++shredded
++shredder
++shredders
++shredding
++shreds
++shrew
++shrewd
++shrewder
++shrewdest
++shrewdly
++shrewdness
++shrewish
++shrews
++shriek
++shrieked
++shrieking
++shrieks
++shrift
++shrike
++shrikes
++shrill
++shrilled
++shriller
++shrillest
++shrilling
++shrillness
++shrills
++shrilly
++shrimp
++shrimped
++shrimper
++shrimpers
++shrimping
++shrimps
++shrine
++shrines
++shrink
++shrinkable
++shrinkage
++shrinking
++shrinks
++shrive
++shrived
++shrivel
++shriveled
++shriveling
++shrivels
++shriven
++shrives
++shriving
++shroud
++shrouded
++shrouding
++shrouds
++shrub
++shrubberies
++shrubbery
++shrubbier
++shrubbiest
++shrubby
++shrubs
++shrug
++shrugged
++shrugging
++shrugs
++shrunk
++shrunken
++shtick
++shticks
++shuck
++shucked
++shucking
++shucks
++shuckses
++shudder
++shuddered
++shuddering
++shudders
++shuffle
++shuffleboard
++shuffleboards
++shuffled
++shuffler
++shufflers
++shuffles
++shuffling
++shun
++shunned
++shunning
++shuns
++shunt
++shunted
++shunting
++shunts
++shush
++shushed
++shushes
++shushing
++shut
++shutdown
++shutdowns
++shuteye
++shutoff
++shutoffs
++shutout
++shutouts
++shuts
++shutter
++shutterbug
++shutterbugs
++shuttered
++shuttering
++shutters
++shutting
++shuttle
++shuttlecock
++shuttlecocked
++shuttlecocking
++shuttlecocks
++shuttled
++shuttles
++shuttling
++shy
++shyer
++shyest
++shying
++shyly
++shyness
++shyster
++shysters
++sibilant
++sibilants
++sibling
++siblings
++sibyl
++sibylline
++sibyls
++sic
++sicced
++siccing
++sick
++sickbay
++sickbays
++sickbed
++sickbeds
++sicked
++sicken
++sickened
++sickening
++sickeningly
++sickens
++sicker
++sickest
++sickie
++sickies
++sicking
++sickish
++sickle
++sickles
++sicklier
++sickliest
++sickly
++sickness
++sicknesses
++sicko
++sickos
++sickout
++sickouts
++sickroom
++sickrooms
++sicks
++sics
++side
++sidearm
++sidearms
++sidebar
++sidebars
++sideboard
++sideboards
++sideburns
++sidecar
++sidecars
++sided
++sidekick
++sidekicks
++sidelight
++sidelights
++sideline
++sidelined
++sidelines
++sidelining
++sidelong
++sideman
++sidemen
++sidepiece
++sidepieces
++sidereal
++sides
++sidesaddle
++sidesaddles
++sideshow
++sideshows
++sidesplitting
++sidestep
++sidestepped
++sidestepping
++sidesteps
++sidestroke
++sidestroked
++sidestrokes
++sidestroking
++sideswipe
++sideswiped
++sideswipes
++sideswiping
++sidetrack
++sidetracked
++sidetracking
++sidetracks
++sidewalk
++sidewalks
++sidewall
++sidewalls
++sideways
++sidewinder
++sidewinders
++siding
++sidings
++sidle
++sidled
++sidles
++sidling
++siege
++sieges
++sienna
++sierra
++sierras
++siesta
++siestas
++sieve
++sieved
++sieves
++sieving
++sift
++sifted
++sifter
++sifters
++sifting
++sifts
++sigh
++sighed
++sighing
++sighs
++sight
++sighted
++sighting
++sightings
++sightless
++sightlier
++sightliest
++sightly
++sightread
++sights
++sightseeing
++sightseer
++sightseers
++sigma
++sigmas
++sign
++signage
++signal
++signaled
++signaler
++signalers
++signaling
++signalization
++signalize
++signalized
++signalizes
++signalizing
++signally
++signalman
++signalmen
++signals
++signatories
++signatory
++signature
++signatures
++signboard
++signboards
++signed
++signer
++signers
++signet
++signets
++significance
++significant
++significantly
++signification
++significations
++signified
++signifies
++signify
++signifying
++signing
++signings
++signor
++signora
++signoras
++signore
++signori
++signorina
++signorinas
++signorine
++signors
++signpost
++signposted
++signposting
++signposts
++signs
++silage
++silence
++silenced
++silencer
++silencers
++silences
++silencing
++silent
++silenter
++silentest
++silently
++silents
++silhouette
++silhouetted
++silhouettes
++silhouetting
++silica
++silicate
++silicates
++siliceous
++silicon
++silicone
++silicons
++silicosis
++silk
++silken
++silkier
++silkiest
++silkily
++silkiness
++silks
++silkscreen
++silkscreens
++silkworm
++silkworms
++silky
++sill
++sillier
++sillies
++silliest
++silliness
++sills
++silly
++silo
++silos
++silt
++silted
++siltier
++siltiest
++silting
++silts
++silty
++silver
++silvered
++silverfish
++silverfishes
++silvering
++silvers
++silversmith
++silversmiths
++silverware
++silvery
++sim
++simian
++simians
++similar
++similarities
++similarity
++similarly
++simile
++similes
++similitude
++simmer
++simmered
++simmering
++simmers
++simonize
++simonized
++simonizes
++simonizing
++simony
++simpatico
++simper
++simpered
++simpering
++simperingly
++simpers
++simple
++simpleminded
++simpleness
++simpler
++simplest
++simpleton
++simpletons
++simplex
++simplicity
++simplification
++simplifications
++simplified
++simplifies
++simplify
++simplifying
++simplistic
++simplistically
++simply
++sims
++simulacra
++simulacrum
++simulacrums
++simulate
++simulated
++simulates
++simulating
++simulation
++simulations
++simulator
++simulators
++simulcast
++simulcasted
++simulcasting
++simulcasts
++simultaneity
++simultaneous
++simultaneously
++sin
++since
++sincere
++sincerely
++sincerer
++sincerest
++sincerity
++sine
++sinecure
++sinecures
++sines
++sinew
++sinews
++sinewy
++sinful
++sinfully
++sinfulness
++sing
++singable
++singalong
++singalongs
++singe
++singed
++singeing
++singer
++singers
++singes
++singing
++single
++singled
++singleness
++singles
++singlet
++singleton
++singletons
++singletree
++singletrees
++singlets
++singling
++singly
++sings
++singsong
++singsonged
++singsonging
++singsongs
++singular
++singularities
++singularity
++singularly
++singulars
++sinister
++sink
++sinkable
++sinker
++sinkers
++sinkhole
++sinkholes
++sinking
++sinks
++sinless
++sinned
++sinner
++sinners
++sinning
++sinology
++sins
++sinuosity
++sinuous
++sinuously
++sinus
++sinuses
++sinusitis
++sinusoidal
++sip
++siphon
++siphoned
++siphoning
++siphons
++sipped
++sipper
++sippers
++sipping
++sips
++sir
++sire
++sired
++siren
++sirens
++sires
++siring
++sirloin
++sirloins
++sirocco
++siroccos
++sirrah
++sirree
++sirs
++sis
++sisal
++sises
++sissier
++sissies
++sissiest
++sissified
++sissy
++sister
++sisterhood
++sisterhoods
++sisterliness
++sisterly
++sisters
++sit
++sitar
++sitarist
++sitarists
++sitars
++sitcom
++sitcoms
++site
++sited
++sitemap
++sitemaps
++sites
++siting
++sits
++sitter
++sitters
++sitting
++sittings
++situate
++situated
++situates
++situating
++situation
++situational
++situations
++six
++sixes
++sixfold
++sixpence
++sixpences
++sixshooter
++sixteen
++sixteens
++sixteenth
++sixteenths
++sixth
++sixths
++sixties
++sixtieth
++sixtieths
++sixty
++sizable
++size
++sized
++sizer
++sizes
++sizing
++sizzle
++sizzled
++sizzler
++sizzlers
++sizzles
++sizzling
++ska
++skate
++skateboard
++skateboarded
++skateboarder
++skateboarders
++skateboarding
++skateboards
++skated
++skater
++skaters
++skates
++skating
++skedaddle
++skedaddled
++skedaddles
++skedaddling
++skeet
++skeeter
++skeeters
++skein
++skeins
++skeletal
++skeleton
++skeletons
++skeptic
++skeptical
++skeptically
++skepticism
++skeptics
++sketch
++sketchbook
++sketchbooks
++sketched
++sketcher
++sketchers
++sketches
++sketchier
++sketchiest
++sketchily
++sketchiness
++sketching
++sketchpad
++sketchpads
++sketchy
++skew
++skewbald
++skewbalds
++skewed
++skewer
++skewered
++skewering
++skewers
++skewing
++skews
++ski
++skibob
++skibobs
++skid
++skidded
++skidding
++skidpan
++skidpans
++skids
++skied
++skier
++skiers
++skies
++skiff
++skiffle
++skiffs
++skiing
++skill
++skilled
++skillet
++skillets
++skillful
++skillfully
++skillfulness
++skills
++skim
++skimmed
++skimmer
++skimmers
++skimming
++skimp
++skimped
++skimpier
++skimpiest
++skimpily
++skimpiness
++skimping
++skimps
++skimpy
++skims
++skin
++skincare
++skinflint
++skinflints
++skinful
++skinhead
++skinheads
++skinless
++skinned
++skinnier
++skinniest
++skinniness
++skinning
++skinny
++skins
++skint
++skintight
++skip
++skipped
++skipper
++skippered
++skippering
++skippers
++skipping
++skips
++skirmish
++skirmished
++skirmisher
++skirmishers
++skirmishes
++skirmishing
++skirt
++skirted
++skirting
++skirts
++skis
++skit
++skits
++skitter
++skittered
++skittering
++skitters
++skittish
++skittishly
++skittishness
++skittle
++skittles
++skive
++skived
++skiver
++skivers
++skives
++skiving
++skivvied
++skivvies
++skivvy
++skivvying
++skoal
++skoals
++skua
++skuas
++skulduggery
++skulk
++skulked
++skulker
++skulkers
++skulking
++skulks
++skull
++skullcap
++skullcaps
++skulls
++skunk
++skunked
++skunking
++skunks
++sky
++skycap
++skycaps
++skydive
++skydived
++skydiver
++skydivers
++skydives
++skydiving
++skying
++skyjack
++skyjacked
++skyjacker
++skyjackers
++skyjacking
++skyjackings
++skyjacks
++skylark
++skylarked
++skylarking
++skylarks
++skylight
++skylights
++skyline
++skylines
++skyrocket
++skyrocketed
++skyrocketing
++skyrockets
++skyscraper
++skyscrapers
++skyward
++skywards
++skywriter
++skywriters
++skywriting
++slab
++slabbed
++slabbing
++slabs
++slack
++slacked
++slacken
++slackened
++slackening
++slackens
++slacker
++slackers
++slackest
++slacking
++slackly
++slackness
++slacks
++slag
++slagged
++slagging
++slagheap
++slagheaps
++slags
++slain
++slake
++slaked
++slakes
++slaking
++slalom
++slalomed
++slaloming
++slaloms
++slam
++slammed
++slammer
++slammers
++slamming
++slams
++slander
++slandered
++slanderer
++slanderers
++slandering
++slanderous
++slanders
++slang
++slangier
++slangiest
++slangy
++slant
++slanted
++slanting
++slantingly
++slants
++slantwise
++slap
++slapdash
++slaphappy
++slapped
++slapper
++slappers
++slapping
++slaps
++slapstick
++slash
++slashed
++slasher
++slashers
++slashes
++slashing
++slat
++slate
++slated
++slates
++slather
++slathered
++slathering
++slathers
++slating
++slats
++slatted
++slattern
++slatternly
++slatterns
++slaughter
++slaughtered
++slaughterer
++slaughterers
++slaughterhouse
++slaughterhouses
++slaughtering
++slaughters
++slave
++slaved
++slaveholder
++slaveholders
++slaver
++slavered
++slavering
++slavers
++slavery
++slaves
++slaving
++slavish
++slavishly
++slavishness
++slaw
++slay
++slayed
++slayer
++slayers
++slaying
++slayings
++slays
++sleaze
++sleazebag
++sleazebags
++sleazeball
++sleazeballs
++sleazes
++sleazier
++sleaziest
++sleazily
++sleaziness
++sleazy
++sled
++sledded
++sledder
++sledders
++sledding
++sledge
++sledged
++sledgehammer
++sledgehammered
++sledgehammering
++sledgehammers
++sledges
++sledging
++sleds
++sleek
++sleeked
++sleeker
++sleekest
++sleeking
++sleekly
++sleekness
++sleeks
++sleep
++sleeper
++sleepers
++sleepier
++sleepiest
++sleepily
++sleepiness
++sleeping
++sleepless
++sleeplessly
++sleeplessness
++sleepover
++sleepovers
++sleeps
++sleepwalk
++sleepwalked
++sleepwalker
++sleepwalkers
++sleepwalking
++sleepwalks
++sleepwear
++sleepy
++sleepyhead
++sleepyheads
++sleet
++sleeted
++sleeting
++sleets
++sleety
++sleeve
++sleeved
++sleeveless
++sleeves
++sleigh
++sleighed
++sleighing
++sleighs
++sleight
++sleights
++slender
++slenderer
++slenderest
++slenderize
++slenderized
++slenderizes
++slenderizing
++slenderness
++slept
++sleuth
++sleuthing
++sleuths
++slew
++slewed
++slewing
++slews
++slice
++sliced
++slicer
++slicers
++slices
++slicing
++slick
++slicked
++slicker
++slickers
++slickest
++slicking
++slickly
++slickness
++slicks
++slid
++slide
++slider
++sliders
++slides
++slideshow
++slideshows
++sliding
++slier
++sliest
++slight
++slighted
++slighter
++slightest
++slighting
++slightly
++slightness
++slights
++slim
++slime
++slimier
++slimiest
++sliminess
++slimline
++slimmed
++slimmer
++slimmers
++slimmest
++slimming
++slimness
++slims
++slimy
++sling
++slingback
++slingbacks
++slinging
++slings
++slingshot
++slingshots
++slink
++slinkier
++slinkiest
++slinking
++slinks
++slinky
++slip
++slipcase
++slipcases
++slipcover
++slipcovers
++slipknot
++slipknots
++slippage
++slippages
++slipped
++slipper
++slipperier
++slipperiest
++slipperiness
++slippers
++slippery
++slipping
++slippy
++slips
++slipshod
++slipstream
++slipstreams
++slipway
++slipways
++slit
++slither
++slithered
++slithering
++slithers
++slithery
++slits
++slitter
++slitting
++sliver
++slivered
++slivering
++slivers
++slob
++slobbed
++slobber
++slobbered
++slobbering
++slobbers
++slobbery
++slobbing
++slobs
++sloe
++sloes
++slog
++slogan
++sloganeering
++slogans
++slogged
++slogging
++slogs
++sloop
++sloops
++slop
++slope
++sloped
++slopes
++sloping
++slopped
++sloppier
++sloppiest
++sloppily
++sloppiness
++slopping
++sloppy
++slops
++slosh
++sloshed
++sloshes
++sloshing
++slot
++sloth
++slothful
++slothfully
++slothfulness
++sloths
++slots
++slotted
++slotting
++slouch
++slouched
++sloucher
++slouchers
++slouches
++slouchier
++slouchiest
++slouching
++slouchy
++slough
++sloughed
++sloughing
++sloughs
++sloven
++slovenlier
++slovenliest
++slovenliness
++slovenly
++slovens
++slow
++slowcoach
++slowcoaches
++slowdown
++slowdowns
++slowed
++slower
++slowest
++slowing
++slowly
++slowness
++slowpoke
++slowpokes
++slows
++sludge
++sludgier
++sludgiest
++sludgy
++slue
++slued
++slues
++slug
++sluggard
++sluggards
++slugged
++slugger
++sluggers
++slugging
++sluggish
++sluggishly
++sluggishness
++slugs
++sluice
++sluiced
++sluices
++sluicing
++sluing
++slum
++slumber
++slumbered
++slumbering
++slumberous
++slumbers
++slumdog
++slumdogs
++slumlord
++slumlords
++slummed
++slummer
++slummier
++slummiest
++slumming
++slummy
++slump
++slumped
++slumping
++slumps
++slums
++slung
++slunk
++slur
++slurp
++slurped
++slurping
++slurps
++slurred
++slurring
++slurry
++slurs
++slush
++slushier
++slushiest
++slushiness
++slushy
++slut
++sluts
++sluttier
++sluttiest
++sluttish
++slutty
++sly
++slyly
++slyness
++smack
++smacked
++smacker
++smackers
++smacking
++smacks
++small
++smaller
++smallest
++smallholder
++smallholders
++smallholding
++smallholdings
++smallish
++smallness
++smallpox
++smalls
++smarmier
++smarmiest
++smarmy
++smart
++smarted
++smarten
++smartened
++smartening
++smartens
++smarter
++smartest
++smarties
++smarting
++smartly
++smartness
++smartphone
++smartphones
++smarts
++smartwatch
++smartwatches
++smarty
++smartypants
++smash
++smashed
++smasher
++smashers
++smashes
++smashing
++smashup
++smashups
++smattering
++smatterings
++smear
++smeared
++smearier
++smeariest
++smearing
++smears
++smeary
++smell
++smelled
++smellier
++smelliest
++smelliness
++smelling
++smells
++smelly
++smelt
++smelted
++smelter
++smelters
++smelting
++smelts
++smidgen
++smidgens
++smilax
++smile
++smiled
++smiles
++smiley
++smileys
++smiling
++smilingly
++smirch
++smirched
++smirches
++smirching
++smirk
++smirked
++smirking
++smirks
++smite
++smites
++smith
++smithereens
++smithies
++smiths
++smithy
++smiting
++smitten
++smock
++smocked
++smocking
++smocks
++smog
++smoggier
++smoggiest
++smoggy
++smogs
++smoke
++smoked
++smokehouse
++smokehouses
++smokeless
++smoker
++smokers
++smokes
++smokescreen
++smokescreens
++smokestack
++smokestacks
++smokey
++smokier
++smokiest
++smokiness
++smoking
++smoky
++smolder
++smoldered
++smoldering
++smolders
++smooch
++smooched
++smooches
++smooching
++smoochy
++smooth
++smoothed
++smoother
++smoothest
++smoothie
++smoothies
++smoothing
++smoothly
++smoothness
++smooths
++smorgasbord
++smorgasbords
++smote
++smother
++smothered
++smothering
++smothers
++smudge
++smudged
++smudges
++smudgier
++smudgiest
++smudging
++smudgy
++smug
++smugger
++smuggest
++smuggle
++smuggled
++smuggler
++smugglers
++smuggles
++smuggling
++smugly
++smugness
++smurf
++smurfs
++smut
++smuts
++smuttier
++smuttiest
++smuttiness
++smutty
++snack
++snacked
++snacking
++snacks
++snaffle
++snaffled
++snaffles
++snaffling
++snafu
++snafus
++snag
++snagged
++snagging
++snags
++snail
++snailed
++snailing
++snails
++snake
++snakebite
++snakebites
++snaked
++snakelike
++snakes
++snakeskin
++snakier
++snakiest
++snaking
++snaky
++snap
++snapdragon
++snapdragons
++snapped
++snapper
++snappers
++snappier
++snappiest
++snappily
++snappiness
++snapping
++snappish
++snappishly
++snappishness
++snappy
++snaps
++snapshot
++snapshots
++snare
++snared
++snares
++snarf
++snarfed
++snarfing
++snarfs
++snaring
++snark
++snarkier
++snarkiest
++snarks
++snarky
++snarl
++snarled
++snarlier
++snarliest
++snarling
++snarlingly
++snarls
++snarly
++snatch
++snatched
++snatcher
++snatchers
++snatches
++snatching
++snazzier
++snazziest
++snazzily
++snazzy
++sneak
++sneaked
++sneaker
++sneakers
++sneakier
++sneakiest
++sneakily
++sneakiness
++sneaking
++sneakingly
++sneaks
++sneaky
++sneer
++sneered
++sneering
++sneeringly
++sneerings
++sneers
++sneeze
++sneezed
++sneezes
++sneezing
++snick
++snicked
++snicker
++snickered
++snickering
++snickers
++snicking
++snicks
++snide
++snidely
++snider
++snidest
++sniff
++sniffed
++sniffer
++sniffers
++sniffier
++sniffiest
++sniffing
++sniffle
++sniffled
++sniffles
++sniffling
++sniffs
++sniffy
++snifter
++snifters
++snip
++snipe
++sniped
++sniper
++snipers
++snipes
++sniping
++snipped
++snippet
++snippets
++snippier
++snippiest
++snipping
++snippy
++snips
++snit
++snitch
++snitched
++snitches
++snitching
++snits
++snivel
++sniveled
++sniveler
++snivelers
++sniveling
++snivels
++snob
++snobbery
++snobbier
++snobbiest
++snobbish
++snobbishly
++snobbishness
++snobby
++snobs
++snog
++snogged
++snogging
++snogs
++snood
++snoods
++snooker
++snookered
++snookering
++snookers
++snoop
++snooped
++snooper
++snoopers
++snoopier
++snoopiest
++snooping
++snoops
++snoopy
++snoot
++snootier
++snootiest
++snootily
++snootiness
++snoots
++snooty
++snooze
++snoozed
++snoozes
++snoozing
++snore
++snored
++snorer
++snorers
++snores
++snoring
++snorkel
++snorkeled
++snorkeler
++snorkelers
++snorkeling
++snorkels
++snort
++snorted
++snorter
++snorters
++snorting
++snorts
++snot
++snots
++snottier
++snottiest
++snottily
++snottiness
++snotty
++snout
++snouts
++snow
++snowball
++snowballed
++snowballing
++snowballs
++snowbank
++snowbanks
++snowbird
++snowbirds
++snowblower
++snowblowers
++snowboard
++snowboarded
++snowboarder
++snowboarders
++snowboarding
++snowboards
++snowbound
++snowdrift
++snowdrifts
++snowdrop
++snowdrops
++snowed
++snowfall
++snowfalls
++snowfield
++snowfields
++snowflake
++snowflakes
++snowier
++snowiest
++snowiness
++snowing
++snowline
++snowman
++snowmen
++snowmobile
++snowmobiled
++snowmobiles
++snowmobiling
++snowplow
++snowplowed
++snowplowing
++snowplows
++snows
++snowshed
++snowshoe
++snowshoeing
++snowshoes
++snowstorm
++snowstorms
++snowsuit
++snowsuits
++snowy
++snub
++snubbed
++snubbing
++snubs
++snuff
++snuffbox
++snuffboxes
++snuffed
++snuffer
++snuffers
++snuffing
++snuffle
++snuffled
++snuffles
++snuffling
++snuffly
++snuffs
++snug
++snugged
++snugger
++snuggest
++snugging
++snuggle
++snuggled
++snuggles
++snuggling
++snugly
++snugness
++snugs
++so
++soak
++soaked
++soaking
++soakings
++soaks
++soap
++soapbox
++soapboxes
++soaped
++soapier
++soapiest
++soapiness
++soaping
++soaps
++soapstone
++soapsuds
++soapy
++soar
++soared
++soaring
++soars
++sob
++sobbed
++sobbing
++sobbingly
++sober
++sobered
++soberer
++soberest
++sobering
++soberly
++soberness
++sobers
++sobriety
++sobriquet
++sobriquets
++sobs
++soc
++soccer
++sociability
++sociable
++sociables
++sociably
++social
++socialism
++socialist
++socialistic
++socialists
++socialite
++socialites
++socialization
++socialize
++socialized
++socializes
++socializing
++socially
++socials
++societal
++societies
++society
++socioeconomic
++socioeconomically
++sociological
++sociologically
++sociologist
++sociologists
++sociology
++sociopath
++sociopaths
++sociopolitical
++sock
++socked
++socket
++sockets
++sockeye
++sockeyes
++socking
++socks
++sod
++soda
++sodas
++sodded
++sodden
++soddenly
++sodding
++sodium
++sodomite
++sodomites
++sodomize
++sodomized
++sodomizes
++sodomizing
++sodomy
++sods
++soever
++sofa
++sofas
++soft
++softback
++softball
++softballs
++softbound
++softcover
++soften
++softened
++softener
++softeners
++softening
++softens
++softer
++softest
++softhearted
++softies
++softly
++softness
++software
++softwood
++softwoods
++softy
++soggier
++soggiest
++soggily
++sogginess
++soggy
++soigne
++soignee
++soil
++soiled
++soiling
++soils
++soiree
++soirees
++sojourn
++sojourned
++sojourner
++sojourners
++sojourning
++sojourns
++sol
++solace
++solaced
++solaces
++solacing
++solar
++solaria
++solarium
++sold
++solder
++soldered
++solderer
++solderers
++soldering
++solders
++soldier
++soldiered
++soldiering
++soldierly
++soldiers
++soldiery
++sole
++solecism
++solecisms
++soled
++solely
++solemn
++solemner
++solemness
++solemnest
++solemnified
++solemnifies
++solemnify
++solemnifying
++solemnities
++solemnity
++solemnization
++solemnize
++solemnized
++solemnizes
++solemnizing
++solemnly
++solemnness
++solenoid
++solenoids
++soles
++solicit
++solicitation
++solicitations
++solicited
++soliciting
++solicitor
++solicitors
++solicitous
++solicitously
++solicitousness
++solicits
++solicitude
++solid
++solidarity
++solider
++solidest
++solidi
++solidification
++solidified
++solidifies
++solidify
++solidifying
++solidity
++solidly
++solidness
++solids
++solidus
++soliloquies
++soliloquize
++soliloquized
++soliloquizes
++soliloquizing
++soliloquy
++soling
++solipsism
++solipsistic
++solitaire
++solitaires
++solitaries
++solitariness
++solitary
++solitude
++solo
++soloed
++soloing
++soloist
++soloists
++solos
++sols
++solstice
++solstices
++solubility
++soluble
++solubles
++solute
++solutes
++solution
++solutions
++solvable
++solve
++solved
++solvency
++solvent
++solvents
++solver
++solvers
++solves
++solving
++somatic
++somber
++somberly
++somberness
++sombrero
++sombreros
++some
++somebodies
++somebody
++someday
++somehow
++someone
++someones
++someplace
++somersault
++somersaulted
++somersaulting
++somersaults
++somerset
++somersets
++somersetted
++somersetting
++something
++somethings
++sometime
++sometimes
++someway
++someways
++somewhat
++somewhats
++somewhere
++somnambulism
++somnambulist
++somnambulists
++somnolence
++somnolent
++son
++sonar
++sonars
++sonata
++sonatas
++sonatina
++sonatinas
++song
++songbird
++songbirds
++songbook
++songbooks
++songfest
++songfests
++songs
++songster
++songsters
++songstress
++songstresses
++songwriter
++songwriters
++songwriting
++sonic
++sonnet
++sonnets
++sonnies
++sonny
++sonogram
++sonograms
++sonority
++sonorous
++sonorously
++sonorousness
++sons
++sonsofbitches
++soon
++sooner
++soonest
++soot
++sooth
++soothe
++soothed
++soother
++soothers
++soothes
++soothing
++soothingly
++soothsayer
++soothsayers
++soothsaying
++sootier
++sootiest
++sooty
++sop
++soph
++sophism
++sophist
++sophistic
++sophistical
++sophisticate
++sophisticated
++sophisticates
++sophisticating
++sophistication
++sophistries
++sophistry
++sophists
++sophomore
++sophomores
++sophomoric
++soporific
++soporifically
++soporifics
++sopped
++soppier
++soppiest
++sopping
++soppy
++soprano
++sopranos
++sops
++sorbet
++sorbets
++sorcerer
++sorcerers
++sorceress
++sorceresses
++sorcery
++sordid
++sordidly
++sordidness
++sore
++sorehead
++soreheads
++sorely
++soreness
++sorer
++sores
++sorest
++sorghum
++sororities
++sorority
++sorrel
++sorrels
++sorrier
++sorriest
++sorrily
++sorriness
++sorrow
++sorrowed
++sorrowful
++sorrowfully
++sorrowfulness
++sorrowing
++sorrows
++sorry
++sort
++sorta
++sorted
++sorter
++sorters
++sortie
++sortied
++sortieing
++sorties
++sorting
++sorts
++sot
++sots
++sottish
++sou
++souffle
++souffles
++sough
++soughed
++soughing
++soughs
++sought
++souk
++souks
++soul
++soulful
++soulfully
++soulfulness
++soulless
++soullessly
++soullessness
++soulmate
++soulmates
++souls
++sound
++soundalike
++soundalikes
++soundbar
++soundbars
++soundbite
++soundbites
++soundboard
++soundboards
++soundcheck
++soundchecks
++sounded
++sounder
++sounders
++soundest
++sounding
++soundings
++soundless
++soundlessly
++soundly
++soundness
++soundproof
++soundproofed
++soundproofing
++soundproofs
++sounds
++soundscape
++soundscapes
++soundtrack
++soundtracks
++soup
++soupcon
++soupcons
++souped
++soupier
++soupiest
++souping
++soups
++soupy
++sour
++source
++sourced
++sources
++sourcing
++sourdough
++sourdoughs
++soured
++sourer
++sourest
++souring
++sourish
++sourly
++sourness
++sourpuss
++sourpusses
++sours
++sous
++sousaphone
++sousaphones
++souse
++soused
++souses
++sousing
++south
++southbound
++southeast
++southeaster
++southeasterly
++southeastern
++southeasters
++southeastward
++southeastwards
++southerlies
++southerly
++southern
++southerner
++southerners
++southernmost
++southerns
++southpaw
++southpaws
++southward
++southwards
++southwest
++southwester
++southwesterly
++southwestern
++southwesters
++southwestward
++southwestwards
++souvenir
++souvenirs
++sovereign
++sovereigns
++sovereignty
++soviet
++soviets
++sow
++sowed
++sower
++sowers
++sowing
++sown
++sows
++soy
++soybean
++soybeans
++sozzled
++spa
++space
++spacecraft
++spacecrafts
++spaced
++spaceflight
++spaceflights
++spaceman
++spacemen
++spaceport
++spaceports
++spacer
++spacers
++spaces
++spaceship
++spaceships
++spacesuit
++spacesuits
++spacewalk
++spacewalked
++spacewalking
++spacewalks
++spacewoman
++spacewomen
++spacey
++spacial
++spacier
++spaciest
++spaciness
++spacing
++spacious
++spaciously
++spaciousness
++spade
++spaded
++spadeful
++spadefuls
++spades
++spadework
++spadices
++spading
++spadix
++spaghetti
++spake
++spam
++spammed
++spammer
++spammers
++spamming
++spams
++span
++spandex
++spangle
++spangled
++spangles
++spangling
++spangly
++spaniel
++spaniels
++spank
++spanked
++spanking
++spankings
++spanks
++spanned
++spanner
++spanners
++spanning
++spans
++spar
++spare
++spared
++sparely
++spareness
++sparer
++spareribs
++spares
++sparest
++sparing
++sparingly
++spark
++sparked
++sparkier
++sparkiest
++sparking
++sparkle
++sparkled
++sparkler
++sparklers
++sparkles
++sparkling
++sparkly
++sparks
++sparky
++sparred
++sparring
++sparrow
++sparrowhawk
++sparrowhawks
++sparrows
++spars
++sparse
++sparsely
++sparseness
++sparser
++sparsest
++sparsity
++spartan
++spas
++spasm
++spasmodic
++spasmodically
++spasms
++spastic
++spastics
++spat
++spate
++spates
++spathe
++spathes
++spatial
++spatially
++spats
++spatted
++spatter
++spattered
++spattering
++spatters
++spatting
++spatula
++spatulas
++spavin
++spavined
++spawn
++spawned
++spawning
++spawns
++spay
++spayed
++spaying
++spays
++speak
++speakeasies
++speakeasy
++speaker
++speakerphone
++speakerphones
++speakers
++speaking
++speakings
++speaks
++spear
++speared
++spearfish
++spearfished
++spearfishes
++spearfishing
++speargun
++spearhead
++spearheaded
++spearheading
++spearheads
++spearing
++spearmint
++spears
++spec
++special
++specialism
++specialisms
++specialist
++specialists
++specialization
++specializations
++specialize
++specialized
++specializes
++specializing
++specially
++specials
++specialties
++specialty
++specie
++species
++specif
++specifiable
++specific
++specifically
++specification
++specifications
++specificity
++specifics
++specified
++specifier
++specifiers
++specifies
++specify
++specifying
++specimen
++specimens
++specious
++speciously
++speciousness
++speck
++specked
++specking
++speckle
++speckled
++speckles
++speckling
++specks
++specs
++spectacle
++spectacles
++spectacular
++spectacularly
++spectaculars
++spectate
++spectated
++spectates
++spectating
++spectator
++spectators
++specter
++specters
++spectra
++spectral
++spectrometer
++spectrometers
++spectroscope
++spectroscopes
++spectroscopic
++spectroscopy
++spectrum
++speculate
++speculated
++speculates
++speculating
++speculation
++speculations
++speculative
++speculatively
++speculator
++speculators
++sped
++speech
++speeches
++speechified
++speechifies
++speechify
++speechifying
++speechless
++speechlessly
++speechlessness
++speechwriter
++speechwriters
++speed
++speedboat
++speedboats
++speeder
++speeders
++speedier
++speediest
++speedily
++speediness
++speeding
++speedometer
++speedometers
++speeds
++speedster
++speedsters
++speedup
++speedups
++speedway
++speedways
++speedwell
++speedy
++speleological
++speleologist
++speleologists
++speleology
++spell
++spellbind
++spellbinder
++spellbinders
++spellbinding
++spellbinds
++spellbound
++spellcheck
++spellchecked
++spellchecker
++spellcheckers
++spellchecking
++spellchecks
++spelldown
++spelldowns
++spelled
++speller
++spellers
++spelling
++spellings
++spells
++spelunker
++spelunkers
++spelunking
++spend
++spendable
++spender
++spenders
++spending
++spends
++spendthrift
++spendthrifts
++spent
++sperm
++spermatozoa
++spermatozoon
++spermicidal
++spermicide
++spermicides
++sperms
++spew
++spewed
++spewer
++spewers
++spewing
++spews
++sphagnum
++sphagnums
++sphere
++spheres
++spherical
++spherically
++spheroid
++spheroidal
++spheroids
++sphincter
++sphincters
++sphinx
++sphinxes
++spic
++spice
++spiced
++spices
++spicier
++spiciest
++spicily
++spiciness
++spicing
++spics
++spicule
++spicules
++spicy
++spider
++spiders
++spiderweb
++spiderwebs
++spidery
++spied
++spiel
++spieled
++spieling
++spiels
++spies
++spiff
++spiffed
++spiffier
++spiffiest
++spiffing
++spiffs
++spiffy
++spigot
++spigots
++spike
++spiked
++spikes
++spikier
++spikiest
++spikiness
++spiking
++spiky
++spill
++spillage
++spillages
++spilled
++spilling
++spillover
++spillovers
++spills
++spillway
++spillways
++spin
++spinach
++spinal
++spinally
++spinals
++spindle
++spindled
++spindles
++spindlier
++spindliest
++spindling
++spindly
++spine
++spineless
++spinelessly
++spinelessness
++spines
++spinet
++spinets
++spinier
++spiniest
++spinnaker
++spinnakers
++spinner
++spinneret
++spinnerets
++spinners
++spinney
++spinneys
++spinning
++spins
++spinster
++spinsterhood
++spinsterish
++spinsters
++spiny
++spiracle
++spiracles
++spiral
++spiraled
++spiraling
++spirally
++spirals
++spire
++spirea
++spireas
++spires
++spirit
++spirited
++spiritedly
++spiriting
++spiritless
++spirits
++spiritual
++spiritualism
++spiritualist
++spiritualistic
++spiritualists
++spirituality
++spiritually
++spirituals
++spirituous
++spirochete
++spirochetes
++spiry
++spit
++spitball
++spitballs
++spite
++spited
++spiteful
++spitefuller
++spitefullest
++spitefully
++spitefulness
++spites
++spitfire
++spitfires
++spiting
++spits
++spitted
++spitting
++spittle
++spittoon
++spittoons
++spiv
++spivs
++splash
++splashdown
++splashdowns
++splashed
++splashes
++splashier
++splashiest
++splashily
++splashiness
++splashing
++splashy
++splat
++splats
++splatted
++splatter
++splattered
++splattering
++splatters
++splatting
++splay
++splayed
++splayfeet
++splayfoot
++splayfooted
++splaying
++splays
++spleen
++spleens
++splendid
++splendider
++splendidest
++splendidly
++splendor
++splendorous
++splendors
++splenectomy
++splenetic
++splice
++spliced
++splicer
++splicers
++splices
++splicing
++spliff
++spliffs
++spline
++splines
++splint
++splinted
++splinter
++splintered
++splintering
++splinters
++splintery
++splinting
++splints
++split
++splits
++splitting
++splittings
++splodge
++splodges
++splosh
++sploshed
++sploshes
++sploshing
++splotch
++splotched
++splotches
++splotchier
++splotchiest
++splotching
++splotchy
++splurge
++splurged
++splurges
++splurging
++splutter
++spluttered
++spluttering
++splutters
++spoil
++spoilage
++spoiled
++spoiler
++spoilers
++spoiling
++spoils
++spoilsport
++spoilsports
++spoke
++spoken
++spokes
++spokesman
++spokesmen
++spokespeople
++spokesperson
++spokespersons
++spokeswoman
++spokeswomen
++spoliation
++sponge
++spongecake
++sponged
++sponger
++spongers
++sponges
++spongier
++spongiest
++sponginess
++sponging
++spongy
++sponsor
++sponsored
++sponsoring
++sponsors
++sponsorship
++spontaneity
++spontaneous
++spontaneously
++spoof
++spoofed
++spoofing
++spoofs
++spook
++spooked
++spookier
++spookiest
++spookiness
++spooking
++spooks
++spooky
++spool
++spooled
++spooling
++spools
++spoon
++spoonbill
++spoonbills
++spooned
++spoonerism
++spoonerisms
++spoonful
++spoonfuls
++spooning
++spoons
++spoor
++spoored
++spooring
++spoors
++sporadic
++sporadically
++spore
++spored
++spores
++sporing
++sporran
++sporrans
++sport
++sported
++sportier
++sportiest
++sportiness
++sporting
++sportingly
++sportive
++sportively
++sports
++sportscast
++sportscaster
++sportscasters
++sportscasting
++sportscasts
++sportsman
++sportsmanlike
++sportsmanship
++sportsmen
++sportspeople
++sportsperson
++sportswear
++sportswoman
++sportswomen
++sportswriter
++sportswriters
++sporty
++spot
++spotless
++spotlessly
++spotlessness
++spotlight
++spotlighted
++spotlighting
++spotlights
++spotlit
++spots
++spotted
++spotter
++spotters
++spottier
++spottiest
++spottily
++spottiness
++spotting
++spotty
++spousal
++spousals
++spouse
++spouses
++spout
++spouted
++spouting
++spouts
++sprain
++sprained
++spraining
++sprains
++sprang
++sprat
++sprats
++sprawl
++sprawled
++sprawling
++sprawls
++spray
++sprayed
++sprayer
++sprayers
++spraying
++sprays
++spread
++spreadable
++spreadeagled
++spreader
++spreaders
++spreading
++spreads
++spreadsheet
++spreadsheets
++spree
++spreed
++spreeing
++sprees
++sprier
++spriest
++sprig
++sprigged
++sprightlier
++sprightliest
++sprightliness
++sprightly
++sprigs
++spring
++springboard
++springboards
++springbok
++springboks
++springier
++springiest
++springily
++springiness
++springing
++springlike
++springs
++springtime
++springy
++sprinkle
++sprinkled
++sprinkler
++sprinklers
++sprinkles
++sprinkling
++sprinklings
++sprint
++sprinted
++sprinter
++sprinters
++sprinting
++sprints
++sprite
++sprites
++spritz
++spritzed
++spritzer
++spritzers
++spritzes
++spritzing
++sprocket
++sprockets
++sprog
++sprogs
++sprout
++sprouted
++sprouting
++sprouts
++spruce
++spruced
++sprucely
++spruceness
++sprucer
++spruces
++sprucest
++sprucing
++sprung
++spry
++spryly
++spryness
++spud
++spuds
++spume
++spumed
++spumes
++spuming
++spumoni
++spumy
++spun
++spunk
++spunkier
++spunkiest
++spunks
++spunky
++spur
++spurge
++spurious
++spuriously
++spuriousness
++spurn
++spurned
++spurning
++spurns
++spurred
++spurring
++spurs
++spurt
++spurted
++spurting
++spurts
++sputa
++sputnik
++sputniks
++sputter
++sputtered
++sputtering
++sputters
++sputum
++spy
++spyglass
++spyglasses
++spying
++spymaster
++spymasters
++spyware
++sq
++sqq
++squab
++squabble
++squabbled
++squabbler
++squabblers
++squabbles
++squabbling
++squabs
++squad
++squadron
++squadrons
++squads
++squalid
++squalider
++squalidest
++squalidly
++squalidness
++squall
++squalled
++squalling
++squalls
++squally
++squalor
++squamous
++squander
++squandered
++squandering
++squanders
++square
++squared
++squarely
++squareness
++squarer
++squares
++squarest
++squaring
++squarish
++squash
++squashed
++squashes
++squashier
++squashiest
++squashing
++squashy
++squat
++squatness
++squats
++squatted
++squatter
++squatters
++squattest
++squatting
++squaw
++squawk
++squawked
++squawker
++squawkers
++squawking
++squawks
++squaws
++squeak
++squeaked
++squeaker
++squeakers
++squeakier
++squeakiest
++squeakily
++squeakiness
++squeaking
++squeaks
++squeaky
++squeal
++squealed
++squealer
++squealers
++squealing
++squeals
++squeamish
++squeamishly
++squeamishness
++squeegee
++squeegeed
++squeegeeing
++squeegees
++squeezable
++squeeze
++squeezebox
++squeezeboxes
++squeezed
++squeezer
++squeezers
++squeezes
++squeezing
++squelch
++squelched
++squelches
++squelching
++squelchy
++squib
++squibs
++squid
++squidgy
++squids
++squiffy
++squiggle
++squiggled
++squiggles
++squiggling
++squiggly
++squint
++squinted
++squinter
++squintest
++squinting
++squints
++squire
++squired
++squires
++squiring
++squirm
++squirmed
++squirmier
++squirmiest
++squirming
++squirms
++squirmy
++squirrel
++squirreled
++squirreling
++squirrels
++squirt
++squirted
++squirting
++squirts
++squish
++squished
++squishes
++squishier
++squishiest
++squishing
++squishy
++sriracha
++ssh
++st
++stab
++stabbed
++stabber
++stabbers
++stabbing
++stabbings
++stability
++stabilization
++stabilize
++stabilized
++stabilizer
++stabilizers
++stabilizes
++stabilizing
++stable
++stabled
++stableman
++stablemate
++stablemates
++stablemen
++stabler
++stables
++stablest
++stabling
++stably
++stabs
++staccato
++staccatos
++stack
++stacked
++stacking
++stacks
++stadium
++stadiums
++staff
++staffed
++staffer
++staffers
++staffing
++staffs
++stag
++stage
++stagecoach
++stagecoaches
++stagecraft
++staged
++stagehand
++stagehands
++stages
++stagestruck
++stagflation
++stagger
++staggered
++staggering
++staggeringly
++staggers
++stagier
++stagiest
++staging
++stagings
++stagnancy
++stagnant
++stagnantly
++stagnate
++stagnated
++stagnates
++stagnating
++stagnation
++stags
++stagy
++staid
++staider
++staidest
++staidly
++staidness
++stain
++stained
++staining
++stainless
++stains
++stair
++staircase
++staircases
++stairs
++stairway
++stairways
++stairwell
++stairwells
++stake
++staked
++stakeholder
++stakeholders
++stakeout
++stakeouts
++stakes
++staking
++stalactite
++stalactites
++stalagmite
++stalagmites
++stale
++staled
++stalemate
++stalemated
++stalemates
++stalemating
++staleness
++staler
++stales
++stalest
++staling
++stalk
++stalked
++stalker
++stalkers
++stalking
++stalkings
++stalks
++stall
++stalled
++stallholder
++stallholders
++stalling
++stallion
++stallions
++stalls
++stalwart
++stalwartly
++stalwarts
++stamen
++stamens
++stamina
++stammer
++stammered
++stammerer
++stammerers
++stammering
++stammeringly
++stammers
++stamp
++stamped
++stampede
++stampeded
++stampedes
++stampeding
++stamper
++stampers
++stamping
++stamps
++stance
++stances
++stanch
++stanched
++stancher
++stanches
++stanchest
++stanching
++stanchion
++stanchions
++stand
++standalone
++standard
++standardization
++standardize
++standardized
++standardizes
++standardizing
++standards
++standby
++standbys
++standee
++standees
++stander
++standers
++standing
++standings
++standoff
++standoffish
++standoffs
++standout
++standouts
++standpipe
++standpipes
++standpoint
++standpoints
++stands
++standstill
++standstills
++stank
++stanza
++stanzas
++staph
++staphylococcal
++staphylococci
++staphylococcus
++staple
++stapled
++stapler
++staplers
++staples
++stapling
++star
++starboard
++starburst
++starbursts
++starch
++starched
++starches
++starchier
++starchiest
++starchily
++starchiness
++starching
++starchy
++stardom
++stardust
++stare
++stared
++starer
++starers
++stares
++starfish
++starfishes
++starfruit
++stargaze
++stargazed
++stargazer
++stargazers
++stargazes
++stargazing
++staring
++stark
++starker
++starkers
++starkest
++starkly
++starkness
++starless
++starlet
++starlets
++starlight
++starling
++starlings
++starlit
++starred
++starrier
++starriest
++starring
++starry
++stars
++starstruck
++start
++started
++starter
++starters
++starting
++startle
++startled
++startles
++startling
++startlingly
++starts
++startup
++startups
++starvation
++starve
++starved
++starveling
++starvelings
++starves
++starving
++starvings
++stash
++stashed
++stashes
++stashing
++stasis
++stat
++state
++statecraft
++stated
++statehood
++statehouse
++statehouses
++stateless
++statelessness
++statelier
++stateliest
++stateliness
++stately
++statement
++statemented
++statementing
++statements
++stater
++stateroom
++staterooms
++states
++stateside
++statesman
++statesmanlike
++statesmanship
++statesmen
++stateswoman
++stateswomen
++statewide
++static
++statically
++statics
++stating
++station
++stationary
++stationed
++stationer
++stationers
++stationery
++stationing
++stationmaster
++stationmasters
++stations
++statistic
++statistical
++statistically
++statistician
++statisticians
++statistics
++stats
++statuary
++statue
++statues
++statuesque
++statuette
++statuettes
++stature
++statures
++status
++statuses
++statute
++statutes
++statutorily
++statutory
++staunch
++staunched
++stauncher
++staunches
++staunchest
++staunching
++staunchly
++staunchness
++stave
++staved
++staves
++staving
++stay
++stayed
++stayer
++stayers
++staying
++stays
++std
++stdio
++stead
++steadfast
++steadfastly
++steadfastness
++steadied
++steadier
++steadies
++steadiest
++steadily
++steadiness
++steads
++steady
++steadying
++steak
++steakhouse
++steakhouses
++steaks
++steal
++stealing
++steals
++stealth
++stealthier
++stealthiest
++stealthily
++stealthiness
++stealthy
++steam
++steamboat
++steamboats
++steamed
++steamer
++steamers
++steamfitter
++steamfitters
++steamfitting
++steamier
++steamiest
++steaminess
++steaming
++steampunk
++steamroll
++steamrolled
++steamroller
++steamrollered
++steamrollering
++steamrollers
++steamrolling
++steamrolls
++steams
++steamship
++steamships
++steamy
++steed
++steeds
++steel
++steeled
++steelier
++steeliest
++steeliness
++steeling
++steelmaker
++steelmakers
++steels
++steelworker
++steelworkers
++steelworks
++steely
++steelyard
++steelyards
++steep
++steeped
++steepen
++steepened
++steepening
++steepens
++steeper
++steepest
++steeping
++steeple
++steeplechase
++steeplechases
++steeplejack
++steeplejacks
++steeples
++steeply
++steepness
++steeps
++steer
++steerable
++steerage
++steered
++steering
++steers
++steersman
++steersmen
++stegosauri
++stegosaurus
++stegosauruses
++stein
++steins
++stellar
++stem
++stemless
++stemmed
++stemming
++stems
++stemware
++stench
++stenches
++stencil
++stenciled
++stenciling
++stencils
++steno
++stenographer
++stenographers
++stenographic
++stenography
++stenos
++stenosis
++stent
++stentorian
++stents
++step
++stepbrother
++stepbrothers
++stepchild
++stepchildren
++stepdad
++stepdads
++stepdaughter
++stepdaughters
++stepfather
++stepfathers
++stepladder
++stepladders
++stepmom
++stepmoms
++stepmother
++stepmothers
++stepparent
++stepparents
++steppe
++stepped
++stepper
++steppers
++steppes
++stepping
++steppingstone
++steppingstones
++steps
++stepsister
++stepsisters
++stepson
++stepsons
++stereo
++stereophonic
++stereos
++stereoscope
++stereoscopes
++stereoscopic
++stereotype
++stereotyped
++stereotypes
++stereotypical
++stereotyping
++sterile
++sterility
++sterilization
++sterilizations
++sterilize
++sterilized
++sterilizer
++sterilizers
++sterilizes
++sterilizing
++sterling
++stern
++sterner
++sternest
++sternly
++sternness
++sterns
++sternum
++sternums
++steroid
++steroidal
++steroids
++stertorous
++stet
++stethoscope
++stethoscopes
++stets
++stetson
++stetsons
++stetted
++stetting
++stevedore
++stevedores
++stew
++steward
++stewarded
++stewardess
++stewardesses
++stewarding
++stewards
++stewardship
++stewed
++stewing
++stews
++stick
++sticker
++stickers
++stickier
++stickies
++stickiest
++stickily
++stickiness
++sticking
++stickleback
++sticklebacks
++stickler
++sticklers
++stickpin
++stickpins
++sticks
++stickup
++stickups
++sticky
++sties
++stiff
++stiffed
++stiffen
++stiffened
++stiffener
++stiffeners
++stiffening
++stiffens
++stiffer
++stiffest
++stiffing
++stiffly
++stiffness
++stiffs
++stifle
++stifled
++stifles
++stifling
++stiflingly
++stiflings
++stigma
++stigmas
++stigmata
++stigmatic
++stigmatization
++stigmatize
++stigmatized
++stigmatizes
++stigmatizing
++stile
++stiles
++stiletto
++stilettos
++still
++stillbirth
++stillbirths
++stillborn
++stilled
++stiller
++stillest
++stilling
++stillness
++stills
++stilt
++stilted
++stiltedly
++stilts
++stimulant
++stimulants
++stimulate
++stimulated
++stimulates
++stimulating
++stimulation
++stimulative
++stimuli
++stimulus
++sting
++stinger
++stingers
++stingier
++stingiest
++stingily
++stinginess
++stinging
++stingray
++stingrays
++stings
++stingy
++stink
++stinkbug
++stinkbugs
++stinker
++stinkers
++stinkier
++stinkiest
++stinking
++stinks
++stinky
++stint
++stinted
++stinting
++stints
++stipend
++stipendiaries
++stipendiary
++stipends
++stipple
++stippled
++stipples
++stippling
++stipulate
++stipulated
++stipulates
++stipulating
++stipulation
++stipulations
++stir
++stirred
++stirrer
++stirrers
++stirring
++stirringly
++stirrings
++stirrup
++stirrups
++stirs
++stitch
++stitched
++stitchery
++stitches
++stitching
++stoat
++stoats
++stochastic
++stock
++stockade
++stockaded
++stockades
++stockading
++stockbreeder
++stockbreeders
++stockbroker
++stockbrokers
++stockbroking
++stocked
++stockholder
++stockholders
++stockier
++stockiest
++stockily
++stockiness
++stockinette
++stocking
++stockings
++stockist
++stockists
++stockpile
++stockpiled
++stockpiles
++stockpiling
++stockpot
++stockpots
++stockroom
++stockrooms
++stocks
++stocktaking
++stocky
++stockyard
++stockyards
++stodge
++stodgier
++stodgiest
++stodgily
++stodginess
++stodgy
++stogie
++stogies
++stoic
++stoical
++stoically
++stoicism
++stoics
++stoke
++stoked
++stoker
++stokers
++stokes
++stoking
++stole
++stolen
++stoles
++stolid
++stolider
++stolidest
++stolidity
++stolidly
++stolidness
++stolon
++stolons
++stomach
++stomachache
++stomachaches
++stomached
++stomacher
++stomachers
++stomaching
++stomachs
++stomp
++stomped
++stomping
++stomps
++stone
++stoned
++stonemason
++stonemasons
++stoner
++stoners
++stones
++stonewall
++stonewalled
++stonewalling
++stonewalls
++stoneware
++stonewashed
++stonework
++stonier
++stoniest
++stonily
++stoniness
++stoning
++stonkered
++stonking
++stony
++stood
++stooge
++stooges
++stool
++stools
++stoop
++stooped
++stooping
++stoops
++stop
++stopcock
++stopcocks
++stopgap
++stopgaps
++stoplight
++stoplights
++stopover
++stopovers
++stoppable
++stoppage
++stoppages
++stopped
++stopper
++stoppered
++stoppering
++stoppers
++stopping
++stopple
++stoppled
++stopples
++stoppling
++stops
++stopwatch
++stopwatches
++storage
++store
++stored
++storefront
++storefronts
++storehouse
++storehouses
++storekeeper
++storekeepers
++storeroom
++storerooms
++stores
++storied
++stories
++storing
++stork
++storks
++storm
++stormed
++stormier
++stormiest
++stormily
++storminess
++storming
++storms
++stormy
++story
++storyboard
++storyboards
++storybook
++storybooks
++storyteller
++storytellers
++storytelling
++stoup
++stoups
++stout
++stouter
++stoutest
++stouthearted
++stoutly
++stoutness
++stouts
++stove
++stovepipe
++stovepipes
++stoves
++stow
++stowage
++stowaway
++stowaways
++stowed
++stowing
++stows
++straddle
++straddled
++straddler
++straddlers
++straddles
++straddling
++strafe
++strafed
++strafes
++strafing
++straggle
++straggled
++straggler
++stragglers
++straggles
++stragglier
++straggliest
++straggling
++straggly
++straight
++straightaway
++straightaways
++straightedge
++straightedges
++straighten
++straightened
++straightener
++straighteners
++straightening
++straightens
++straighter
++straightest
++straightforward
++straightforwardly
++straightforwardness
++straightforwards
++straightly
++straightness
++straights
++straightway
++strain
++strained
++strainer
++strainers
++straining
++strains
++strait
++straiten
++straitened
++straitening
++straitens
++straitjacket
++straitjacketed
++straitjacketing
++straitjackets
++straitlaced
++straits
++strand
++stranded
++stranding
++strands
++strange
++strangely
++strangeness
++stranger
++strangers
++strangest
++strangle
++strangled
++stranglehold
++strangleholds
++strangler
++stranglers
++strangles
++strangling
++strangulate
++strangulated
++strangulates
++strangulating
++strangulation
++strap
++strapless
++straplesses
++strapped
++strapping
++straps
++strata
++stratagem
++stratagems
++strategic
++strategical
++strategically
++strategics
++strategies
++strategist
++strategists
++strategy
++strati
++stratification
++stratified
++stratifies
++stratify
++stratifying
++stratosphere
++stratospheres
++stratospheric
++stratum
++stratus
++straw
++strawberries
++strawberry
++strawed
++strawing
++straws
++stray
++strayed
++straying
++strays
++streak
++streaked
++streaker
++streakers
++streakier
++streakiest
++streaking
++streaks
++streaky
++stream
++streamed
++streamer
++streamers
++streaming
++streamline
++streamlined
++streamlines
++streamlining
++streams
++street
++streetcar
++streetcars
++streetlamp
++streetlamps
++streetlight
++streetlights
++streets
++streetwalker
++streetwalkers
++streetwise
++strength
++strengthen
++strengthened
++strengthener
++strengtheners
++strengthening
++strengthens
++strengths
++strenuous
++strenuously
++strenuousness
++strep
++streptococcal
++streptococci
++streptococcus
++streptomycin
++stress
++stressed
++stresses
++stressful
++stressing
++stretch
++stretchable
++stretched
++stretcher
++stretchered
++stretchering
++stretchers
++stretches
++stretchier
++stretchiest
++stretching
++stretchmarks
++stretchy
++strew
++strewed
++strewing
++strewn
++strews
++strewth
++stria
++striae
++striated
++striation
++striations
++stricken
++strict
++stricter
++strictest
++strictly
++strictness
++stricture
++strictures
++stridden
++stride
++stridency
++strident
++stridently
++strides
++striding
++strife
++strike
++strikebound
++strikebreaker
++strikebreakers
++strikebreaking
++strikeout
++strikeouts
++striker
++strikers
++strikes
++striking
++strikingly
++strikings
++string
++stringed
++stringency
++stringent
++stringently
++stringer
++stringers
++stringier
++stringiest
++stringiness
++stringing
++strings
++stringy
++strip
++stripe
++striped
++stripes
++stripey
++striping
++stripling
++striplings
++stripped
++stripper
++strippers
++stripping
++strips
++striptease
++stripteased
++stripteaser
++stripteasers
++stripteases
++stripteasing
++stripy
++strive
++striven
++strives
++striving
++strobe
++strobes
++stroboscope
++stroboscopes
++stroboscopic
++strode
++stroke
++stroked
++strokes
++stroking
++stroll
++strolled
++stroller
++strollers
++strolling
++strolls
++strong
++strongbox
++strongboxes
++stronger
++strongest
++stronghold
++strongholds
++strongly
++strongman
++strongmen
++strongroom
++strongrooms
++strontium
++strop
++strophe
++strophes
++strophic
++stropped
++stroppier
++stroppiest
++stroppily
++stroppiness
++stropping
++stroppy
++strops
++strove
++struck
++structural
++structuralism
++structuralist
++structuralists
++structurally
++structure
++structured
++structures
++structuring
++strudel
++strudels
++struggle
++struggled
++struggles
++struggling
++strum
++strummed
++strumming
++strumpet
++strumpets
++strums
++strung
++strut
++struts
++strutted
++strutting
++strychnine
++stub
++stubbed
++stubbier
++stubbiest
++stubbing
++stubble
++stubbly
++stubborn
++stubborner
++stubbornest
++stubbornly
++stubbornness
++stubby
++stubs
++stucco
++stuccoed
++stuccoes
++stuccoing
++stuck
++stud
++studbook
++studbooks
++studded
++studding
++student
++students
++studentship
++studentships
++studied
++studiedly
++studies
++studio
++studios
++studious
++studiously
++studiousness
++studlier
++studliest
++studly
++studs
++study
++studying
++stuff
++stuffed
++stuffier
++stuffiest
++stuffily
++stuffiness
++stuffing
++stuffings
++stuffs
++stuffy
++stultification
++stultified
++stultifies
++stultify
++stultifying
++stumble
++stumbled
++stumbler
++stumblers
++stumbles
++stumbling
++stump
++stumped
++stumpier
++stumpiest
++stumping
++stumps
++stumpy
++stun
++stung
++stunk
++stunned
++stunner
++stunners
++stunning
++stunningly
++stuns
++stunt
++stunted
++stunting
++stuntman
++stuntmen
++stunts
++stupefaction
++stupefied
++stupefies
++stupefy
++stupefying
++stupendous
++stupendously
++stupid
++stupider
++stupidest
++stupidities
++stupidity
++stupidly
++stupids
++stupor
++stupors
++sturdier
++sturdiest
++sturdily
++sturdiness
++sturdy
++sturgeon
++sturgeons
++stutter
++stuttered
++stutterer
++stutterers
++stuttering
++stutters
++sty
++style
++styled
++styles
++styli
++styling
++stylish
++stylishly
++stylishness
++stylist
++stylistic
++stylistically
++stylistics
++stylists
++stylize
++stylized
++stylizes
++stylizing
++stylus
++styluses
++stymie
++stymied
++stymieing
++stymies
++styptic
++styptics
++suasion
++suave
++suavely
++suaveness
++suaver
++suavest
++suavity
++sub
++subaltern
++subalterns
++subaqua
++subarctic
++subarea
++subareas
++subatomic
++subbasement
++subbasements
++subbed
++subbing
++subbranch
++subbranches
++subcategories
++subcategory
++subclass
++subcommittee
++subcommittees
++subcompact
++subcompacts
++subconscious
++subconsciously
++subconsciousness
++subcontinent
++subcontinental
++subcontinents
++subcontract
++subcontracted
++subcontracting
++subcontractor
++subcontractors
++subcontracts
++subculture
++subcultures
++subcutaneous
++subcutaneously
++subdivide
++subdivided
++subdivides
++subdividing
++subdivision
++subdivisions
++subdomain
++subdomains
++subdominant
++subdue
++subdued
++subdues
++subduing
++subeditor
++subeditors
++subfamilies
++subfamily
++subfreezing
++subgroup
++subgroups
++subhead
++subheading
++subheadings
++subheads
++subhuman
++subhumans
++subj
++subject
++subjected
++subjecting
++subjection
++subjective
++subjectively
++subjectivity
++subjects
++subjoin
++subjoined
++subjoining
++subjoins
++subjugate
++subjugated
++subjugates
++subjugating
++subjugation
++subjunctive
++subjunctives
++sublease
++subleased
++subleases
++subleasing
++sublet
++sublets
++subletting
++sublieutenant
++sublieutenants
++sublimate
++sublimated
++sublimates
++sublimating
++sublimation
++sublime
++sublimed
++sublimely
++sublimer
++sublimes
++sublimest
++subliminal
++subliminally
++subliming
++sublimity
++sublingual
++submarginal
++submarine
++submariner
++submariners
++submarines
++submerge
++submerged
++submergence
++submerges
++submerging
++submerse
++submersed
++submerses
++submersible
++submersibles
++submersing
++submersion
++submicroscopic
++submission
++submissions
++submissive
++submissively
++submissiveness
++submit
++submits
++submitted
++submitter
++submitting
++subnormal
++suborbital
++suborder
++suborders
++subordinate
++subordinated
++subordinates
++subordinating
++subordination
++suborn
++subornation
++suborned
++suborning
++suborns
++subparagraph
++subplot
++subplots
++subpoena
++subpoenaed
++subpoenaing
++subpoenas
++subprime
++subprofessional
++subprofessionals
++subprogram
++subprograms
++subroutine
++subroutines
++subs
++subscribe
++subscribed
++subscriber
++subscribers
++subscribes
++subscribing
++subscript
++subscription
++subscriptions
++subscripts
++subsection
++subsections
++subsequent
++subsequently
++subservience
++subservient
++subserviently
++subset
++subsets
++subside
++subsided
++subsidence
++subsides
++subsidiaries
++subsidiarity
++subsidiary
++subsidies
++subsiding
++subsidization
++subsidize
++subsidized
++subsidizer
++subsidizers
++subsidizes
++subsidizing
++subsidy
++subsist
++subsisted
++subsistence
++subsisting
++subsists
++subsoil
++subsonic
++subspace
++subspecies
++substance
++substances
++substandard
++substantial
++substantially
++substantiate
++substantiated
++substantiates
++substantiating
++substantiation
++substantiations
++substantive
++substantively
++substantives
++substation
++substations
++substituent
++substitute
++substituted
++substitutes
++substituting
++substitution
++substitutions
++substrata
++substrate
++substrates
++substratum
++substructure
++substructures
++subsume
++subsumed
++subsumes
++subsuming
++subsumption
++subsurface
++subsystem
++subsystems
++subteen
++subteens
++subtenancy
++subtenant
++subtenants
++subtend
++subtended
++subtending
++subtends
++subterfuge
++subterfuges
++subterranean
++subtext
++subtexts
++subtitle
++subtitled
++subtitles
++subtitling
++subtle
++subtler
++subtlest
++subtleties
++subtlety
++subtly
++subtopic
++subtopics
++subtotal
++subtotaled
++subtotaling
++subtotals
++subtract
++subtracted
++subtracting
++subtraction
++subtractions
++subtracts
++subtrahend
++subtrahends
++subtropic
++subtropical
++subtropics
++suburb
++suburban
++suburbanite
++suburbanites
++suburbans
++suburbia
++suburbs
++subvention
++subventions
++subversion
++subversive
++subversively
++subversiveness
++subversives
++subvert
++subverted
++subverting
++subverts
++subway
++subways
++subzero
++succeed
++succeeded
++succeeding
++succeeds
++success
++successes
++successful
++successfully
++succession
++successions
++successive
++successively
++successor
++successors
++succinct
++succincter
++succinctest
++succinctly
++succinctness
++succor
++succored
++succoring
++succors
++succotash
++succubi
++succubus
++succulence
++succulency
++succulent
++succulents
++succumb
++succumbed
++succumbing
++succumbs
++such
++suchlike
++suck
++sucked
++sucker
++suckered
++suckering
++suckers
++sucking
++suckle
++suckled
++suckles
++suckling
++sucklings
++sucks
++sucrose
++suction
++suctioned
++suctioning
++suctions
++sudden
++suddenly
++suddenness
++suds
++sudsier
++sudsiest
++sudsy
++sue
++sued
++suede
++sues
++suet
++suety
++suffer
++sufferance
++suffered
++sufferer
++sufferers
++suffering
++sufferings
++suffers
++suffice
++sufficed
++suffices
++sufficiency
++sufficient
++sufficiently
++sufficing
++suffix
++suffixation
++suffixed
++suffixes
++suffixing
++suffocate
++suffocated
++suffocates
++suffocating
++suffocation
++suffragan
++suffragans
++suffrage
++suffragette
++suffragettes
++suffragist
++suffragists
++suffuse
++suffused
++suffuses
++suffusing
++suffusion
++sugar
++sugarcane
++sugarcoat
++sugarcoated
++sugarcoating
++sugarcoats
++sugared
++sugarier
++sugariest
++sugaring
++sugarless
++sugarplum
++sugarplums
++sugars
++sugary
++suggest
++suggested
++suggester
++suggestibility
++suggestible
++suggesting
++suggestion
++suggestions
++suggestive
++suggestively
++suggestiveness
++suggests
++suicidal
++suicide
++suicides
++suing
++suit
++suitability
++suitable
++suitableness
++suitably
++suitcase
++suitcases
++suite
++suited
++suites
++suiting
++suitor
++suitors
++suits
++sukiyaki
++sulfa
++sulfate
++sulfates
++sulfide
++sulfides
++sulfonamides
++sulfur
++sulfured
++sulfuric
++sulfuring
++sulfurous
++sulfurs
++sulk
++sulked
++sulkier
++sulkies
++sulkiest
++sulkily
++sulkiness
++sulking
++sulks
++sulky
++sullen
++sullener
++sullenest
++sullenly
++sullenness
++sullied
++sullies
++sully
++sullying
++sultan
++sultana
++sultanas
++sultanate
++sultanates
++sultans
++sultrier
++sultriest
++sultrily
++sultriness
++sultry
++sum
++sumac
++summaries
++summarily
++summarize
++summarized
++summarizes
++summarizing
++summary
++summat
++summation
++summations
++summed
++summer
++summered
++summerhouse
++summerhouses
++summering
++summers
++summertime
++summery
++summing
++summit
++summitry
++summits
++summon
++summoned
++summoner
++summoners
++summoning
++summons
++summonsed
++summonses
++summonsing
++sumo
++sump
++sumps
++sumptuous
++sumptuously
++sumptuousness
++sums
++sun
++sunbath
++sunbathe
++sunbathed
++sunbather
++sunbathers
++sunbathes
++sunbathing
++sunbaths
++sunbeam
++sunbeams
++sunbed
++sunbeds
++sunbelt
++sunbelts
++sunblock
++sunblocks
++sunbonnet
++sunbonnets
++sunburn
++sunburned
++sunburning
++sunburns
++sunburst
++sunbursts
++sundae
++sundaes
++sundeck
++sundecks
++sunder
++sundered
++sundering
++sunders
++sundial
++sundials
++sundown
++sundowns
++sundress
++sundresses
++sundries
++sundry
++sunfish
++sunfishes
++sunflower
++sunflowers
++sung
++sunglasses
++sunhat
++sunhats
++sunk
++sunken
++sunlamp
++sunlamps
++sunless
++sunlight
++sunlit
++sunned
++sunnier
++sunniest
++sunniness
++sunning
++sunny
++sunrise
++sunrises
++sunroof
++sunroofs
++suns
++sunscreen
++sunscreens
++sunset
++sunsets
++sunshade
++sunshades
++sunshine
++sunshiny
++sunspot
++sunspots
++sunstroke
++suntan
++suntanned
++suntanning
++suntans
++suntrap
++suntraps
++sunup
++sup
++super
++superabundance
++superabundances
++superabundant
++superannuate
++superannuated
++superannuates
++superannuating
++superannuation
++superb
++superber
++superbest
++superbly
++supercargo
++supercargoes
++supercharge
++supercharged
++supercharger
++superchargers
++supercharges
++supercharging
++supercilious
++superciliously
++superciliousness
++supercities
++supercity
++supercomputer
++supercomputers
++superconducting
++superconductive
++superconductivity
++superconductor
++superconductors
++supercritical
++superego
++superegos
++supererogation
++supererogatory
++superficial
++superficiality
++superficially
++superfine
++superfluity
++superfluous
++superfluously
++superfluousness
++superglue
++supergrass
++supergrasses
++superhero
++superheroes
++superheros
++superhighway
++superhighways
++superhuman
++superimpose
++superimposed
++superimposes
++superimposing
++superimposition
++superintend
++superintended
++superintendence
++superintendency
++superintendent
++superintendents
++superintending
++superintends
++superior
++superiority
++superiors
++superlative
++superlatively
++superlatives
++superman
++supermarket
++supermarkets
++supermassive
++supermen
++supermodel
++supermodels
++supermom
++supermoms
++supernal
++supernatural
++supernaturally
++supernaturals
++supernova
++supernovae
++supernovas
++supernumeraries
++supernumerary
++superpose
++superposed
++superposes
++superposing
++superposition
++superpower
++superpowers
++supers
++supersaturate
++supersaturated
++supersaturates
++supersaturating
++supersaturation
++superscribe
++superscribed
++superscribes
++superscribing
++superscript
++superscription
++superscripts
++supersede
++superseded
++supersedes
++superseding
++supersize
++supersized
++supersizes
++supersizing
++supersonic
++superstar
++superstars
++superstate
++superstates
++superstition
++superstitions
++superstitious
++superstitiously
++superstore
++superstores
++superstructure
++superstructures
++supertanker
++supertankers
++superuser
++superusers
++supervene
++supervened
++supervenes
++supervening
++supervention
++supervise
++supervised
++supervises
++supervising
++supervision
++supervisions
++supervisor
++supervisors
++supervisory
++superwoman
++superwomen
++supine
++supinely
++supp
++supped
++supper
++suppers
++suppertime
++supping
++suppl
++supplant
++supplanted
++supplanting
++supplants
++supple
++supplement
++supplemental
++supplementary
++supplementation
++supplemented
++supplementing
++supplements
++suppleness
++suppler
++supplest
++suppliant
++suppliants
++supplicant
++supplicants
++supplicate
++supplicated
++supplicates
++supplicating
++supplication
++supplications
++supplied
++supplier
++suppliers
++supplies
++supply
++supplying
++support
++supportable
++supported
++supporter
++supporters
++supporting
++supportive
++supports
++suppose
++supposed
++supposedly
++supposes
++supposing
++supposition
++suppositions
++suppositories
++suppository
++suppress
++suppressant
++suppressants
++suppressed
++suppresses
++suppressible
++suppressing
++suppression
++suppressive
++suppressor
++suppressors
++suppurate
++suppurated
++suppurates
++suppurating
++suppuration
++supra
++supranational
++supremacist
++supremacists
++supremacy
++supreme
++supremely
++supremo
++supremos
++sups
++supt
++surcease
++surceased
++surceases
++surceasing
++surcharge
++surcharged
++surcharges
++surcharging
++surcingle
++surcingles
++sure
++surefire
++surefooted
++surely
++sureness
++surer
++surest
++sureties
++surety
++surf
++surface
++surfaced
++surfaces
++surfacing
++surfboard
++surfboarded
++surfboarding
++surfboards
++surfed
++surfeit
++surfeited
++surfeiting
++surfeits
++surfer
++surfers
++surfing
++surfs
++surge
++surged
++surgeon
++surgeons
++surgeries
++surgery
++surges
++surgical
++surgically
++surging
++surlier
++surliest
++surliness
++surly
++surmise
++surmised
++surmises
++surmising
++surmount
++surmountable
++surmounted
++surmounting
++surmounts
++surname
++surnames
++surpass
++surpassed
++surpasses
++surpassing
++surplice
++surplices
++surplus
++surpluses
++surplussed
++surplussing
++surprise
++surprised
++surprises
++surprising
++surprisingly
++surprisings
++surreal
++surrealism
++surrealist
++surrealistic
++surrealistically
++surrealists
++surrender
++surrendered
++surrendering
++surrenders
++surreptitious
++surreptitiously
++surreptitiousness
++surrey
++surreys
++surrogacy
++surrogate
++surrogates
++surround
++surrounded
++surrounding
++surroundings
++surrounds
++surtax
++surtaxed
++surtaxes
++surtaxing
++surtitle
++surtitles
++surveillance
++survey
++surveyed
++surveying
++surveyor
++surveyors
++surveys
++survivable
++survival
++survivalist
++survivalists
++survivals
++survive
++survived
++survives
++surviving
++survivor
++survivors
++susceptibilities
++susceptibility
++susceptible
++sushi
++suspect
++suspected
++suspecting
++suspects
++suspend
++suspended
++suspender
++suspenders
++suspending
++suspends
++suspense
++suspenseful
++suspension
++suspensions
++suspicion
++suspicions
++suspicious
++suspiciously
++suss
++sussed
++susses
++sussing
++sustain
++sustainability
++sustainable
++sustained
++sustaining
++sustains
++sustenance
++sutler
++sutlers
++suttee
++suture
++sutured
++sutures
++suturing
++suzerain
++suzerains
++suzerainty
++svelte
++svelter
++sveltest
++swab
++swabbed
++swabbing
++swabs
++swaddle
++swaddled
++swaddles
++swaddling
++swag
++swagged
++swagger
++swaggered
++swaggerer
++swaggering
++swaggers
++swagging
++swags
++swain
++swains
++swallow
++swallowed
++swallowing
++swallows
++swallowtail
++swallowtails
++swam
++swami
++swamis
++swamp
++swamped
++swampier
++swampiest
++swamping
++swampland
++swamps
++swampy
++swan
++swank
++swanked
++swanker
++swankest
++swankier
++swankiest
++swankily
++swankiness
++swanking
++swanks
++swanky
++swanned
++swanning
++swans
++swansong
++swansongs
++swap
++swapped
++swapping
++swaps
++sward
++swards
++swarm
++swarmed
++swarming
++swarms
++swarthier
++swarthiest
++swarthy
++swash
++swashbuckler
++swashbucklers
++swashbuckling
++swashed
++swashes
++swashing
++swastika
++swastikas
++swat
++swatch
++swatches
++swath
++swathe
++swathed
++swathes
++swathing
++swaths
++swats
++swatted
++swatter
++swattered
++swattering
++swatters
++swatting
++sway
++swayback
++swaybacked
++swayed
++swaying
++sways
++swear
++swearer
++swearers
++swearing
++swears
++swearword
++swearwords
++sweat
++sweatband
++sweatbands
++sweated
++sweater
++sweaters
++sweatier
++sweatiest
++sweating
++sweatpants
++sweats
++sweatshirt
++sweatshirts
++sweatshop
++sweatshops
++sweatsuit
++sweatsuits
++sweaty
++swede
++swedes
++sweep
++sweeper
++sweepers
++sweeping
++sweepingly
++sweepings
++sweeps
++sweepstakes
++sweet
++sweetbread
++sweetbreads
++sweetbrier
++sweetbriers
++sweetcorn
++sweeten
++sweetened
++sweetener
++sweeteners
++sweetening
++sweetens
++sweeter
++sweetest
++sweetheart
++sweethearts
++sweetie
++sweeties
++sweetish
++sweetly
++sweetmeat
++sweetmeats
++sweetness
++sweets
++swell
++swelled
++sweller
++swellest
++swellhead
++swellheaded
++swellheads
++swelling
++swellings
++swells
++swelter
++sweltered
++sweltering
++swelters
++swept
++sweptback
++swerve
++swerved
++swerves
++swerving
++swift
++swifter
++swiftest
++swiftly
++swiftness
++swifts
++swig
++swigged
++swigging
++swigs
++swill
++swilled
++swilling
++swills
++swim
++swimmer
++swimmers
++swimming
++swimmingly
++swims
++swimsuit
++swimsuits
++swimwear
++swindle
++swindled
++swindler
++swindlers
++swindles
++swindling
++swine
++swineherd
++swineherds
++swines
++swing
++swingeing
++swinger
++swingers
++swinging
++swings
++swinish
++swipe
++swiped
++swipes
++swiping
++swirl
++swirled
++swirling
++swirls
++swirly
++swish
++swished
++swisher
++swishes
++swishest
++swishing
++switch
++switchable
++switchback
++switchbacks
++switchblade
++switchblades
++switchboard
++switchboards
++switched
++switcher
++switchers
++switches
++switching
++swivel
++swiveled
++swiveling
++swivels
++swiz
++swizz
++swizzle
++swizzled
++swizzles
++swizzling
++swollen
++swoon
++swooned
++swooning
++swoons
++swoop
++swooped
++swooping
++swoops
++swoosh
++swooshed
++swooshes
++swooshing
++sword
++swordfish
++swordfishes
++swordplay
++swords
++swordsman
++swordsmanship
++swordsmen
++swore
++sworn
++swot
++swots
++swotted
++swotting
++swum
++swung
++sybarite
++sybarites
++sybaritic
++sycamore
++sycamores
++sycophancy
++sycophant
++sycophantic
++sycophants
++syllabic
++syllabicate
++syllabicated
++syllabicates
++syllabicating
++syllabication
++syllabification
++syllabified
++syllabifies
++syllabify
++syllabifying
++syllable
++syllables
++syllabub
++syllabubs
++syllabus
++syllabuses
++syllogism
++syllogisms
++syllogistic
++sylph
++sylphic
++sylphlike
++sylphs
++sylvan
++symbioses
++symbiosis
++symbiotic
++symbiotically
++symbol
++symbolic
++symbolical
++symbolically
++symbolism
++symbolization
++symbolize
++symbolized
++symbolizes
++symbolizing
++symbols
++symmetric
++symmetrical
++symmetrically
++symmetries
++symmetry
++sympathetic
++sympathetically
++sympathies
++sympathize
++sympathized
++sympathizer
++sympathizers
++sympathizes
++sympathizing
++sympathy
++symphonic
++symphonies
++symphony
++symposium
++symposiums
++symptom
++symptomatic
++symptomatically
++symptoms
++syn
++synagogal
++synagogue
++synagogues
++synapse
++synapses
++synaptic
++sync
++synced
++synchronicity
++synchronization
++synchronizations
++synchronize
++synchronized
++synchronizes
++synchronizing
++synchronous
++synchronously
++syncing
++syncopate
++syncopated
++syncopates
++syncopating
++syncopation
++syncope
++syncs
++syndicalism
++syndicalist
++syndicalists
++syndicate
++syndicated
++syndicates
++syndicating
++syndication
++syndrome
++syndromes
++synergies
++synergism
++synergistic
++synergy
++synfuel
++synfuels
++synod
++synods
++synonym
++synonymous
++synonyms
++synonymy
++synopses
++synopsis
++synoptic
++synovial
++syntactic
++syntactical
++syntactically
++syntax
++synth
++syntheses
++synthesis
++synthesize
++synthesized
++synthesizer
++synthesizers
++synthesizes
++synthesizing
++synthetic
++synthetically
++synthetics
++synths
++syphilis
++syphilitic
++syphilitics
++syringe
++syringed
++syringes
++syringing
++syrup
++syrups
++syrupy
++sysadmin
++sysadmins
++sysop
++sysops
++system
++systematic
++systematical
++systematically
++systematization
++systematize
++systematized
++systematizes
++systematizing
++systemic
++systemically
++systemics
++systems
++systole
++systoles
++systolic
++t
++ta
++tab
++tabbed
++tabbies
++tabbing
++tabbouleh
++tabby
++tabernacle
++tabernacles
++tabla
++tablas
++table
++tableau
++tableaux
++tablecloth
++tablecloths
++tabled
++tableland
++tablelands
++tables
++tablespoon
++tablespoonful
++tablespoonfuls
++tablespoons
++tablet
++tabletop
++tabletops
++tablets
++tableware
++tabling
++tabloid
++tabloids
++taboo
++tabooed
++tabooing
++taboos
++tabor
++tabors
++tabs
++tabular
++tabulate
++tabulated
++tabulates
++tabulating
++tabulation
++tabulations
++tabulator
++tabulators
++tachograph
++tachographs
++tachometer
++tachometers
++tachycardia
++tachyon
++tacit
++tacitly
++tacitness
++taciturn
++taciturnity
++taciturnly
++tack
++tacked
++tacker
++tackers
++tackier
++tackiest
++tackiness
++tacking
++tackle
++tackled
++tackler
++tacklers
++tackles
++tackling
++tacks
++tacky
++taco
++tacos
++tact
++tactful
++tactfully
++tactfulness
++tactic
++tactical
++tactically
++tactician
++tacticians
++tactics
++tactile
++tactility
++tactless
++tactlessly
++tactlessness
++tad
++tadpole
++tadpoles
++tads
++taffeta
++taffies
++taffrail
++taffrails
++taffy
++tag
++tagged
++tagger
++taggers
++tagging
++tagliatelle
++tagline
++taglines
++tags
++taiga
++taigas
++tail
++tailback
++tailbacks
++tailboard
++tailboards
++tailbone
++tailbones
++tailcoat
++tailcoats
++tailed
++tailgate
++tailgated
++tailgater
++tailgaters
++tailgates
++tailgating
++tailing
++tailless
++taillight
++taillights
++tailor
++tailored
++tailoring
++tailors
++tailpiece
++tailpieces
++tailpipe
++tailpipes
++tails
++tailspin
++tailspins
++tailwind
++tailwinds
++taint
++tainted
++tainting
++taints
++take
++takeaway
++takeaways
++taken
++takeoff
++takeoffs
++takeout
++takeouts
++takeover
++takeovers
++taker
++takers
++takes
++taking
++takings
++talc
++talcum
++tale
++talebearer
++talebearers
++talent
++talented
++talents
++tales
++tali
++talisman
++talismans
++talk
++talkative
++talkatively
++talkativeness
++talked
++talker
++talkers
++talkie
++talkier
++talkies
++talkiest
++talking
++talks
++talky
++tall
++tallboy
++tallboys
++taller
++tallest
++tallied
++tallier
++talliers
++tallies
++tallish
++tallness
++tallow
++tallowy
++tally
++tallyho
++tallyhoed
++tallyhoing
++tallyhos
++tallying
++talon
++talons
++talus
++taluses
++tam
++tamable
++tamale
++tamales
++tamarack
++tamaracks
++tamarind
++tamarinds
++tambourine
++tambourines
++tame
++tamed
++tamely
++tameness
++tamer
++tamers
++tames
++tamest
++taming
++tamoxifen
++tamp
++tamped
++tamper
++tampered
++tamperer
++tamperers
++tampering
++tampers
++tamping
++tampon
++tampons
++tamps
++tams
++tan
++tanager
++tanagers
++tanbark
++tandem
++tandems
++tandoori
++tang
++tangelo
++tangelos
++tangent
++tangential
++tangentially
++tangents
++tangerine
++tangerines
++tangibility
++tangible
++tangibleness
++tangibles
++tangibly
++tangier
++tangiest
++tangle
++tangled
++tangles
++tangling
++tango
++tangoed
++tangoing
++tangos
++tangs
++tangy
++tank
++tankard
++tankards
++tanked
++tanker
++tankers
++tankful
++tankfuls
++tanking
++tanks
++tanned
++tanner
++tanneries
++tanners
++tannery
++tannest
++tannin
++tanning
++tans
++tansy
++tantalization
++tantalize
++tantalized
++tantalizer
++tantalizers
++tantalizes
++tantalizing
++tantalizingly
++tantalum
++tantamount
++tantra
++tantrum
++tantrums
++tap
++tapas
++tape
++taped
++tapeline
++tapelines
++taper
++tapered
++tapering
++tapers
++tapes
++tapestries
++tapestry
++tapeworm
++tapeworms
++taping
++tapioca
++tapir
++tapirs
++tapped
++tapper
++tappers
++tappet
++tappets
++tapping
++taproom
++taprooms
++taproot
++taproots
++taps
++tar
++taramasalata
++tarantella
++tarantellas
++tarantula
++tarantulas
++tarball
++tarballs
++tardier
++tardiest
++tardily
++tardiness
++tardy
++tare
++tared
++tares
++target
++targeted
++targeting
++targets
++tariff
++tariffs
++taring
++tarmac
++tarmacadam
++tarmacked
++tarmacking
++tarmacs
++tarn
++tarnish
++tarnished
++tarnishes
++tarnishing
++tarns
++taro
++taros
++tarot
++tarots
++tarp
++tarpaulin
++tarpaulins
++tarpon
++tarpons
++tarps
++tarragon
++tarragons
++tarred
++tarried
++tarrier
++tarries
++tarriest
++tarring
++tarry
++tarrying
++tars
++tarsal
++tarsals
++tarsi
++tarsus
++tart
++tartan
++tartans
++tartar
++tartaric
++tartars
++tarted
++tarter
++tartest
++tartiest
++tarting
++tartly
++tartness
++tarts
++tarty
++taser
++tasered
++tasering
++tasers
++task
++taskbar
++tasked
++tasking
++taskmaster
++taskmasters
++taskmistress
++taskmistresses
++tasks
++tassel
++tasseled
++tasseling
++tassels
++taste
++tasted
++tasteful
++tastefully
++tastefulness
++tasteless
++tastelessly
++tastelessness
++taster
++tasters
++tastes
++tastier
++tastiest
++tastily
++tastiness
++tasting
++tastings
++tasty
++tat
++tatami
++tatamis
++tater
++taters
++tats
++tatted
++tatter
++tatterdemalion
++tatterdemalions
++tattered
++tattering
++tatters
++tattie
++tattier
++tatties
++tattiest
++tatting
++tattle
++tattled
++tattler
++tattlers
++tattles
++tattletale
++tattletales
++tattling
++tattoo
++tattooed
++tattooer
++tattooers
++tattooing
++tattooist
++tattooists
++tattoos
++tatty
++tau
++taught
++taunt
++taunted
++taunter
++taunters
++taunting
++tauntingly
++taunts
++taupe
++taus
++taut
++tauten
++tautened
++tautening
++tautens
++tauter
++tautest
++tautly
++tautness
++tautological
++tautologically
++tautologies
++tautologous
++tautology
++tavern
++taverns
++tawdrier
++tawdriest
++tawdrily
++tawdriness
++tawdry
++tawnier
++tawniest
++tawny
++tax
++taxa
++taxable
++taxation
++taxed
++taxer
++taxers
++taxes
++taxi
++taxicab
++taxicabs
++taxidermist
++taxidermists
++taxidermy
++taxied
++taxiing
++taximeter
++taximeters
++taxing
++taxis
++taxiway
++taxiways
++taxman
++taxmen
++taxon
++taxonomic
++taxonomies
++taxonomist
++taxonomists
++taxonomy
++taxpayer
++taxpayers
++taxpaying
++tb
++tbs
++tbsp
++tea
++teabag
++teabags
++teacake
++teacakes
++teach
++teachable
++teacher
++teachers
++teaches
++teaching
++teachings
++teacup
++teacupful
++teacupfuls
++teacups
++teak
++teakettle
++teakettles
++teaks
++teal
++tealight
++tealights
++teals
++team
++teamed
++teaming
++teammate
++teammates
++teams
++teamster
++teamsters
++teamwork
++teapot
++teapots
++tear
++tearaway
++tearaways
++teardrop
++teardrops
++teared
++tearful
++tearfully
++teargas
++teargases
++teargassed
++teargassing
++tearier
++teariest
++tearing
++tearjerker
++tearjerkers
++tearoom
++tearooms
++tears
++teary
++teas
++tease
++teased
++teasel
++teasels
++teaser
++teasers
++teases
++teasing
++teasingly
++teaspoon
++teaspoonful
++teaspoonfuls
++teaspoons
++teat
++teatime
++teatimes
++teats
++tech
++techie
++techies
++technetium
++technical
++technicalities
++technicality
++technically
++technician
++technicians
++technicolor
++technique
++techniques
++techno
++technobabble
++technocracies
++technocracy
++technocrat
++technocratic
++technocrats
++technological
++technologically
++technologies
++technologist
++technologists
++technology
++technophobe
++technophobes
++techs
++tectonic
++tectonics
++ted
++teddies
++teddy
++tedious
++tediously
++tediousness
++tedium
++teds
++tee
++teed
++teeing
++teem
++teemed
++teeming
++teems
++teen
++teenage
++teenager
++teenagers
++teenier
++teeniest
++teens
++teeny
++teenybopper
++teenyboppers
++tees
++teeter
++teetered
++teetering
++teeters
++teeth
++teethe
++teethed
++teethes
++teething
++teetotal
++teetotaler
++teetotalers
++teetotalism
++tektite
++tektites
++tel
++telecast
++telecaster
++telecasters
++telecasting
++telecasts
++telecommunication
++telecommunications
++telecommute
++telecommuted
++telecommuter
++telecommuters
++telecommutes
++telecommuting
++teleconference
++teleconferenced
++teleconferences
++teleconferencing
++telegenic
++telegram
++telegrams
++telegraph
++telegraphed
++telegrapher
++telegraphers
++telegraphese
++telegraphic
++telegraphically
++telegraphing
++telegraphist
++telegraphists
++telegraphs
++telegraphy
++telekinesis
++telekinetic
++telemarketer
++telemarketers
++telemarketing
++telemeter
++telemeters
++telemetries
++telemetry
++teleological
++teleology
++telepathic
++telepathically
++telepathy
++telephone
++telephoned
++telephoner
++telephoners
++telephones
++telephonic
++telephoning
++telephonist
++telephonists
++telephony
++telephoto
++telephotography
++telephotos
++teleplay
++teleplays
++teleport
++teleportation
++teleprinter
++teleprinters
++teleprocessing
++teleprompter
++teleprompters
++telesales
++telescope
++telescoped
++telescopes
++telescopic
++telescopically
++telescoping
++teletext
++teletexts
++telethon
++telethons
++teletype
++teletypes
++teletypewriter
++teletypewriters
++televangelism
++televangelist
++televangelists
++televise
++televised
++televises
++televising
++television
++televisions
++teleworker
++teleworkers
++teleworking
++telex
++telexed
++telexes
++telexing
++tell
++teller
++tellers
++tellies
++telling
++tellingly
++tells
++telltale
++telltales
++tellurium
++telly
++telnet
++temblor
++temblors
++temerity
++temp
++temped
++temper
++tempera
++temperament
++temperamental
++temperamentally
++temperaments
++temperance
++temperas
++temperate
++temperately
++temperateness
++temperature
++temperatures
++tempered
++tempering
++tempers
++tempest
++tempests
++tempestuous
++tempestuously
++tempestuousness
++temping
++template
++templates
++temple
++temples
++tempo
++temporal
++temporally
++temporaries
++temporarily
++temporariness
++temporary
++temporize
++temporized
++temporizer
++temporizers
++temporizes
++temporizing
++tempos
++temps
++tempt
++temptation
++temptations
++tempted
++tempter
++tempters
++tempting
++temptingly
++temptress
++temptresses
++tempts
++tempura
++ten
++tenability
++tenable
++tenably
++tenacious
++tenaciously
++tenaciousness
++tenacity
++tenancies
++tenancy
++tenant
++tenanted
++tenanting
++tenantry
++tenants
++tench
++tend
++tended
++tendencies
++tendency
++tendentious
++tendentiously
++tendentiousness
++tender
++tendered
++tenderer
++tenderest
++tenderfoot
++tenderfoots
++tenderhearted
++tenderheartedness
++tendering
++tenderize
++tenderized
++tenderizer
++tenderizers
++tenderizes
++tenderizing
++tenderloin
++tenderloins
++tenderly
++tenderness
++tenders
++tending
++tendinitis
++tendon
++tendons
++tendril
++tendrils
++tends
++tenement
++tenements
++tenet
++tenets
++tenfold
++tenner
++tenners
++tennis
++tenon
++tenoned
++tenoning
++tenons
++tenor
++tenors
++tenpin
++tenpins
++tens
++tense
++tensed
++tensely
++tenseness
++tenser
++tenses
++tensest
++tensile
++tensing
++tension
++tensions
++tensity
++tensor
++tensors
++tent
++tentacle
++tentacled
++tentacles
++tentative
++tentatively
++tentativeness
++tented
++tenterhook
++tenterhooks
++tenth
++tenthly
++tenths
++tenting
++tents
++tenuity
++tenuous
++tenuously
++tenuousness
++tenure
++tenured
++tenures
++tenuring
++tepee
++tepees
++tepid
++tepidity
++tepidly
++tepidness
++tequila
++tequilas
++terabit
++terabits
++terabyte
++terabytes
++terahertz
++terapixel
++terapixels
++terbium
++tercentenaries
++tercentenary
++tercentennial
++tercentennials
++teriyaki
++term
++termagant
++termagants
++termed
++terminable
++terminal
++terminally
++terminals
++terminate
++terminated
++terminates
++terminating
++termination
++terminations
++terminator
++terminators
++terming
++termini
++terminological
++terminologically
++terminologies
++terminology
++terminus
++termite
++termites
++termly
++terms
++tern
++ternaries
++ternary
++terns
++terr
++terrace
++terraced
++terraces
++terracing
++terracotta
++terrain
++terrains
++terrapin
++terrapins
++terrarium
++terrariums
++terrazzo
++terrazzos
++terrestrial
++terrestrially
++terrestrials
++terrible
++terribleness
++terribly
++terrier
++terriers
++terrific
++terrifically
++terrified
++terrifies
++terrify
++terrifying
++terrifyingly
++terrine
++terrines
++territorial
++territoriality
++territorials
++territories
++territory
++terror
++terrorism
++terrorist
++terrorists
++terrorize
++terrorized
++terrorizes
++terrorizing
++terrors
++terry
++terrycloth
++terse
++tersely
++terseness
++terser
++tersest
++tertiary
++tessellate
++tessellated
++tessellates
++tessellating
++tessellation
++tessellations
++test
++testable
++testament
++testamentary
++testaments
++testate
++testates
++testator
++testators
++testatrices
++testatrix
++tested
++tester
++testers
++testes
++testicle
++testicles
++testicular
++testier
++testiest
++testified
++testifier
++testifiers
++testifies
++testify
++testifying
++testily
++testimonial
++testimonials
++testimonies
++testimony
++testiness
++testing
++testings
++testis
++testosterone
++tests
++testy
++tetanus
++tetchier
++tetchiest
++tetchily
++tetchiness
++tetchy
++tether
++tethered
++tethering
++tethers
++tetra
++tetracycline
++tetrahedral
++tetrahedron
++tetrahedrons
++tetrameter
++tetrameters
++tetras
++text
++textbook
++textbooks
++texted
++textile
++textiles
++texting
++texts
++textual
++textually
++textural
++texture
++textured
++textures
++texturing
++thalami
++thalamus
++thalidomide
++thallium
++than
++thane
++thanes
++thank
++thanked
++thankful
++thankfully
++thankfulness
++thanking
++thankless
++thanklessly
++thanklessness
++thanks
++thanksgiving
++thanksgivings
++that
++thatch
++thatched
++thatcher
++thatchers
++thatches
++thatching
++thaw
++thawed
++thawing
++thaws
++the
++theater
++theatergoer
++theatergoers
++theaters
++theatrical
++theatricality
++theatrically
++theatricals
++theatrics
++thee
++thees
++theft
++thefts
++their
++theirs
++theism
++theist
++theistic
++theists
++them
++thematic
++thematically
++theme
++themed
++themes
++themselves
++then
++thence
++thenceforth
++thenceforward
++theocracies
++theocracy
++theocratic
++theodolite
++theodolites
++theologian
++theologians
++theological
++theologically
++theologies
++theology
++theorem
++theorems
++theoretic
++theoretical
++theoretically
++theoretician
++theoreticians
++theories
++theorist
++theorists
++theorize
++theorized
++theorizes
++theorizing
++theory
++theosophic
++theosophical
++theosophist
++theosophists
++theosophy
++therapeutic
++therapeutically
++therapeutics
++therapies
++therapist
++therapists
++therapy
++there
++thereabout
++thereabouts
++thereafter
++thereat
++thereby
++therefor
++therefore
++therefrom
++therein
++theremin
++theremins
++thereof
++thereon
++thereto
++theretofore
++thereunder
++thereunto
++thereupon
++therewith
++therm
++thermal
++thermally
++thermals
++thermionic
++thermodynamic
++thermodynamics
++thermometer
++thermometers
++thermometric
++thermonuclear
++thermoplastic
++thermoplastics
++thermos
++thermoses
++thermostat
++thermostatic
++thermostatically
++thermostats
++therms
++thesauri
++thesaurus
++thesauruses
++these
++theses
++thesis
++thespian
++thespians
++theta
++thetas
++thew
++thews
++they
++thiamine
++thick
++thicken
++thickened
++thickener
++thickeners
++thickening
++thickenings
++thickens
++thicker
++thickest
++thicket
++thickets
++thickheaded
++thickly
++thickness
++thicknesses
++thicko
++thickos
++thickset
++thief
++thieve
++thieved
++thievery
++thieves
++thieving
++thievish
++thigh
++thighbone
++thighbones
++thighs
++thimble
++thimbleful
++thimblefuls
++thimbles
++thin
++thine
++thing
++thingamabob
++thingamabobs
++thingamajig
++thingamajigs
++thingies
++things
++thingumabob
++thingumabobs
++thingummies
++thingummy
++thingy
++think
++thinkable
++thinker
++thinkers
++thinking
++thinks
++thinly
++thinned
++thinner
++thinners
++thinness
++thinnest
++thinning
++thins
++third
++thirdly
++thirds
++thirst
++thirsted
++thirstier
++thirstiest
++thirstily
++thirstiness
++thirsting
++thirsts
++thirsty
++thirteen
++thirteens
++thirteenth
++thirteenths
++thirties
++thirtieth
++thirtieths
++thirty
++this
++thistle
++thistledown
++thistles
++thither
++tho
++thole
++tholes
++thong
++thongs
++thoracic
++thorax
++thoraxes
++thorium
++thorn
++thornier
++thorniest
++thorniness
++thorns
++thorny
++thorough
++thoroughbred
++thoroughbreds
++thorougher
++thoroughest
++thoroughfare
++thoroughfares
++thoroughgoing
++thoroughly
++thoroughness
++those
++thou
++though
++thought
++thoughtful
++thoughtfully
++thoughtfulness
++thoughtless
++thoughtlessly
++thoughtlessness
++thoughts
++thous
++thousand
++thousandfold
++thousands
++thousandth
++thousandths
++thrall
++thralldom
++thralled
++thralling
++thralls
++thrash
++thrashed
++thrasher
++thrashers
++thrashes
++thrashing
++thrashings
++thread
++threadbare
++threaded
++threader
++threaders
++threadier
++threadiest
++threading
++threadlike
++threads
++thready
++threat
++threaten
++threatened
++threatening
++threateningly
++threatens
++threats
++three
++threefold
++threepence
++threes
++threescore
++threescores
++threesome
++threesomes
++threnodies
++threnody
++thresh
++threshed
++thresher
++threshers
++threshes
++threshing
++threshold
++thresholds
++threw
++thrice
++thrift
++thriftier
++thriftiest
++thriftily
++thriftiness
++thriftless
++thrifts
++thrifty
++thrill
++thrilled
++thriller
++thrillers
++thrilling
++thrillingly
++thrills
++thrive
++thrived
++thrives
++thriving
++throat
++throatier
++throatiest
++throatily
++throatiness
++throats
++throaty
++throb
++throbbed
++throbbing
++throbs
++throe
++throes
++thrombi
++thrombolytic
++thromboses
++thrombosis
++thrombotic
++thrombus
++throne
++thrones
++throng
++thronged
++thronging
++throngs
++throttle
++throttled
++throttler
++throttlers
++throttles
++throttling
++through
++throughout
++throughput
++throw
++throwaway
++throwaways
++throwback
++throwbacks
++thrower
++throwers
++throwing
++thrown
++throws
++thru
++thrum
++thrummed
++thrumming
++thrums
++thrush
++thrushes
++thrust
++thrusting
++thrusts
++thruway
++thruways
++thud
++thudded
++thudding
++thuds
++thug
++thuggery
++thuggish
++thugs
++thulium
++thumb
++thumbed
++thumbing
++thumbnail
++thumbnails
++thumbprint
++thumbprints
++thumbs
++thumbscrew
++thumbscrews
++thumbtack
++thumbtacks
++thump
++thumped
++thumping
++thumps
++thunder
++thunderbolt
++thunderbolts
++thunderclap
++thunderclaps
++thundercloud
++thunderclouds
++thundered
++thunderer
++thunderers
++thunderhead
++thunderheads
++thundering
++thunderous
++thunderously
++thunders
++thundershower
++thundershowers
++thunderstorm
++thunderstorms
++thunderstruck
++thundery
++thunk
++thunks
++thus
++thwack
++thwacked
++thwacker
++thwackers
++thwacking
++thwacks
++thwart
++thwarted
++thwarting
++thwarts
++thy
++thyme
++thymine
++thymus
++thymuses
++thyroid
++thyroidal
++thyroids
++thyself
++ti
++tiara
++tiaras
++tibia
++tibiae
++tibial
++tic
++tick
++ticked
++ticker
++tickers
++ticket
++ticketed
++ticketing
++tickets
++ticking
++tickle
++tickled
++tickler
++ticklers
++tickles
++tickling
++ticklish
++ticklishly
++ticklishness
++ticks
++ticktacktoe
++ticktock
++ticktocks
++tics
++tidal
++tidally
++tidbit
++tidbits
++tiddler
++tiddlers
++tiddly
++tiddlywink
++tiddlywinks
++tide
++tided
++tideland
++tidelands
++tidemark
++tidemarks
++tides
++tidewater
++tidewaters
++tideway
++tideways
++tidied
++tidier
++tidies
++tidiest
++tidily
++tidiness
++tiding
++tidings
++tidy
++tidying
++tie
++tieback
++tiebacks
++tiebreak
++tiebreaker
++tiebreakers
++tiebreaks
++tied
++tiepin
++tiepins
++tier
++tiered
++tiers
++ties
++tiff
++tiffed
++tiffing
++tiffs
++tiger
++tigerish
++tigers
++tight
++tighten
++tightened
++tightener
++tighteners
++tightening
++tightens
++tighter
++tightest
++tightfisted
++tightly
++tightness
++tightrope
++tightropes
++tights
++tightwad
++tightwads
++tigress
++tigresses
++til
++tilapia
++tilde
++tildes
++tile
++tiled
++tiler
++tilers
++tiles
++tiling
++till
++tillable
++tillage
++tilled
++tiller
++tillers
++tilling
++tills
++tilt
++tilted
++tilting
++tilts
++timber
++timbered
++timbering
++timberland
++timberline
++timberlines
++timbers
++timbre
++timbrel
++timbrels
++timbres
++time
++timed
++timekeeper
++timekeepers
++timekeeping
++timeless
++timelessly
++timelessness
++timelier
++timeliest
++timeline
++timelines
++timeliness
++timely
++timeout
++timeouts
++timepiece
++timepieces
++timer
++timers
++times
++timescale
++timescales
++timeserver
++timeservers
++timeserving
++timeshare
++timeshares
++timestamp
++timestamped
++timestamps
++timetable
++timetabled
++timetables
++timetabling
++timeworn
++timezone
++timid
++timider
++timidest
++timidity
++timidly
++timidness
++timing
++timings
++timorous
++timorously
++timorousness
++timothy
++timpani
++timpanist
++timpanists
++tin
++tincture
++tinctured
++tinctures
++tincturing
++tinder
++tinderbox
++tinderboxes
++tine
++tines
++tinfoil
++ting
++tinge
++tinged
++tingeing
++tinges
++tinging
++tingle
++tingled
++tingles
++tingling
++tinglings
++tingly
++tings
++tinier
++tiniest
++tininess
++tinker
++tinkered
++tinkerer
++tinkerers
++tinkering
++tinkers
++tinkle
++tinkled
++tinkles
++tinkling
++tinned
++tinnier
++tinniest
++tinniness
++tinning
++tinnitus
++tinny
++tinplate
++tinpot
++tins
++tinsel
++tinseled
++tinseling
++tinsels
++tinsmith
++tinsmiths
++tint
++tinted
++tinting
++tintinnabulation
++tintinnabulations
++tints
++tintype
++tintypes
++tinware
++tiny
++tip
++tipped
++tipper
++tippers
++tippet
++tippets
++tippex
++tippexed
++tippexes
++tippexing
++tipping
++tipple
++tippled
++tippler
++tipplers
++tipples
++tippling
++tips
++tipsier
++tipsiest
++tipsily
++tipsiness
++tipster
++tipsters
++tipsy
++tiptoe
++tiptoed
++tiptoeing
++tiptoes
++tiptop
++tiptops
++tirade
++tirades
++tiramisu
++tiramisus
++tire
++tired
++tireder
++tiredest
++tiredly
++tiredness
++tireless
++tirelessly
++tirelessness
++tires
++tiresome
++tiresomely
++tiresomeness
++tiring
++tissue
++tissues
++tit
++titan
++titanic
++titanium
++titans
++titch
++titches
++titchy
++tithe
++tithed
++tither
++tithers
++tithes
++tithing
++titian
++titillate
++titillated
++titillates
++titillating
++titillatingly
++titillation
++titivate
++titivated
++titivates
++titivating
++titivation
++title
++titled
++titleholder
++titleholders
++titles
++titling
++titlist
++titlists
++titmice
++titmouse
++tits
++titter
++tittered
++tittering
++titters
++titties
++tittle
++tittles
++titty
++titular
++tizz
++tizzies
++tizzy
++tn
++tnpk
++to
++toad
++toadied
++toadies
++toads
++toadstool
++toadstools
++toady
++toadying
++toadyism
++toast
++toasted
++toaster
++toasters
++toastier
++toasties
++toastiest
++toasting
++toastmaster
++toastmasters
++toastmistress
++toastmistresses
++toasts
++toasty
++tobacco
++tobacconist
++tobacconists
++tobaccos
++toboggan
++tobogganed
++tobogganer
++tobogganers
++tobogganing
++toboggans
++toccata
++toccatas
++tocsin
++tocsins
++today
++toddies
++toddle
++toddled
++toddler
++toddlers
++toddles
++toddling
++toddy
++toe
++toecap
++toecaps
++toed
++toehold
++toeholds
++toeing
++toenail
++toenails
++toerag
++toerags
++toes
++toff
++toffee
++toffees
++toffs
++tofu
++tog
++toga
++togaed
++togas
++together
++togetherness
++togged
++togging
++toggle
++toggled
++toggles
++toggling
++togs
++toil
++toiled
++toiler
++toilers
++toilet
++toileted
++toileting
++toiletries
++toiletry
++toilets
++toilette
++toiling
++toils
++toilsome
++toke
++toked
++token
++tokenism
++tokens
++tokes
++toking
++told
++tole
++tolerable
++tolerably
++tolerance
++tolerances
++tolerant
++tolerantly
++tolerate
++tolerated
++tolerates
++tolerating
++toleration
++toll
++tollbooth
++tollbooths
++tolled
++tollgate
++tollgates
++tolling
++tolls
++tollway
++tollways
++toluene
++tom
++tomahawk
++tomahawked
++tomahawking
++tomahawks
++tomato
++tomatoes
++tomb
++tombed
++tombing
++tombola
++tombolas
++tomboy
++tomboyish
++tomboys
++tombs
++tombstone
++tombstones
++tomcat
++tomcats
++tome
++tomes
++tomfooleries
++tomfoolery
++tomographic
++tomography
++tomorrow
++tomorrows
++toms
++tomtit
++tomtits
++ton
++tonal
++tonalities
++tonality
++tonally
++tone
++tonearm
++tonearms
++toned
++toneless
++tonelessly
++toner
++toners
++tones
++tong
++tonged
++tonging
++tongs
++tongue
++tongued
++tongueless
++tongues
++tonguing
++tonic
++tonics
++tonier
++toniest
++tonight
++toning
++tonnage
++tonnages
++tonne
++tonnes
++tons
++tonsil
++tonsillectomies
++tonsillectomy
++tonsillitis
++tonsils
++tonsorial
++tonsure
++tonsured
++tonsures
++tonsuring
++tony
++too
++took
++tool
++toolbar
++toolbars
++toolbox
++toolboxes
++tooled
++tooling
++toolkit
++toolmaker
++toolmakers
++tools
++toot
++tooted
++tooter
++tooters
++tooth
++toothache
++toothaches
++toothbrush
++toothbrushes
++toothed
++toothier
++toothiest
++toothily
++toothless
++toothpaste
++toothpastes
++toothpick
++toothpicks
++toothsome
++toothy
++tooting
++tootle
++tootled
++tootles
++tootling
++toots
++tootsie
++tootsies
++top
++topaz
++topazes
++topcoat
++topcoats
++topdressing
++topdressings
++topee
++topees
++topflight
++topi
++topiary
++topic
++topical
++topicality
++topically
++topics
++topknot
++topknots
++topless
++topmast
++topmasts
++topmost
++topnotch
++topographer
++topographers
++topographic
++topographical
++topographically
++topographies
++topography
++topological
++topologically
++topology
++topped
++topper
++toppers
++topping
++toppings
++topple
++toppled
++topples
++toppling
++tops
++topsail
++topsails
++topside
++topsides
++topsoil
++topspin
++toque
++toques
++tor
++torch
++torchbearer
++torchbearers
++torched
++torches
++torching
++torchlight
++tore
++toreador
++toreadors
++torment
++tormented
++tormenting
++tormentingly
++tormentor
++tormentors
++torments
++torn
++tornado
++tornadoes
++torpedo
++torpedoed
++torpedoes
++torpedoing
++torpid
++torpidity
++torpidly
++torpor
++torque
++torqued
++torques
++torquing
++torrent
++torrential
++torrents
++torrid
++torridity
++torridly
++torridness
++tors
++torsion
++torsional
++torso
++torsos
++tort
++torte
++tortellini
++tortes
++tortilla
++tortillas
++tortoise
++tortoises
++tortoiseshell
++tortoiseshells
++tortoni
++torts
++tortuous
++tortuously
++tortuousness
++torture
++tortured
++torturer
++torturers
++tortures
++torturing
++torturous
++torus
++tosh
++toss
++tossed
++tosser
++tossers
++tosses
++tossing
++tossup
++tossups
++tot
++total
++totaled
++totaling
++totalitarian
++totalitarianism
++totalitarians
++totalities
++totality
++totalizator
++totalizators
++totally
++totals
++tote
++toted
++totem
++totemic
++totems
++totes
++toting
++tots
++totted
++totter
++tottered
++totterer
++totterers
++tottering
++totters
++totting
++toucan
++toucans
++touch
++touchable
++touchdown
++touchdowns
++touche
++touched
++touches
++touchier
++touchiest
++touchily
++touchiness
++touching
++touchingly
++touchings
++touchline
++touchlines
++touchpaper
++touchpapers
++touchscreen
++touchscreens
++touchstone
++touchstones
++touchy
++tough
++toughed
++toughen
++toughened
++toughener
++tougheners
++toughening
++toughens
++tougher
++toughest
++toughie
++toughies
++toughing
++toughly
++toughness
++toughs
++toupee
++toupees
++tour
++toured
++touring
++tourism
++tourist
++touristic
++tourists
++touristy
++tourmaline
++tournament
++tournaments
++tourney
++tourneys
++tourniquet
++tourniquets
++tours
++tousle
++tousled
++tousles
++tousling
++tout
++touted
++touting
++touts
++tow
++toward
++towards
++towboat
++towboats
++towed
++towel
++toweled
++towelette
++towelettes
++toweling
++towelings
++towels
++tower
++towered
++towering
++towers
++towhead
++towheaded
++towheads
++towhee
++towhees
++towing
++towline
++towlines
++town
++townee
++townees
++townhouse
++townhouses
++townie
++townies
++towns
++townsfolk
++township
++townships
++townsman
++townsmen
++townspeople
++townswoman
++townswomen
++towpath
++towpaths
++towrope
++towropes
++tows
++toxemia
++toxic
++toxicities
++toxicity
++toxicological
++toxicologist
++toxicologists
++toxicology
++toxin
++toxins
++toy
++toyboy
++toyboys
++toyed
++toying
++toys
++tr
++trabecula
++trabecular
++trabecule
++trace
++traceability
++traceable
++traced
++tracer
++traceries
++tracers
++tracery
++traces
++trachea
++tracheae
++tracheal
++tracheotomies
++tracheotomy
++tracing
++tracings
++track
++trackball
++trackballs
++tracked
++tracker
++trackers
++tracking
++trackless
++tracks
++tracksuit
++tracksuits
++tract
++tractability
++tractable
++tractably
++traction
++tractor
++tractors
++tracts
++trad
++trade
++traded
++trademark
++trademarked
++trademarking
++trademarks
++trader
++traders
++trades
++tradesman
++tradesmen
++tradespeople
++tradeswoman
++tradeswomen
++trading
++tradings
++tradition
++traditional
++traditionalism
++traditionalist
++traditionalists
++traditionally
++traditions
++traduce
++traduced
++traducer
++traducers
++traduces
++traducing
++traffic
++trafficked
++trafficker
++traffickers
++trafficking
++traffics
++tragedian
++tragedians
++tragedienne
++tragediennes
++tragedies
++tragedy
++tragic
++tragically
++tragicomedies
++tragicomedy
++tragicomic
++trail
++trailblazer
++trailblazers
++trailblazing
++trailed
++trailer
++trailers
++trailing
++trails
++train
++trainable
++trained
++trainee
++trainees
++trainer
++trainers
++training
++trainload
++trainloads
++trainman
++trainmen
++trains
++trainspotter
++trainspotters
++trainspotting
++traipse
++traipsed
++traipses
++traipsing
++trait
++traitor
++traitorous
++traitorously
++traitors
++traits
++trajectories
++trajectory
++tram
++tramcar
++tramcars
++tramlines
++trammed
++trammel
++trammeled
++trammeling
++trammels
++tramming
++tramp
++tramped
++tramper
++trampers
++tramping
++trample
++trampled
++trampler
++tramplers
++tramples
++trampling
++trampoline
++trampolined
++trampolines
++trampolining
++tramps
++trams
++tramway
++tramways
++trance
++trances
++tranche
++tranches
++tranquil
++tranquiler
++tranquilest
++tranquility
++tranquilize
++tranquilized
++tranquilizer
++tranquilizers
++tranquilizes
++tranquilizing
++tranquilly
++trans
++transact
++transacted
++transacting
++transaction
++transactions
++transactor
++transactors
++transacts
++transatlantic
++transceiver
++transceivers
++transcend
++transcended
++transcendence
++transcendent
++transcendental
++transcendentalism
++transcendentalist
++transcendentalists
++transcendentally
++transcending
++transcends
++transcontinental
++transcribe
++transcribed
++transcriber
++transcribers
++transcribes
++transcribing
++transcript
++transcription
++transcriptions
++transcripts
++transducer
++transducers
++transect
++transected
++transecting
++transects
++transept
++transepts
++transfer
++transferable
++transferal
++transferals
++transference
++transferred
++transferring
++transfers
++transfiguration
++transfigure
++transfigured
++transfigures
++transfiguring
++transfinite
++transfix
++transfixed
++transfixes
++transfixing
++transform
++transformable
++transformation
++transformations
++transformed
++transformer
++transformers
++transforming
++transforms
++transfuse
++transfused
++transfuses
++transfusing
++transfusion
++transfusions
++transgender
++transgenders
++transgenic
++transgress
++transgressed
++transgresses
++transgressing
++transgression
++transgressions
++transgressor
++transgressors
++transience
++transiency
++transient
++transiently
++transients
++transistor
++transistorize
++transistorized
++transistorizes
++transistorizing
++transistors
++transit
++transited
++transiting
++transition
++transitional
++transitionally
++transitioned
++transitioning
++transitions
++transitive
++transitively
++transitiveness
++transitives
++transitivity
++transitory
++transits
++transl
++translatable
++translate
++translated
++translates
++translating
++translation
++translations
++translator
++translators
++transliterate
++transliterated
++transliterates
++transliterating
++transliteration
++transliterations
++translocation
++translucence
++translucency
++translucent
++translucently
++transmigrate
++transmigrated
++transmigrates
++transmigrating
++transmigration
++transmissible
++transmission
++transmissions
++transmit
++transmits
++transmittable
++transmittal
++transmittance
++transmitted
++transmitter
++transmitters
++transmitting
++transmogrification
++transmogrified
++transmogrifies
++transmogrify
++transmogrifying
++transmutable
++transmutation
++transmutations
++transmute
++transmuted
++transmutes
++transmuting
++transnational
++transnationals
++transoceanic
++transom
++transoms
++transpacific
++transparencies
++transparency
++transparent
++transparently
++transpiration
++transpire
++transpired
++transpires
++transpiring
++transplant
++transplantation
++transplanted
++transplanting
++transplants
++transpolar
++transponder
++transponders
++transport
++transportable
++transportation
++transported
++transporter
++transporters
++transporting
++transports
++transpose
++transposed
++transposes
++transposing
++transposition
++transpositions
++transsexual
++transsexualism
++transsexuals
++transship
++transshipment
++transshipped
++transshipping
++transships
++transubstantiation
++transverse
++transversely
++transverses
++transvestism
++transvestite
++transvestites
++trap
++trapdoor
++trapdoors
++trapeze
++trapezes
++trapezium
++trapeziums
++trapezoid
++trapezoidal
++trapezoids
++trappable
++trapped
++trapper
++trappers
++trapping
++trappings
++traps
++trapshooting
++trash
++trashcan
++trashcans
++trashed
++trashes
++trashier
++trashiest
++trashiness
++trashing
++trashy
++trauma
++traumas
++traumatic
++traumatically
++traumatize
++traumatized
++traumatizes
++traumatizing
++travail
++travailed
++travailing
++travails
++travel
++traveled
++traveler
++travelers
++traveling
++travelings
++travelogue
++travelogues
++travels
++traversal
++traversals
++traverse
++traversed
++traverses
++traversing
++travestied
++travesties
++travesty
++travestying
++trawl
++trawled
++trawler
++trawlers
++trawling
++trawls
++tray
++trays
++treacheries
++treacherous
++treacherously
++treacherousness
++treachery
++treacle
++treacly
++tread
++treading
++treadle
++treadled
++treadles
++treadling
++treadmill
++treadmills
++treads
++treas
++treason
++treasonable
++treasonous
++treasure
++treasured
++treasurer
++treasurers
++treasures
++treasuries
++treasuring
++treasury
++treat
++treatable
++treated
++treaties
++treating
++treatise
++treatises
++treatment
++treatments
++treats
++treaty
++treble
++trebled
++trebles
++trebling
++tree
++treed
++treeing
++treeless
++treelike
++treeline
++trees
++treetop
++treetops
++trefoil
++trefoils
++trek
++trekked
++trekker
++trekkers
++trekking
++treks
++trellis
++trellised
++trellises
++trellising
++trematode
++trematodes
++tremble
++trembled
++trembles
++trembling
++tremendous
++tremendously
++tremolo
++tremolos
++tremor
++tremors
++tremulous
++tremulously
++tremulousness
++trench
++trenchancy
++trenchant
++trenchantly
++trenched
++trencher
++trencherman
++trenchermen
++trenchers
++trenches
++trenching
++trend
++trended
++trendier
++trendies
++trendiest
++trendily
++trendiness
++trending
++trends
++trendsetter
++trendsetters
++trendsetting
++trendy
++trepidation
++trespass
++trespassed
++trespasser
++trespassers
++trespasses
++trespassing
++tress
++tresses
++trestle
++trestles
++trews
++trey
++treys
++triad
++triads
++triage
++trial
++trialed
++trialing
++trials
++triangle
++triangles
++triangular
++triangularly
++triangulate
++triangulated
++triangulates
++triangulating
++triangulation
++triathlete
++triathletes
++triathlon
++triathlons
++tribal
++tribalism
++tribe
++tribes
++tribesman
++tribesmen
++tribeswoman
++tribeswomen
++tribulation
++tribulations
++tribunal
++tribunals
++tribune
++tribunes
++tributaries
++tributary
++tribute
++tributes
++trice
++tricentennial
++tricentennials
++triceps
++tricepses
++triceratops
++trichina
++trichinae
++trichinosis
++trick
++tricked
++trickery
++trickier
++trickiest
++trickily
++trickiness
++tricking
++trickle
++trickled
++trickles
++trickling
++tricks
++trickster
++tricksters
++tricky
++tricolor
++tricolors
++tricycle
++tricycles
++trident
++tridents
++tried
++triennial
++triennially
++triennials
++trier
++triers
++tries
++trifecta
++trifectas
++trifle
++trifled
++trifler
++triflers
++trifles
++trifling
++trifocals
++trig
++trigger
++triggered
++triggering
++triggers
++triglyceride
++triglycerides
++trigonometric
++trigonometrical
++trigonometry
++trike
++trikes
++trilateral
++trilaterals
++trilbies
++trilby
++trill
++trilled
++trilling
++trillion
++trillions
++trillionth
++trillionths
++trillium
++trills
++trilobite
++trilobites
++trilogies
++trilogy
++trim
++trimaran
++trimarans
++trimester
++trimesters
++trimly
++trimmed
++trimmer
++trimmers
++trimmest
++trimming
++trimmings
++trimness
++trimonthly
++trims
++trinities
++trinitrotoluene
++trinity
++trinket
++trinkets
++trio
++trios
++trip
++tripartite
++tripe
++triple
++tripled
++triples
++triplet
++triplets
++triplex
++triplexes
++triplicate
++triplicated
++triplicates
++triplicating
++tripling
++triply
++tripod
++tripodal
++tripods
++tripos
++tripped
++tripper
++trippers
++tripping
++trips
++triptych
++triptychs
++tripwire
++tripwires
++trireme
++triremes
++trisect
++trisected
++trisecting
++trisection
++trisects
++trite
++tritely
++triteness
++triter
++tritest
++tritium
++triumph
++triumphal
++triumphalism
++triumphalist
++triumphant
++triumphantly
++triumphed
++triumphing
++triumphs
++triumvir
++triumvirate
++triumvirates
++triumvirs
++trivalent
++trivet
++trivets
++trivia
++trivial
++trivialities
++triviality
++trivialization
++trivialize
++trivialized
++trivializes
++trivializing
++trivially
++trivium
++trochaic
++trochee
++trochees
++trod
++trodden
++troglodyte
++troglodytes
++troika
++troikas
++troll
++trolled
++trolley
++trolleybus
++trolleybuses
++trolleys
++trolling
++trollop
++trollops
++trolls
++trombone
++trombones
++trombonist
++trombonists
++tromp
++tromped
++tromping
++tromps
++tron
++trons
++troop
++trooped
++trooper
++troopers
++trooping
++troops
++troopship
++troopships
++trope
++tropes
++trophies
++trophy
++tropic
++tropical
++tropically
++tropics
++tropism
++tropisms
++troposphere
++tropospheres
++trot
++troth
++trots
++trotted
++trotter
++trotters
++trotting
++troubadour
++troubadours
++trouble
++troubled
++troublemaker
++troublemakers
++troubles
++troubleshoot
++troubleshooted
++troubleshooter
++troubleshooters
++troubleshooting
++troubleshoots
++troubleshot
++troublesome
++troublesomely
++troubling
++trough
++troughs
++trounce
++trounced
++trouncer
++trouncers
++trounces
++trouncing
++troupe
++trouped
++trouper
++troupers
++troupes
++trouping
++trouser
++trousers
++trousseau
++trousseaux
++trout
++trouts
++trove
++troves
++trow
++trowed
++trowel
++troweled
++troweling
++trowels
++trowing
++trows
++troy
++troys
++truancy
++truant
++truanted
++truanting
++truants
++truce
++truces
++truck
++trucked
++trucker
++truckers
++trucking
++truckle
++truckled
++truckles
++truckling
++truckload
++truckloads
++trucks
++truculence
++truculent
++truculently
++trudge
++trudged
++trudges
++trudging
++true
++trued
++truelove
++trueloves
++truer
++trues
++truest
++truffle
++truffles
++trug
++trugs
++truing
++truism
++truisms
++truly
++trump
++trumped
++trumpery
++trumpet
++trumpeted
++trumpeter
++trumpeters
++trumpeting
++trumpets
++trumping
++trumps
++truncate
++truncated
++truncates
++truncating
++truncation
++truncheon
++truncheons
++trundle
++trundled
++trundler
++trundlers
++trundles
++trundling
++trunk
++trunking
++trunks
++truss
++trussed
++trusses
++trussing
++trust
++trusted
++trustee
++trustees
++trusteeship
++trusteeships
++trustful
++trustfully
++trustfulness
++trustier
++trusties
++trustiest
++trusting
++trustingly
++trusts
++trustworthier
++trustworthiest
++trustworthiness
++trustworthy
++trusty
++truth
++truther
++truthers
++truthful
++truthfully
++truthfulness
++truthiness
++truths
++try
++trying
++tryingly
++tryout
++tryouts
++tryptophan
++tryst
++trysted
++trysting
++trysts
++ts
++tsarists
++tsetse
++tsetses
++tsp
++tsunami
++tsunamis
++ttys
++tub
++tuba
++tubal
++tubas
++tubbier
++tubbiest
++tubby
++tube
++tubed
++tubeless
++tuber
++tubercle
++tubercles
++tubercular
++tuberculin
++tuberculosis
++tuberculous
++tuberose
++tuberous
++tubers
++tubes
++tubful
++tubfuls
++tubing
++tubs
++tubular
++tubule
++tubules
++tuck
++tucked
++tucker
++tuckered
++tuckering
++tuckers
++tucking
++tucks
++tuft
++tufted
++tufter
++tufters
++tufting
++tufts
++tug
++tugboat
++tugboats
++tugged
++tugging
++tugs
++tuition
++tularemia
++tulip
++tulips
++tulle
++tum
++tumble
++tumbled
++tumbledown
++tumbler
++tumblers
++tumbles
++tumbleweed
++tumbleweeds
++tumbling
++tumbrel
++tumbrels
++tumescence
++tumescent
++tumid
++tumidity
++tummies
++tummy
++tumor
++tumorous
++tumors
++tums
++tumult
++tumults
++tumultuous
++tumultuously
++tun
++tuna
++tunas
++tundra
++tundras
++tune
++tuned
++tuneful
++tunefully
++tunefulness
++tuneless
++tunelessly
++tuner
++tuners
++tunes
++tuneup
++tuneups
++tungsten
++tunic
++tunics
++tuning
++tunnel
++tunneled
++tunneler
++tunnelers
++tunneling
++tunnelings
++tunnels
++tunnies
++tunny
++tuns
++tuple
++tuples
++tuppence
++tuppenny
++tuque
++tuques
++turban
++turbaned
++turbans
++turbid
++turbidity
++turbine
++turbines
++turbo
++turbocharge
++turbocharged
++turbocharger
++turbochargers
++turbocharges
++turbocharging
++turbofan
++turbofans
++turbojet
++turbojets
++turboprop
++turboprops
++turbos
++turbot
++turbots
++turbulence
++turbulent
++turbulently
++turd
++turds
++turducken
++turduckens
++tureen
++tureens
++turf
++turfed
++turfing
++turfs
++turfy
++turgid
++turgidity
++turgidly
++turkey
++turkeys
++turmeric
++turmerics
++turmoil
++turmoils
++turn
++turnabout
++turnabouts
++turnaround
++turnarounds
++turnbuckle
++turnbuckles
++turncoat
++turncoats
++turned
++turner
++turners
++turning
++turnings
++turnip
++turnips
++turnkey
++turnkeys
++turnoff
++turnoffs
++turnout
++turnouts
++turnover
++turnovers
++turnpike
++turnpikes
++turns
++turnstile
++turnstiles
++turntable
++turntables
++turpentine
++turpitude
++turps
++turquoise
++turquoises
++turret
++turreted
++turrets
++turtle
++turtledove
++turtledoves
++turtleneck
++turtlenecked
++turtlenecks
++turtles
++tush
++tushes
++tusk
++tusked
++tusks
++tussle
++tussled
++tussles
++tussling
++tussock
++tussocks
++tussocky
++tut
++tutelage
++tutelary
++tutor
++tutored
++tutorial
++tutorials
++tutoring
++tutors
++tutorship
++tuts
++tutted
++tutti
++tutting
++tuttis
++tutu
++tutus
++tux
++tuxedo
++tuxedos
++tuxes
++twaddle
++twaddled
++twaddler
++twaddlers
++twaddles
++twaddling
++twain
++twang
++twanged
++twangier
++twangiest
++twanging
++twangs
++twangy
++twas
++twat
++twats
++tweak
++tweaked
++tweaking
++tweaks
++twee
++tweed
++tweedier
++tweediest
++tweeds
++tweedy
++tween
++tweet
++tweeted
++tweeter
++tweeters
++tweeting
++tweets
++tweezers
++twelfth
++twelfths
++twelve
++twelvemonth
++twelvemonths
++twelves
++twenties
++twentieth
++twentieths
++twenty
++twerk
++twerked
++twerking
++twerks
++twerp
++twerps
++twice
++twiddle
++twiddled
++twiddles
++twiddling
++twiddly
++twig
++twigged
++twiggier
++twiggiest
++twigging
++twiggy
++twigs
++twilight
++twilit
++twill
++twilled
++twin
++twine
++twined
++twiner
++twiners
++twines
++twinge
++twinged
++twinges
++twinging
++twining
++twink
++twinkle
++twinkled
++twinkles
++twinkling
++twinklings
++twinkly
++twinks
++twinned
++twinning
++twins
++twinset
++twinsets
++twirl
++twirled
++twirler
++twirlers
++twirling
++twirls
++twirly
++twist
++twisted
++twister
++twisters
++twistier
++twistiest
++twisting
++twists
++twisty
++twit
++twitch
++twitched
++twitches
++twitchier
++twitchiest
++twitching
++twitchy
++twits
++twitted
++twitter
++twittered
++twittering
++twitters
++twittery
++twitting
++twixt
++two
++twofer
++twofers
++twofold
++twopence
++twopences
++twopenny
++twos
++twosome
++twosomes
++twp
++tycoon
++tycoons
++tying
++tyke
++tykes
++tympani
++tympanic
++tympanist
++tympanists
++tympanum
++tympanums
++type
++typecast
++typecasting
++typecasts
++typed
++typeface
++typefaces
++types
++typescript
++typescripts
++typeset
++typesets
++typesetter
++typesetters
++typesetting
++typewrite
++typewriter
++typewriters
++typewrites
++typewriting
++typewritten
++typewrote
++typhoid
++typhoon
++typhoons
++typhus
++typical
++typicality
++typically
++typification
++typified
++typifies
++typify
++typifying
++typing
++typist
++typists
++typo
++typographer
++typographers
++typographic
++typographical
++typographically
++typography
++typologies
++typology
++typos
++tyrannic
++tyrannical
++tyrannically
++tyrannies
++tyrannize
++tyrannized
++tyrannizes
++tyrannizing
++tyrannosaur
++tyrannosaurs
++tyrannosaurus
++tyrannosauruses
++tyrannous
++tyranny
++tyrant
++tyrants
++tyro
++tyros
++u
++ubiquitous
++ubiquitously
++ubiquity
++udder
++udders
++ufologist
++ufologists
++ufology
++ugh
++uglier
++ugliest
++ugliness
++ugly
++uh
++uhf
++ukase
++ukases
++ukulele
++ukuleles
++ulcer
++ulcerate
++ulcerated
++ulcerates
++ulcerating
++ulceration
++ulcerations
++ulcerous
++ulcers
++ulna
++ulnae
++ulnar
++ulster
++ulsters
++ult
++ulterior
++ultimate
++ultimately
++ultimatum
++ultimatums
++ultimo
++ultra
++ultraconservative
++ultraconservatives
++ultrahigh
++ultralight
++ultralights
++ultramarine
++ultramodern
++ultras
++ultrashort
++ultrasonic
++ultrasonically
++ultrasound
++ultrasounds
++ultraviolet
++ululate
++ululated
++ululates
++ululating
++ululation
++ululations
++um
++umbel
++umbels
++umber
++umbilical
++umbilici
++umbilicus
++umbra
++umbrage
++umbras
++umbrella
++umbrellas
++umiak
++umiaks
++umlaut
++umlauts
++ump
++umped
++umping
++umpire
++umpired
++umpires
++umpiring
++umps
++umpteen
++umpteenth
++unabashed
++unabashedly
++unabated
++unable
++unabridged
++unabridgeds
++unaccented
++unacceptability
++unacceptable
++unacceptably
++unaccepted
++unaccommodating
++unaccompanied
++unaccomplished
++unaccountable
++unaccountably
++unaccounted
++unaccredited
++unaccustomed
++unachievable
++unacknowledged
++unacquainted
++unaddressed
++unadorned
++unadulterated
++unadventurous
++unadvertised
++unadvised
++unadvisedly
++unaesthetic
++unaffected
++unaffectedly
++unaffiliated
++unafraid
++unaided
++unalienable
++unaligned
++unalike
++unallowable
++unalloyed
++unalterable
++unalterably
++unaltered
++unambiguous
++unambiguously
++unambitious
++unanimity
++unanimous
++unanimously
++unannounced
++unanswerable
++unanswered
++unanticipated
++unapologetic
++unapparent
++unappealing
++unappealingly
++unappetizing
++unappreciated
++unappreciative
++unapproachable
++unappropriated
++unapproved
++unarguable
++unarguably
++unarmed
++unarmored
++unashamed
++unashamedly
++unasked
++unassailable
++unassertive
++unassigned
++unassisted
++unassuming
++unassumingly
++unattached
++unattainable
++unattended
++unattested
++unattractive
++unattractively
++unattributed
++unauthentic
++unauthenticated
++unauthorized
++unavailability
++unavailable
++unavailing
++unavailingly
++unavoidable
++unavoidably
++unaware
++unawareness
++unawares
++unbaked
++unbalance
++unbalanced
++unbalances
++unbalancing
++unbaptized
++unbar
++unbarred
++unbarring
++unbars
++unbearable
++unbearably
++unbeatable
++unbeaten
++unbecoming
++unbecomingly
++unbeknownst
++unbelief
++unbelievable
++unbelievably
++unbeliever
++unbelievers
++unbelieving
++unbend
++unbending
++unbends
++unbent
++unbiased
++unbid
++unbidden
++unbind
++unbinding
++unbinds
++unbleached
++unblemished
++unblinking
++unblinkingly
++unblock
++unblocked
++unblocking
++unblocks
++unblushing
++unblushingly
++unbolt
++unbolted
++unbolting
++unbolts
++unborn
++unbosom
++unbosomed
++unbosoming
++unbosoms
++unbothered
++unbound
++unbounded
++unbowed
++unbranded
++unbreakable
++unbridgeable
++unbridled
++unbroken
++unbuckle
++unbuckled
++unbuckles
++unbuckling
++unburden
++unburdened
++unburdening
++unburdens
++unbutton
++unbuttoned
++unbuttoning
++unbuttons
++uncalled
++uncannier
++uncanniest
++uncannily
++uncanny
++uncap
++uncapped
++uncapping
++uncaps
++uncaring
++uncased
++uncatalogued
++uncaught
++unceasing
++unceasingly
++uncensored
++unceremonious
++unceremoniously
++uncertain
++uncertainly
++uncertainties
++uncertainty
++unchain
++unchained
++unchaining
++unchains
++unchallenged
++unchangeable
++unchanged
++unchanging
++unchaperoned
++uncharacteristic
++uncharacteristically
++uncharged
++uncharitable
++uncharitably
++uncharted
++unchaste
++unchaster
++unchastest
++unchecked
++unchristian
++uncial
++uncircumcised
++uncivil
++uncivilized
++uncivilly
++unclad
++unclaimed
++unclasp
++unclasped
++unclasping
++unclasps
++unclassified
++uncle
++unclean
++uncleaned
++uncleaner
++uncleanest
++uncleanlier
++uncleanliest
++uncleanliness
++uncleanly
++uncleanness
++unclear
++uncleared
++unclearer
++unclearest
++uncles
++uncloak
++uncloaked
++uncloaking
++uncloaks
++unclog
++unclogged
++unclogging
++unclogs
++unclothe
++unclothed
++unclothes
++unclothing
++unclouded
++unclutter
++uncluttered
++uncluttering
++unclutters
++uncoil
++uncoiled
++uncoiling
++uncoils
++uncollected
++uncolored
++uncombed
++uncombined
++uncomfortable
++uncomfortably
++uncommitted
++uncommon
++uncommoner
++uncommonest
++uncommonly
++uncommonness
++uncommunicative
++uncompensated
++uncomplaining
++uncomplainingly
++uncompleted
++uncomplicated
++uncomplimentary
++uncompounded
++uncomprehending
++uncomprehendingly
++uncompressed
++uncompromising
++uncompromisingly
++unconcealed
++unconcern
++unconcerned
++unconcernedly
++unconditional
++unconditionally
++unconditioned
++unconfined
++unconfirmed
++unconformable
++uncongenial
++unconnected
++unconquerable
++unconquered
++unconscionable
++unconscionably
++unconscious
++unconsciously
++unconsciousness
++unconsecrated
++unconsidered
++unconsolidated
++unconstitutional
++unconstitutionality
++unconstitutionally
++unconstrained
++unconsumed
++unconsummated
++uncontaminated
++uncontested
++uncontrollable
++uncontrollably
++uncontrolled
++uncontroversial
++unconventional
++unconventionality
++unconventionally
++unconverted
++unconvinced
++unconvincing
++unconvincingly
++uncooked
++uncool
++uncooperative
++uncoordinated
++uncork
++uncorked
++uncorking
++uncorks
++uncorrected
++uncorrelated
++uncorroborated
++uncountable
++uncounted
++uncouple
++uncoupled
++uncouples
++uncoupling
++uncouth
++uncouthly
++uncover
++uncovered
++uncovering
++uncovers
++uncritical
++uncritically
++uncross
++uncrossed
++uncrosses
++uncrossing
++uncrowded
++uncrowned
++uncrushable
++unction
++unctions
++unctuous
++unctuously
++unctuousness
++uncultivated
++uncultured
++uncured
++uncurl
++uncurled
++uncurling
++uncurls
++uncustomary
++uncut
++undamaged
++undated
++undaunted
++undauntedly
++undeceive
++undeceived
++undeceives
++undeceiving
++undecidable
++undecided
++undecideds
++undecipherable
++undeclared
++undefeated
++undefended
++undefinable
++undefined
++undelivered
++undemanding
++undemocratic
++undemonstrative
++undemonstratively
++undeniable
++undeniably
++undependable
++under
++underachieve
++underachieved
++underachievement
++underachiever
++underachievers
++underachieves
++underachieving
++underact
++underacted
++underacting
++underacts
++underage
++underappreciated
++underarm
++underarms
++underbellies
++underbelly
++underbid
++underbidding
++underbids
++underbrush
++undercarriage
++undercarriages
++undercharge
++undercharged
++undercharges
++undercharging
++underclass
++underclasses
++underclassman
++underclassmen
++underclothes
++underclothing
++undercoat
++undercoated
++undercoating
++undercoatings
++undercoats
++undercover
++undercurrent
++undercurrents
++undercut
++undercuts
++undercutting
++underdeveloped
++underdevelopment
++underdog
++underdogs
++underdone
++underemployed
++underemployment
++underestimate
++underestimated
++underestimates
++underestimating
++underestimation
++underestimations
++underexpose
++underexposed
++underexposes
++underexposing
++underexposure
++underexposures
++underfed
++underfeed
++underfeeding
++underfeeds
++underfloor
++underflow
++underfoot
++underfunded
++underfur
++undergarment
++undergarments
++undergo
++undergoes
++undergoing
++undergone
++undergrad
++undergrads
++undergraduate
++undergraduates
++underground
++undergrounds
++undergrowth
++underhand
++underhanded
++underhandedly
++underhandedness
++underinflated
++underlain
++underlay
++underlays
++underlie
++underlies
++underline
++underlined
++underlines
++underling
++underlings
++underlining
++underlip
++underlips
++underlying
++undermanned
++undermentioned
++undermine
++undermined
++undermines
++undermining
++undermost
++underneath
++underneaths
++undernourished
++undernourishment
++underpaid
++underpants
++underpart
++underparts
++underpass
++underpasses
++underpay
++underpaying
++underpayment
++underpayments
++underpays
++underpin
++underpinned
++underpinning
++underpinnings
++underpins
++underplay
++underplayed
++underplaying
++underplays
++underpopulated
++underprivileged
++underproduction
++underrate
++underrated
++underrates
++underrating
++underrepresented
++underscore
++underscored
++underscores
++underscoring
++undersea
++underseas
++undersecretaries
++undersecretary
++undersell
++underselling
++undersells
++undersexed
++undershirt
++undershirts
++undershoot
++undershooting
++undershoots
++undershorts
++undershot
++underside
++undersides
++undersign
++undersigned
++undersigning
++undersigns
++undersized
++underskirt
++underskirts
++undersold
++understaffed
++understand
++understandable
++understandably
++understanding
++understandingly
++understandings
++understands
++understate
++understated
++understatement
++understatements
++understates
++understating
++understood
++understudied
++understudies
++understudy
++understudying
++undertake
++undertaken
++undertaker
++undertakers
++undertakes
++undertaking
++undertakings
++underthings
++undertone
++undertones
++undertook
++undertow
++undertows
++underused
++underutilized
++undervaluation
++undervalue
++undervalued
++undervalues
++undervaluing
++underwater
++underway
++underwear
++underweight
++underwent
++underwhelm
++underwhelmed
++underwhelming
++underwhelms
++underwire
++underwired
++underwires
++underworld
++underworlds
++underwrite
++underwriter
++underwriters
++underwrites
++underwriting
++underwritten
++underwrote
++undeserved
++undeservedly
++undeserving
++undesirability
++undesirable
++undesirables
++undesirably
++undesired
++undetectable
++undetected
++undetermined
++undeterred
++undeveloped
++undeviating
++undid
++undies
++undifferentiated
++undigested
++undignified
++undiluted
++undiminished
++undimmed
++undiplomatic
++undischarged
++undisciplined
++undisclosed
++undiscovered
++undiscriminating
++undisguised
++undismayed
++undisputed
++undissolved
++undistinguished
++undistributed
++undisturbed
++undivided
++undo
++undocumented
++undoes
++undoing
++undoings
++undomesticated
++undone
++undoubted
++undoubtedly
++undramatic
++undreamed
++undress
++undressed
++undresses
++undressing
++undrinkable
++undue
++undulant
++undulate
++undulated
++undulates
++undulating
++undulation
++undulations
++unduly
++undying
++unearned
++unearth
++unearthed
++unearthing
++unearthliness
++unearthly
++unearths
++unease
++uneasier
++uneasiest
++uneasily
++uneasiness
++uneasy
++uneatable
++uneaten
++uneconomic
++uneconomical
++uneconomically
++unedifying
++unedited
++uneducated
++unembarrassed
++unemotional
++unemotionally
++unemphatic
++unemployable
++unemployed
++unemployment
++unenclosed
++unencumbered
++unending
++unendurable
++unenforceable
++unenforced
++unenlightened
++unenterprising
++unenthusiastic
++unenviable
++unequal
++unequaled
++unequally
++unequipped
++unequivocal
++unequivocally
++unerring
++unerringly
++unessential
++unethical
++unethically
++uneven
++unevenly
++unevenness
++uneventful
++uneventfully
++unexampled
++unexceptionable
++unexceptionably
++unexceptional
++unexceptionally
++unexcited
++unexciting
++unexcused
++unexpected
++unexpectedly
++unexpectedness
++unexpired
++unexplained
++unexploited
++unexplored
++unexposed
++unexpressed
++unexpurgated
++unfading
++unfailing
++unfailingly
++unfair
++unfairer
++unfairest
++unfairly
++unfairness
++unfaithful
++unfaithfully
++unfaithfulness
++unfaltering
++unfamiliar
++unfamiliarity
++unfashionable
++unfashionably
++unfasten
++unfastened
++unfastening
++unfastens
++unfathomable
++unfathomably
++unfavorable
++unfavorably
++unfazed
++unfeasible
++unfed
++unfeeling
++unfeelingly
++unfeigned
++unfeminine
++unfertilized
++unfetter
++unfettered
++unfettering
++unfetters
++unfilled
++unfiltered
++unfinished
++unfit
++unfitness
++unfits
++unfitted
++unfitting
++unfix
++unfixed
++unfixes
++unfixing
++unflagging
++unflaggingly
++unflappability
++unflappable
++unflappably
++unflattering
++unflavored
++unfledged
++unflinching
++unflinchingly
++unfocused
++unfold
++unfolded
++unfolding
++unfolds
++unforced
++unforeseeable
++unforeseen
++unforgettable
++unforgettably
++unforgivable
++unforgivably
++unforgiving
++unforgotten
++unformed
++unformulated
++unfortified
++unfortunate
++unfortunately
++unfortunates
++unfounded
++unframed
++unfreeze
++unfreezes
++unfreezing
++unfrequented
++unfriend
++unfriended
++unfriending
++unfriendlier
++unfriendliest
++unfriendliness
++unfriendly
++unfriends
++unfrock
++unfrocked
++unfrocking
++unfrocks
++unfroze
++unfrozen
++unfruitful
++unfulfilled
++unfulfilling
++unfunded
++unfunny
++unfurl
++unfurled
++unfurling
++unfurls
++unfurnished
++ungainlier
++ungainliest
++ungainliness
++ungainly
++ungenerous
++ungentle
++ungentlemanly
++unglued
++ungodlier
++ungodliest
++ungodliness
++ungodly
++ungovernable
++ungoverned
++ungraceful
++ungracefully
++ungracious
++ungraciously
++ungraded
++ungrammatical
++ungrammatically
++ungrateful
++ungratefully
++ungratefulness
++ungrudging
++unguarded
++unguent
++unguents
++unguided
++ungulate
++ungulates
++unhallowed
++unhampered
++unhand
++unhanded
++unhandier
++unhandiest
++unhanding
++unhands
++unhandy
++unhappier
++unhappiest
++unhappily
++unhappiness
++unhappy
++unhardened
++unharmed
++unharness
++unharnessed
++unharnesses
++unharnessing
++unharvested
++unhatched
++unhealed
++unhealthful
++unhealthier
++unhealthiest
++unhealthily
++unhealthiness
++unhealthy
++unheard
++unheated
++unheeded
++unhelpful
++unhelpfully
++unheralded
++unhesitating
++unhesitatingly
++unhindered
++unhinge
++unhinged
++unhinges
++unhinging
++unhistorical
++unhitch
++unhitched
++unhitches
++unhitching
++unholier
++unholiest
++unholiness
++unholy
++unhook
++unhooked
++unhooking
++unhooks
++unhorse
++unhorsed
++unhorses
++unhorsing
++unhurried
++unhurriedly
++unhurt
++unhygienic
++uni
++unicameral
++unicellular
++unicorn
++unicorns
++unicycle
++unicycles
++unidentifiable
++unidentified
++unidiomatic
++unidirectional
++unification
++unified
++unifies
++uniform
++uniformed
++uniforming
++uniformity
++uniformly
++uniforms
++unify
++unifying
++unilateral
++unilateralism
++unilaterally
++unimaginable
++unimaginably
++unimaginative
++unimaginatively
++unimpaired
++unimpeachable
++unimpeded
++unimplementable
++unimplemented
++unimportant
++unimposing
++unimpressed
++unimpressive
++unimproved
++unincorporated
++uninfected
++uninfluenced
++uninformative
++uninformed
++uninhabitable
++uninhabited
++uninhibited
++uninhibitedly
++uninitialized
++uninitiated
++uninjured
++uninspired
++uninspiring
++uninstall
++uninstallable
++uninstalled
++uninstaller
++uninstallers
++uninstalling
++uninstalls
++uninstructed
++uninsured
++unintelligent
++unintelligible
++unintelligibly
++unintended
++unintentional
++unintentionally
++uninterested
++uninteresting
++uninterpreted
++uninterrupted
++uninterruptedly
++uninterruptible
++uninvited
++uninviting
++uninvolved
++union
++unionism
++unionist
++unionists
++unionization
++unionize
++unionized
++unionizes
++unionizing
++unions
++unique
++uniquely
++uniqueness
++uniquer
++uniquest
++unis
++unisex
++unison
++unit
++unitary
++unite
++united
++unitedly
++unites
++unities
++uniting
++unitize
++unitized
++unitizes
++unitizing
++units
++unity
++univ
++univalent
++univalve
++univalves
++universal
++universality
++universalize
++universalized
++universalizes
++universalizing
++universally
++universals
++universe
++universes
++universities
++university
++unjust
++unjustifiable
++unjustifiably
++unjustified
++unjustly
++unkempt
++unkind
++unkinder
++unkindest
++unkindlier
++unkindliest
++unkindly
++unkindness
++unknowable
++unknowing
++unknowingly
++unknowings
++unknown
++unknowns
++unlabeled
++unlace
++unlaced
++unlaces
++unlacing
++unladen
++unladylike
++unlatch
++unlatched
++unlatches
++unlatching
++unlawful
++unlawfully
++unlawfulness
++unleaded
++unlearn
++unlearned
++unlearning
++unlearns
++unleash
++unleashed
++unleashes
++unleashing
++unleavened
++unless
++unlettered
++unlicensed
++unlighted
++unlikable
++unlike
++unlikelier
++unlikeliest
++unlikelihood
++unlikeliness
++unlikely
++unlikeness
++unlimber
++unlimbered
++unlimbering
++unlimbers
++unlimited
++unlined
++unlisted
++unlit
++unlivable
++unload
++unloaded
++unloading
++unloads
++unlock
++unlocked
++unlocking
++unlocks
++unloose
++unloosed
++unloosen
++unloosened
++unloosening
++unloosens
++unlooses
++unloosing
++unlovable
++unloved
++unlovelier
++unloveliest
++unlovely
++unloving
++unluckier
++unluckiest
++unluckily
++unluckiness
++unlucky
++unmade
++unmake
++unmakes
++unmaking
++unman
++unmanageable
++unmanlier
++unmanliest
++unmanly
++unmanned
++unmannerly
++unmanning
++unmans
++unmarked
++unmarketable
++unmarred
++unmarried
++unmask
++unmasked
++unmasking
++unmasks
++unmatched
++unmeaning
++unmeant
++unmeasured
++unmediated
++unmemorable
++unmentionable
++unmentionables
++unmentioned
++unmerciful
++unmercifully
++unmerited
++unmet
++unmindful
++unmissable
++unmissed
++unmistakable
++unmistakably
++unmitigated
++unmixed
++unmodified
++unmolested
++unmoral
++unmorality
++unmotivated
++unmounted
++unmourned
++unmovable
++unmoved
++unmusical
++unnameable
++unnamed
++unnatural
++unnaturally
++unnaturalness
++unnecessarily
++unnecessary
++unneeded
++unnerve
++unnerved
++unnerves
++unnerving
++unnervingly
++unnoticeable
++unnoticed
++unnumbered
++unobjectionable
++unobservant
++unobserved
++unobstructed
++unobtainable
++unobtrusive
++unobtrusively
++unobtrusiveness
++unoccupied
++unoffensive
++unofficial
++unofficially
++unopened
++unopposed
++unordered
++unorganized
++unoriginal
++unorthodox
++unpack
++unpacked
++unpacking
++unpacks
++unpaid
++unpainted
++unpaired
++unpalatable
++unparalleled
++unpardonable
++unpardonably
++unpasteurized
++unpatriotic
++unpaved
++unpeeled
++unpeople
++unperceived
++unperceptive
++unperformed
++unperson
++unpersons
++unpersuaded
++unpersuasive
++unperturbed
++unpick
++unpicked
++unpicking
++unpicks
++unpin
++unpinned
++unpinning
++unpins
++unplaced
++unplanned
++unplayable
++unpleasant
++unpleasantly
++unpleasantness
++unpleasing
++unplug
++unplugged
++unplugging
++unplugs
++unplumbed
++unpolished
++unpolitical
++unpolluted
++unpopular
++unpopularity
++unpopulated
++unpractical
++unpracticed
++unprecedented
++unprecedentedly
++unpredictability
++unpredictable
++unpredictably
++unprejudiced
++unpremeditated
++unprepared
++unpreparedness
++unprepossessing
++unpressed
++unpretentious
++unpretentiously
++unpreventable
++unprincipled
++unprintable
++unprivileged
++unproblematic
++unprocessed
++unproductive
++unproductively
++unprofessional
++unprofessionally
++unprofitable
++unprofitably
++unpromising
++unprompted
++unpronounceable
++unpropitious
++unprotected
++unproved
++unproven
++unprovided
++unprovoked
++unpublished
++unpunished
++unqualified
++unquenchable
++unquestionable
++unquestionably
++unquestioned
++unquestioning
++unquestioningly
++unquiet
++unquieter
++unquietest
++unquote
++unquoted
++unquotes
++unquoting
++unrated
++unravel
++unraveled
++unraveling
++unravels
++unreachable
++unread
++unreadable
++unready
++unreal
++unrealistic
++unrealistically
++unreality
++unrealized
++unreasonable
++unreasonableness
++unreasonably
++unreasoning
++unrecognizable
++unrecognized
++unreconstructed
++unrecorded
++unrecoverable
++unreel
++unreeled
++unreeling
++unreels
++unrefined
++unreformed
++unregenerate
++unregistered
++unregulated
++unrehearsed
++unrelated
++unreleased
++unrelenting
++unrelentingly
++unreliability
++unreliable
++unreliably
++unrelieved
++unrelievedly
++unremarkable
++unremarked
++unremembered
++unremitting
++unremittingly
++unrepeatable
++unrepentant
++unreported
++unrepresentative
++unrepresented
++unrequited
++unreserved
++unreservedly
++unresistant
++unresolved
++unresponsive
++unresponsively
++unresponsiveness
++unrest
++unrestrained
++unrestricted
++unrevealed
++unrevealing
++unrewarded
++unrewarding
++unrighteous
++unrighteousness
++unripe
++unripened
++unriper
++unripest
++unrivaled
++unroll
++unrolled
++unrolling
++unrolls
++unromantic
++unruffled
++unrulier
++unruliest
++unruliness
++unruly
++unsaddle
++unsaddled
++unsaddles
++unsaddling
++unsafe
++unsafely
++unsafer
++unsafest
++unsaid
++unsalable
++unsaleable
++unsalted
++unsanctioned
++unsanitary
++unsatisfactorily
++unsatisfactory
++unsatisfied
++unsatisfying
++unsaturated
++unsaved
++unsavory
++unsay
++unsaying
++unsays
++unscathed
++unscented
++unscheduled
++unschooled
++unscientific
++unscientifically
++unscramble
++unscrambled
++unscrambles
++unscrambling
++unscratched
++unscrew
++unscrewed
++unscrewing
++unscrews
++unscripted
++unscrupulous
++unscrupulously
++unscrupulousness
++unseal
++unsealed
++unsealing
++unseals
++unsearchable
++unseasonable
++unseasonably
++unseasoned
++unseat
++unseated
++unseating
++unseats
++unsecured
++unseeded
++unseeing
++unseeingly
++unseemlier
++unseemliest
++unseemliness
++unseemly
++unseen
++unsegmented
++unsegregated
++unselfish
++unselfishly
++unselfishness
++unsent
++unsentimental
++unset
++unsettle
++unsettled
++unsettles
++unsettling
++unshackle
++unshackled
++unshackles
++unshackling
++unshakable
++unshakably
++unshaken
++unshaped
++unshapely
++unshaven
++unsheathe
++unsheathed
++unsheathes
++unsheathing
++unshockable
++unshod
++unshorn
++unsifted
++unsightlier
++unsightliest
++unsightliness
++unsightly
++unsigned
++unsinkable
++unskilled
++unskillful
++unskillfully
++unsmiling
++unsnap
++unsnapped
++unsnapping
++unsnaps
++unsnarl
++unsnarled
++unsnarling
++unsnarls
++unsociable
++unsocial
++unsoiled
++unsold
++unsolicited
++unsolvable
++unsolved
++unsophisticated
++unsorted
++unsought
++unsound
++unsounder
++unsoundest
++unsoundly
++unsoundness
++unsparing
++unsparingly
++unspeakable
++unspeakably
++unspecific
++unspecified
++unspectacular
++unspent
++unspoiled
++unspoken
++unsporting
++unsportsmanlike
++unstable
++unstably
++unstained
++unstated
++unsteadier
++unsteadiest
++unsteadily
++unsteadiness
++unsteady
++unstinting
++unstintingly
++unstop
++unstoppable
++unstopped
++unstopping
++unstops
++unstrap
++unstrapped
++unstrapping
++unstraps
++unstressed
++unstructured
++unstrung
++unstuck
++unstudied
++unsubscribe
++unsubscribed
++unsubscribes
++unsubscribing
++unsubstantial
++unsubstantiated
++unsubtle
++unsuccessful
++unsuccessfully
++unsuitability
++unsuitable
++unsuitably
++unsuited
++unsullied
++unsung
++unsupervised
++unsupportable
++unsupported
++unsure
++unsurpassed
++unsurprising
++unsurprisingly
++unsuspected
++unsuspecting
++unsuspectingly
++unsustainable
++unswayed
++unsweetened
++unswerving
++unsymmetrical
++unsympathetic
++unsympathetically
++unsystematic
++untactful
++untainted
++untalented
++untamed
++untangle
++untangled
++untangles
++untangling
++untanned
++untapped
++untarnished
++untasted
++untaught
++unteachable
++untenable
++untenanted
++untended
++untested
++unthinkable
++unthinkably
++unthinking
++unthinkingly
++untidier
++untidiest
++untidily
++untidiness
++untidy
++untie
++untied
++unties
++until
++untimelier
++untimeliest
++untimeliness
++untimely
++untiring
++untiringly
++untitled
++unto
++untold
++untouchable
++untouchables
++untouched
++untoward
++untraceable
++untrained
++untrammeled
++untranslatable
++untranslated
++untraveled
++untreated
++untried
++untrimmed
++untrod
++untroubled
++untrue
++untruer
++untruest
++untruly
++untrustworthy
++untruth
++untruthful
++untruthfully
++untruthfulness
++untruths
++untutored
++untwist
++untwisted
++untwisting
++untwists
++untying
++untypical
++untypically
++unusable
++unused
++unusual
++unusually
++unutterable
++unutterably
++unvaried
++unvarnished
++unvarying
++unveil
++unveiled
++unveiling
++unveils
++unverifiable
++unverified
++unversed
++unvoiced
++unwaged
++unwanted
++unwarier
++unwariest
++unwarily
++unwariness
++unwarrantable
++unwarranted
++unwary
++unwashed
++unwatchable
++unwavering
++unwearable
++unwearied
++unwed
++unweighted
++unwelcome
++unwelcoming
++unwell
++unwholesome
++unwholesomeness
++unwieldier
++unwieldiest
++unwieldiness
++unwieldy
++unwilling
++unwillingly
++unwillingness
++unwind
++unwinding
++unwinds
++unwinnable
++unwise
++unwisely
++unwiser
++unwisest
++unwitting
++unwittingly
++unwonted
++unworkable
++unworldliness
++unworldly
++unworn
++unworried
++unworthier
++unworthiest
++unworthily
++unworthiness
++unworthy
++unwound
++unwoven
++unwrap
++unwrapped
++unwrapping
++unwraps
++unwrinkled
++unwritten
++unyielding
++unyoke
++unyoked
++unyokes
++unyoking
++unzip
++unzipped
++unzipping
++unzips
++up
++upbeat
++upbeats
++upbraid
++upbraided
++upbraiding
++upbraids
++upbringing
++upbringings
++upchuck
++upchucked
++upchucking
++upchucks
++upcoming
++upcountry
++update
++updated
++updater
++updates
++updating
++updraft
++updrafts
++upend
++upended
++upending
++upends
++upfront
++upgrade
++upgraded
++upgrades
++upgrading
++upheaval
++upheavals
++upheld
++uphill
++uphills
++uphold
++upholder
++upholders
++upholding
++upholds
++upholster
++upholstered
++upholsterer
++upholsterers
++upholstering
++upholsters
++upholstery
++upkeep
++upland
++uplands
++uplift
++uplifted
++uplifting
++upliftings
++uplifts
++upload
++uploaded
++uploading
++uploads
++upmarket
++upmost
++upon
++upped
++upper
++uppercase
++upperclassman
++upperclassmen
++upperclasswoman
++upperclasswomen
++uppercut
++uppercuts
++uppercutting
++uppermost
++uppers
++upping
++uppish
++uppity
++upraise
++upraised
++upraises
++upraising
++uprear
++upreared
++uprearing
++uprears
++upright
++uprightly
++uprightness
++uprights
++uprising
++uprisings
++upriver
++uproar
++uproarious
++uproariously
++uproars
++uproot
++uprooted
++uprooting
++uproots
++ups
++upscale
++upset
++upsets
++upsetting
++upshot
++upshots
++upside
++upsides
++upsilon
++upsilons
++upstage
++upstaged
++upstages
++upstaging
++upstairs
++upstanding
++upstart
++upstarted
++upstarting
++upstarts
++upstate
++upstream
++upstroke
++upstrokes
++upsurge
++upsurged
++upsurges
++upsurging
++upswing
++upswings
++uptake
++uptakes
++uptempo
++upthrust
++upthrusting
++upthrusts
++uptick
++upticks
++uptight
++uptown
++uptrend
++upturn
++upturned
++upturning
++upturns
++upward
++upwardly
++upwards
++upwind
++uracil
++uranium
++urban
++urbane
++urbanely
++urbaner
++urbanest
++urbanity
++urbanization
++urbanize
++urbanized
++urbanizes
++urbanizing
++urbanologist
++urbanologists
++urbanology
++urchin
++urchins
++urea
++uremia
++uremic
++ureter
++ureters
++urethane
++urethra
++urethrae
++urethral
++urge
++urged
++urgency
++urgent
++urgently
++urges
++urging
++uric
++urinal
++urinals
++urinalyses
++urinalysis
++urinary
++urinate
++urinated
++urinates
++urinating
++urination
++urine
++urn
++urns
++urogenital
++urological
++urologist
++urologists
++urology
++ursine
++urticaria
++us
++usability
++usable
++usage
++usages
++use
++used
++useful
++usefully
++usefulness
++useless
++uselessly
++uselessness
++user
++username
++usernames
++users
++uses
++usher
++ushered
++usherette
++usherettes
++ushering
++ushers
++using
++usu
++usual
++usually
++usurer
++usurers
++usurious
++usurp
++usurpation
++usurped
++usurper
++usurpers
++usurping
++usurps
++usury
++utensil
++utensils
++uteri
++uterine
++uterus
++utilitarian
++utilitarianism
++utilitarians
++utilities
++utility
++utilizable
++utilization
++utilize
++utilized
++utilizes
++utilizing
++utmost
++utopia
++utopias
++utter
++utterance
++utterances
++uttered
++uttering
++utterly
++uttermost
++utters
++uveitis
++uvula
++uvular
++uvulars
++uvulas
++uxorious
++v
++vac
++vacancies
++vacancy
++vacant
++vacantly
++vacate
++vacated
++vacates
++vacating
++vacation
++vacationed
++vacationer
++vacationers
++vacationing
++vacationist
++vacationists
++vacations
++vaccinate
++vaccinated
++vaccinates
++vaccinating
++vaccination
++vaccinations
++vaccine
++vaccines
++vacillate
++vacillated
++vacillates
++vacillating
++vacillation
++vacillations
++vacs
++vacuity
++vacuole
++vacuoles
++vacuous
++vacuously
++vacuousness
++vacuum
++vacuumed
++vacuuming
++vacuums
++vagabond
++vagabondage
++vagabonded
++vagabonding
++vagabonds
++vagaries
++vagarious
++vagary
++vagina
++vaginae
++vaginal
++vaginally
++vaginas
++vagrancy
++vagrant
++vagrants
++vague
++vaguely
++vagueness
++vaguer
++vaguest
++vagus
++vain
++vainer
++vainest
++vainglorious
++vaingloriously
++vainglory
++vainly
++val
++valance
++valances
++vale
++valediction
++valedictions
++valedictorian
++valedictorians
++valedictories
++valedictory
++valence
++valences
++valencies
++valency
++valentine
++valentines
++vales
++valet
++valeted
++valeting
++valets
++valetudinarian
++valetudinarianism
++valetudinarians
++valiance
++valiant
++valiantly
++valid
++validate
++validated
++validates
++validating
++validation
++validations
++validity
++validly
++validness
++valise
++valises
++valley
++valleys
++valor
++valorous
++valorously
++valuable
++valuables
++valuate
++valuated
++valuates
++valuating
++valuation
++valuations
++value
++valued
++valueless
++valuer
++valuers
++values
++valuing
++valve
++valved
++valveless
++valves
++valving
++valvular
++vamoose
++vamoosed
++vamooses
++vamoosing
++vamp
++vamped
++vamping
++vampire
++vampires
++vamps
++van
++vanadium
++vandal
++vandalism
++vandalize
++vandalized
++vandalizes
++vandalizing
++vandals
++vane
++vanes
++vanguard
++vanguards
++vanilla
++vanillas
++vanish
++vanished
++vanishes
++vanishing
++vanishings
++vanities
++vanity
++vanned
++vanning
++vanquish
++vanquished
++vanquisher
++vanquishers
++vanquishes
++vanquishing
++vans
++vantage
++vantages
++vape
++vaped
++vapes
++vapid
++vapidity
++vapidly
++vapidness
++vaping
++vapor
++vaporization
++vaporize
++vaporized
++vaporizer
++vaporizers
++vaporizes
++vaporizing
++vaporous
++vapors
++vaporware
++vapory
++vaquero
++vaqueros
++var
++variability
++variable
++variables
++variably
++variance
++variances
++variant
++variants
++variate
++variation
++variations
++varicolored
++varicose
++varied
++variegate
++variegated
++variegates
++variegating
++variegation
++varies
++varietal
++varietals
++varieties
++variety
++various
++variously
++varlet
++varlets
++varmint
++varmints
++varnish
++varnished
++varnishes
++varnishing
++vars
++varsities
++varsity
++vary
++varying
++vascular
++vase
++vasectomies
++vasectomy
++vases
++vasoconstriction
++vasomotor
++vassal
++vassalage
++vassals
++vast
++vaster
++vastest
++vastly
++vastness
++vasts
++vat
++vats
++vatted
++vatting
++vaudeville
++vaudevillian
++vaudevillians
++vault
++vaulted
++vaulter
++vaulters
++vaulting
++vaults
++vaunt
++vaunted
++vaunting
++vaunts
++vb
++veal
++vector
++vectored
++vectoring
++vectors
++veejay
++veejays
++veep
++veeps
++veer
++veered
++veering
++veers
++veg
++vegan
++veganism
++vegans
++vegeburger
++vegeburgers
++veges
++vegetable
++vegetables
++vegetarian
++vegetarianism
++vegetarians
++vegetate
++vegetated
++vegetates
++vegetating
++vegetation
++vegetative
++vegged
++vegges
++veggie
++veggieburger
++veggieburgers
++veggies
++vegging
++vehemence
++vehemency
++vehement
++vehemently
++vehicle
++vehicles
++vehicular
++veil
++veiled
++veiling
++veils
++vein
++veined
++veining
++veins
++vela
++velar
++velars
++veld
++velds
++vellum
++velocipede
++velocipedes
++velocities
++velocity
++velodrome
++velodromes
++velour
++velours
++velum
++velvet
++velveteen
++velvety
++venal
++venality
++venally
++venation
++vend
++vended
++vendetta
++vendettas
++vendible
++vending
++vendor
++vendors
++vends
++veneer
++veneered
++veneering
++veneers
++venerability
++venerable
++venerate
++venerated
++venerates
++venerating
++veneration
++venereal
++vengeance
++vengeful
++vengefully
++venial
++venireman
++veniremen
++venison
++venom
++venomous
++venomously
++venous
++vent
++vented
++ventilate
++ventilated
++ventilates
++ventilating
++ventilation
++ventilator
++ventilators
++venting
++ventral
++ventricle
++ventricles
++ventricular
++ventriloquism
++ventriloquist
++ventriloquists
++ventriloquy
++vents
++venture
++ventured
++ventures
++venturesome
++venturesomely
++venturesomeness
++venturing
++venturous
++venturously
++venturousness
++venue
++venues
++veracious
++veraciously
++veracity
++veranda
++verandas
++verb
++verbal
++verbalization
++verbalize
++verbalized
++verbalizes
++verbalizing
++verbally
++verbals
++verbatim
++verbena
++verbenas
++verbiage
++verbiages
++verbose
++verbosely
++verbosity
++verboten
++verbs
++verdant
++verdantly
++verdict
++verdicts
++verdigris
++verdigrised
++verdigrises
++verdigrising
++verdure
++verge
++verged
++verger
++vergers
++verges
++verging
++verier
++veriest
++verifiable
++verification
++verified
++verifies
++verify
++verifying
++verily
++verisimilitude
++veritable
++veritably
++verities
++verity
++vermicelli
++vermiculite
++vermiform
++vermilion
++vermin
++verminous
++vermouth
++vernacular
++vernaculars
++vernal
++vernier
++verniers
++veronica
++verruca
++verrucae
++verrucas
++versa
++versatile
++versatility
++verse
++versed
++verses
++versification
++versified
++versifier
++versifiers
++versifies
++versify
++versifying
++versing
++version
++versioned
++versioning
++versions
++verso
++versos
++versus
++vert
++vertebra
++vertebrae
++vertebral
++vertebrate
++vertebrates
++vertex
++vertexes
++vertical
++vertically
++verticals
++vertices
++vertiginous
++vertigo
++verve
++very
++vesicle
++vesicles
++vesicular
++vesiculate
++vesper
++vespers
++vessel
++vessels
++vest
++vestal
++vestals
++vested
++vestibule
++vestibules
++vestige
++vestiges
++vestigial
++vestigially
++vesting
++vestment
++vestments
++vestries
++vestry
++vestryman
++vestrymen
++vests
++vet
++vetch
++vetches
++veteran
++veterans
++veterinarian
++veterinarians
++veterinaries
++veterinary
++veto
++vetoed
++vetoes
++vetoing
++vets
++vetted
++vetting
++vex
++vexation
++vexations
++vexatious
++vexatiously
++vexed
++vexes
++vexing
++vhf
++vi
++via
++viability
++viable
++viably
++viaduct
++viaducts
++vial
++vials
++viand
++viands
++vibe
++vibes
++vibraharp
++vibraharps
++vibrancy
++vibrant
++vibrantly
++vibraphone
++vibraphones
++vibraphonist
++vibraphonists
++vibrate
++vibrated
++vibrates
++vibrating
++vibration
++vibrations
++vibrato
++vibrator
++vibrators
++vibratory
++vibratos
++viburnum
++viburnums
++vicar
++vicarage
++vicarages
++vicarious
++vicariously
++vicariousness
++vicars
++vice
++viced
++vicegerent
++vicegerents
++vicennial
++viceregal
++viceroy
++viceroys
++vices
++vichyssoise
++vicing
++vicinity
++vicious
++viciously
++viciousness
++vicissitude
++vicissitudes
++victim
++victimization
++victimize
++victimized
++victimizes
++victimizing
++victimless
++victims
++victor
++victories
++victorious
++victoriously
++victors
++victory
++victual
++victualed
++victualing
++victuals
++vicuna
++vicunas
++videlicet
++video
++videocassette
++videocassettes
++videoconferencing
++videodisc
++videodiscs
++videoed
++videoing
++videophone
++videophones
++videos
++videotape
++videotaped
++videotapes
++videotaping
++videotex
++vie
++vied
++vies
++view
++viewed
++viewer
++viewers
++viewership
++viewfinder
++viewfinders
++viewing
++viewings
++viewpoint
++viewpoints
++views
++vigesimal
++vigil
++vigilance
++vigilant
++vigilante
++vigilantes
++vigilantism
++vigilantist
++vigilantly
++vigils
++vignette
++vignetted
++vignettes
++vignetting
++vignettist
++vignettists
++vigor
++vigorous
++vigorously
++vii
++viii
++viking
++vikings
++vile
++vilely
++vileness
++viler
++vilest
++vilification
++vilified
++vilifies
++vilify
++vilifying
++villa
++village
++villager
++villagers
++villages
++villain
++villainies
++villainous
++villains
++villainy
++villas
++villein
++villeinage
++villeins
++villi
++villus
++vim
++vinaigrette
++vincible
++vindicate
++vindicated
++vindicates
++vindicating
++vindication
++vindications
++vindicator
++vindicators
++vindictive
++vindictively
++vindictiveness
++vine
++vinegar
++vinegary
++vines
++vineyard
++vineyards
++vino
++vinous
++vintage
++vintages
++vintner
++vintners
++vinyl
++vinyls
++viol
++viola
++violable
++violas
++violate
++violated
++violates
++violating
++violation
++violations
++violator
++violators
++violence
++violent
++violently
++violet
++violets
++violin
++violincello
++violincellos
++violinist
++violinists
++violins
++violist
++violists
++violoncellist
++violoncellists
++violoncello
++violoncellos
++viols
++viper
++viperous
++vipers
++virago
++viragoes
++viral
++vireo
++vireos
++virgin
++virginal
++virginals
++virginity
++virgins
++virgule
++virgules
++virile
++virility
++virologist
++virologists
++virology
++virtual
++virtualization
++virtually
++virtue
++virtues
++virtuosity
++virtuoso
++virtuous
++virtuously
++virtuousness
++virulence
++virulent
++virulently
++virus
++viruses
++visa
++visaed
++visage
++visages
++visaing
++visas
++viscera
++visceral
++viscerally
++viscid
++viscose
++viscosity
++viscount
++viscountcies
++viscountcy
++viscountess
++viscountesses
++viscounts
++viscous
++viscus
++vise
++vised
++vises
++visibility
++visible
++visibly
++vising
++vision
++visionaries
++visionary
++visioned
++visioning
++visions
++visit
++visitant
++visitants
++visitation
++visitations
++visited
++visiting
++visitor
++visitors
++visits
++visor
++visors
++vista
++vistas
++visual
++visualization
++visualizations
++visualize
++visualized
++visualizer
++visualizers
++visualizes
++visualizing
++visually
++visuals
++vita
++vitae
++vital
++vitality
++vitalization
++vitalize
++vitalized
++vitalizes
++vitalizing
++vitally
++vitals
++vitamin
++vitamins
++vitiate
++vitiated
++vitiates
++vitiating
++vitiation
++viticulture
++viticulturist
++viticulturists
++vitreous
++vitrifaction
++vitrification
++vitrified
++vitrifies
++vitrify
++vitrifying
++vitrine
++vitrines
++vitriol
++vitriolic
++vitriolically
++vittles
++vituperate
++vituperated
++vituperates
++vituperating
++vituperation
++vituperative
++viva
++vivace
++vivacious
++vivaciously
++vivaciousness
++vivacity
++vivaria
++vivarium
++vivariums
++vivas
++vivid
++vivider
++vividest
++vividly
++vividness
++vivified
++vivifies
++vivify
++vivifying
++viviparous
++vivisect
++vivisected
++vivisecting
++vivisection
++vivisectional
++vivisectionist
++vivisectionists
++vivisects
++vixen
++vixenish
++vixenishly
++vixens
++viz
++vizier
++viziers
++vlf
++vocab
++vocable
++vocables
++vocabularies
++vocabulary
++vocal
++vocalic
++vocalist
++vocalists
++vocalization
++vocalizations
++vocalize
++vocalized
++vocalizes
++vocalizing
++vocally
++vocals
++vocation
++vocational
++vocationally
++vocations
++vocative
++vocatives
++vociferate
++vociferated
++vociferates
++vociferating
++vociferation
++vociferous
++vociferously
++vociferousness
++vodka
++vodkas
++vogue
++vogues
++voguish
++voice
++voiced
++voiceless
++voicelessly
++voicelessness
++voicemail
++voicemails
++voices
++voicing
++void
++voidable
++voided
++voiding
++voids
++voila
++voile
++vol
++volatile
++volatility
++volatilize
++volatilized
++volatilizes
++volatilizing
++volcanic
++volcano
++volcanoes
++vole
++voles
++volition
++volitional
++volley
++volleyball
++volleyballs
++volleyed
++volleying
++volleys
++vols
++volt
++voltage
++voltages
++voltaic
++voltmeter
++voltmeters
++volts
++volubility
++voluble
++volubly
++volume
++volumes
++volumetric
++voluminous
++voluminously
++voluminousness
++voluntaries
++voluntarily
++voluntarism
++voluntary
++volunteer
++volunteered
++volunteering
++volunteerism
++volunteers
++voluptuaries
++voluptuary
++voluptuous
++voluptuously
++voluptuousness
++volute
++volutes
++vomit
++vomited
++vomiting
++vomits
++voodoo
++voodooed
++voodooing
++voodooism
++voodoos
++voracious
++voraciously
++voraciousness
++voracity
++vortex
++vortexes
++votaries
++votary
++vote
++voted
++voter
++voters
++votes
++voting
++votive
++vouch
++vouched
++voucher
++vouchers
++vouches
++vouching
++vouchsafe
++vouchsafed
++vouchsafes
++vouchsafing
++vow
++vowed
++vowel
++vowels
++vowing
++vows
++voyage
++voyaged
++voyager
++voyagers
++voyages
++voyageur
++voyageurs
++voyaging
++voyeur
++voyeurism
++voyeuristic
++voyeurs
++vs
++vulcanization
++vulcanize
++vulcanized
++vulcanizes
++vulcanizing
++vulgar
++vulgarer
++vulgarest
++vulgarian
++vulgarians
++vulgarism
++vulgarisms
++vulgarities
++vulgarity
++vulgarization
++vulgarize
++vulgarized
++vulgarizer
++vulgarizers
++vulgarizes
++vulgarizing
++vulgarly
++vulnerabilities
++vulnerability
++vulnerable
++vulnerably
++vulpine
++vulture
++vultures
++vulturous
++vulva
++vulvae
++vuvuzela
++vuvuzelas
++vying
++w
++wabbit
++wabbits
++wack
++wacker
++wackest
++wackier
++wackiest
++wackiness
++wacko
++wackos
++wacks
++wacky
++wad
++wadded
++wadding
++waddle
++waddled
++waddles
++waddling
++wade
++waded
++wader
++waders
++wades
++wadge
++wadges
++wadi
++wading
++wadis
++wads
++wafer
++wafers
++waffle
++waffled
++waffler
++wafflers
++waffles
++waffling
++waft
++wafted
++wafting
++wafts
++wag
++wage
++waged
++wager
++wagered
++wagerer
++wagerers
++wagering
++wagers
++wages
++wagged
++waggeries
++waggery
++wagging
++waggish
++waggishly
++waggishness
++waggle
++waggled
++waggles
++waggling
++waging
++wagon
++wagoner
++wagoners
++wagons
++wags
++wagtail
++wagtails
++waif
++waifs
++wail
++wailed
++wailer
++wailers
++wailing
++wails
++wain
++wains
++wainscot
++wainscoted
++wainscoting
++wainscotings
++wainscots
++wainwright
++wainwrights
++waist
++waistband
++waistbands
++waistcoat
++waistcoats
++waistline
++waistlines
++waists
++wait
++waited
++waiter
++waiters
++waiting
++waitperson
++waitpersons
++waitress
++waitresses
++waits
++waitstaff
++waive
++waived
++waiver
++waivers
++waives
++waiving
++wake
++waked
++wakeful
++wakefully
++wakefulness
++waken
++wakened
++wakening
++wakens
++wakes
++waking
++wakings
++waldo
++waldoes
++waldos
++wale
++waled
++wales
++waling
++walk
++walkabout
++walkabouts
++walkaway
++walkaways
++walked
++walker
++walkers
++walkies
++walking
++walkout
++walkouts
++walkover
++walkovers
++walks
++walkway
++walkways
++wall
++wallabies
++wallaby
++wallah
++wallahs
++wallboard
++walled
++wallet
++wallets
++walleye
++walleyed
++walleyes
++wallflower
++wallflowers
++wallies
++walling
++wallop
++walloped
++walloping
++wallopings
++wallops
++wallow
++wallowed
++wallowing
++wallows
++wallpaper
++wallpapered
++wallpapering
++wallpapers
++walls
++wally
++walnut
++walnuts
++walrus
++walruses
++waltz
++waltzed
++waltzer
++waltzers
++waltzes
++waltzing
++wampum
++wan
++wand
++wander
++wandered
++wanderer
++wanderers
++wandering
++wanderings
++wanderlust
++wanderlusts
++wanders
++wands
++wane
++waned
++wanes
++wangle
++wangled
++wangler
++wanglers
++wangles
++wangling
++waning
++wank
++wanked
++wanker
++wankers
++wanking
++wanks
++wanly
++wanna
++wannabe
++wannabee
++wannabees
++wannabes
++wanner
++wanness
++wannest
++want
++wanted
++wanting
++wanton
++wantoned
++wantoning
++wantonly
++wantonness
++wantons
++wants
++wapiti
++wapitis
++war
++warble
++warbled
++warbler
++warblers
++warbles
++warbling
++warbonnet
++warbonnets
++ward
++warded
++warden
++wardens
++warder
++warders
++warding
++wardress
++wardresses
++wardrobe
++wardrobes
++wardroom
++wardrooms
++wards
++ware
++warehouse
++warehoused
++warehouses
++warehousing
++wares
++warez
++warfare
++warhead
++warheads
++warhorse
++warhorses
++warier
++wariest
++warily
++wariness
++warlike
++warlock
++warlocks
++warlord
++warlords
++warm
++warmblooded
++warmed
++warmer
++warmers
++warmest
++warmhearted
++warmheartedness
++warming
++warmish
++warmly
++warmness
++warmonger
++warmongering
++warmongers
++warms
++warmth
++warn
++warned
++warning
++warnings
++warns
++warp
++warpaint
++warpath
++warpaths
++warped
++warping
++warplane
++warplanes
++warps
++warrant
++warranted
++warrantied
++warranties
++warranting
++warrants
++warranty
++warrantying
++warred
++warren
++warrens
++warring
++warrior
++warriors
++wars
++warship
++warships
++wart
++warthog
++warthogs
++wartier
++wartiest
++wartime
++warts
++warty
++wary
++was
++wasabi
++wash
++washable
++washables
++washbasin
++washbasins
++washboard
++washboards
++washbowl
++washbowls
++washcloth
++washcloths
++washed
++washer
++washers
++washerwoman
++washerwomen
++washes
++washier
++washiest
++washing
++washings
++washout
++washouts
++washrag
++washrags
++washroom
++washrooms
++washstand
++washstands
++washtub
++washtubs
++washy
++wasp
++waspish
++waspishly
++waspishness
++wasps
++wassail
++wassailed
++wassailing
++wassails
++wast
++wastage
++waste
++wastebasket
++wastebaskets
++wasted
++wasteful
++wastefully
++wastefulness
++wasteland
++wastelands
++wastepaper
++waster
++wasters
++wastes
++wastewater
++wasting
++wastrel
++wastrels
++watch
++watchable
++watchband
++watchbands
++watchdog
++watchdogs
++watched
++watcher
++watchers
++watches
++watchful
++watchfully
++watchfulness
++watching
++watchmaker
++watchmakers
++watchmaking
++watchman
++watchmen
++watchstrap
++watchstraps
++watchtower
++watchtowers
++watchword
++watchwords
++water
++waterbed
++waterbeds
++waterbird
++waterbirds
++waterboard
++waterboarded
++waterboarding
++waterboardings
++waterboards
++waterborne
++watercolor
++watercolors
++watercourse
++watercourses
++watercraft
++watercress
++watered
++waterfall
++waterfalls
++waterfowl
++waterfowls
++waterfront
++waterfronts
++waterhole
++waterholes
++waterier
++wateriest
++wateriness
++watering
++waterlilies
++waterlily
++waterline
++waterlines
++waterlogged
++watermark
++watermarked
++watermarking
++watermarks
++watermelon
++watermelons
++watermill
++watermills
++waterproof
++waterproofed
++waterproofing
++waterproofs
++waters
++watershed
++watersheds
++waterside
++watersides
++waterspout
++waterspouts
++watertight
++waterway
++waterways
++waterwheel
++waterwheels
++waterworks
++watery
++watt
++wattage
++wattle
++wattled
++wattles
++wattling
++watts
++wave
++waveband
++wavebands
++waved
++waveform
++wavefront
++wavelength
++wavelengths
++wavelet
++wavelets
++wavelike
++waver
++wavered
++waverer
++waverers
++wavering
++waveringly
++wavers
++waves
++wavier
++waviest
++waviness
++waving
++wavy
++wax
++waxed
++waxen
++waxes
++waxier
++waxiest
++waxiness
++waxing
++waxwing
++waxwings
++waxwork
++waxworks
++waxy
++way
++waybill
++waybills
++wayfarer
++wayfarers
++wayfaring
++wayfarings
++waylaid
++waylay
++waylayer
++waylayers
++waylaying
++waylays
++ways
++wayside
++waysides
++wayward
++waywardly
++waywardness
++wazoo
++wazoos
++we
++weak
++weaken
++weakened
++weakener
++weakeners
++weakening
++weakens
++weaker
++weakest
++weakfish
++weakfishes
++weakish
++weakling
++weaklings
++weakly
++weakness
++weaknesses
++weal
++weals
++wealth
++wealthier
++wealthiest
++wealthiness
++wealthy
++wean
++weaned
++weaning
++weans
++weapon
++weaponize
++weaponized
++weaponizes
++weaponizing
++weaponless
++weaponry
++weapons
++wear
++wearable
++wearer
++wearers
++wearied
++wearier
++wearies
++weariest
++wearily
++weariness
++wearing
++wearings
++wearisome
++wearisomely
++wears
++weary
++wearying
++weasel
++weaseled
++weaseling
++weaselly
++weasels
++weather
++weatherboard
++weatherboarding
++weatherboards
++weathercock
++weathercocks
++weathered
++weathering
++weatherization
++weatherize
++weatherized
++weatherizes
++weatherizing
++weatherman
++weathermen
++weatherperson
++weatherpersons
++weatherproof
++weatherproofed
++weatherproofing
++weatherproofs
++weathers
++weatherstrip
++weatherstripped
++weatherstripping
++weatherstrips
++weave
++weaved
++weaver
++weavers
++weaves
++weaving
++web
++webbed
++webbing
++webcam
++webcams
++webcast
++webcasting
++webcasts
++webfeet
++webfoot
++webinar
++webinars
++webisode
++webisodes
++weblog
++weblogs
++webmaster
++webmasters
++webmistress
++webmistresses
++webs
++website
++websites
++wed
++wedded
++wedder
++wedding
++weddings
++wedge
++wedged
++wedges
++wedgie
++wedgies
++wedging
++wedlock
++weds
++wee
++weed
++weeded
++weeder
++weeders
++weedier
++weediest
++weeding
++weedkiller
++weedkillers
++weedless
++weeds
++weedy
++weeing
++week
++weekday
++weekdays
++weekend
++weekended
++weekender
++weekenders
++weekending
++weekends
++weeklies
++weekly
++weeknight
++weeknights
++weeks
++ween
++weened
++weenie
++weenier
++weenies
++weeniest
++weening
++weens
++weensier
++weensiest
++weensy
++weeny
++weep
++weeper
++weepers
++weepie
++weepier
++weepies
++weepiest
++weeping
++weepings
++weeps
++weepy
++weer
++wees
++weest
++weevil
++weevils
++weft
++wefts
++weigh
++weighbridge
++weighbridges
++weighed
++weighing
++weighs
++weight
++weighted
++weightier
++weightiest
++weightily
++weightiness
++weighting
++weightings
++weightless
++weightlessly
++weightlessness
++weightlifter
++weightlifters
++weightlifting
++weights
++weighty
++weir
++weird
++weirder
++weirdest
++weirdie
++weirdies
++weirdly
++weirdness
++weirdo
++weirdos
++weirs
++welcome
++welcomed
++welcomes
++welcoming
++weld
++weldable
++welded
++welder
++welders
++welding
++welds
++welfare
++welkin
++well
++welled
++wellhead
++wellheads
++wellie
++wellies
++welling
++wellington
++wellingtons
++wellness
++wells
++wellspring
++wellsprings
++welly
++welsh
++welshed
++welsher
++welshers
++welshes
++welshing
++welt
++welted
++welter
++weltered
++weltering
++welters
++welterweight
++welterweights
++welting
++welts
++wen
++wench
++wenches
++wend
++wended
++wending
++wends
++wens
++went
++wept
++were
++werewolf
++werewolves
++west
++westbound
++westerlies
++westerly
++western
++westerner
++westerners
++westernization
++westernize
++westernized
++westernizes
++westernizing
++westernmost
++westerns
++westward
++westwards
++wet
++wetback
++wetbacks
++wetland
++wetlands
++wetly
++wetness
++wets
++wetter
++wetters
++wettest
++wetting
++wetware
++wetwares
++whack
++whacked
++whacker
++whackers
++whacking
++whackings
++whacks
++whale
++whaleboat
++whaleboats
++whalebone
++whaled
++whaler
++whalers
++whales
++whaling
++wham
++whammed
++whammies
++whamming
++whammy
++whams
++wharf
++wharves
++what
++whatchamacallit
++whatchamacallits
++whatever
++whatnot
++whats
++whatshername
++whatshisname
++whatsit
++whatsits
++whatsoever
++wheal
++wheals
++wheat
++wheaten
++wheatgerm
++wheatmeal
++whee
++wheedle
++wheedled
++wheedler
++wheedlers
++wheedles
++wheedling
++wheel
++wheelbarrow
++wheelbarrows
++wheelbase
++wheelbases
++wheelchair
++wheelchairs
++wheeled
++wheeler
++wheelhouse
++wheelhouses
++wheelie
++wheelies
++wheeling
++wheels
++wheelwright
++wheelwrights
++wheeze
++wheezed
++wheezes
++wheezier
++wheeziest
++wheezily
++wheeziness
++wheezing
++wheezy
++whelk
++whelked
++whelks
++whelm
++whelmed
++whelming
++whelms
++whelp
++whelped
++whelping
++whelps
++when
++whence
++whenever
++whens
++whensoever
++where
++whereabouts
++whereas
++whereat
++whereby
++wherefore
++wherefores
++wherein
++whereof
++whereon
++wheres
++wheresoever
++whereto
++whereupon
++wherever
++wherewith
++wherewithal
++wherries
++wherry
++whet
++whether
++whets
++whetstone
++whetstones
++whetted
++whetting
++whew
++whey
++which
++whichever
++whiff
++whiffed
++whiffing
++whiffletree
++whiffletrees
++whiffs
++while
++whiled
++whiles
++whiling
++whilom
++whilst
++whim
++whimper
++whimpered
++whimpering
++whimpers
++whims
++whimsical
++whimsicality
++whimsically
++whimsies
++whimsy
++whine
++whined
++whiner
++whiners
++whines
++whinge
++whinged
++whingeing
++whinger
++whingers
++whinges
++whinging
++whinier
++whiniest
++whining
++whinnied
++whinnies
++whinny
++whinnying
++whiny
++whip
++whipcord
++whiplash
++whiplashes
++whipped
++whipper
++whippers
++whippersnapper
++whippersnappers
++whippet
++whippets
++whipping
++whippings
++whippletree
++whippletrees
++whippoorwill
++whippoorwills
++whips
++whipsaw
++whipsawed
++whipsawing
++whipsaws
++whir
++whirl
++whirled
++whirligig
++whirligigs
++whirling
++whirlpool
++whirlpools
++whirls
++whirlwind
++whirlwinds
++whirlybird
++whirlybirds
++whirred
++whirring
++whirs
++whisk
++whisked
++whisker
++whiskered
++whiskers
++whiskery
++whiskey
++whiskeys
++whisking
++whisks
++whiskys
++whisper
++whispered
++whisperer
++whisperers
++whispering
++whispers
++whist
++whistle
++whistled
++whistler
++whistlers
++whistles
++whistling
++whit
++white
++whitebait
++whiteboard
++whiteboards
++whitecap
++whitecaps
++whited
++whitefish
++whitefishes
++whitehead
++whiteheads
++whiten
++whitened
++whitener
++whiteners
++whiteness
++whitening
++whitenings
++whitens
++whiteout
++whiteouts
++whiter
++whites
++whitest
++whitetail
++whitetails
++whitewall
++whitewalls
++whitewash
++whitewashed
++whitewashes
++whitewashing
++whitewater
++whitey
++whiteys
++whither
++whiting
++whitings
++whitish
++whits
++whittle
++whittled
++whittler
++whittlers
++whittles
++whittling
++whiz
++whizkid
++whizzbang
++whizzbangs
++whizzed
++whizzes
++whizzing
++who
++whoa
++whodunit
++whodunits
++whoever
++whole
++wholefood
++wholefoods
++wholegrain
++wholehearted
++wholeheartedly
++wholeheartedness
++wholemeal
++wholeness
++wholes
++wholesale
++wholesaled
++wholesaler
++wholesalers
++wholesales
++wholesaling
++wholesome
++wholesomely
++wholesomeness
++wholewheat
++wholly
++whom
++whomever
++whomsoever
++whoop
++whooped
++whoopee
++whoopees
++whooper
++whoopers
++whooping
++whoops
++whoosh
++whooshed
++whooshes
++whooshing
++whop
++whopped
++whopper
++whoppers
++whopping
++whops
++whore
++whorehouse
++whorehouses
++whoreish
++whores
++whoring
++whorish
++whorl
++whorled
++whorls
++whose
++whoso
++whosoever
++whup
++whupped
++whupping
++whups
++why
++whys
++wick
++wicked
++wickeder
++wickedest
++wickedly
++wickedness
++wicker
++wickers
++wickerwork
++wicket
++wickets
++wicks
++wide
++widely
++widemouthed
++widen
++widened
++widener
++wideners
++wideness
++widening
++widens
++wider
++widescreen
++widescreens
++widespread
++widest
++widget
++widgets
++widow
++widowed
++widower
++widowers
++widowhood
++widowing
++widows
++width
++widths
++wield
++wielded
++wielder
++wielders
++wielding
++wields
++wiener
++wieners
++wienie
++wienies
++wife
++wifeless
++wifely
++wig
++wigeon
++wigged
++wigging
++wiggle
++wiggled
++wiggler
++wigglers
++wiggles
++wigglier
++wiggliest
++wiggling
++wiggly
++wight
++wights
++wiglet
++wiglets
++wigs
++wigwag
++wigwagged
++wigwagging
++wigwags
++wigwam
++wigwams
++wiki
++wikis
++wild
++wildcard
++wildcards
++wildcat
++wildcats
++wildcatted
++wildcatter
++wildcatters
++wildcatting
++wildebeest
++wildebeests
++wilder
++wilderness
++wildernesses
++wildest
++wildfire
++wildfires
++wildflower
++wildflowers
++wildfowl
++wildlife
++wildly
++wildness
++wilds
++wile
++wiled
++wiles
++wilier
++wiliest
++wiliness
++wiling
++will
++willed
++willful
++willfully
++willfulness
++willies
++willing
++willingly
++willingness
++williwaw
++williwaws
++willow
++willows
++willowy
++willpower
++wills
++willy
++wilt
++wilted
++wilting
++wilts
++wily
++wimp
++wimped
++wimpier
++wimpiest
++wimping
++wimpish
++wimple
++wimpled
++wimples
++wimpling
++wimps
++wimpy
++win
++wince
++winced
++winces
++winch
++winched
++winches
++winching
++wincing
++wind
++windbag
++windbags
++windblown
++windbreak
++windbreaker
++windbreakers
++windbreaks
++windburn
++windburned
++windcheater
++windcheaters
++windchill
++winded
++winder
++winders
++windfall
++windfalls
++windflower
++windflowers
++windier
++windiest
++windily
++windiness
++winding
++windjammer
++windjammers
++windlass
++windlasses
++windless
++windmill
++windmilled
++windmilling
++windmills
++window
++windowed
++windowing
++windowless
++windowpane
++windowpanes
++windows
++windowsill
++windowsills
++windpipe
++windpipes
++windproof
++windrow
++windrows
++winds
++windscreen
++windscreens
++windshield
++windshields
++windsock
++windsocks
++windstorm
++windstorms
++windsurf
++windsurfed
++windsurfer
++windsurfers
++windsurfing
++windsurfs
++windswept
++windup
++windups
++windward
++windy
++wine
++wined
++wineglass
++wineglasses
++winegrower
++winegrowers
++winemaker
++winemakers
++wineries
++winery
++wines
++wing
++wingding
++wingdings
++winged
++winger
++wingers
++winging
++wingless
++winglike
++wingnut
++wingnuts
++wings
++wingspan
++wingspans
++wingspread
++wingspreads
++wingtip
++wingtips
++winier
++winiest
++wining
++wink
++winked
++winker
++winkers
++winking
++winkle
++winkled
++winkles
++winkling
++winks
++winnable
++winner
++winners
++winning
++winningly
++winnings
++winnow
++winnowed
++winnower
++winnowers
++winnowing
++winnows
++wino
++winos
++wins
++winsome
++winsomely
++winsomeness
++winsomer
++winsomest
++winter
++wintered
++wintergreen
++wintering
++winterize
++winterized
++winterizes
++winterizing
++winters
++wintertime
++wintrier
++wintriest
++wintry
++winy
++wipe
++wiped
++wiper
++wipers
++wipes
++wiping
++wire
++wired
++wireds
++wirehair
++wirehairs
++wireless
++wirelesses
++wires
++wiretap
++wiretapped
++wiretapper
++wiretappers
++wiretapping
++wiretaps
++wirier
++wiriest
++wiriness
++wiring
++wiry
++wisdom
++wise
++wiseacre
++wiseacres
++wisecrack
++wisecracked
++wisecracking
++wisecracks
++wised
++wiseguy
++wiseguys
++wisely
++wiser
++wises
++wisest
++wish
++wishbone
++wishbones
++wished
++wisher
++wishers
++wishes
++wishful
++wishfully
++wishing
++wising
++wisp
++wispier
++wispiest
++wisps
++wispy
++wist
++wisteria
++wisterias
++wistful
++wistfully
++wistfulness
++wit
++witch
++witchcraft
++witched
++witchery
++witches
++witching
++with
++withal
++withdraw
++withdrawal
++withdrawals
++withdrawing
++withdrawn
++withdraws
++withdrew
++withe
++withed
++wither
++withered
++withering
++witheringly
++witherings
++withers
++withes
++withheld
++withhold
++withholding
++withholds
++within
++withing
++without
++withstand
++withstanding
++withstands
++withstood
++witless
++witlessly
++witlessness
++witness
++witnessed
++witnesses
++witnessing
++wits
++witted
++witter
++wittered
++wittering
++witters
++witticism
++witticisms
++wittier
++wittiest
++wittily
++wittiness
++witting
++wittingly
++witty
++wive
++wived
++wives
++wiving
++wiz
++wizard
++wizardly
++wizardry
++wizards
++wizened
++wk
++wkly
++woad
++wobble
++wobbled
++wobbles
++wobblier
++wobbliest
++wobbliness
++wobbling
++wobbly
++wodge
++wodges
++woe
++woebegone
++woeful
++woefuller
++woefullest
++woefully
++woefulness
++woes
++wog
++wogs
++wok
++woke
++woken
++woks
++wold
++wolds
++wolf
++wolfed
++wolfhound
++wolfhounds
++wolfing
++wolfish
++wolfram
++wolfs
++wolverine
++wolverines
++wolves
++woman
++womanhood
++womanish
++womanize
++womanized
++womanizer
++womanizers
++womanizes
++womanizing
++womankind
++womanlier
++womanliest
++womanlike
++womanliness
++womanly
++womb
++wombat
++wombats
++womble
++wombles
++wombs
++women
++womenfolk
++womenfolks
++won
++wonder
++wondered
++wonderful
++wonderfully
++wonderfulness
++wondering
++wonderingly
++wonderland
++wonderlands
++wonderment
++wonders
++wondrous
++wondrously
++wonk
++wonkier
++wonkiest
++wonks
++wonky
++wont
++wonted
++woo
++wood
++woodbine
++woodblock
++woodblocks
++woodcarver
++woodcarvers
++woodcarving
++woodcarvings
++woodchuck
++woodchucks
++woodcock
++woodcocks
++woodcraft
++woodcut
++woodcuts
++woodcutter
++woodcutters
++woodcutting
++wooded
++wooden
++woodener
++woodenest
++woodenly
++woodenness
++woodier
++woodies
++woodiest
++woodiness
++wooding
++woodland
++woodlands
++woodlice
++woodlot
++woodlots
++woodlouse
++woodman
++woodmen
++woodpecker
++woodpeckers
++woodpile
++woodpiles
++woods
++woodshed
++woodsheds
++woodsier
++woodsiest
++woodsiness
++woodsman
++woodsmen
++woodsy
++woodwind
++woodwinds
++woodwork
++woodworker
++woodworkers
++woodworking
++woodworm
++woodworms
++woody
++wooed
++wooer
++wooers
++woof
++woofed
++woofer
++woofers
++woofing
++woofs
++wooing
++wool
++woolen
++woolens
++woolgathering
++wooliness
++woollier
++woollies
++woolliest
++woolliness
++woolly
++woos
++woozier
++wooziest
++woozily
++wooziness
++woozy
++wop
++wops
++word
++wordage
++wordbook
++wordbooks
++worded
++wordier
++wordiest
++wordily
++wordiness
++wording
++wordings
++wordless
++wordlessly
++wordplay
++words
++wordsmith
++wordsmiths
++wordy
++wore
++work
++workable
++workaday
++workaholic
++workaholics
++workaround
++workarounds
++workbasket
++workbaskets
++workbench
++workbenches
++workbook
++workbooks
++workday
++workdays
++worked
++worker
++workers
++workfare
++workflow
++workflows
++workforce
++workhorse
++workhorses
++workhouse
++workhouses
++working
++workingman
++workingmen
++workings
++workingwoman
++workingwomen
++workload
++workloads
++workman
++workmanlike
++workmanship
++workmate
++workmates
++workmen
++workout
++workouts
++workplace
++workplaces
++workroom
++workrooms
++works
++worksheet
++worksheets
++workshop
++workshops
++workshy
++worksite
++worksites
++workspace
++workstation
++workstations
++worktable
++worktables
++worktop
++worktops
++workup
++workups
++workweek
++workweeks
++world
++worldlier
++worldliest
++worldliness
++worldly
++worlds
++worldview
++worldviews
++worldwide
++worm
++wormed
++wormhole
++wormholes
++wormier
++wormiest
++worming
++worms
++wormwood
++wormy
++worn
++worried
++worriedly
++worrier
++worriers
++worries
++worriment
++worrisome
++worry
++worrying
++worryingly
++worryings
++worrywart
++worrywarts
++worse
++worsen
++worsened
++worsening
++worsens
++worship
++worshiped
++worshiper
++worshipers
++worshipful
++worshiping
++worships
++worst
++worsted
++worsting
++worsts
++wort
++worth
++worthier
++worthies
++worthiest
++worthily
++worthiness
++worthless
++worthlessly
++worthlessness
++worthwhile
++worthy
++wot
++wotcha
++would
++woulds
++wouldst
++wound
++wounded
++wounder
++wounding
++wounds
++wove
++woven
++wow
++wowed
++wowing
++wows
++wpm
++wrack
++wracked
++wracking
++wracks
++wraith
++wraiths
++wrangle
++wrangled
++wrangler
++wranglers
++wrangles
++wrangling
++wranglings
++wrap
++wraparound
++wraparounds
++wrapped
++wrapper
++wrappers
++wrapping
++wrappings
++wraps
++wrasse
++wrasses
++wrath
++wrathful
++wrathfully
++wreak
++wreaked
++wreaking
++wreaks
++wreath
++wreathe
++wreathed
++wreathes
++wreathing
++wreaths
++wreck
++wreckage
++wrecked
++wrecker
++wreckers
++wrecking
++wrecks
++wren
++wrench
++wrenched
++wrenches
++wrenching
++wrens
++wrest
++wrested
++wresting
++wrestle
++wrestled
++wrestler
++wrestlers
++wrestles
++wrestling
++wrests
++wretch
++wretched
++wretcheder
++wretchedest
++wretchedly
++wretchedness
++wretches
++wriggle
++wriggled
++wriggler
++wrigglers
++wriggles
++wriggling
++wriggly
++wright
++wrights
++wring
++wringer
++wringers
++wringing
++wrings
++wrinkle
++wrinkled
++wrinkles
++wrinklier
++wrinklies
++wrinkliest
++wrinkling
++wrinkly
++wrist
++wristband
++wristbands
++wrists
++wristwatch
++wristwatches
++writ
++writable
++write
++writer
++writers
++writes
++writhe
++writhed
++writhes
++writhing
++writing
++writings
++writs
++written
++wrong
++wrongdoer
++wrongdoers
++wrongdoing
++wrongdoings
++wronged
++wronger
++wrongest
++wrongful
++wrongfully
++wrongfulness
++wrongheaded
++wrongheadedly
++wrongheadedness
++wronging
++wrongly
++wrongness
++wrongs
++wrote
++wroth
++wrought
++wrung
++wry
++wryer
++wryest
++wryly
++wryness
++wt
++wunderkind
++wunderkinds
++wurst
++wursts
++wuss
++wusses
++wussier
++wussies
++wussiest
++wussy
++x
++xci
++xcii
++xciv
++xcix
++xcvi
++xcvii
++xenon
++xenophobe
++xenophobes
++xenophobia
++xenophobic
++xerographic
++xerography
++xerox
++xeroxed
++xeroxes
++xeroxing
++xi
++xii
++xiii
++xis
++xiv
++xix
++xor
++xref
++xrefs
++xterm
++xv
++xvi
++xvii
++xviii
++xx
++xxi
++xxii
++xxiii
++xxiv
++xxix
++xxv
++xxvi
++xxvii
++xxviii
++xxx
++xxxi
++xxxii
++xxxiii
++xxxiv
++xxxix
++xxxv
++xxxvi
++xxxvii
++xxxviii
++xylem
++xylene
++xylophone
++xylophones
++xylophonist
++xylophonists
++y
++ya
++yacht
++yachted
++yachting
++yachts
++yachtsman
++yachtsmen
++yachtswoman
++yachtswomen
++yahoo
++yahoos
++yak
++yakked
++yakking
++yaks
++yam
++yammer
++yammered
++yammerer
++yammerers
++yammering
++yammers
++yams
++yang
++yank
++yanked
++yanking
++yanks
++yap
++yapped
++yapping
++yaps
++yard
++yardage
++yardages
++yardarm
++yardarms
++yardman
++yardmaster
++yardmasters
++yardmen
++yards
++yardstick
++yardsticks
++yarmulke
++yarmulkes
++yarn
++yarns
++yarrow
++yashmak
++yashmaks
++yaw
++yawed
++yawing
++yawl
++yawls
++yawn
++yawned
++yawner
++yawners
++yawning
++yawns
++yaws
++yd
++ye
++yea
++yeah
++yeahs
++year
++yearbook
++yearbooks
++yearlies
++yearling
++yearlings
++yearlong
++yearly
++yearn
++yearned
++yearning
++yearnings
++yearns
++years
++yeas
++yeast
++yeastier
++yeastiest
++yeasts
++yeasty
++yegg
++yeggs
++yell
++yelled
++yelling
++yellow
++yellowed
++yellower
++yellowest
++yellowhammer
++yellowhammers
++yellowing
++yellowish
++yellowness
++yellows
++yellowy
++yells
++yelp
++yelped
++yelping
++yelps
++yen
++yens
++yeoman
++yeomanry
++yeomen
++yep
++yeps
++yer
++yes
++yeses
++yeshiva
++yeshivas
++yessed
++yessing
++yest
++yesterday
++yesterdays
++yesteryear
++yet
++yeti
++yetis
++yew
++yews
++yid
++yids
++yield
++yielded
++yielding
++yieldings
++yields
++yikes
++yin
++yip
++yipe
++yipped
++yippee
++yipping
++yips
++yo
++yob
++yobbo
++yobbos
++yobs
++yodel
++yodeled
++yodeler
++yodelers
++yodeling
++yodels
++yoga
++yogi
++yogic
++yogis
++yogurt
++yogurts
++yoke
++yoked
++yokel
++yokels
++yokes
++yoking
++yolk
++yolked
++yolks
++yon
++yonder
++yonks
++yore
++you
++young
++younger
++youngest
++youngish
++youngster
++youngsters
++your
++yours
++yourself
++yourselves
++yous
++youth
++youthful
++youthfully
++youthfulness
++youths
++yow
++yowl
++yowled
++yowling
++yowls
++yr
++yrs
++ytterbium
++yttrium
++yuan
++yucca
++yuccas
++yuck
++yuckier
++yuckiest
++yucky
++yuk
++yukked
++yukking
++yukky
++yuks
++yule
++yuletide
++yum
++yummier
++yummiest
++yummy
++yup
++yuppie
++yuppies
++yuppified
++yuppifies
++yuppify
++yuppifying
++yups
++yurt
++yurts
++z
++zanier
++zanies
++zaniest
++zaniness
++zany
++zap
++zapped
++zapper
++zappers
++zapping
++zappy
++zaps
++zeal
++zealot
++zealotry
++zealots
++zealous
++zealously
++zealousness
++zebra
++zebras
++zebu
++zebus
++zed
++zeds
++zeitgeist
++zeitgeists
++zen
++zenith
++zeniths
++zenned
++zens
++zeolite
++zeolites
++zephyr
++zephyrs
++zeppelin
++zeppelins
++zero
++zeroed
++zeroes
++zeroing
++zeros
++zeroth
++zest
++zestful
++zestfully
++zestfulness
++zestier
++zestiest
++zests
++zesty
++zeta
++zetas
++zigzag
++zigzagged
++zigzagging
++zigzags
++zilch
++zillion
++zillions
++zinc
++zincked
++zincking
++zincs
++zine
++zines
++zinfandel
++zing
++zinged
++zinger
++zingers
++zingier
++zingiest
++zinging
++zings
++zingy
++zinnia
++zinnias
++zip
++zipped
++zipper
++zippered
++zippering
++zippers
++zippier
++zippiest
++zipping
++zippy
++zips
++zircon
++zirconium
++zircons
++zit
++zither
++zithers
++zits
++zloties
++zloty
++zlotys
++zodiac
++zodiacal
++zodiacs
++zombie
++zombies
++zonal
++zonally
++zone
++zoned
++zones
++zoning
++zonked
++zoo
++zookeeper
++zookeepers
++zoological
++zoologically
++zoologist
++zoologists
++zoology
++zoom
++zoomed
++zooming
++zooms
++zoophyte
++zoophytes
++zoophytic
++zooplankton
++zoos
++zorch
++zoster
++zounds
++zucchini
++zucchinis
++zwieback
++zydeco
++zygote
++zygotes
++zygotic
++zymurgy
diff --git a/gnu/packages/patches/bsd-games-add-wrapper.patch b/gnu/packages/patches/bsd-games-add-wrapper.patch
new file mode 100644
index 0000000000..78f78deb43
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-wrapper.patch
@@ -0,0 +1,217 @@
+As we cannot install outside the Store, and those games do not create the
+needed files on their own, we need a wrapper script.  This script also do
+`chmod ug+w`, to allow users in default setup (all users belong to group
+'users') to use this games.  Enhancing security for those old games is left to
+local administrator, for now.
+
+diff -Naur bsd-games-2.17/atc/Makefrag bsd-games-patch/atc/Makefrag
+--- bsd-games-2.17/atc/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/atc/Makefrag	2020-04-23 20:24:04.446176222 +0700
+@@ -47,7 +47,8 @@
+ 	mv atc/lex.yy.c $@
+ 
+ atc_install:	atc_all
+-	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/.atc-real
+ 	$(HIDE_GAME) atc
+ 	$(INSTALL_SCORE_FILE) $(ATC_SCOREFILE)
+ 	$(INSTALL_MANUAL) atc/atc.6
+diff -Naur bsd-games-2.17/battlestar/Makefrag bsd-games-patch/battlestar/Makefrag
+--- bsd-games-2.17/battlestar/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/battlestar/Makefrag	2020-04-23 20:24:04.482175771 +0700
+@@ -32,7 +32,8 @@
+ battlestar_all:	battlestar/battlestar battlestar/battlestar.6
+ 
+ battlestar_install:	battlestar_all
+-	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/.battlestar-real
+ 	$(HIDE_GAME) battlestar
+ 	$(INSTALL_MANUAL) battlestar/battlestar.6
+ 	$(INSTALL_SCORE_FILE) $(BATTLESTAR_SCOREFILE)
+diff -Naur bsd-games-2.17/canfield/canfield/Makefrag bsd-games-patch/canfield/canfield/Makefrag
+--- bsd-games-2.17/canfield/canfield/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/canfield/canfield/Makefrag	2020-04-23 20:24:04.522175270 +0700
+@@ -31,7 +31,8 @@
+ canfield_canfield_all:	canfield/canfield/canfield canfield/canfield/canfield.6
+ 
+ canfield_canfield_install: canfield_canfield_all
+-	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/.canfield-real
+ 	$(HIDE_GAME) canfield
+ 	$(INSTALL_MANUAL) canfield/canfield/canfield.6
+ 	$(INSTALL_SCORE_FILE) $(CANFIELD_SCOREFILE)
+diff -Naur bsd-games-2.17/cribbage/Makefrag bsd-games-patch/cribbage/Makefrag
+--- bsd-games-2.17/cribbage/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/cribbage/Makefrag	2020-04-23 20:24:04.534175120 +0700
+@@ -31,7 +31,8 @@
+ cribbage_all:	cribbage/cribbage cribbage/cribbage.n cribbage/cribbage.6
+ 
+ cribbage_install:	cribbage_all
+-	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/.cribbage-real
+ 	$(HIDE_GAME) cribbage
+ 	$(INSTALL_DATA) cribbage/cribbage.n $(INSTALL_PREFIX)$(CRIBBAGE_INSTRFILE)
+ 	$(INSTALL_SCORE_FILE) $(CRIBBAGE_SCOREFILE)
+diff -Naur bsd-games-2.17/hack/Makefrag bsd-games-patch/hack/Makefrag
+--- bsd-games-2.17/hack/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hack/Makefrag	2020-04-23 20:24:04.590174419 +0700
+@@ -53,7 +53,8 @@
+ hack/hack.zap.d hack/rnd.d:	hack/hack.onames.h
+ 
+ hack_install:	hack_all
+-	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/.hack-real
+ 	$(HIDE_GAME) hack
+ 	$(INSTALL_HACK_DIR) $(INSTALL_PREFIX)$(HACK_DIR)
+ 	set -e; for f in data help hh rumors; do $(INSTALL_DATA) hack/$$f $(INSTALL_PREFIX)$(HACK_DIR)/$$f; done
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-23 20:24:04.650173667 +0700
+@@ -38,7 +38,8 @@
+ 	touch phantasia/scorefiles.stamp
+ 
+ phantasia_install:	phantasia_all
+-	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/.phantasia-real
+ 	$(HIDE_GAME) phantasia
+ 	(set -e; for f in $(phantasia_VFILES1); do \
+ 	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+diff -Naur bsd-games-2.17/robots/Makefrag bsd-games-patch/robots/Makefrag
+--- bsd-games-2.17/robots/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/robots/Makefrag	2020-04-23 20:24:04.702173016 +0700
+@@ -32,7 +32,8 @@
+ robots_all:	robots/robots robots/robots.6
+ 
+ robots_install:	robots_all
+-	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/.robots-real
+ 	$(HIDE_GAME) robots
+ 	$(INSTALL_SCORE_FILE) $(ROBOTS_SCOREFILE)
+ 	$(INSTALL_MANUAL) robots/robots.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-23 20:24:04.710172917 +0700
+@@ -31,7 +31,8 @@
+ sail_all:	sail/sail sail/sail.6
+ 
+ sail_install:	sail_all
+-	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/.sail-real
+ 	$(HIDE_GAME) sail
+ 	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+ 	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+diff -Naur bsd-games-2.17/snake/snake/Makefrag bsd-games-patch/snake/snake/Makefrag
+--- bsd-games-2.17/snake/snake/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/snake/snake/Makefrag	2020-04-23 20:24:04.722172766 +0700
+@@ -31,7 +31,8 @@
+ snake_snake_all:	snake/snake/snake snake/snake/snake.6
+ 
+ snake_snake_install:	snake_snake_all
+-	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/.snake-real
+ 	$(HIDE_GAME) snake
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_SCOREFILE)
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_RAWSCOREFILE)
+diff -Naur bsd-games-2.17/tetris/Makefrag bsd-games-patch/tetris/Makefrag
+--- bsd-games-2.17/tetris/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tetris/Makefrag	2020-04-23 20:24:04.734172616 +0700
+@@ -32,7 +32,8 @@
+ tetris_all:	tetris/tetris tetris/tetris.6
+ 
+ tetris_install:	tetris_all
+-	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/.tetris-bsd-real
+ 	$(HIDE_GAME) tetris-bsd
+ 	$(INSTALL_SCORE_FILE) $(TETRIS_SCOREFILE)
+ 	ln -f tetris/tetris.6 tetris/tetris-bsd.6
+diff -Naur bsd-games-2.17/wrapper bsd-games-patch/wrapper
+--- bsd-games-2.17/wrapper	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wrapper	2020-04-23 20:24:37.153766719 +0700
+@@ -0,0 +1,77 @@
++#!/bin/sh
++# this file works around limitations of read-only Store
++
++set -e
++
++check_empty_files () {
++    # those start empty
++    for f in ${@}
++    do
++        if [[ ! -f ${f} ]]
++        then
++            touch      ${f}
++            chmod ug+w ${f}
++            echo "$(pwd)/${f} RESTORED"
++        fi
++    done
++}
++# about chmod ug+w: lets imagine that the first player is a Wizard of the game
++# which is responsible for setting a proper groups and permissions by hand, if
++# those aren't OK.
++check_data_files () {
++    # those start with some initial data
++    for f in ${@}
++    do
++        if [[ ! -f ${f} ]]
++        then
++            cp STATIC_DATA/$(basename $(pwd))/${f} ${f}
++            chmod ug+w ${f}  # should be writable too
++            echo "$(pwd)/${f} RESTORED"
++        fi
++    done
++}
++visit_state_dir () {
++    state_dir=SAVE_FILES/${1}
++    if [[ ! -d ${state_dir} ]]
++    then
++        mkdir -p ${state_dir}
++    fi
++    cd ${state_dir}
++}
++
++game=$(basename $0)
++
++visit_state_dir
++case ${game} in
++    ### Games with score-files
++    *atc)
++        check_empty_files "atc_score";;
++    *battlestar)
++        check_empty_files "battlestar.log";;
++    *canfield)
++        check_empty_files "cfscores";;
++    *cribbage)
++        check_empty_files "criblog";;
++    *robots)
++        check_empty_files "robots_roll";;
++    *snake)
++        check_empty_files "snakerawscores" "snake.log";;
++    *tetris)
++        check_empty_files "tetris-bsd.scores";;
++    *sail)
++        visit_state_dir "sail"
++        check_empty_files "log";;
++    ### Games with saved state
++    *phantasia)
++        visit_state_dir "phantasia"
++        check_empty_files "characs" "gold" "lastdead"\
++                          "mess" "motd" "scoreboard" "void"
++        check_data_files "monsters";;
++    *hack)
++        visit_state_dir "hack"
++        check_empty_files "record" "perm"
++        check_data_files "data" "help" "hh" "rumors"
++        visit_state_dir "hack/save";;
++esac
++
++exec .${game}-real ${@}
diff --git a/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
new file mode 100644
index 0000000000..f783813e95
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
@@ -0,0 +1,22 @@
+diff --git a/hunt/hunt/playit.c b/hunt/hunt/playit.c
+index 9acf86e..881a4e7 100644
+--- a/hunt/hunt/playit.c
++++ b/hunt/hunt/playit.c
+@@ -114,7 +114,7 @@ playit()
+ 		bad_con();
+ 		/* NOTREACHED */
+ 	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+ 		bad_ver();
+ 		/* NOTREACHED */
+ 	}
+@@ -649,7 +649,7 @@ do_message()
+ 		bad_con();
+ 		/* NOTREACHED */
+ 	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+ 		bad_ver();
+ 		/* NOTREACHED */
+ 	}
diff --git a/gnu/packages/patches/bsd-games-dont-install-empty-files.patch b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
new file mode 100644
index 0000000000..0cb7deab5a
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
@@ -0,0 +1,87 @@
+Those games rely on user to provide the files to write scores in.
+Those score-files are initially empty.  Anyway, the Store is read-only.
+So we do not install those empty files.
+
+diff -Naur bsd-games-2.17/install-score.in bsd-games-patch/install-score.in
+--- bsd-games-2.17/install-score.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-score.in	2020-04-22 21:41:47.810544804 +0700
+@@ -1,45 +0,0 @@
+-# install-score.in - install a score file
+-#
+-# Copyright (c) 1997, 1998, 1999 Joseph Samuel Myers.
+-# All rights reserved.
+-#
+-# Redistribution and use in source and binary forms, with or without
+-# modification, are permitted provided that the following conditions
+-# are met:
+-# 1. Redistributions of source code must retain the above copyright
+-#    notice, this list of conditions and the following disclaimer.
+-# 2. Redistributions in binary form must reproduce the above copyright
+-#    notice, this list of conditions and the following disclaimer in the
+-#    documentation and/or other materials provided with the distribution.
+-# 3. The name of the author may not be used to endorse or promote products
+-#    derived from this software without specific prior written permission.
+-#
+-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+-# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+-# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+-# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+-# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+-# SUCH DAMAGE.
+-
+-set -e
+-
+-if [ "$1" = "-p" ]; then
+-    scorefile="@install_prefix@$2"
+-    perms=@vardata_perms_priv@
+-else
+-    scorefile="@install_prefix@$1"
+-    perms=@vardata_perms@
+-fi
+-
+-mkdir -p "$(dirname "$scorefile")"
+-
+-test -e "$scorefile" || touch "$scorefile"
+-if [ @do_chown@ = y ]; then
+-    chown @vardata_owner@:@vardata_group@ "$scorefile"
+-fi
+-chmod "$perms" "$scorefile"
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-22 21:26:00.162409464 +0700
+@@ -27,9 +27,8 @@
+ # SUCH DAMAGE.
+ 
+ phantasia_DIRS := $(GAMESDIR) $(MAN6DIR) $(PHANTASIA_DIR)
+-phantasia_VFILES1 := gold lastdead mess monsters motd void
+-phantasia_VFILES2 := scoreboard characs
+-phantasia_CLEANFILES := $(phantasia_VFILES1) $(phantasia_VFILES2) scorefiles.stamp
++phantasia_VFILES1 := monsters
++phantasia_CLEANFILES := $(phantasia_VFILES1) scorefiles.stamp
+ 
+ phantasia_all:	phantasia/phantasia phantasia/phantasia.6 phantasia/scorefiles.stamp
+ 
+@@ -43,9 +42,4 @@
+ 	(set -e; for f in $(phantasia_VFILES1); do \
+ 	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+ 	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/$$f; done)
+-	(set -e; for f in $(phantasia_VFILES2); do \
+-	    if [ ! -e $(PHANTASIA_DIR)/$$f ]; then \
+-		cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; fi; done; \
+-	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/scoreboard; \
+-	    $(INSTALL_SCORE_FILE) -p $(PHANTASIA_DIR)/characs)
+ 	$(INSTALL_MANUAL) phantasia/phantasia.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-22 21:26:48.701801676 +0700
+@@ -34,5 +34,4 @@
+ 	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
+ 	$(HIDE_GAME) sail
+ 	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+-	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+ 	$(INSTALL_MANUAL) sail/sail.6
diff --git a/gnu/packages/patches/bsd-games-fix-number-test.patch b/gnu/packages/patches/bsd-games-fix-number-test.patch
new file mode 100644
index 0000000000..26ff84e51f
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-fix-number-test.patch
@@ -0,0 +1,32 @@
+number is a program that translates the decimal numbers like this:
+0.1 --> one tenth_.
+0.2 --> two tenth_S.
+This patch fix the test.
+
+diff -Naur bsd-games-2.17/tests/number.-0.1 bsd-games-patch/tests/number.-0.1
+--- bsd-games-2.17/tests/number.-0.1	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.1	2020-04-17 15:14:27.831098084 +0700
+@@ -1,3 +1,3 @@
+ minus
+ one.
+-tenths.
++tenth.
+diff -Naur bsd-games-2.17/tests/number.-0.2 bsd-games-patch/tests/number.-0.2
+--- bsd-games-2.17/tests/number.-0.2	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.2	2020-04-17 15:20:48.162336279 +0700
+@@ -0,0 +1,3 @@
++minus
++two.
++tenths.
+diff -Naur bsd-games-2.17/tests/number.test bsd-games-patch/tests/number.test
+--- bsd-games-2.17/tests/number.test	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.test	2020-04-17 15:20:22.774654155 +0700
+@@ -36,6 +36,8 @@
+ testno 1
+ number/number -- -0.1 >test.out 2>&1 || failtest
+ compare test.out tests/number.-0.1
++number/number -- -0.2 >test.out 2>&1 || failtest
++compare test.out tests/number.-0.2
+ rm -f test.out
+ 
+ testno 2
diff --git a/gnu/packages/patches/bsd-games-gamescreen.h.patch b/gnu/packages/patches/bsd-games-gamescreen.h.patch
new file mode 100644
index 0000000000..f74ebcb4be
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-gamescreen.h.patch
@@ -0,0 +1,15 @@
+--- a/dab/gamescreen.h	2004-01-02 23:34:51.000000000 +0530
++++ b/dab/gamescreen.h	2008-07-31 23:45:19.000000000 +0530
+@@ -70,9 +70,9 @@
+     virtual void redraw(void) = 0;			// Refresh
+     virtual int getinput(void) = 0;			// Get user input
+     virtual void bell(void) = 0;			// Beep
+-    virtual void score(size_t p, const PLAYER& p) = 0;	// Post current score
+-    virtual void games(size_t p, const PLAYER& p) = 0;	// Post games won
+-    virtual void total(size_t p, const PLAYER& p) = 0;	// Post total score
++    virtual void score(size_t, const PLAYER&) = 0;	// Post current score
++    virtual void games(size_t, const PLAYER&) = 0;	// Post games won
++    virtual void total(size_t, const PLAYER&) = 0;	// Post total score
+     virtual void ties(const PLAYER& p) = 0;		// Post tie games
+ };
+ 
diff --git a/gnu/packages/patches/bsd-games-getline.patch b/gnu/packages/patches/bsd-games-getline.patch
new file mode 100644
index 0000000000..99a6638477
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-getline.patch
@@ -0,0 +1,194 @@
+diff -Naur bsd-games-2.17/boggle/boggle/bog.c bsd-games-2.17.1/boggle/boggle/bog.c
+--- bsd-games-2.17/boggle/boggle/bog.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/bog.c	2010-05-22 10:51:23.000000000 -0500
+@@ -336,7 +336,7 @@
+ 	}
+ 
+ 	while (1) {
+-		if (getline(buf) == NULL) {
++		if (boggle_getline(buf) == NULL) {
+ 			if (feof(stdin))
+ 				clearerr(stdin);
+ 			break;
+diff -Naur bsd-games-2.17/boggle/boggle/extern.h bsd-games-2.17.1/boggle/boggle/extern.h
+--- bsd-games-2.17/boggle/boggle/extern.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/extern.h	2010-05-22 10:51:23.000000000 -0500
+@@ -43,7 +43,7 @@
+ long	 dictseek(FILE *, long, int);
+ void	 findword(void);
+ void	 flushin(FILE *);
+-char	*getline(char *);
++char	*boggle_getline(char *);
+ void	 getword(char *);
+ int	 help(void);
+ int	 inputch(void);
+diff -Naur bsd-games-2.17/boggle/boggle/mach.c bsd-games-2.17.1/boggle/boggle/mach.c
+--- bsd-games-2.17/boggle/boggle/mach.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/mach.c	2010-05-22 10:51:23.000000000 -0500
+@@ -168,7 +168,7 @@
+  * - doesn't accept words longer than MAXWORDLEN or containing caps
+  */
+ char *
+-getline(q)
++boggle_getline(q)
+ 	char *q;
+ {
+ 	int ch, done;
+diff -Naur bsd-games-2.17/cribbage/cribbage.h bsd-games-2.17.1/cribbage/cribbage.h
+--- bsd-games-2.17/cribbage/cribbage.h	2004-02-08 16:29:14.000000000 -0600
++++ bsd-games-2.17.1/cribbage/cribbage.h	2010-05-22 10:51:23.000000000 -0500
+@@ -77,7 +77,7 @@
+ int	 fifteens(const CARD [], int);
+ void	 game(void);
+ void	 gamescore(void);
+-char	*getline(void);
++char	*cribbage_getline(void);
+ int	 getuchar(void);
+ int	 incard(CARD *);
+ int	 infrom(const CARD [], int, const char *);
+diff -Naur bsd-games-2.17/cribbage/crib.c bsd-games-2.17.1/cribbage/crib.c
+--- bsd-games-2.17/cribbage/crib.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/cribbage/crib.c	2010-05-22 10:51:23.000000000 -0500
+@@ -221,7 +221,7 @@
+ 			if (!rflag) {			/* player cuts deck */
+ 				msg(quiet ? "Cut for crib? " :
+ 			    "Cut to see whose crib it is -- low card wins? ");
+-				getline();
++				cribbage_getline();
+ 			}
+ 			i = (rand() >> 4) % CARDS;	/* random cut */
+ 			do {	/* comp cuts deck */
+@@ -397,7 +397,7 @@
+ 		if (!rflag) {	/* random cut */
+ 			msg(quiet ? "Cut the deck? " :
+ 		    "How many cards down do you wish to cut the deck? ");
+-			getline();
++			cribbage_getline();
+ 		}
+ 		i = (rand() >> 4) % (CARDS - pos);
+ 		turnover = deck[i + pos];
+diff -Naur bsd-games-2.17/cribbage/io.c bsd-games-2.17.1/cribbage/io.c
+--- bsd-games-2.17/cribbage/io.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/cribbage/io.c	2010-05-22 10:51:23.000000000 -0500
+@@ -245,7 +245,7 @@
+ 
+ 	retval = FALSE;
+ 	rnk = sut = EMPTY;
+-	if (!(line = getline()))
++	if (!(line = cribbage_getline()))
+ 		goto gotit;
+ 	p = p1 = line;
+ 	while (*p1 != ' ' && *p1 != '\0')
+@@ -346,7 +346,7 @@
+ 
+ 	for (sum = 0;;) {
+ 		msg(prompt);
+-		if (!(p = getline()) || *p == '\0') {
++		if (!(p = cribbage_getline()) || *p == '\0') {
+ 			msg(quiet ? "Not a number" :
+ 			    "That doesn't look like a number");
+ 			continue;
+@@ -528,12 +528,12 @@
+ }
+ 
+ /*
+- * getline:
++ * cribbage_getline:
+  *      Reads the next line up to '\n' or EOF.  Multiple spaces are
+  *	compressed to one space; a space is inserted before a ','
+  */
+ char *
+-getline()
++cribbage_getline()
+ {
+ 	char *sp;
+ 	int c, oy, ox;
+diff -Naur bsd-games-2.17/gomoku/bdisp.c bsd-games-2.17.1/gomoku/bdisp.c
+--- bsd-games-2.17/gomoku/bdisp.c	2003-12-16 20:47:37.000000000 -0600
++++ bsd-games-2.17.1/gomoku/bdisp.c	2010-05-22 10:51:23.000000000 -0500
+@@ -241,7 +241,7 @@
+ }
+ 
+ int
+-getline(buf, size)
++gomoku_getline(buf, size)
+ 	char *buf;
+ 	int size;
+ {
+diff -Naur bsd-games-2.17/gomoku/gomoku.h bsd-games-2.17.1/gomoku/gomoku.h
+--- bsd-games-2.17/gomoku/gomoku.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/gomoku.h	2010-05-22 10:51:23.000000000 -0500
+@@ -263,7 +263,7 @@
+ 
+ void	bdinit(struct spotstr *);
+ void	init_overlap(void);
+-int	getline(char *, int);
++int	gomoku_getline(char *, int);
+ void	ask(const char *);
+ void	dislog(const char *);
+ void	bdump(FILE *);
+diff -Naur bsd-games-2.17/gomoku/main.c bsd-games-2.17.1/gomoku/main.c
+--- bsd-games-2.17/gomoku/main.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/main.c	2010-05-22 10:51:23.000000000 -0500
+@@ -155,7 +155,7 @@
+ 		if (inputfp == NULL && test == 0) {
+ 			for (;;) {
+ 				ask("black or white? ");
+-				getline(buf, sizeof(buf));
++				gomoku_getline(buf, sizeof(buf));
+ 				if (buf[0] == 'b' || buf[0] == 'B') {
+ 					color = BLACK;
+ 					break;
+@@ -172,7 +172,7 @@
+ 		}
+ 	} else {
+ 		setbuf(stdout, 0);
+-		getline(buf, sizeof(buf));
++		gomoku_getline(buf, sizeof(buf));
+ 		if (strcmp(buf, "black") == 0)
+ 			color = BLACK;
+ 		else if (strcmp(buf, "white") == 0)
+@@ -244,7 +244,7 @@
+ 		getinput:
+ 			if (interactive)
+ 				ask("move? ");
+-			if (!getline(buf, sizeof(buf))) {
++			if (!gomoku_getline(buf, sizeof(buf))) {
+ 				curmove = RESIGN;
+ 				break;
+ 			}
+@@ -256,7 +256,7 @@
+ 					FILE *fp;
+ 
+ 					ask("save file name? ");
+-					(void)getline(buf, sizeof(buf));
++					(void)gomoku_getline(buf, sizeof(buf));
+ 					if ((fp = fopen(buf, "w")) == NULL) {
+ 						glog("cannot create save file");
+ 						goto getinput;
+@@ -309,14 +309,14 @@
+ 		if (i != RESIGN) {
+ 		replay:
+ 			ask("replay? ");
+-			if (getline(buf, sizeof(buf)) &&
++			if (gomoku_getline(buf, sizeof(buf)) &&
+ 			    (buf[0] == 'y' || buf[0] == 'Y'))
+ 				goto again;
+ 			if (strcmp(buf, "save") == 0) {
+ 				FILE *fp;
+ 
+ 				ask("save file name? ");
+-				(void)getline(buf, sizeof(buf));
++				(void)gomoku_getline(buf, sizeof(buf));
+ 				if ((fp = fopen(buf, "w")) == NULL) {
+ 					glog("cannot create save file");
+ 					goto replay;
+@@ -367,7 +367,7 @@
+ 		quit();
+ top:
+ 	ask("cmd? ");
+-	if (!getline(fmtbuf, sizeof(fmtbuf)))
++	if (!gomoku_getline(fmtbuf, sizeof(fmtbuf)))
+ 		quit();
+ 	switch (*fmtbuf) {
+ 	case '\0':
diff --git a/gnu/packages/patches/bsd-games-null-check.patch b/gnu/packages/patches/bsd-games-null-check.patch
new file mode 100644
index 0000000000..048ed93f40
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-null-check.patch
@@ -0,0 +1,24 @@
+diff --git a/hunt/hunt/hunt.c b/hunt/hunt/hunt.c
+index 11f4c44..28321bc 100644
+--- a/hunt/hunt/hunt.c
++++ b/hunt/hunt/hunt.c
+@@ -394,7 +394,8 @@ broadcast_vec(s, vector)
+ 
+ 	vec_cnt = 0;
+ 	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+ 		    (ip->ifa_flags & IFF_BROADCAST))
+ 			vec_cnt++;
+ 
+@@ -405,7 +406,8 @@ broadcast_vec(s, vector)
+ 
+ 	vec_cnt = 0;
+ 	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+ 		    (ip->ifa_flags & IFF_BROADCAST))
+ 			memcpy(&(*vector)[vec_cnt++], ip->ifa_broadaddr,
+ 			       sizeof(struct sockaddr_in));
diff --git a/gnu/packages/patches/bsd-games-number.c.patch b/gnu/packages/patches/bsd-games-number.c.patch
new file mode 100644
index 0000000000..1acbeff30a
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-number.c.patch
@@ -0,0 +1,156 @@
+--- bsdgames-2.17.orig/number/number.c
++++ bsdgames-2.17/number/number.c
+@@ -78,9 +78,9 @@
+ 
+ void	convert(char *);
+ int	main(int, char *[]);
+-int	number(const char *, int);
+-void	pfract(int);
+-int	unit(int, const char *);
++int	number(const char *, int, int *);
++void	pfract(int, int);
++int	unit(int, const char *, int *);
+ void	usage(void) __attribute__((__noreturn__));
+ 
+ int lflag;
+@@ -131,7 +131,7 @@
+ convert(line)
+ 	char *line;
+ {
+-	int flen, len, rval;
++	int flen, len, rval, singular;
+ 	char *p, *fraction;
+ 
+ 	flen = 0;
+@@ -174,7 +174,7 @@
+ 		--len;
+ 	}
+ 
+-	rval = len > 0 ? unit(len, line) : 0;
++	rval = len > 0 ? unit(len, line, &singular) : 0;
+ 	if (fraction != NULL && flen != 0)
+ 		for (p = fraction; *p != '\0'; ++p)
+ 			if (*p != '0') {
+@@ -182,10 +182,10 @@
+ 					(void)printf("%sand%s",
+ 					    lflag ? " " : "",
+ 					    lflag ? " " : "\n");
+-				if (unit(flen, fraction)) {
++				if (unit(flen, fraction, &singular)) {
+ 					if (lflag)
+ 						(void)printf(" ");
+-					pfract(flen);
++					pfract(flen, singular);
+ 					rval = 1;
+ 				}
+ 				break;
+@@ -197,9 +197,10 @@
+ }
+ 
+ int
+-unit(len, p)
++unit(len, p, singular)
+ 	int len;
+ 	const char *p;
++	int *singular;
+ {
+ 	int off, rval;
+ 
+@@ -208,7 +209,7 @@
+ 		if (len % 3) {
+ 			off = len % 3;
+ 			len -= off;
+-			if (number(p, off)) {
++			if (number(p, off, singular)) {
+ 				rval = 1;
+ 				(void)printf(" %s%s",
+ 				    name3[len / 3], lflag ? " " : ".\n");
+@@ -217,14 +218,16 @@
+ 		}
+ 		for (; len > 3; p += 3) {
+ 			len -= 3;
+-			if (number(p, 3)) {
++			if (number(p, 3, singular)) {
+ 				rval = 1;
+ 				(void)printf(" %s%s",
+ 				    name3[len / 3], lflag ? " " : ".\n");
+ 			}
+ 		}
+ 	}
+-	if (number(p, len)) {
++	if (number(p, len, singular)) {
++		if (rval)
++			*singular = 0;
+ 		if (!lflag)
+ 			(void)printf(".\n");
+ 		rval = 1;
+@@ -233,17 +236,20 @@
+ }
+ 
+ int
+-number(p, len)
++number(p, len, singular)
+ 	const char *p;
+ 	int len;
++	int *singular;
+ {
+ 	int val, rval;
+ 
+ 	rval = 0;
++	*singular = 1;
+ 	switch (len) {
+ 	case 3:
+ 		if (*p != '0') {
+ 			rval = 1;
++			*singular = 0;
+ 			(void)printf("%s hundred", name1[*p - '0']);
+ 		}
+ 		++p;
+@@ -262,33 +268,42 @@
+ 			}
+ 			rval = 1;
+ 		}
++		if (val != 1)
++			*singular = 0;
+ 		break;
+ 	case 1:
+ 		if (*p != '0') {
+ 			rval = 1;
+ 			(void)printf("%s", name1[*p - '0']);
+ 		}
++		if (*p != '1')
++			*singular = 0;
+ 	}
+ 	return (rval);
+ }
+ 
+ void
+-pfract(len)
++pfract(len, singular)
+ 	int len;
++	int singular;
+ {
+ 	static const char *const pref[] = { "", "ten-", "hundred-" };
+ 
+ 	switch(len) {
+ 	case 1:
+-		(void)printf("tenths.\n");
++		(void)printf("tenth");
+ 		break;
+ 	case 2:
+-		(void)printf("hundredths.\n");
++		(void)printf("hundredth");
+ 		break;
+ 	default:
+-		(void)printf("%s%sths.\n", pref[len % 3], name3[len / 3]);
++		(void)printf("%s%sth", pref[len % 3], name3[len / 3]);
+ 		break;
+ 	}
++	if (!singular) {
++		printf("s");
++	}
++	printf(".\n");
+ }
+ 
+ void
+
diff --git a/gnu/packages/patches/bsd-games-stdio.h.patch b/gnu/packages/patches/bsd-games-stdio.h.patch
new file mode 100644
index 0000000000..786fa54c4f
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-stdio.h.patch
@@ -0,0 +1,14 @@
+diff -ru a/include/stdio.h b/include/stdio.h
+--- a/include/stdio.h	2000-08-04 10:24:39.000000000 +1000
++++ b/include/stdio.h	2005-06-18 14:26:35.000000000 +1000
+@@ -34,6 +34,10 @@
+ #include <bsd-games.h>
+ #include_next <stdio.h>
+ 
++__BEGIN_DECLS
++
+ #ifndef HAVE_fgetln
+ extern char *fgetln(FILE *stream, size_t *len);
+ #endif
++
++__END_DECLS
diff --git a/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch b/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
new file mode 100644
index 0000000000..3b923170b2
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
@@ -0,0 +1,641 @@
+This append the prefix 'bsd-' to the executables, and the manual pages.  This
+prevents the name collisions, ever.  Also it allow the user to type "bsd-",
+press the Tab key, and see the list of all bsd-games at once, which is nice.
+The games were tested after this renaming, and they do work.
+
+Also this patch hides teachgammon, as this is an executable for tutorial of
+backgammon game.  The tutorial is offered to the user at the game start.
+
+diff -Naur bsd-games-2.17/adventure/Makefrag bsd-games-patch/adventure/Makefrag
+--- bsd-games-2.17/adventure/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/adventure/Makefrag	2020-04-23 22:10:57.717880094 +0700
+@@ -35,6 +35,6 @@
+ 	adventure/setup $< >$@
+ 
+ adventure_install:	adventure_all
+-	$(INSTALL_BINARY) adventure/adventure $(INSTALL_PREFIX)$(GAMESDIR)/adventure
++	$(INSTALL_BINARY) adventure/adventure $(INSTALL_PREFIX)$(GAMESDIR)/bsd-adventure
+ 	$(HIDE_GAME) adventure
+ 	$(INSTALL_MANUAL) adventure/adventure.6
+diff -Naur bsd-games-2.17/arithmetic/Makefrag bsd-games-patch/arithmetic/Makefrag
+--- bsd-games-2.17/arithmetic/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/arithmetic/Makefrag	2020-04-23 22:10:57.721880044 +0700
+@@ -32,6 +32,6 @@
+ arithmetic_all:	arithmetic/arithmetic arithmetic/arithmetic.6
+ 
+ arithmetic_install:	arithmetic/arithmetic
+-	$(INSTALL_BINARY) arithmetic/arithmetic $(INSTALL_PREFIX)$(GAMESDIR)/arithmetic
++	$(INSTALL_BINARY) arithmetic/arithmetic $(INSTALL_PREFIX)$(GAMESDIR)/bsd-arithmetic
+ 	$(HIDE_GAME) arithmetic
+ 	$(INSTALL_MANUAL) arithmetic/arithmetic.6
+diff -Naur bsd-games-2.17/atc/Makefrag bsd-games-patch/atc/Makefrag
+--- bsd-games-2.17/atc/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/atc/Makefrag	2020-04-23 22:10:57.729879944 +0700
+@@ -47,8 +47,8 @@
+ 	mv atc/lex.yy.c $@
+ 
+ atc_install:	atc_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/atc
+-	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/.atc-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-atc
++	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-atc-real
+ 	$(HIDE_GAME) atc
+ 	$(INSTALL_SCORE_FILE) $(ATC_SCOREFILE)
+ 	$(INSTALL_MANUAL) atc/atc.6
+diff -Naur bsd-games-2.17/backgammon/backgammon/Makefrag bsd-games-patch/backgammon/backgammon/Makefrag
+--- bsd-games-2.17/backgammon/backgammon/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/backgammon/Makefrag	2020-04-23 22:10:57.741879794 +0700
+@@ -33,6 +33,6 @@
+ backgammon_backgammon_all:	backgammon/backgammon/backgammon backgammon/backgammon/backgammon.6
+ 
+ backgammon_backgammon_install:	backgammon_backgammon_all
+-	$(INSTALL_BINARY) backgammon/backgammon/backgammon $(INSTALL_PREFIX)$(GAMESDIR)/backgammon
++	$(INSTALL_BINARY) backgammon/backgammon/backgammon $(INSTALL_PREFIX)$(GAMESDIR)/bsd-backgammon
+ 	$(HIDE_GAME) backgammon
+ 	$(INSTALL_MANUAL) backgammon/backgammon/backgammon.6
+diff -Naur bsd-games-2.17/backgammon/common_source/Makefrag bsd-games-patch/backgammon/common_source/Makefrag
+--- bsd-games-2.17/backgammon/common_source/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/common_source/Makefrag	2020-04-23 22:10:57.749879693 +0700
+@@ -26,8 +26,8 @@
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ # SUCH DAMAGE.
+ 
+-backgammon_common_source_EXEC_PATH := $(GAMESDIR)/backgammon
+-backgammon_common_source_TEACH_PATH := $(GAMESDIR)/teachgammon
++backgammon_common_source_EXEC_PATH := $(GAMESDIR)/bsd-backgammon
++backgammon_common_source_TEACH_PATH := $(GAMESDIR)/.bsd-teachgammon
+ 
+ backgammon_common_source_DEFS := -DEXEC_PATH=\"$(backgammon_common_source_EXEC_PATH)\" -DTEACH_PATH=\"$(backgammon_common_source_TEACH_PATH)\"
+ 
+diff -Naur bsd-games-2.17/backgammon/teachgammon/Makefrag bsd-games-patch/backgammon/teachgammon/Makefrag
+--- bsd-games-2.17/backgammon/teachgammon/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/teachgammon/Makefrag	2020-04-23 22:10:57.753879644 +0700
+@@ -33,6 +33,6 @@
+ backgammon_teachgammon_all:	backgammon/teachgammon/teachgammon
+ 
+ backgammon_teachgammon_install:	backgammon_teachgammon_all
+-	$(INSTALL_BINARY) backgammon/teachgammon/teachgammon $(INSTALL_PREFIX)$(GAMESDIR)/teachgammon
++	$(INSTALL_BINARY) backgammon/teachgammon/teachgammon $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-teachgammon
+ 	$(HIDE_GAME) teachgammon
+ 	$(INSTALL_MANUAL) backgammon.6 teachgammon.6
+diff -Naur bsd-games-2.17/banner/Makefrag bsd-games-patch/banner/Makefrag
+--- bsd-games-2.17/banner/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/banner/Makefrag	2020-04-23 22:10:57.761879543 +0700
+@@ -31,6 +31,6 @@
+ banner_all:	banner/banner banner/banner.6
+ 
+ banner_install:	banner_all
+-	$(INSTALL_BINARY) banner/banner $(INSTALL_PREFIX)$(GAMESDIR)/banner
++	$(INSTALL_BINARY) banner/banner $(INSTALL_PREFIX)$(GAMESDIR)/bsd-banner
+ 	$(HIDE_GAME) banner
+ 	$(INSTALL_MANUAL) banner/banner.6
+diff -Naur bsd-games-2.17/battlestar/Makefrag bsd-games-patch/battlestar/Makefrag
+--- bsd-games-2.17/battlestar/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/battlestar/Makefrag	2020-04-23 22:10:57.769879443 +0700
+@@ -32,8 +32,8 @@
+ battlestar_all:	battlestar/battlestar battlestar/battlestar.6
+ 
+ battlestar_install:	battlestar_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
+-	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/.battlestar-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-battlestar
++	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-battlestar-real
+ 	$(HIDE_GAME) battlestar
+ 	$(INSTALL_MANUAL) battlestar/battlestar.6
+ 	$(INSTALL_SCORE_FILE) $(BATTLESTAR_SCOREFILE)
+diff -Naur bsd-games-2.17/bcd/Makefrag bsd-games-patch/bcd/Makefrag
+--- bsd-games-2.17/bcd/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/bcd/Makefrag	2020-04-23 22:10:57.773879393 +0700
+@@ -31,6 +31,6 @@
+ bcd_all:	bcd/bcd bcd/bcd.6
+ 
+ bcd_install:	bcd_all
+-	$(INSTALL_BINARY) bcd/bcd $(INSTALL_PREFIX)$(GAMESDIR)/bcd
++	$(INSTALL_BINARY) bcd/bcd $(INSTALL_PREFIX)$(GAMESDIR)/bsd-bcd
+ 	$(HIDE_GAME) bcd
+ 	$(INSTALL_MANUAL) bcd/bcd.6
+diff -Naur bsd-games-2.17/boggle/boggle/Makefrag bsd-games-patch/boggle/boggle/Makefrag
+--- bsd-games-2.17/boggle/boggle/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/boggle/boggle/Makefrag	2020-04-23 22:10:57.785879242 +0700
+@@ -35,7 +35,7 @@
+ boggle_boggle_all:	boggle/boggle/boggle boggle/boggle/boggle.6 boggle/boggle/helpfile
+ 
+ boggle_boggle_install:	boggle_boggle_all
+-	$(INSTALL_BINARY) boggle/boggle/boggle $(INSTALL_PREFIX)$(GAMESDIR)/boggle
++	$(INSTALL_BINARY) boggle/boggle/boggle $(INSTALL_PREFIX)$(GAMESDIR)/bsd-boggle
+ 	$(HIDE_GAME) boggle
+ 	$(INSTALL_MANUAL) boggle/boggle/boggle.6
+ 	$(INSTALL_DATA) boggle/boggle/helpfile $(INSTALL_PREFIX)$(BOGGLE_DIR)/helpfile
+diff -Naur bsd-games-2.17/caesar/Makefrag bsd-games-patch/caesar/Makefrag
+--- bsd-games-2.17/caesar/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/caesar/Makefrag	2020-04-23 22:10:57.805878993 +0700
+@@ -31,9 +31,9 @@
+ caesar_all:	caesar/caesar caesar/caesar.6 caesar/rot13
+ 
+ caesar_install:	caesar_all
+-	$(INSTALL_BINARY) caesar/caesar $(INSTALL_PREFIX)$(GAMESDIR)/caesar
++	$(INSTALL_BINARY) caesar/caesar $(INSTALL_PREFIX)$(GAMESDIR)/bsd-caesar
+ 	$(HIDE_GAME) caesar
+-	$(INSTALL_SCRIPT) caesar/rot13 $(INSTALL_PREFIX)$(GAMESDIR)/rot13
++	$(INSTALL_SCRIPT) caesar/rot13 $(INSTALL_PREFIX)$(GAMESDIR)/bsd-rot13
+ 	$(HIDE_GAME) rot13
+ 	$(INSTALL_MANUAL) caesar/caesar.6
+ 	$(INSTALL_MANUAL) caesar.6 rot13.6
+diff -Naur bsd-games-2.17/caesar/rot13.in bsd-games-patch/caesar/rot13.in
+--- bsd-games-2.17/caesar/rot13.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/caesar/rot13.in	2020-04-23 22:14:31.031209315 +0700
+@@ -34,4 +34,4 @@
+ #	@(#)rot13.sh	8.1 (Berkeley) 5/31/93
+ #
+ 
+-exec @gamesdir@/caesar 13 "$@"
++exec @gamesdir@/bsd-caesar 13 "$@"
+diff -Naur bsd-games-2.17/canfield/canfield/Makefrag bsd-games-patch/canfield/canfield/Makefrag
+--- bsd-games-2.17/canfield/canfield/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/canfield/canfield/Makefrag	2020-04-23 22:10:57.817878842 +0700
+@@ -31,8 +31,8 @@
+ canfield_canfield_all:	canfield/canfield/canfield canfield/canfield/canfield.6
+ 
+ canfield_canfield_install: canfield_canfield_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/canfield
+-	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/.canfield-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-canfield
++	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-canfield-real
+ 	$(HIDE_GAME) canfield
+ 	$(INSTALL_MANUAL) canfield/canfield/canfield.6
+ 	$(INSTALL_SCORE_FILE) $(CANFIELD_SCOREFILE)
+diff -Naur bsd-games-2.17/canfield/cfscores/Makefrag bsd-games-patch/canfield/cfscores/Makefrag
+--- bsd-games-2.17/canfield/cfscores/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/canfield/cfscores/Makefrag	2020-04-23 22:10:57.821878792 +0700
+@@ -32,6 +32,6 @@
+ canfield_cfscores_all:	canfield/cfscores/cfscores
+ 
+ canfield_cfscores_install:	canfield_cfscores_all
+-	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/cfscores
++	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/bsd-cfscores
+ 	$(HIDE_GAME) cfscores
+ 	$(INSTALL_MANUAL) canfield.6 cfscores.6
+diff -Naur bsd-games-2.17/countmail/Makefrag bsd-games-patch/countmail/Makefrag
+--- bsd-games-2.17/countmail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/countmail/Makefrag	2020-04-23 22:10:57.825878742 +0700
+@@ -31,6 +31,6 @@
+ countmail_all:	countmail/countmail countmail/countmail.6
+ 
+ countmail_install:	countmail_all
+-	$(INSTALL_SCRIPT) countmail/countmail $(INSTALL_PREFIX)$(GAMESDIR)/countmail
++	$(INSTALL_SCRIPT) countmail/countmail $(INSTALL_PREFIX)$(GAMESDIR)/bsd-countmail
+ 	$(HIDE_GAME) countmail
+ 	$(INSTALL_MANUAL) countmail/countmail.6
+diff -Naur bsd-games-2.17/cribbage/Makefrag bsd-games-patch/cribbage/Makefrag
+--- bsd-games-2.17/cribbage/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/cribbage/Makefrag	2020-04-23 22:10:57.833878642 +0700
+@@ -31,8 +31,8 @@
+ cribbage_all:	cribbage/cribbage cribbage/cribbage.n cribbage/cribbage.6
+ 
+ cribbage_install:	cribbage_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
+-	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/.cribbage-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-cribbage
++	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-cribbage-real
+ 	$(HIDE_GAME) cribbage
+ 	$(INSTALL_DATA) cribbage/cribbage.n $(INSTALL_PREFIX)$(CRIBBAGE_INSTRFILE)
+ 	$(INSTALL_SCORE_FILE) $(CRIBBAGE_SCOREFILE)
+diff -Naur bsd-games-2.17/dab/Makefrag bsd-games-patch/dab/Makefrag
+--- bsd-games-2.17/dab/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/dab/Makefrag	2020-04-23 22:10:57.837878591 +0700
+@@ -31,6 +31,6 @@
+ dab_all:	dab/dab dab/dab.6
+ 
+ dab_install:	dab_all
+-	$(INSTALL_BINARY) dab/dab $(INSTALL_PREFIX)$(GAMESDIR)/dab
++	$(INSTALL_BINARY) dab/dab $(INSTALL_PREFIX)$(GAMESDIR)/bsd-dab
+ 	$(HIDE_GAME) dab
+ 	$(INSTALL_MANUAL) dab/dab.6
+diff -Naur bsd-games-2.17/dm/Makefrag bsd-games-patch/dm/Makefrag
+--- bsd-games-2.17/dm/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/dm/Makefrag	2020-04-23 22:10:57.841878541 +0700
+@@ -33,6 +33,6 @@
+ dm_all:	dm/dm dm/dm.8 dm/dm.conf.5
+ 
+ dm_install:	dm_all
+-	$(INSTALL_DM) dm/dm $(INSTALL_PREFIX)$(GAMESDIR)/dm
++	$(INSTALL_DM) dm/dm $(INSTALL_PREFIX)$(GAMESDIR)/bsd-dm
+ 	$(INSTALL_MANUAL) dm/dm.8
+ 	$(INSTALL_MANUAL) dm/dm.conf.5
+diff -Naur bsd-games-2.17/factor/Makefrag bsd-games-patch/factor/Makefrag
+--- bsd-games-2.17/factor/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/factor/Makefrag	2020-04-23 22:10:57.845878492 +0700
+@@ -34,6 +34,6 @@
+ factor_all:	factor/factor factor/factor.6
+ 
+ factor_install:	factor_all
+-	$(INSTALL_BINARY) factor/factor $(INSTALL_PREFIX)$(GAMESDIR)/factor
++	$(INSTALL_BINARY) factor/factor $(INSTALL_PREFIX)$(GAMESDIR)/bsd-factor
+ 	$(HIDE_GAME) factor
+ 	$(INSTALL_MANUAL) factor/factor.6
+diff -Naur bsd-games-2.17/fish/Makefrag bsd-games-patch/fish/Makefrag
+--- bsd-games-2.17/fish/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fish/Makefrag	2020-04-23 22:10:57.849878441 +0700
+@@ -31,7 +31,7 @@
+ fish_all:	fish/fish fish/fish.instr fish/fish.6
+ 
+ fish_install:	fish_all
+-	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/fish
++	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/bsd-fish
+ 	$(HIDE_GAME) fish
+ 	$(INSTALL_DATA) fish/fish.instr $(INSTALL_PREFIX)$(FISH_INSTRFILE)
+ 	$(INSTALL_MANUAL) fish/fish.6
+diff -Naur bsd-games-2.17/fortune/fortune/Makefrag bsd-games-patch/fortune/fortune/Makefrag
+--- bsd-games-2.17/fortune/fortune/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/fortune/Makefrag	2020-04-23 22:10:57.865878241 +0700
+@@ -33,6 +33,6 @@
+ fortune_fortune_all:	fortune/fortune/fortune fortune/fortune/fortune.6
+ 
+ fortune_fortune_install:	fortune_fortune_all
+-	$(INSTALL_BINARY) fortune/fortune/fortune $(INSTALL_PREFIX)$(GAMESDIR)/fortune
++	$(INSTALL_BINARY) fortune/fortune/fortune $(INSTALL_PREFIX)$(GAMESDIR)/bsd-fortune
+ 	$(HIDE_GAME) fortune
+ 	$(INSTALL_MANUAL) fortune/fortune/fortune.6
+diff -Naur bsd-games-2.17/fortune/strfile/Makefrag bsd-games-patch/fortune/strfile/Makefrag
+--- bsd-games-2.17/fortune/strfile/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/strfile/Makefrag	2020-04-23 22:10:57.869878191 +0700
+@@ -31,5 +31,5 @@
+ fortune_strfile_all:	fortune/strfile/strfile fortune/strfile/strfile.8
+ 
+ fortune_strfile_install:	fortune_strfile_all
+-	$(INSTALL_BINARY) fortune/strfile/strfile $(INSTALL_PREFIX)$(USRBINDIR)/strfile
++	$(INSTALL_BINARY) fortune/strfile/strfile $(INSTALL_PREFIX)$(USRBINDIR)/bsd-strfile
+ 	$(INSTALL_MANUAL) fortune/strfile/strfile.8
+diff -Naur bsd-games-2.17/fortune/unstr/Makefrag bsd-games-patch/fortune/unstr/Makefrag
+--- bsd-games-2.17/fortune/unstr/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/unstr/Makefrag	2020-04-23 22:10:57.877878091 +0700
+@@ -33,4 +33,4 @@
+ 
+ # We don't install unstr.
+ fortune_unstr_install:	fortune_unstr_all
+-#	$(INSTALL_BINARY) fortune/unstr/unstr $(INSTALL_PREFIX)$(USRBINDIR)/unstr
++#	$(INSTALL_BINARY) fortune/unstr/unstr $(INSTALL_PREFIX)$(USRBINDIR)/bsd-unstr
+diff -Naur bsd-games-2.17/gomoku/Makefrag bsd-games-patch/gomoku/Makefrag
+--- bsd-games-2.17/gomoku/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/gomoku/Makefrag	2020-04-23 22:10:57.881878041 +0700
+@@ -31,6 +31,6 @@
+ gomoku_all:	gomoku/gomoku gomoku/gomoku.6
+ 
+ gomoku_install:	gomoku_all
+-	$(INSTALL_BINARY) gomoku/gomoku $(INSTALL_PREFIX)$(GAMESDIR)/gomoku
++	$(INSTALL_BINARY) gomoku/gomoku $(INSTALL_PREFIX)$(GAMESDIR)/bsd-gomoku
+ 	$(HIDE_GAME) gomoku
+ 	$(INSTALL_MANUAL) gomoku/gomoku.6
+diff -Naur bsd-games-2.17/hack/Makefrag bsd-games-patch/hack/Makefrag
+--- bsd-games-2.17/hack/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/hack/Makefrag	2020-04-23 22:10:57.885877991 +0700
+@@ -53,8 +53,8 @@
+ hack/hack.zap.d hack/rnd.d:	hack/hack.onames.h
+ 
+ hack_install:	hack_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/hack
+-	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/.hack-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hack
++	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-hack-real
+ 	$(HIDE_GAME) hack
+ 	$(INSTALL_HACK_DIR) $(INSTALL_PREFIX)$(HACK_DIR)
+ 	set -e; for f in data help hh rumors; do $(INSTALL_DATA) hack/$$f $(INSTALL_PREFIX)$(HACK_DIR)/$$f; done
+diff -Naur bsd-games-2.17/hangman/Makefrag bsd-games-patch/hangman/Makefrag
+--- bsd-games-2.17/hangman/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hangman/Makefrag	2020-04-23 22:10:57.889877940 +0700
+@@ -31,6 +31,6 @@
+ hangman_all:	hangman/hangman hangman/hangman.6
+ 
+ hangman_install:	hangman_all
+-	$(INSTALL_BINARY) hangman/hangman $(INSTALL_PREFIX)$(GAMESDIR)/hangman
++	$(INSTALL_BINARY) hangman/hangman $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hangman
+ 	$(HIDE_GAME) hangman
+ 	$(INSTALL_MANUAL) hangman/hangman.6
+diff -Naur bsd-games-2.17/hunt/hunt/Makefrag bsd-games-patch/hunt/hunt/Makefrag
+--- bsd-games-2.17/hunt/hunt/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/hunt/Makefrag	2020-04-23 22:10:57.901877791 +0700
+@@ -35,6 +35,6 @@
+ hunt_hunt_all:	hunt/hunt/hunt hunt/hunt/hunt.6
+ 
+ hunt_hunt_install:	hunt_hunt_all
+-	$(INSTALL_BINARY) hunt/hunt/hunt $(INSTALL_PREFIX)$(GAMESDIR)/hunt
++	$(INSTALL_BINARY) hunt/hunt/hunt $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hunt
+ 	$(HIDE_GAME) hunt
+ 	$(INSTALL_MANUAL) hunt/hunt/hunt.6
+diff -Naur bsd-games-2.17/hunt/huntd/Makefrag bsd-games-patch/hunt/huntd/Makefrag
+--- bsd-games-2.17/hunt/huntd/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/huntd/Makefrag	2020-04-23 22:10:57.905877740 +0700
+@@ -34,5 +34,5 @@
+ hunt_huntd_all:	hunt/huntd/huntd hunt/huntd/huntd.6
+ 
+ hunt_huntd_install:	hunt_huntd_all
+-	$(INSTALL_DAEMON) hunt/huntd/huntd $(INSTALL_PREFIX)$(SBINDIR)/huntd
++	$(INSTALL_DAEMON) hunt/huntd/huntd $(INSTALL_PREFIX)$(SBINDIR)/bsd-huntd
+ 	$(INSTALL_MANUAL) hunt/huntd/huntd.6
+diff -Naur bsd-games-2.17/hunt/Makeconfig bsd-games-patch/hunt/Makeconfig
+--- bsd-games-2.17/hunt/Makeconfig	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/Makeconfig	2020-04-23 22:16:23.413802295 +0700
+@@ -59,6 +59,6 @@
+ hunt_DEFS_OSF1 := -DINTERNET -DLOG -DBSD_RELEASE=43 -DSIGNAL_TYPE=void -D_BSD
+ hunt_DEFS_LINUX := -DINTERNET -DLOG -DBSD_RELEASE=44 -DUSE_CURSES -DSIGNAL_TYPE=void
+ 
+-hunt_DEFS := $(hunt_GAME_PARAM) $(hunt_DEFS_LINUX) -DHUNTD=\"$(SBINDIR)/huntd\"
++hunt_DEFS := $(hunt_GAME_PARAM) $(hunt_DEFS_LINUX) -DHUNTD=\"$(SBINDIR)/bsd-huntd\"
+ 
+ endif
+diff -Naur bsd-games-2.17/install-man.in bsd-games-patch/install-man.in
+--- bsd-games-2.17/install-man.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-man.in	2020-04-23 22:17:26.677010195 +0700
+@@ -30,7 +30,7 @@
+ 
+ if [ $# = 1 ]; then
+     page=$1
+-    basepage=$(basename "$page")
++    basepage=bsd-$(basename "$page")
+     section=${basepage##*.}
+     if [ "$section" = 6 ]; then
+ 	mandir=@install_prefix@@man6dir@
+@@ -50,9 +50,9 @@
+ elif [ $# = 2 ]; then
+     # Manpage 2 should link to manpage 1.  No complications of removing
+     # directories from their names.
+-    page1=$1
++    page1=bsd-$1
+     section1=${page1##*.}
+-    page2=$2
++    page2=bsd-$2
+     section2=${page2##*.}
+     if [ "$section2" = 6 ]; then
+ 	mandir=@install_prefix@@man6dir@
+diff -Naur bsd-games-2.17/mille/Makefrag bsd-games-patch/mille/Makefrag
+--- bsd-games-2.17/mille/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/mille/Makefrag	2020-04-23 22:10:57.917877590 +0700
+@@ -31,6 +31,6 @@
+ mille_all:	mille/mille mille/mille.6
+ 
+ mille_install:	mille_all
+-	$(INSTALL_BINARY) mille/mille $(INSTALL_PREFIX)$(GAMESDIR)/mille
++	$(INSTALL_BINARY) mille/mille $(INSTALL_PREFIX)$(GAMESDIR)/bsd-mille
+ 	$(HIDE_GAME) mille
+ 	$(INSTALL_MANUAL) mille/mille.6
+diff -Naur bsd-games-2.17/monop/Makefrag bsd-games-patch/monop/Makefrag
+--- bsd-games-2.17/monop/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/monop/Makefrag	2020-04-23 22:10:57.921877540 +0700
+@@ -35,7 +35,7 @@
+ 	$< monop/cards.inp $@
+ 
+ monop_install:	monop_all
+-	$(INSTALL_BINARY) monop/monop $(INSTALL_PREFIX)$(GAMESDIR)/monop
++	$(INSTALL_BINARY) monop/monop $(INSTALL_PREFIX)$(GAMESDIR)/bsd-monop
+ 	$(HIDE_GAME) monop
+ 	$(INSTALL_MANUAL) monop/monop.6
+ 	$(INSTALL_DATA) monop/cards.pck $(INSTALL_PREFIX)$(MONOP_CARDSFILE)
+diff -Naur bsd-games-2.17/morse/Makefrag bsd-games-patch/morse/Makefrag
+--- bsd-games-2.17/morse/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/morse/Makefrag	2020-04-23 22:10:57.925877490 +0700
+@@ -31,6 +31,6 @@
+ morse_all:	morse/morse
+ 
+ morse_install:	morse_all
+-	$(INSTALL_BINARY) morse/morse $(INSTALL_PREFIX)$(GAMESDIR)/morse
++	$(INSTALL_BINARY) morse/morse $(INSTALL_PREFIX)$(GAMESDIR)/bsd-morse
+ 	$(HIDE_GAME) morse
+ 	$(INSTALL_MANUAL) bcd.6 morse.6
+diff -Naur bsd-games-2.17/number/Makefrag bsd-games-patch/number/Makefrag
+--- bsd-games-2.17/number/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/number/Makefrag	2020-04-23 22:10:57.929877440 +0700
+@@ -32,6 +32,6 @@
+ number_all:	number/number number/number.6
+ 
+ number_install:	number_all
+-	$(INSTALL_BINARY) number/number $(INSTALL_PREFIX)$(GAMESDIR)/number
++	$(INSTALL_BINARY) number/number $(INSTALL_PREFIX)$(GAMESDIR)/bsd-number
+ 	$(HIDE_GAME) number
+ 	$(INSTALL_MANUAL) number/number.6
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-23 22:10:57.937877340 +0700
+@@ -38,8 +38,8 @@
+ 	touch phantasia/scorefiles.stamp
+ 
+ phantasia_install:	phantasia_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
+-	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/.phantasia-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-phantasia
++	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-phantasia-real
+ 	$(HIDE_GAME) phantasia
+ 	(set -e; for f in $(phantasia_VFILES1); do \
+ 	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+diff -Naur bsd-games-2.17/pig/Makefrag bsd-games-patch/pig/Makefrag
+--- bsd-games-2.17/pig/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/pig/Makefrag	2020-04-23 22:10:57.941877290 +0700
+@@ -31,6 +31,6 @@
+ pig_all:	pig/pig pig/pig.6
+ 
+ pig_install:	pig_all
+-	$(INSTALL_BINARY) pig/pig $(INSTALL_PREFIX)$(GAMESDIR)/pig
++	$(INSTALL_BINARY) pig/pig $(INSTALL_PREFIX)$(GAMESDIR)/bsd-pig
+ 	$(HIDE_GAME) pig
+ 	$(INSTALL_MANUAL) pig/pig.6
+diff -Naur bsd-games-2.17/pom/Makefrag bsd-games-patch/pom/Makefrag
+--- bsd-games-2.17/pom/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/pom/Makefrag	2020-04-23 22:10:57.945877239 +0700
+@@ -31,6 +31,6 @@
+ pom_all:	pom/pom pom/pom.6
+ 
+ pom_install:	pom_all
+-	$(INSTALL_BINARY) pom/pom $(INSTALL_PREFIX)$(GAMESDIR)/pom
++	$(INSTALL_BINARY) pom/pom $(INSTALL_PREFIX)$(GAMESDIR)/bsd-pom
+ 	$(HIDE_GAME) pom
+ 	$(INSTALL_MANUAL) pom/pom.6
+diff -Naur bsd-games-2.17/ppt/Makefrag bsd-games-patch/ppt/Makefrag
+--- bsd-games-2.17/ppt/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/ppt/Makefrag	2020-04-23 22:10:57.949877189 +0700
+@@ -31,6 +31,6 @@
+ ppt_all:	ppt/ppt
+ 
+ ppt_install:	ppt_all
+-	$(INSTALL_BINARY) ppt/ppt $(INSTALL_PREFIX)$(GAMESDIR)/ppt
++	$(INSTALL_BINARY) ppt/ppt $(INSTALL_PREFIX)$(GAMESDIR)/bsd-ppt
+ 	$(HIDE_GAME) ppt
+ 	$(INSTALL_MANUAL) bcd.6 ppt.6
+diff -Naur bsd-games-2.17/primes/Makefrag bsd-games-patch/primes/Makefrag
+--- bsd-games-2.17/primes/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/primes/Makefrag	2020-04-23 22:10:57.953877140 +0700
+@@ -32,6 +32,6 @@
+ primes_all:	primes/primes primes/primes.6
+ 
+ primes_install:	primes_all
+-	$(INSTALL_BINARY) primes/primes $(INSTALL_PREFIX)$(GAMESDIR)/primes
++	$(INSTALL_BINARY) primes/primes $(INSTALL_PREFIX)$(GAMESDIR)/bsd-primes
+ 	$(HIDE_GAME) primes
+ 	$(INSTALL_MANUAL) primes/primes.6
+diff -Naur bsd-games-2.17/quiz/Makefrag bsd-games-patch/quiz/Makefrag
+--- bsd-games-2.17/quiz/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/quiz/Makefrag	2020-04-23 22:10:57.961877039 +0700
+@@ -32,6 +32,6 @@
+ quiz_all:	quiz/quiz quiz/quiz.6
+ 
+ quiz_install:	quiz_all
+-	$(INSTALL_BINARY) quiz/quiz $(INSTALL_PREFIX)$(GAMESDIR)/quiz
++	$(INSTALL_BINARY) quiz/quiz $(INSTALL_PREFIX)$(GAMESDIR)/bsd-quiz
+ 	$(HIDE_GAME) quiz
+ 	$(INSTALL_MANUAL) quiz/quiz.6
+diff -Naur bsd-games-2.17/rain/Makefrag bsd-games-patch/rain/Makefrag
+--- bsd-games-2.17/rain/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/rain/Makefrag	2020-04-23 22:10:57.969876939 +0700
+@@ -31,6 +31,6 @@
+ rain_all:	rain/rain rain/rain.6
+ 
+ rain_install:	rain_all
+-	$(INSTALL_BINARY) rain/rain $(INSTALL_PREFIX)$(GAMESDIR)/rain
++	$(INSTALL_BINARY) rain/rain $(INSTALL_PREFIX)$(GAMESDIR)/bsd-rain
+ 	$(HIDE_GAME) rain
+ 	$(INSTALL_MANUAL) rain/rain.6
+diff -Naur bsd-games-2.17/random/Makefrag bsd-games-patch/random/Makefrag
+--- bsd-games-2.17/random/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/random/Makefrag	2020-04-23 22:10:57.973876889 +0700
+@@ -31,6 +31,6 @@
+ random_all:	random/random random/random.6
+ 
+ random_install:	random_all
+-	$(INSTALL_BINARY) random/random $(INSTALL_PREFIX)$(GAMESDIR)/random
++	$(INSTALL_BINARY) random/random $(INSTALL_PREFIX)$(GAMESDIR)/bsd-random
+ 	$(HIDE_GAME) random
+ 	$(INSTALL_MANUAL) random/random.6
+diff -Naur bsd-games-2.17/robots/Makefrag bsd-games-patch/robots/Makefrag
+--- bsd-games-2.17/robots/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/robots/Makefrag	2020-04-23 22:10:57.981876789 +0700
+@@ -32,8 +32,8 @@
+ robots_all:	robots/robots robots/robots.6
+ 
+ robots_install:	robots_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/robots
+-	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/.robots-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-robots
++	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-robots-real
+ 	$(HIDE_GAME) robots
+ 	$(INSTALL_SCORE_FILE) $(ROBOTS_SCOREFILE)
+ 	$(INSTALL_MANUAL) robots/robots.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-23 22:10:57.989876689 +0700
+@@ -31,8 +31,8 @@
+ sail_all:	sail/sail sail/sail.6
+ 
+ sail_install:	sail_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/sail
+-	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/.sail-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-sail
++	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-sail-real
+ 	$(HIDE_GAME) sail
+ 	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+ 	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+diff -Naur bsd-games-2.17/snake/snake/Makefrag bsd-games-patch/snake/snake/Makefrag
+--- bsd-games-2.17/snake/snake/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/snake/snake/Makefrag	2020-04-23 22:10:57.997876588 +0700
+@@ -31,8 +31,8 @@
+ snake_snake_all:	snake/snake/snake snake/snake/snake.6
+ 
+ snake_snake_install:	snake_snake_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/snake
+-	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/.snake-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-snake
++	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-snake-real
+ 	$(HIDE_GAME) snake
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_SCOREFILE)
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_RAWSCOREFILE)
+diff -Naur bsd-games-2.17/snake/snscore/Makefrag bsd-games-patch/snake/snscore/Makefrag
+--- bsd-games-2.17/snake/snscore/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/snake/snscore/Makefrag	2020-04-23 22:10:58.005876489 +0700
+@@ -32,6 +32,6 @@
+ snake_snscore_all:	snake/snscore/snscore
+ 
+ snake_snscore_install:	snake_snscore_all
+-	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/snscore
++	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/bsd-snscore
+ 	$(HIDE_GAME) snscore
+ 	$(INSTALL_MANUAL) snake.6 snscore.6
+diff -Naur bsd-games-2.17/tetris/Makefrag bsd-games-patch/tetris/Makefrag
+--- bsd-games-2.17/tetris/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/tetris/Makefrag	2020-04-23 22:11:47.137261335 +0700
+@@ -32,8 +32,8 @@
+ tetris_all:	tetris/tetris tetris/tetris.6
+ 
+ tetris_install:	tetris_all
+-	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
+-	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/.tetris-bsd-real
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/bsd-tetris
++	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-tetris-real
+ 	$(HIDE_GAME) tetris-bsd
+ 	$(INSTALL_SCORE_FILE) $(TETRIS_SCOREFILE)
+ 	ln -f tetris/tetris.6 tetris/tetris-bsd.6
+diff -Naur bsd-games-2.17/trek/Makefrag bsd-games-patch/trek/Makefrag
+--- bsd-games-2.17/trek/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/trek/Makefrag	2020-04-23 22:10:58.017876338 +0700
+@@ -31,7 +31,7 @@
+ trek_all:	trek/trek trek/trek.6 trek/USD.doc/trek.me
+ 
+ trek_install:	trek_all
+-	$(INSTALL_BINARY) trek/trek $(INSTALL_PREFIX)$(GAMESDIR)/trek
++	$(INSTALL_BINARY) trek/trek $(INSTALL_PREFIX)$(GAMESDIR)/bsd-trek
+ 	$(HIDE_GAME) trek
+ 	$(INSTALL_MANUAL) trek/trek.6
+ 	$(INSTALL_DATA) trek/USD.doc/trek.me $(INSTALL_PREFIX)$(DOCDIR)/trek.me
+diff -Naur bsd-games-2.17/wargames/Makefrag bsd-games-patch/wargames/Makefrag
+--- bsd-games-2.17/wargames/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wargames/Makefrag	2020-04-23 22:10:58.021876288 +0700
+@@ -31,6 +31,6 @@
+ wargames_all:	wargames/wargames wargames/wargames.6
+ 
+ wargames_install:	wargames_all
+-	$(INSTALL_SCRIPT) wargames/wargames $(INSTALL_PREFIX)$(GAMESDIR)/wargames
++	$(INSTALL_SCRIPT) wargames/wargames $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wargames
+ 	$(HIDE_GAME) wargames
+ 	$(INSTALL_MANUAL) wargames/wargames.6
+diff -Naur bsd-games-2.17/worm/Makefrag bsd-games-patch/worm/Makefrag
+--- bsd-games-2.17/worm/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/worm/Makefrag	2020-04-23 22:10:58.029876188 +0700
+@@ -31,6 +31,6 @@
+ worm_all:	worm/worm worm/worm.6
+ 
+ worm_install:	worm_all
+-	$(INSTALL_BINARY) worm/worm $(INSTALL_PREFIX)$(GAMESDIR)/worm
++	$(INSTALL_BINARY) worm/worm $(INSTALL_PREFIX)$(GAMESDIR)/bsd-worm
+ 	$(HIDE_GAME) worm
+ 	$(INSTALL_MANUAL) worm/worm.6
+diff -Naur bsd-games-2.17/worms/Makefrag bsd-games-patch/worms/Makefrag
+--- bsd-games-2.17/worms/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/worms/Makefrag	2020-04-23 22:10:58.033876138 +0700
+@@ -31,6 +31,6 @@
+ worms_all:	worms/worms worms/worms.6
+ 
+ worms_install:	worms_all
+-	$(INSTALL_BINARY) worms/worms $(INSTALL_PREFIX)$(GAMESDIR)/worms
++	$(INSTALL_BINARY) worms/worms $(INSTALL_PREFIX)$(GAMESDIR)/bsd-worms
+ 	$(HIDE_GAME) worms
+ 	$(INSTALL_MANUAL) worms/worms.6
+diff -Naur bsd-games-2.17/wtf/Makefrag bsd-games-patch/wtf/Makefrag
+--- bsd-games-2.17/wtf/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wtf/Makefrag	2020-04-23 22:10:58.037876087 +0700
+@@ -31,7 +31,7 @@
+ wtf_all:	wtf/wtf wtf/wtf.6
+ 
+ wtf_install:	wtf_all
+-	$(INSTALL_SCRIPT) wtf/wtf $(INSTALL_PREFIX)$(GAMESDIR)/wtf
++	$(INSTALL_SCRIPT) wtf/wtf $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wtf
+ 	$(HIDE_GAME) wtf
+ 	$(INSTALL_DATA) wtf/acronyms $(INSTALL_PREFIX)$(WTF_ACRONYMFILE)
+ 	$(INSTALL_DATA) wtf/acronyms.comp $(INSTALL_PREFIX)$(WTF_ACRONYMFILE).comp
+diff -Naur bsd-games-2.17/wump/Makefrag bsd-games-patch/wump/Makefrag
+--- bsd-games-2.17/wump/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wump/Makefrag	2020-04-23 22:10:58.045875988 +0700
+@@ -31,7 +31,7 @@
+ wump_all:	wump/wump wump/wump.6 wump/wump.info
+ 
+ wump_install:	wump_all
+-	$(INSTALL_BINARY) wump/wump $(INSTALL_PREFIX)$(GAMESDIR)/wump
++	$(INSTALL_BINARY) wump/wump $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wump
+ 	$(HIDE_GAME) wump
+ 	$(INSTALL_DATA) wump/wump.info $(INSTALL_PREFIX)$(WUMP_INFOFILE)
+ 	$(INSTALL_MANUAL) wump/wump.6
-- 
2.26.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#40818] [PATCH] gnu: Add bsd-games.
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
@ 2020-06-16 13:17 ` Nicolas Goaziou
  2020-06-17  7:46 ` [bug#40818] [bug #40818] "Add bsd-games" Vitaliy Shatrov via Guix-patches via
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Nicolas Goaziou @ 2020-06-16 13:17 UTC (permalink / raw)
  To: 40818; +Cc: D0dyBo0D0dyBo0

Hello,

Vitaliy Shatrov via Guix-patches via <guix-patches@gnu.org> writes:

> The most important thing to review is rights. This package assumes
> that all score-files and save-games are placed in /var/tmp/bsd-games.
> The first user owns the files, and the wrapper script do `chmod ug+w`.
> If the SETGUID approach, despite the games age is better, i'll rework
> this. Though sys-admin (or the first user) can simply change the
> permissions, or group to restrict the access.

Thank you for the patch.

Is it possible to create save-games in ~/.local/share/XXX/ instead?

Also, considering the bsd-games-add-word-list.patch file, would it be
possible to use "miscfiles" package as an input instead? It also
provides and English words list.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
  2020-06-16 13:17 ` Nicolas Goaziou
@ 2020-06-17  7:46 ` Vitaliy Shatrov via Guix-patches via
  2020-06-17 16:42   ` Vitaliy Shatrov via Guix-patches via
  2020-08-01 18:45 ` Vitaliy Shatrov via Guix-patches via
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-06-17  7:46 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org

[-- Attachment #1: Type: text/plain, Size: 103 bytes --]

I'll try ~/. Thanks for the misc pointer.

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #2: Type: text/html, Size: 366 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-06-17  7:46 ` [bug#40818] [bug #40818] "Add bsd-games" Vitaliy Shatrov via Guix-patches via
@ 2020-06-17 16:42   ` Vitaliy Shatrov via Guix-patches via
  2020-06-17 16:49     ` Vitaliy Shatrov via Guix-patches via
  2020-07-07 12:29     ` Nicolas Goaziou
  0 siblings, 2 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-06-17 16:42 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org


[-- Attachment #1.1: Type: text/plain, Size: 139 bytes --]

About ~/.local/share/xxx: Will things like this "bsd-hack"-patch be accepted?

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #1.2: Type: text/html, Size: 402 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: bsd-games-test.patch --]
[-- Type: text/x-patch; name=bsd-games-test.patch, Size: 582 bytes --]

--- bsd-games-2.17.orig/hack/hack.main.c	1970-01-01 07:00:01.000000000 +0700
+++ bsd-games-2.17/hack/hack.main.c	2020-06-17 22:09:31.424759883 +0700
@@ -552,8 +552,15 @@
 #endif
 
 #ifdef HACKDIR
-	if (dir == NULL)
-		dir = HACKDIR;
+	/* Guix: make "hack" target the user's HOME as default. */
+	if (dir == NULL) {
+		/* Guix: i'm sorry for using the plain numbers. */
+		char hackdir_str[1026] = "";
+		strncat(hackdir_str, getenv("HOME"), 512);
+		strcat(hackdir_str, "/");
+		strncat(hackdir_str, HACKDIR, 512);
+		dir = hackdir_str;
+	}
 #endif
 
 	if (dir && chdir(dir) < 0) {

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-06-17 16:42   ` Vitaliy Shatrov via Guix-patches via
@ 2020-06-17 16:49     ` Vitaliy Shatrov via Guix-patches via
  2020-07-07 12:29     ` Nicolas Goaziou
  1 sibling, 0 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-06-17 16:49 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org; +Cc: mail@nicolasgoaziou.fr

[-- Attachment #1: Type: text/plain, Size: 106 bytes --]

Probably now i've sent the mail correct way.

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #2: Type: text/html, Size: 348 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-06-17 16:42   ` Vitaliy Shatrov via Guix-patches via
  2020-06-17 16:49     ` Vitaliy Shatrov via Guix-patches via
@ 2020-07-07 12:29     ` Nicolas Goaziou
  1 sibling, 0 replies; 15+ messages in thread
From: Nicolas Goaziou @ 2020-07-07 12:29 UTC (permalink / raw)
  To: 40818; +Cc: D0dyBo0D0dyBo0

Hello,

Vitaliy Shatrov via Guix-patches via <guix-patches@gnu.org> writes:

> About ~/.local/share/xxx: Will things like this "bsd-hack"-patch be
> accepted?

Since no one complained, I guess the answer is "yes" :)

Could you send a complete patch? (Or maybe I missed it, this was a long
time ago!)

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
  2020-06-16 13:17 ` Nicolas Goaziou
  2020-06-17  7:46 ` [bug#40818] [bug #40818] "Add bsd-games" Vitaliy Shatrov via Guix-patches via
@ 2020-08-01 18:45 ` Vitaliy Shatrov via Guix-patches via
  2020-08-04 20:57 ` Vitaliy Shatrov via Guix-patches via
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-08-01 18:45 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org

[-- Attachment #1: Type: text/plain, Size: 343 bytes --]

Hello.

> Could you send a complete patch? (Or maybe I missed it, this was a long
> time ago!)

Honestly there are none yet, but i'm working on that. I'm bad at programming for now. The last idea was to use a chdir() instead, and change the original variables from "path/to/x" to just "x".

Regards, Vitaliy.
Sent with ProtonMail Secure Email.

[-- Attachment #2: Type: text/html, Size: 1553 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
                   ` (2 preceding siblings ...)
  2020-08-01 18:45 ` Vitaliy Shatrov via Guix-patches via
@ 2020-08-04 20:57 ` Vitaliy Shatrov via Guix-patches via
  2020-08-04 20:59 ` Vitaliy Shatrov via Guix-patches via
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-08-04 20:57 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org; +Cc: Nicolas Goaziou

[-- Attachment #1: Type: text/plain, Size: 561 bytes --]

Hello again.

I'd received an advice to send a patch in the best working state i have already,
and then add the games that aren't working.

The all games should work, but hack and phantasia. Some games currently can't write
a score files, but this isn't criticall.

I'll continue to thinking about, and search for advices on how to do things in the User's HOME,
or something similar: be that "getpwid()" stuff i'd seen on stackoverflow, or just a
"chdir(getenv("SOME_ENV_VAR"));".

Regards, Vitaliy.

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #2: Type: text/html, Size: 977 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
                   ` (3 preceding siblings ...)
  2020-08-04 20:57 ` Vitaliy Shatrov via Guix-patches via
@ 2020-08-04 20:59 ` Vitaliy Shatrov via Guix-patches via
  2020-08-05 14:35 ` Vitaliy Shatrov via Guix-patches via
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-08-04 20:59 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org; +Cc: Nicolas Goaziou


[-- Attachment #1.1: Type: text/plain, Size: 126 bytes --]

The actual patch attached...
(Ooops..)
Regards-regards, Vitaliy.

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #1.2: Type: text/html, Size: 396 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-PATCH-gnu-Add-bsd-games.patch --]
[-- Type: text/x-patch; name=0001-PATCH-gnu-Add-bsd-games.patch, Size: 63132 bytes --]

From c1a6616849f4a0e199ed2583a93ee206ae42db88 Mon Sep 17 00:00:00 2001
From: Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
Date: Wed, 5 Aug 2020 03:43:04 +0700
Subject: [PATCH] gnu: Add bsd-games.

* gnu/packages/games.scm (bsd-games): a new variable.

New patches, taken from Arch and Debian:
* gnu/packages/patches/bsd-games-2.17-64bit.patch
* gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
* gnu/packages/patches/bsd-games-fix-number-test.patch
* gnu/packages/patches/bsd-games-gamescreen.h.patch
* gnu/packages/patches/bsd-games-getline.patch
* gnu/packages/patches/bsd-games-null-check.patch
* gnu/packages/patches/bsd-games-number.c.patch
* gnu/packages/patches/bsd-games-stdio.h.patch

New patches:
* gnu/packages/patches/bsd-games-add-configure-config.patch
* gnu/packages/patches/bsd-games-dont-install-empty-files.patch
* gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
---
 gnu/packages/games.scm                        | 139 ++++
 .../patches/bsd-games-2.17-64bit.patch        |  43 ++
 .../bsd-games-add-configure-config.patch      |  25 +
 .../patches/bsd-games-bad-ntohl-cast.patch    |  22 +
 .../bsd-games-dont-install-empty-files.patch  |  87 +++
 .../patches/bsd-games-fix-number-test.patch   |  32 +
 .../patches/bsd-games-gamescreen.h.patch      |  15 +
 gnu/packages/patches/bsd-games-getline.patch  | 194 ++++++
 .../patches/bsd-games-null-check.patch        |  24 +
 gnu/packages/patches/bsd-games-number.c.patch | 156 +++++
 gnu/packages/patches/bsd-games-stdio.h.patch  |  14 +
 ...bsd-games-use-anthology-style-naming.patch | 633 ++++++++++++++++++
 12 files changed, 1384 insertions(+)
 create mode 100644 gnu/packages/patches/bsd-games-2.17-64bit.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-configure-config.patch
 create mode 100644 gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
 create mode 100644 gnu/packages/patches/bsd-games-dont-install-empty-files.patch
 create mode 100644 gnu/packages/patches/bsd-games-fix-number-test.patch
 create mode 100644 gnu/packages/patches/bsd-games-gamescreen.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-getline.patch
 create mode 100644 gnu/packages/patches/bsd-games-null-check.patch
 create mode 100644 gnu/packages/patches/bsd-games-number.c.patch
 create mode 100644 gnu/packages/patches/bsd-games-stdio.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-use-anthology-style-naming.patch

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0f79f5eeba..4af543401f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -115,6 +115,7 @@
   #:use-module (gnu packages gl)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gnu-doc)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages gnuzilla)
   #:use-module (gnu packages gperf)
@@ -584,6 +585,144 @@ possible, while battling many vicious aliens.")
                    license:lgpl2.1+
                    license:bsd-2))))
 
+(define-public bsd-games
+  (package
+    (name "bsd-games")
+    (version "2.17.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://ibiblio.org/pub/linux/games/bsd-games-2.17.tar.gz")
+       (sha256
+        (base32
+         "0q7zdyyfvn15y0w4g54kq3gza89h61py727m8slmw73cxx594vq6"))
+       (patches
+        (search-patches
+         ;; thanks Arch, and Debian
+         "bsd-games-2.17-64bit.patch"
+         "bsd-games-bad-ntohl-cast.patch"
+         "bsd-games-gamescreen.h.patch"
+         "bsd-games-getline.patch"
+         "bsd-games-null-check.patch"
+         "bsd-games-number.c.patch"
+         "bsd-games-stdio.h.patch"
+         "bsd-games-fix-number-test.patch"
+         ;; Guix customizations
+         ;; TODO: make the games with score files and saved state to work.
+         "bsd-games-add-configure-config.patch"
+         "bsd-games-dont-install-empty-files.patch"
+         "bsd-games-use-anthology-style-naming.patch"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("flex" ,flex)
+       ("bison" ,bison)))
+    (inputs
+     `(("curses" ,ncurses)
+       ("pager" ,less)
+       ("miscfiles" ,miscfiles)
+       ("openssl" ,openssl)))  ;used only by 'factor'
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs inputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version))
+                    (man (string-append out "/share/man"))
+                    (word-list (string-append (assoc-ref inputs "miscfiles")
+                                              "/share/web2"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    ;; TODO.
+                    (save-files "DUMMY"))
+               (substitute* "configure"
+                 (("/usr/share/man") man)
+                 (("/usr/share/doc/bsd-games") doc)
+                 (("/usr/share/[^\n/]*") static-data)
+                 (("/var/games") save-files)
+                 (("/usr/bin/less") (which "less"))
+                 (("(/usr/bin|/usr/games)") bin))
+               (substitute* "config.params"
+                 (("WORD_LIST") word-list))
+               (invoke "./configure"))
+             #t))
+         (add-before 'install 'patch-install
+           ;;; Some games need a writable directory containing pre-maded files.
+           ;;; The files get installed to the Store.  TODO.
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    ;; TODO
+                    (save-files "DUMMY"))
+               ;; We can't install to /var (make install attempts too).
+               (substitute* "Makeconfig" ((save-files) static-data)))
+             #t))
+         (add-after 'install 'install-documents
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version)))
+               (rename-file "fortune/Notes" "fortune-Notes")
+               (rename-file "fortune/README" "fortune-README")
+               (rename-file "phantasia/COPYRIGHT" "phantasia-COPYRIGHT")
+               (for-each
+                (lambda(file) (install-file file doc))
+                '("AUTHORS" "BUGS" "README" "SECURITY" "THANKS"
+                  "fortune-Notes" "fortune-README" "phantasia-COPYRIGHT")))
+             #t))
+         )))
+    (home-page "https://github.com/vattam/BSDGames")
+    (synopsis "Collection of the old text-based games and amusements")
+    (description
+     "The BSD-games (some are not yet packaged, score files not working):
+
+Action: atc (keep the airplanes safe), hack (explore the dangerous Dungeon),
+hunt (kill the others for the Pair of Boots, multi-player only), robots (avoid
+the evil robots), sail (game of naval warfare with wooden ships), snake (steal
+the $$ from the cave, anger the snake, and get out alive), tetris (game of
+lining up the falling bricks of different shapes), and worm (eat, grow big,
+and neither bite your tail, nor ram the wall).
+
+Amusements: banner (prints a large banner), bcd & morse & ppt (print a punch
+card, or paper tape, or Morse codes), caesar & rot13 (ciphers and deciphers
+the input), factor (factorizes a number), fortune (prints some random
+message), number (translates numbers into text), pig (translates from English
+to Pig Latin), pom (should print the Moon's phase), primes (generates primes),
+rain & worms (plays an screen-saver in terminal), random (prints randomly
+choosen lines from files, or returns a random exit-code), and wtf (explains
+what do some acronyms mean).
+
+Board: backgammon (lead the men out of board faster than the friend do),
+boggle (find the words in the square of letters), dab (game of dots and
+boxes), gomoku (game of five in a row), hangman (guess a word before man is
+hanged), and monop (game of monopoly, hot-seat only).  Also the card-games:
+canfield, cribbage, fish (juniors game), and mille.
+
+Quests: adventure (search for treasures with the help of wizard),
+battlestar (explore the world around, starting from dying spaceship),
+phantasia (role-play as an rogue), trek (hunt the Klingons, and save the
+Federation), and wump (hunt the big smelly Wumpus in a dark cave).
+
+Quizes: arithmetic, and quiz.")
+    ;; "Auxiliary and data files, distributed with the games in NetBSD, but
+    ;; not bearing copyright notices, probably fall under the terms of the UCB
+    ;; or NetBSD copyrights and licences.  The file "fortune/Notes" contains a
+    ;; warning in regard to the fortune databases."
+    (license (list
+              ;; Most games.  Files: countmail/countmail.6, dab/dab.6,
+              ;; lib/strlcpy.c, wargames/wargames.6
+              license:bsd-3
+              ;; dab and hunt.  Files: adventure/extern.h,
+              ;; backgammon/backgammon/backlocal.h, caesar/rot13.in,
+              ;; countmail/countmail, dm/utmpentry.c, dm/utmpentry.h,
+              ;; hack/extern.h, robots/auto.c, sail/display.h,
+              ;; sail/restart.h, wargames/wargames
+              license:bsd-4
+              ;; wtf (the game)
+              license:public-domain
+              ;; phantasia (all but phantasia/pathnames.h.in, which is bsd-3)
+              (license:fsf-free "file:///phantasia/COPYRIGHT")))))
+
+
 (define-public bzflag
   (package
     (name "bzflag")
diff --git a/gnu/packages/patches/bsd-games-2.17-64bit.patch b/gnu/packages/patches/bsd-games-2.17-64bit.patch
new file mode 100644
index 0000000000..a56ea8454b
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-2.17-64bit.patch
@@ -0,0 +1,43 @@
+David Leverton writes about adventure/crc.c:
+
+The 'adventure' game from the games-misc/bsd-games-2.13 package crashes 
+when saving the game on AMD64 (and probably other 64-bit systems, but I 
+haven't checked).  Find attached to fix this.
+
+http://bugs.gentoo.org/show_bug.cgi?id=77032
+
+
+About utmpentry.c:
+
+the utmpx structure defines the ut_tv member a little differently on 
+64bit hosts so that a 32bit and 64bit structure can be shared.  So the 
+ut_tv is a custom 32bit structure rather than the native 64bit timeval 
+structure.  Work around is to assign the submembers instead.
+
+http://bugs.gentoo.org/show_bug.cgi?id=102667
+
+--- bsd-games/adventure/crc.c
++++ bsd-games/adventure/crc.c
+@@ -134,7 +134,8 @@
+ 				if (step >= sizeof(crctab) / sizeof(crctab[0]))
+ 					step = 0;
+ 			}
+-			crcval = (crcval << 8) ^ crctab[i];
++			/* Mask to 32 bits. */
++			crcval = ((crcval << 8) ^ crctab[i]) & 0xffffffff;
+ 		}
+-	return crcval & 0xffffffff;	/* Mask to 32 bits. */
++	return crcval;
+ }
+--- bsd-games/dm/utmpentry.c
++++ bsd-games/dm/utmpentry.c
+@@ -291,7 +291,8 @@
+ 	e->line[sizeof(e->line) - 1] = '\0';
+ 	(void)strncpy(e->host, up->ut_host, sizeof(up->ut_host));
+ 	e->name[sizeof(e->host) - 1] = '\0';
+-	e->tv = up->ut_tv;
++	e->tv.tv_sec = up->ut_tv.tv_sec;
++	e->tv.tv_usec = up->ut_tv.tv_usec;
+ 	adjust_size(e);
+ }
+ #endif
diff --git a/gnu/packages/patches/bsd-games-add-configure-config.patch b/gnu/packages/patches/bsd-games-add-configure-config.patch
new file mode 100644
index 0000000000..6a61b556af
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-configure-config.patch
@@ -0,0 +1,25 @@
+Remove a few 'setenv's from the definition.
+
+diff -Naur bsd-games-2.17/config.params bsd-games-patch/config.params
+--- bsd-games-2.17/config.params	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/config.params	2020-04-22 20:49:40.809695248 +0700
+@@ -0,0 +1,19 @@
++bsd_games_cfg_do_chown=n
++bsd_games_cfg_non_interactive=y
++
++# The offensive fortunes shown only if requested by user.
++bsd_games_cfg_offensive_fortunes=y
++
++# Fix some man-pages: cfscores, morse, ppt, rot13, snscore, teachgammon.
++bsd_games_cfg_use_dot_so=syml
++
++# Don't build dm, countmail, hack, phantasia, and wargames.
++# Wargames isn't convenient as a game launcher.
++# dm is a toy to restrict access to bsd-games.
++# countmail require some BSD-package called `from`.
++# TODO: phantasia and hack need an writable directory
++bsd_games_cfg_no_build_dirs="wargames dm countmail phantasia hack"
++
++# Those are substitute*'d with GNU miscfiles.
++bsd_games_cfg_hangman_wordsfile=WORD_LIST
++bsd_games_cfg_dictionary_src=WORD_LIST
diff --git a/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
new file mode 100644
index 0000000000..f783813e95
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
@@ -0,0 +1,22 @@
+diff --git a/hunt/hunt/playit.c b/hunt/hunt/playit.c
+index 9acf86e..881a4e7 100644
+--- a/hunt/hunt/playit.c
++++ b/hunt/hunt/playit.c
+@@ -114,7 +114,7 @@ playit()
+ 		bad_con();
+ 		/* NOTREACHED */
+ 	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+ 		bad_ver();
+ 		/* NOTREACHED */
+ 	}
+@@ -649,7 +649,7 @@ do_message()
+ 		bad_con();
+ 		/* NOTREACHED */
+ 	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+ 		bad_ver();
+ 		/* NOTREACHED */
+ 	}
diff --git a/gnu/packages/patches/bsd-games-dont-install-empty-files.patch b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
new file mode 100644
index 0000000000..0cb7deab5a
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
@@ -0,0 +1,87 @@
+Those games rely on user to provide the files to write scores in.
+Those score-files are initially empty.  Anyway, the Store is read-only.
+So we do not install those empty files.
+
+diff -Naur bsd-games-2.17/install-score.in bsd-games-patch/install-score.in
+--- bsd-games-2.17/install-score.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-score.in	2020-04-22 21:41:47.810544804 +0700
+@@ -1,45 +0,0 @@
+-# install-score.in - install a score file
+-#
+-# Copyright (c) 1997, 1998, 1999 Joseph Samuel Myers.
+-# All rights reserved.
+-#
+-# Redistribution and use in source and binary forms, with or without
+-# modification, are permitted provided that the following conditions
+-# are met:
+-# 1. Redistributions of source code must retain the above copyright
+-#    notice, this list of conditions and the following disclaimer.
+-# 2. Redistributions in binary form must reproduce the above copyright
+-#    notice, this list of conditions and the following disclaimer in the
+-#    documentation and/or other materials provided with the distribution.
+-# 3. The name of the author may not be used to endorse or promote products
+-#    derived from this software without specific prior written permission.
+-#
+-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+-# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+-# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+-# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+-# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+-# SUCH DAMAGE.
+-
+-set -e
+-
+-if [ "$1" = "-p" ]; then
+-    scorefile="@install_prefix@$2"
+-    perms=@vardata_perms_priv@
+-else
+-    scorefile="@install_prefix@$1"
+-    perms=@vardata_perms@
+-fi
+-
+-mkdir -p "$(dirname "$scorefile")"
+-
+-test -e "$scorefile" || touch "$scorefile"
+-if [ @do_chown@ = y ]; then
+-    chown @vardata_owner@:@vardata_group@ "$scorefile"
+-fi
+-chmod "$perms" "$scorefile"
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-22 21:26:00.162409464 +0700
+@@ -27,9 +27,8 @@
+ # SUCH DAMAGE.
+ 
+ phantasia_DIRS := $(GAMESDIR) $(MAN6DIR) $(PHANTASIA_DIR)
+-phantasia_VFILES1 := gold lastdead mess monsters motd void
+-phantasia_VFILES2 := scoreboard characs
+-phantasia_CLEANFILES := $(phantasia_VFILES1) $(phantasia_VFILES2) scorefiles.stamp
++phantasia_VFILES1 := monsters
++phantasia_CLEANFILES := $(phantasia_VFILES1) scorefiles.stamp
+ 
+ phantasia_all:	phantasia/phantasia phantasia/phantasia.6 phantasia/scorefiles.stamp
+ 
+@@ -43,9 +42,4 @@
+ 	(set -e; for f in $(phantasia_VFILES1); do \
+ 	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+ 	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/$$f; done)
+-	(set -e; for f in $(phantasia_VFILES2); do \
+-	    if [ ! -e $(PHANTASIA_DIR)/$$f ]; then \
+-		cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; fi; done; \
+-	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/scoreboard; \
+-	    $(INSTALL_SCORE_FILE) -p $(PHANTASIA_DIR)/characs)
+ 	$(INSTALL_MANUAL) phantasia/phantasia.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-22 21:26:48.701801676 +0700
+@@ -34,5 +34,4 @@
+ 	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
+ 	$(HIDE_GAME) sail
+ 	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+-	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+ 	$(INSTALL_MANUAL) sail/sail.6
diff --git a/gnu/packages/patches/bsd-games-fix-number-test.patch b/gnu/packages/patches/bsd-games-fix-number-test.patch
new file mode 100644
index 0000000000..26ff84e51f
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-fix-number-test.patch
@@ -0,0 +1,32 @@
+number is a program that translates the decimal numbers like this:
+0.1 --> one tenth_.
+0.2 --> two tenth_S.
+This patch fix the test.
+
+diff -Naur bsd-games-2.17/tests/number.-0.1 bsd-games-patch/tests/number.-0.1
+--- bsd-games-2.17/tests/number.-0.1	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.1	2020-04-17 15:14:27.831098084 +0700
+@@ -1,3 +1,3 @@
+ minus
+ one.
+-tenths.
++tenth.
+diff -Naur bsd-games-2.17/tests/number.-0.2 bsd-games-patch/tests/number.-0.2
+--- bsd-games-2.17/tests/number.-0.2	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.2	2020-04-17 15:20:48.162336279 +0700
+@@ -0,0 +1,3 @@
++minus
++two.
++tenths.
+diff -Naur bsd-games-2.17/tests/number.test bsd-games-patch/tests/number.test
+--- bsd-games-2.17/tests/number.test	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.test	2020-04-17 15:20:22.774654155 +0700
+@@ -36,6 +36,8 @@
+ testno 1
+ number/number -- -0.1 >test.out 2>&1 || failtest
+ compare test.out tests/number.-0.1
++number/number -- -0.2 >test.out 2>&1 || failtest
++compare test.out tests/number.-0.2
+ rm -f test.out
+ 
+ testno 2
diff --git a/gnu/packages/patches/bsd-games-gamescreen.h.patch b/gnu/packages/patches/bsd-games-gamescreen.h.patch
new file mode 100644
index 0000000000..f74ebcb4be
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-gamescreen.h.patch
@@ -0,0 +1,15 @@
+--- a/dab/gamescreen.h	2004-01-02 23:34:51.000000000 +0530
++++ b/dab/gamescreen.h	2008-07-31 23:45:19.000000000 +0530
+@@ -70,9 +70,9 @@
+     virtual void redraw(void) = 0;			// Refresh
+     virtual int getinput(void) = 0;			// Get user input
+     virtual void bell(void) = 0;			// Beep
+-    virtual void score(size_t p, const PLAYER& p) = 0;	// Post current score
+-    virtual void games(size_t p, const PLAYER& p) = 0;	// Post games won
+-    virtual void total(size_t p, const PLAYER& p) = 0;	// Post total score
++    virtual void score(size_t, const PLAYER&) = 0;	// Post current score
++    virtual void games(size_t, const PLAYER&) = 0;	// Post games won
++    virtual void total(size_t, const PLAYER&) = 0;	// Post total score
+     virtual void ties(const PLAYER& p) = 0;		// Post tie games
+ };
+ 
diff --git a/gnu/packages/patches/bsd-games-getline.patch b/gnu/packages/patches/bsd-games-getline.patch
new file mode 100644
index 0000000000..99a6638477
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-getline.patch
@@ -0,0 +1,194 @@
+diff -Naur bsd-games-2.17/boggle/boggle/bog.c bsd-games-2.17.1/boggle/boggle/bog.c
+--- bsd-games-2.17/boggle/boggle/bog.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/bog.c	2010-05-22 10:51:23.000000000 -0500
+@@ -336,7 +336,7 @@
+ 	}
+ 
+ 	while (1) {
+-		if (getline(buf) == NULL) {
++		if (boggle_getline(buf) == NULL) {
+ 			if (feof(stdin))
+ 				clearerr(stdin);
+ 			break;
+diff -Naur bsd-games-2.17/boggle/boggle/extern.h bsd-games-2.17.1/boggle/boggle/extern.h
+--- bsd-games-2.17/boggle/boggle/extern.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/extern.h	2010-05-22 10:51:23.000000000 -0500
+@@ -43,7 +43,7 @@
+ long	 dictseek(FILE *, long, int);
+ void	 findword(void);
+ void	 flushin(FILE *);
+-char	*getline(char *);
++char	*boggle_getline(char *);
+ void	 getword(char *);
+ int	 help(void);
+ int	 inputch(void);
+diff -Naur bsd-games-2.17/boggle/boggle/mach.c bsd-games-2.17.1/boggle/boggle/mach.c
+--- bsd-games-2.17/boggle/boggle/mach.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/mach.c	2010-05-22 10:51:23.000000000 -0500
+@@ -168,7 +168,7 @@
+  * - doesn't accept words longer than MAXWORDLEN or containing caps
+  */
+ char *
+-getline(q)
++boggle_getline(q)
+ 	char *q;
+ {
+ 	int ch, done;
+diff -Naur bsd-games-2.17/cribbage/cribbage.h bsd-games-2.17.1/cribbage/cribbage.h
+--- bsd-games-2.17/cribbage/cribbage.h	2004-02-08 16:29:14.000000000 -0600
++++ bsd-games-2.17.1/cribbage/cribbage.h	2010-05-22 10:51:23.000000000 -0500
+@@ -77,7 +77,7 @@
+ int	 fifteens(const CARD [], int);
+ void	 game(void);
+ void	 gamescore(void);
+-char	*getline(void);
++char	*cribbage_getline(void);
+ int	 getuchar(void);
+ int	 incard(CARD *);
+ int	 infrom(const CARD [], int, const char *);
+diff -Naur bsd-games-2.17/cribbage/crib.c bsd-games-2.17.1/cribbage/crib.c
+--- bsd-games-2.17/cribbage/crib.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/cribbage/crib.c	2010-05-22 10:51:23.000000000 -0500
+@@ -221,7 +221,7 @@
+ 			if (!rflag) {			/* player cuts deck */
+ 				msg(quiet ? "Cut for crib? " :
+ 			    "Cut to see whose crib it is -- low card wins? ");
+-				getline();
++				cribbage_getline();
+ 			}
+ 			i = (rand() >> 4) % CARDS;	/* random cut */
+ 			do {	/* comp cuts deck */
+@@ -397,7 +397,7 @@
+ 		if (!rflag) {	/* random cut */
+ 			msg(quiet ? "Cut the deck? " :
+ 		    "How many cards down do you wish to cut the deck? ");
+-			getline();
++			cribbage_getline();
+ 		}
+ 		i = (rand() >> 4) % (CARDS - pos);
+ 		turnover = deck[i + pos];
+diff -Naur bsd-games-2.17/cribbage/io.c bsd-games-2.17.1/cribbage/io.c
+--- bsd-games-2.17/cribbage/io.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/cribbage/io.c	2010-05-22 10:51:23.000000000 -0500
+@@ -245,7 +245,7 @@
+ 
+ 	retval = FALSE;
+ 	rnk = sut = EMPTY;
+-	if (!(line = getline()))
++	if (!(line = cribbage_getline()))
+ 		goto gotit;
+ 	p = p1 = line;
+ 	while (*p1 != ' ' && *p1 != '\0')
+@@ -346,7 +346,7 @@
+ 
+ 	for (sum = 0;;) {
+ 		msg(prompt);
+-		if (!(p = getline()) || *p == '\0') {
++		if (!(p = cribbage_getline()) || *p == '\0') {
+ 			msg(quiet ? "Not a number" :
+ 			    "That doesn't look like a number");
+ 			continue;
+@@ -528,12 +528,12 @@
+ }
+ 
+ /*
+- * getline:
++ * cribbage_getline:
+  *      Reads the next line up to '\n' or EOF.  Multiple spaces are
+  *	compressed to one space; a space is inserted before a ','
+  */
+ char *
+-getline()
++cribbage_getline()
+ {
+ 	char *sp;
+ 	int c, oy, ox;
+diff -Naur bsd-games-2.17/gomoku/bdisp.c bsd-games-2.17.1/gomoku/bdisp.c
+--- bsd-games-2.17/gomoku/bdisp.c	2003-12-16 20:47:37.000000000 -0600
++++ bsd-games-2.17.1/gomoku/bdisp.c	2010-05-22 10:51:23.000000000 -0500
+@@ -241,7 +241,7 @@
+ }
+ 
+ int
+-getline(buf, size)
++gomoku_getline(buf, size)
+ 	char *buf;
+ 	int size;
+ {
+diff -Naur bsd-games-2.17/gomoku/gomoku.h bsd-games-2.17.1/gomoku/gomoku.h
+--- bsd-games-2.17/gomoku/gomoku.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/gomoku.h	2010-05-22 10:51:23.000000000 -0500
+@@ -263,7 +263,7 @@
+ 
+ void	bdinit(struct spotstr *);
+ void	init_overlap(void);
+-int	getline(char *, int);
++int	gomoku_getline(char *, int);
+ void	ask(const char *);
+ void	dislog(const char *);
+ void	bdump(FILE *);
+diff -Naur bsd-games-2.17/gomoku/main.c bsd-games-2.17.1/gomoku/main.c
+--- bsd-games-2.17/gomoku/main.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/main.c	2010-05-22 10:51:23.000000000 -0500
+@@ -155,7 +155,7 @@
+ 		if (inputfp == NULL && test == 0) {
+ 			for (;;) {
+ 				ask("black or white? ");
+-				getline(buf, sizeof(buf));
++				gomoku_getline(buf, sizeof(buf));
+ 				if (buf[0] == 'b' || buf[0] == 'B') {
+ 					color = BLACK;
+ 					break;
+@@ -172,7 +172,7 @@
+ 		}
+ 	} else {
+ 		setbuf(stdout, 0);
+-		getline(buf, sizeof(buf));
++		gomoku_getline(buf, sizeof(buf));
+ 		if (strcmp(buf, "black") == 0)
+ 			color = BLACK;
+ 		else if (strcmp(buf, "white") == 0)
+@@ -244,7 +244,7 @@
+ 		getinput:
+ 			if (interactive)
+ 				ask("move? ");
+-			if (!getline(buf, sizeof(buf))) {
++			if (!gomoku_getline(buf, sizeof(buf))) {
+ 				curmove = RESIGN;
+ 				break;
+ 			}
+@@ -256,7 +256,7 @@
+ 					FILE *fp;
+ 
+ 					ask("save file name? ");
+-					(void)getline(buf, sizeof(buf));
++					(void)gomoku_getline(buf, sizeof(buf));
+ 					if ((fp = fopen(buf, "w")) == NULL) {
+ 						glog("cannot create save file");
+ 						goto getinput;
+@@ -309,14 +309,14 @@
+ 		if (i != RESIGN) {
+ 		replay:
+ 			ask("replay? ");
+-			if (getline(buf, sizeof(buf)) &&
++			if (gomoku_getline(buf, sizeof(buf)) &&
+ 			    (buf[0] == 'y' || buf[0] == 'Y'))
+ 				goto again;
+ 			if (strcmp(buf, "save") == 0) {
+ 				FILE *fp;
+ 
+ 				ask("save file name? ");
+-				(void)getline(buf, sizeof(buf));
++				(void)gomoku_getline(buf, sizeof(buf));
+ 				if ((fp = fopen(buf, "w")) == NULL) {
+ 					glog("cannot create save file");
+ 					goto replay;
+@@ -367,7 +367,7 @@
+ 		quit();
+ top:
+ 	ask("cmd? ");
+-	if (!getline(fmtbuf, sizeof(fmtbuf)))
++	if (!gomoku_getline(fmtbuf, sizeof(fmtbuf)))
+ 		quit();
+ 	switch (*fmtbuf) {
+ 	case '\0':
diff --git a/gnu/packages/patches/bsd-games-null-check.patch b/gnu/packages/patches/bsd-games-null-check.patch
new file mode 100644
index 0000000000..048ed93f40
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-null-check.patch
@@ -0,0 +1,24 @@
+diff --git a/hunt/hunt/hunt.c b/hunt/hunt/hunt.c
+index 11f4c44..28321bc 100644
+--- a/hunt/hunt/hunt.c
++++ b/hunt/hunt/hunt.c
+@@ -394,7 +394,8 @@ broadcast_vec(s, vector)
+ 
+ 	vec_cnt = 0;
+ 	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+ 		    (ip->ifa_flags & IFF_BROADCAST))
+ 			vec_cnt++;
+ 
+@@ -405,7 +406,8 @@ broadcast_vec(s, vector)
+ 
+ 	vec_cnt = 0;
+ 	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+ 		    (ip->ifa_flags & IFF_BROADCAST))
+ 			memcpy(&(*vector)[vec_cnt++], ip->ifa_broadaddr,
+ 			       sizeof(struct sockaddr_in));
diff --git a/gnu/packages/patches/bsd-games-number.c.patch b/gnu/packages/patches/bsd-games-number.c.patch
new file mode 100644
index 0000000000..1acbeff30a
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-number.c.patch
@@ -0,0 +1,156 @@
+--- bsdgames-2.17.orig/number/number.c
++++ bsdgames-2.17/number/number.c
+@@ -78,9 +78,9 @@
+ 
+ void	convert(char *);
+ int	main(int, char *[]);
+-int	number(const char *, int);
+-void	pfract(int);
+-int	unit(int, const char *);
++int	number(const char *, int, int *);
++void	pfract(int, int);
++int	unit(int, const char *, int *);
+ void	usage(void) __attribute__((__noreturn__));
+ 
+ int lflag;
+@@ -131,7 +131,7 @@
+ convert(line)
+ 	char *line;
+ {
+-	int flen, len, rval;
++	int flen, len, rval, singular;
+ 	char *p, *fraction;
+ 
+ 	flen = 0;
+@@ -174,7 +174,7 @@
+ 		--len;
+ 	}
+ 
+-	rval = len > 0 ? unit(len, line) : 0;
++	rval = len > 0 ? unit(len, line, &singular) : 0;
+ 	if (fraction != NULL && flen != 0)
+ 		for (p = fraction; *p != '\0'; ++p)
+ 			if (*p != '0') {
+@@ -182,10 +182,10 @@
+ 					(void)printf("%sand%s",
+ 					    lflag ? " " : "",
+ 					    lflag ? " " : "\n");
+-				if (unit(flen, fraction)) {
++				if (unit(flen, fraction, &singular)) {
+ 					if (lflag)
+ 						(void)printf(" ");
+-					pfract(flen);
++					pfract(flen, singular);
+ 					rval = 1;
+ 				}
+ 				break;
+@@ -197,9 +197,10 @@
+ }
+ 
+ int
+-unit(len, p)
++unit(len, p, singular)
+ 	int len;
+ 	const char *p;
++	int *singular;
+ {
+ 	int off, rval;
+ 
+@@ -208,7 +209,7 @@
+ 		if (len % 3) {
+ 			off = len % 3;
+ 			len -= off;
+-			if (number(p, off)) {
++			if (number(p, off, singular)) {
+ 				rval = 1;
+ 				(void)printf(" %s%s",
+ 				    name3[len / 3], lflag ? " " : ".\n");
+@@ -217,14 +218,16 @@
+ 		}
+ 		for (; len > 3; p += 3) {
+ 			len -= 3;
+-			if (number(p, 3)) {
++			if (number(p, 3, singular)) {
+ 				rval = 1;
+ 				(void)printf(" %s%s",
+ 				    name3[len / 3], lflag ? " " : ".\n");
+ 			}
+ 		}
+ 	}
+-	if (number(p, len)) {
++	if (number(p, len, singular)) {
++		if (rval)
++			*singular = 0;
+ 		if (!lflag)
+ 			(void)printf(".\n");
+ 		rval = 1;
+@@ -233,17 +236,20 @@
+ }
+ 
+ int
+-number(p, len)
++number(p, len, singular)
+ 	const char *p;
+ 	int len;
++	int *singular;
+ {
+ 	int val, rval;
+ 
+ 	rval = 0;
++	*singular = 1;
+ 	switch (len) {
+ 	case 3:
+ 		if (*p != '0') {
+ 			rval = 1;
++			*singular = 0;
+ 			(void)printf("%s hundred", name1[*p - '0']);
+ 		}
+ 		++p;
+@@ -262,33 +268,42 @@
+ 			}
+ 			rval = 1;
+ 		}
++		if (val != 1)
++			*singular = 0;
+ 		break;
+ 	case 1:
+ 		if (*p != '0') {
+ 			rval = 1;
+ 			(void)printf("%s", name1[*p - '0']);
+ 		}
++		if (*p != '1')
++			*singular = 0;
+ 	}
+ 	return (rval);
+ }
+ 
+ void
+-pfract(len)
++pfract(len, singular)
+ 	int len;
++	int singular;
+ {
+ 	static const char *const pref[] = { "", "ten-", "hundred-" };
+ 
+ 	switch(len) {
+ 	case 1:
+-		(void)printf("tenths.\n");
++		(void)printf("tenth");
+ 		break;
+ 	case 2:
+-		(void)printf("hundredths.\n");
++		(void)printf("hundredth");
+ 		break;
+ 	default:
+-		(void)printf("%s%sths.\n", pref[len % 3], name3[len / 3]);
++		(void)printf("%s%sth", pref[len % 3], name3[len / 3]);
+ 		break;
+ 	}
++	if (!singular) {
++		printf("s");
++	}
++	printf(".\n");
+ }
+ 
+ void
+
diff --git a/gnu/packages/patches/bsd-games-stdio.h.patch b/gnu/packages/patches/bsd-games-stdio.h.patch
new file mode 100644
index 0000000000..786fa54c4f
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-stdio.h.patch
@@ -0,0 +1,14 @@
+diff -ru a/include/stdio.h b/include/stdio.h
+--- a/include/stdio.h	2000-08-04 10:24:39.000000000 +1000
++++ b/include/stdio.h	2005-06-18 14:26:35.000000000 +1000
+@@ -34,6 +34,10 @@
+ #include <bsd-games.h>
+ #include_next <stdio.h>
+ 
++__BEGIN_DECLS
++
+ #ifndef HAVE_fgetln
+ extern char *fgetln(FILE *stream, size_t *len);
+ #endif
++
++__END_DECLS
diff --git a/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch b/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
new file mode 100644
index 0000000000..0b311f4448
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
@@ -0,0 +1,633 @@
+This append the prefix 'bsd-' to the executables, and the manual pages.  This
+prevents the name collisions, ever.  Also it allow the user to type "bsd-",
+press the Tab key, and see the list of all bsd-games at once, which is nice.
+The games were tested after this renaming, and they do work.
+
+Also this patch hides teachgammon, as this is an executable for tutorial of
+backgammon game.  The tutorial is offered to the user at the game start.
+
+diff -Naur bsd-games-2.17/adventure/Makefrag bsd-games-patch/adventure/Makefrag
+--- bsd-games-2.17/adventure/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/adventure/Makefrag	2020-04-23 22:10:57.717880094 +0700
+@@ -35,6 +35,6 @@
+ 	adventure/setup $< >$@
+ 
+ adventure_install:	adventure_all
+-	$(INSTALL_BINARY) adventure/adventure $(INSTALL_PREFIX)$(GAMESDIR)/adventure
++	$(INSTALL_BINARY) adventure/adventure $(INSTALL_PREFIX)$(GAMESDIR)/bsd-adventure
+ 	$(HIDE_GAME) adventure
+ 	$(INSTALL_MANUAL) adventure/adventure.6
+diff -Naur bsd-games-2.17/arithmetic/Makefrag bsd-games-patch/arithmetic/Makefrag
+--- bsd-games-2.17/arithmetic/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/arithmetic/Makefrag	2020-04-23 22:10:57.721880044 +0700
+@@ -32,6 +32,6 @@
+ arithmetic_all:	arithmetic/arithmetic arithmetic/arithmetic.6
+ 
+ arithmetic_install:	arithmetic/arithmetic
+-	$(INSTALL_BINARY) arithmetic/arithmetic $(INSTALL_PREFIX)$(GAMESDIR)/arithmetic
++	$(INSTALL_BINARY) arithmetic/arithmetic $(INSTALL_PREFIX)$(GAMESDIR)/bsd-arithmetic
+ 	$(HIDE_GAME) arithmetic
+ 	$(INSTALL_MANUAL) arithmetic/arithmetic.6
+diff -Naur bsd-games-2.17/atc/Makefrag bsd-games-patch/atc/Makefrag
+--- bsd-games-2.17/atc/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/atc/Makefrag	2020-04-23 22:10:57.729879944 +0700
+@@ -47,7 +47,7 @@
+ 	mv atc/lex.yy.c $@
+ 
+ atc_install:	atc_all
+-	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/bsd-atc
+ 	$(HIDE_GAME) atc
+ 	$(INSTALL_SCORE_FILE) $(ATC_SCOREFILE)
+ 	$(INSTALL_MANUAL) atc/atc.6
+diff -Naur bsd-games-2.17/backgammon/backgammon/Makefrag bsd-games-patch/backgammon/backgammon/Makefrag
+--- bsd-games-2.17/backgammon/backgammon/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/backgammon/Makefrag	2020-04-23 22:10:57.741879794 +0700
+@@ -33,6 +33,6 @@
+ backgammon_backgammon_all:	backgammon/backgammon/backgammon backgammon/backgammon/backgammon.6
+ 
+ backgammon_backgammon_install:	backgammon_backgammon_all
+-	$(INSTALL_BINARY) backgammon/backgammon/backgammon $(INSTALL_PREFIX)$(GAMESDIR)/backgammon
++	$(INSTALL_BINARY) backgammon/backgammon/backgammon $(INSTALL_PREFIX)$(GAMESDIR)/bsd-backgammon
+ 	$(HIDE_GAME) backgammon
+ 	$(INSTALL_MANUAL) backgammon/backgammon/backgammon.6
+diff -Naur bsd-games-2.17/backgammon/common_source/Makefrag bsd-games-patch/backgammon/common_source/Makefrag
+--- bsd-games-2.17/backgammon/common_source/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/common_source/Makefrag	2020-04-23 22:10:57.749879693 +0700
+@@ -26,8 +26,8 @@
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ # SUCH DAMAGE.
+ 
+-backgammon_common_source_EXEC_PATH := $(GAMESDIR)/backgammon
+-backgammon_common_source_TEACH_PATH := $(GAMESDIR)/teachgammon
++backgammon_common_source_EXEC_PATH := $(GAMESDIR)/bsd-backgammon
++backgammon_common_source_TEACH_PATH := $(GAMESDIR)/.bsd-teachgammon
+ 
+ backgammon_common_source_DEFS := -DEXEC_PATH=\"$(backgammon_common_source_EXEC_PATH)\" -DTEACH_PATH=\"$(backgammon_common_source_TEACH_PATH)\"
+ 
+diff -Naur bsd-games-2.17/backgammon/teachgammon/Makefrag bsd-games-patch/backgammon/teachgammon/Makefrag
+--- bsd-games-2.17/backgammon/teachgammon/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/teachgammon/Makefrag	2020-04-23 22:10:57.753879644 +0700
+@@ -33,6 +33,6 @@
+ backgammon_teachgammon_all:	backgammon/teachgammon/teachgammon
+ 
+ backgammon_teachgammon_install:	backgammon_teachgammon_all
+-	$(INSTALL_BINARY) backgammon/teachgammon/teachgammon $(INSTALL_PREFIX)$(GAMESDIR)/teachgammon
++	$(INSTALL_BINARY) backgammon/teachgammon/teachgammon $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-teachgammon
+ 	$(HIDE_GAME) teachgammon
+ 	$(INSTALL_MANUAL) backgammon.6 teachgammon.6
+diff -Naur bsd-games-2.17/banner/Makefrag bsd-games-patch/banner/Makefrag
+--- bsd-games-2.17/banner/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/banner/Makefrag	2020-04-23 22:10:57.761879543 +0700
+@@ -31,6 +31,6 @@
+ banner_all:	banner/banner banner/banner.6
+ 
+ banner_install:	banner_all
+-	$(INSTALL_BINARY) banner/banner $(INSTALL_PREFIX)$(GAMESDIR)/banner
++	$(INSTALL_BINARY) banner/banner $(INSTALL_PREFIX)$(GAMESDIR)/bsd-banner
+ 	$(HIDE_GAME) banner
+ 	$(INSTALL_MANUAL) banner/banner.6
+diff -Naur bsd-games-2.17/battlestar/Makefrag bsd-games-patch/battlestar/Makefrag
+--- bsd-games-2.17/battlestar/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/battlestar/Makefrag	2020-04-23 22:10:57.769879443 +0700
+@@ -32,7 +32,7 @@
+ battlestar_all:	battlestar/battlestar battlestar/battlestar.6
+ 
+ battlestar_install:	battlestar_all
+-	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/bsd-battlestar
+ 	$(HIDE_GAME) battlestar
+ 	$(INSTALL_MANUAL) battlestar/battlestar.6
+ 	$(INSTALL_SCORE_FILE) $(BATTLESTAR_SCOREFILE)
+diff -Naur bsd-games-2.17/bcd/Makefrag bsd-games-patch/bcd/Makefrag
+--- bsd-games-2.17/bcd/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/bcd/Makefrag	2020-04-23 22:10:57.773879393 +0700
+@@ -31,6 +31,6 @@
+ bcd_all:	bcd/bcd bcd/bcd.6
+ 
+ bcd_install:	bcd_all
+-	$(INSTALL_BINARY) bcd/bcd $(INSTALL_PREFIX)$(GAMESDIR)/bcd
++	$(INSTALL_BINARY) bcd/bcd $(INSTALL_PREFIX)$(GAMESDIR)/bsd-bcd
+ 	$(HIDE_GAME) bcd
+ 	$(INSTALL_MANUAL) bcd/bcd.6
+diff -Naur bsd-games-2.17/boggle/boggle/Makefrag bsd-games-patch/boggle/boggle/Makefrag
+--- bsd-games-2.17/boggle/boggle/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/boggle/boggle/Makefrag	2020-04-23 22:10:57.785879242 +0700
+@@ -35,7 +35,7 @@
+ boggle_boggle_all:	boggle/boggle/boggle boggle/boggle/boggle.6 boggle/boggle/helpfile
+ 
+ boggle_boggle_install:	boggle_boggle_all
+-	$(INSTALL_BINARY) boggle/boggle/boggle $(INSTALL_PREFIX)$(GAMESDIR)/boggle
++	$(INSTALL_BINARY) boggle/boggle/boggle $(INSTALL_PREFIX)$(GAMESDIR)/bsd-boggle
+ 	$(HIDE_GAME) boggle
+ 	$(INSTALL_MANUAL) boggle/boggle/boggle.6
+ 	$(INSTALL_DATA) boggle/boggle/helpfile $(INSTALL_PREFIX)$(BOGGLE_DIR)/helpfile
+diff -Naur bsd-games-2.17/caesar/Makefrag bsd-games-patch/caesar/Makefrag
+--- bsd-games-2.17/caesar/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/caesar/Makefrag	2020-04-23 22:10:57.805878993 +0700
+@@ -31,9 +31,9 @@
+ caesar_all:	caesar/caesar caesar/caesar.6 caesar/rot13
+ 
+ caesar_install:	caesar_all
+-	$(INSTALL_BINARY) caesar/caesar $(INSTALL_PREFIX)$(GAMESDIR)/caesar
++	$(INSTALL_BINARY) caesar/caesar $(INSTALL_PREFIX)$(GAMESDIR)/bsd-caesar
+ 	$(HIDE_GAME) caesar
+-	$(INSTALL_SCRIPT) caesar/rot13 $(INSTALL_PREFIX)$(GAMESDIR)/rot13
++	$(INSTALL_SCRIPT) caesar/rot13 $(INSTALL_PREFIX)$(GAMESDIR)/bsd-rot13
+ 	$(HIDE_GAME) rot13
+ 	$(INSTALL_MANUAL) caesar/caesar.6
+ 	$(INSTALL_MANUAL) caesar.6 rot13.6
+diff -Naur bsd-games-2.17/caesar/rot13.in bsd-games-patch/caesar/rot13.in
+--- bsd-games-2.17/caesar/rot13.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/caesar/rot13.in	2020-04-23 22:14:31.031209315 +0700
+@@ -34,4 +34,4 @@
+ #	@(#)rot13.sh	8.1 (Berkeley) 5/31/93
+ #
+ 
+-exec @gamesdir@/caesar 13 "$@"
++exec @gamesdir@/bsd-caesar 13 "$@"
+diff -Naur bsd-games-2.17/canfield/canfield/Makefrag bsd-games-patch/canfield/canfield/Makefrag
+--- bsd-games-2.17/canfield/canfield/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/canfield/canfield/Makefrag	2020-04-23 22:10:57.817878842 +0700
+@@ -31,7 +31,7 @@
+ canfield_canfield_all:	canfield/canfield/canfield canfield/canfield/canfield.6
+ 
+ canfield_canfield_install: canfield_canfield_all
+-	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/bsd-canfield
+ 	$(HIDE_GAME) canfield
+ 	$(INSTALL_MANUAL) canfield/canfield/canfield.6
+ 	$(INSTALL_SCORE_FILE) $(CANFIELD_SCOREFILE)
+diff -Naur bsd-games-2.17/canfield/cfscores/Makefrag bsd-games-patch/canfield/cfscores/Makefrag
+--- bsd-games-2.17/canfield/cfscores/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/canfield/cfscores/Makefrag	2020-04-23 22:10:57.821878792 +0700
+@@ -32,6 +32,6 @@
+ canfield_cfscores_all:	canfield/cfscores/cfscores
+ 
+ canfield_cfscores_install:	canfield_cfscores_all
+-	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/cfscores
++	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/bsd-cfscores
+ 	$(HIDE_GAME) cfscores
+ 	$(INSTALL_MANUAL) canfield.6 cfscores.6
+diff -Naur bsd-games-2.17/countmail/Makefrag bsd-games-patch/countmail/Makefrag
+--- bsd-games-2.17/countmail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/countmail/Makefrag	2020-04-23 22:10:57.825878742 +0700
+@@ -31,6 +31,6 @@
+ countmail_all:	countmail/countmail countmail/countmail.6
+ 
+ countmail_install:	countmail_all
+-	$(INSTALL_SCRIPT) countmail/countmail $(INSTALL_PREFIX)$(GAMESDIR)/countmail
++	$(INSTALL_SCRIPT) countmail/countmail $(INSTALL_PREFIX)$(GAMESDIR)/bsd-countmail
+ 	$(HIDE_GAME) countmail
+ 	$(INSTALL_MANUAL) countmail/countmail.6
+diff -Naur bsd-games-2.17/cribbage/Makefrag bsd-games-patch/cribbage/Makefrag
+--- bsd-games-2.17/cribbage/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/cribbage/Makefrag	2020-04-23 22:10:57.833878642 +0700
+@@ -31,7 +31,7 @@
+ cribbage_all:	cribbage/cribbage cribbage/cribbage.n cribbage/cribbage.6
+ 
+ cribbage_install:	cribbage_all
+-	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/bsd-cribbage
+ 	$(HIDE_GAME) cribbage
+ 	$(INSTALL_DATA) cribbage/cribbage.n $(INSTALL_PREFIX)$(CRIBBAGE_INSTRFILE)
+ 	$(INSTALL_SCORE_FILE) $(CRIBBAGE_SCOREFILE)
+diff -Naur bsd-games-2.17/dab/Makefrag bsd-games-patch/dab/Makefrag
+--- bsd-games-2.17/dab/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/dab/Makefrag	2020-04-23 22:10:57.837878591 +0700
+@@ -31,6 +31,6 @@
+ dab_all:	dab/dab dab/dab.6
+ 
+ dab_install:	dab_all
+-	$(INSTALL_BINARY) dab/dab $(INSTALL_PREFIX)$(GAMESDIR)/dab
++	$(INSTALL_BINARY) dab/dab $(INSTALL_PREFIX)$(GAMESDIR)/bsd-dab
+ 	$(HIDE_GAME) dab
+ 	$(INSTALL_MANUAL) dab/dab.6
+diff -Naur bsd-games-2.17/dm/Makefrag bsd-games-patch/dm/Makefrag
+--- bsd-games-2.17/dm/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/dm/Makefrag	2020-04-23 22:10:57.841878541 +0700
+@@ -33,6 +33,6 @@
+ dm_all:	dm/dm dm/dm.8 dm/dm.conf.5
+ 
+ dm_install:	dm_all
+-	$(INSTALL_DM) dm/dm $(INSTALL_PREFIX)$(GAMESDIR)/dm
++	$(INSTALL_DM) dm/dm $(INSTALL_PREFIX)$(GAMESDIR)/bsd-dm
+ 	$(INSTALL_MANUAL) dm/dm.8
+ 	$(INSTALL_MANUAL) dm/dm.conf.5
+diff -Naur bsd-games-2.17/factor/Makefrag bsd-games-patch/factor/Makefrag
+--- bsd-games-2.17/factor/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/factor/Makefrag	2020-04-23 22:10:57.845878492 +0700
+@@ -34,6 +34,6 @@
+ factor_all:	factor/factor factor/factor.6
+ 
+ factor_install:	factor_all
+-	$(INSTALL_BINARY) factor/factor $(INSTALL_PREFIX)$(GAMESDIR)/factor
++	$(INSTALL_BINARY) factor/factor $(INSTALL_PREFIX)$(GAMESDIR)/bsd-factor
+ 	$(HIDE_GAME) factor
+ 	$(INSTALL_MANUAL) factor/factor.6
+diff -Naur bsd-games-2.17/fish/Makefrag bsd-games-patch/fish/Makefrag
+--- bsd-games-2.17/fish/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fish/Makefrag	2020-04-23 22:10:57.849878441 +0700
+@@ -31,7 +31,7 @@
+ fish_all:	fish/fish fish/fish.instr fish/fish.6
+ 
+ fish_install:	fish_all
+-	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/fish
++	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/bsd-fish
+ 	$(HIDE_GAME) fish
+ 	$(INSTALL_DATA) fish/fish.instr $(INSTALL_PREFIX)$(FISH_INSTRFILE)
+ 	$(INSTALL_MANUAL) fish/fish.6
+diff -Naur bsd-games-2.17/fortune/fortune/Makefrag bsd-games-patch/fortune/fortune/Makefrag
+--- bsd-games-2.17/fortune/fortune/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/fortune/Makefrag	2020-04-23 22:10:57.865878241 +0700
+@@ -33,6 +33,6 @@
+ fortune_fortune_all:	fortune/fortune/fortune fortune/fortune/fortune.6
+ 
+ fortune_fortune_install:	fortune_fortune_all
+-	$(INSTALL_BINARY) fortune/fortune/fortune $(INSTALL_PREFIX)$(GAMESDIR)/fortune
++	$(INSTALL_BINARY) fortune/fortune/fortune $(INSTALL_PREFIX)$(GAMESDIR)/bsd-fortune
+ 	$(HIDE_GAME) fortune
+ 	$(INSTALL_MANUAL) fortune/fortune/fortune.6
+diff -Naur bsd-games-2.17/fortune/strfile/Makefrag bsd-games-patch/fortune/strfile/Makefrag
+--- bsd-games-2.17/fortune/strfile/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/strfile/Makefrag	2020-04-23 22:10:57.869878191 +0700
+@@ -31,5 +31,5 @@
+ fortune_strfile_all:	fortune/strfile/strfile fortune/strfile/strfile.8
+ 
+ fortune_strfile_install:	fortune_strfile_all
+-	$(INSTALL_BINARY) fortune/strfile/strfile $(INSTALL_PREFIX)$(USRBINDIR)/strfile
++	$(INSTALL_BINARY) fortune/strfile/strfile $(INSTALL_PREFIX)$(USRBINDIR)/bsd-strfile
+ 	$(INSTALL_MANUAL) fortune/strfile/strfile.8
+diff -Naur bsd-games-2.17/fortune/unstr/Makefrag bsd-games-patch/fortune/unstr/Makefrag
+--- bsd-games-2.17/fortune/unstr/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/unstr/Makefrag	2020-04-23 22:10:57.877878091 +0700
+@@ -33,4 +33,4 @@
+ 
+ # We don't install unstr.
+ fortune_unstr_install:	fortune_unstr_all
+-#	$(INSTALL_BINARY) fortune/unstr/unstr $(INSTALL_PREFIX)$(USRBINDIR)/unstr
++#	$(INSTALL_BINARY) fortune/unstr/unstr $(INSTALL_PREFIX)$(USRBINDIR)/bsd-unstr
+diff -Naur bsd-games-2.17/gomoku/Makefrag bsd-games-patch/gomoku/Makefrag
+--- bsd-games-2.17/gomoku/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/gomoku/Makefrag	2020-04-23 22:10:57.881878041 +0700
+@@ -31,6 +31,6 @@
+ gomoku_all:	gomoku/gomoku gomoku/gomoku.6
+ 
+ gomoku_install:	gomoku_all
+-	$(INSTALL_BINARY) gomoku/gomoku $(INSTALL_PREFIX)$(GAMESDIR)/gomoku
++	$(INSTALL_BINARY) gomoku/gomoku $(INSTALL_PREFIX)$(GAMESDIR)/bsd-gomoku
+ 	$(HIDE_GAME) gomoku
+ 	$(INSTALL_MANUAL) gomoku/gomoku.6
+diff -Naur bsd-games-2.17/hack/Makefrag bsd-games-patch/hack/Makefrag
+--- bsd-games-2.17/hack/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/hack/Makefrag	2020-04-23 22:10:57.885877991 +0700
+@@ -53,7 +53,7 @@
+ hack/hack.zap.d hack/rnd.d:	hack/hack.onames.h
+ 
+ hack_install:	hack_all
+-	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hack
+ 	$(HIDE_GAME) hack
+ 	$(INSTALL_HACK_DIR) $(INSTALL_PREFIX)$(HACK_DIR)
+ 	set -e; for f in data help hh rumors; do $(INSTALL_DATA) hack/$$f $(INSTALL_PREFIX)$(HACK_DIR)/$$f; done
+diff -Naur bsd-games-2.17/hangman/Makefrag bsd-games-patch/hangman/Makefrag
+--- bsd-games-2.17/hangman/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hangman/Makefrag	2020-04-23 22:10:57.889877940 +0700
+@@ -31,6 +31,6 @@
+ hangman_all:	hangman/hangman hangman/hangman.6
+ 
+ hangman_install:	hangman_all
+-	$(INSTALL_BINARY) hangman/hangman $(INSTALL_PREFIX)$(GAMESDIR)/hangman
++	$(INSTALL_BINARY) hangman/hangman $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hangman
+ 	$(HIDE_GAME) hangman
+ 	$(INSTALL_MANUAL) hangman/hangman.6
+diff -Naur bsd-games-2.17/hunt/hunt/Makefrag bsd-games-patch/hunt/hunt/Makefrag
+--- bsd-games-2.17/hunt/hunt/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/hunt/Makefrag	2020-04-23 22:10:57.901877791 +0700
+@@ -35,6 +35,6 @@
+ hunt_hunt_all:	hunt/hunt/hunt hunt/hunt/hunt.6
+ 
+ hunt_hunt_install:	hunt_hunt_all
+-	$(INSTALL_BINARY) hunt/hunt/hunt $(INSTALL_PREFIX)$(GAMESDIR)/hunt
++	$(INSTALL_BINARY) hunt/hunt/hunt $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hunt
+ 	$(HIDE_GAME) hunt
+ 	$(INSTALL_MANUAL) hunt/hunt/hunt.6
+diff -Naur bsd-games-2.17/hunt/huntd/Makefrag bsd-games-patch/hunt/huntd/Makefrag
+--- bsd-games-2.17/hunt/huntd/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/huntd/Makefrag	2020-04-23 22:10:57.905877740 +0700
+@@ -34,5 +34,5 @@
+ hunt_huntd_all:	hunt/huntd/huntd hunt/huntd/huntd.6
+ 
+ hunt_huntd_install:	hunt_huntd_all
+-	$(INSTALL_DAEMON) hunt/huntd/huntd $(INSTALL_PREFIX)$(SBINDIR)/huntd
++	$(INSTALL_DAEMON) hunt/huntd/huntd $(INSTALL_PREFIX)$(SBINDIR)/bsd-huntd
+ 	$(INSTALL_MANUAL) hunt/huntd/huntd.6
+diff -Naur bsd-games-2.17/hunt/Makeconfig bsd-games-patch/hunt/Makeconfig
+--- bsd-games-2.17/hunt/Makeconfig	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/Makeconfig	2020-04-23 22:16:23.413802295 +0700
+@@ -59,6 +59,6 @@
+ hunt_DEFS_OSF1 := -DINTERNET -DLOG -DBSD_RELEASE=43 -DSIGNAL_TYPE=void -D_BSD
+ hunt_DEFS_LINUX := -DINTERNET -DLOG -DBSD_RELEASE=44 -DUSE_CURSES -DSIGNAL_TYPE=void
+ 
+-hunt_DEFS := $(hunt_GAME_PARAM) $(hunt_DEFS_LINUX) -DHUNTD=\"$(SBINDIR)/huntd\"
++hunt_DEFS := $(hunt_GAME_PARAM) $(hunt_DEFS_LINUX) -DHUNTD=\"$(SBINDIR)/bsd-huntd\"
+ 
+ endif
+diff -Naur bsd-games-2.17/install-man.in bsd-games-patch/install-man.in
+--- bsd-games-2.17/install-man.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-man.in	2020-04-23 22:17:26.677010195 +0700
+@@ -30,7 +30,7 @@
+ 
+ if [ $# = 1 ]; then
+     page=$1
+-    basepage=$(basename "$page")
++    basepage=bsd-$(basename "$page")
+     section=${basepage##*.}
+     if [ "$section" = 6 ]; then
+ 	mandir=@install_prefix@@man6dir@
+@@ -50,9 +50,9 @@
+ elif [ $# = 2 ]; then
+     # Manpage 2 should link to manpage 1.  No complications of removing
+     # directories from their names.
+-    page1=$1
++    page1=bsd-$1
+     section1=${page1##*.}
+-    page2=$2
++    page2=bsd-$2
+     section2=${page2##*.}
+     if [ "$section2" = 6 ]; then
+ 	mandir=@install_prefix@@man6dir@
+diff -Naur bsd-games-2.17/mille/Makefrag bsd-games-patch/mille/Makefrag
+--- bsd-games-2.17/mille/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/mille/Makefrag	2020-04-23 22:10:57.917877590 +0700
+@@ -31,6 +31,6 @@
+ mille_all:	mille/mille mille/mille.6
+ 
+ mille_install:	mille_all
+-	$(INSTALL_BINARY) mille/mille $(INSTALL_PREFIX)$(GAMESDIR)/mille
++	$(INSTALL_BINARY) mille/mille $(INSTALL_PREFIX)$(GAMESDIR)/bsd-mille
+ 	$(HIDE_GAME) mille
+ 	$(INSTALL_MANUAL) mille/mille.6
+diff -Naur bsd-games-2.17/monop/Makefrag bsd-games-patch/monop/Makefrag
+--- bsd-games-2.17/monop/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/monop/Makefrag	2020-04-23 22:10:57.921877540 +0700
+@@ -35,7 +35,7 @@
+ 	$< monop/cards.inp $@
+ 
+ monop_install:	monop_all
+-	$(INSTALL_BINARY) monop/monop $(INSTALL_PREFIX)$(GAMESDIR)/monop
++	$(INSTALL_BINARY) monop/monop $(INSTALL_PREFIX)$(GAMESDIR)/bsd-monop
+ 	$(HIDE_GAME) monop
+ 	$(INSTALL_MANUAL) monop/monop.6
+ 	$(INSTALL_DATA) monop/cards.pck $(INSTALL_PREFIX)$(MONOP_CARDSFILE)
+diff -Naur bsd-games-2.17/morse/Makefrag bsd-games-patch/morse/Makefrag
+--- bsd-games-2.17/morse/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/morse/Makefrag	2020-04-23 22:10:57.925877490 +0700
+@@ -31,6 +31,6 @@
+ morse_all:	morse/morse
+ 
+ morse_install:	morse_all
+-	$(INSTALL_BINARY) morse/morse $(INSTALL_PREFIX)$(GAMESDIR)/morse
++	$(INSTALL_BINARY) morse/morse $(INSTALL_PREFIX)$(GAMESDIR)/bsd-morse
+ 	$(HIDE_GAME) morse
+ 	$(INSTALL_MANUAL) bcd.6 morse.6
+diff -Naur bsd-games-2.17/number/Makefrag bsd-games-patch/number/Makefrag
+--- bsd-games-2.17/number/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/number/Makefrag	2020-04-23 22:10:57.929877440 +0700
+@@ -32,6 +32,6 @@
+ number_all:	number/number number/number.6
+ 
+ number_install:	number_all
+-	$(INSTALL_BINARY) number/number $(INSTALL_PREFIX)$(GAMESDIR)/number
++	$(INSTALL_BINARY) number/number $(INSTALL_PREFIX)$(GAMESDIR)/bsd-number
+ 	$(HIDE_GAME) number
+ 	$(INSTALL_MANUAL) number/number.6
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-23 22:10:57.937877340 +0700
+@@ -38,7 +38,7 @@
+ 	touch phantasia/scorefiles.stamp
+ 
+ phantasia_install:	phantasia_all
+-	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/bsd-phantasia
+ 	$(HIDE_GAME) phantasia
+ 	(set -e; for f in $(phantasia_VFILES1); do \
+ 	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+diff -ur bsd-games-2.17.orig/phantasia/pathnames.h.in bsd-games-2.17/phantasia/pathnames.h.in
+--- bsd-games-2.17.orig/phantasia/pathnames.h.in	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/phantasia/pathnames.h.in	2020-06-20 02:08:09.212762289 +0700
+@@ -31,7 +31,7 @@
+  *	@(#)pathnames.h	8.2 (Berkeley) 4/2/94
+  */
+ 
+-#define	_PATH_GAMEPROG	"@gamesdir@/phantasia"
++#define	_PATH_GAMEPROG	"@gamesdir@/bsd-phantasia"
+ #define	_PATH_GOLD	"@phantasia_dir@/gold"
+ #define	_PATH_LASTDEAD	"@phantasia_dir@/lastdead"
+ #define	_PATH_MESS	"@phantasia_dir@/mess"
+diff -Naur bsd-games-2.17/pig/Makefrag bsd-games-patch/pig/Makefrag
+--- bsd-games-2.17/pig/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/pig/Makefrag	2020-04-23 22:10:57.941877290 +0700
+@@ -31,6 +31,6 @@
+ pig_all:	pig/pig pig/pig.6
+ 
+ pig_install:	pig_all
+-	$(INSTALL_BINARY) pig/pig $(INSTALL_PREFIX)$(GAMESDIR)/pig
++	$(INSTALL_BINARY) pig/pig $(INSTALL_PREFIX)$(GAMESDIR)/bsd-pig
+ 	$(HIDE_GAME) pig
+ 	$(INSTALL_MANUAL) pig/pig.6
+diff -Naur bsd-games-2.17/pom/Makefrag bsd-games-patch/pom/Makefrag
+--- bsd-games-2.17/pom/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/pom/Makefrag	2020-04-23 22:10:57.945877239 +0700
+@@ -31,6 +31,6 @@
+ pom_all:	pom/pom pom/pom.6
+ 
+ pom_install:	pom_all
+-	$(INSTALL_BINARY) pom/pom $(INSTALL_PREFIX)$(GAMESDIR)/pom
++	$(INSTALL_BINARY) pom/pom $(INSTALL_PREFIX)$(GAMESDIR)/bsd-pom
+ 	$(HIDE_GAME) pom
+ 	$(INSTALL_MANUAL) pom/pom.6
+diff -Naur bsd-games-2.17/ppt/Makefrag bsd-games-patch/ppt/Makefrag
+--- bsd-games-2.17/ppt/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/ppt/Makefrag	2020-04-23 22:10:57.949877189 +0700
+@@ -31,6 +31,6 @@
+ ppt_all:	ppt/ppt
+ 
+ ppt_install:	ppt_all
+-	$(INSTALL_BINARY) ppt/ppt $(INSTALL_PREFIX)$(GAMESDIR)/ppt
++	$(INSTALL_BINARY) ppt/ppt $(INSTALL_PREFIX)$(GAMESDIR)/bsd-ppt
+ 	$(HIDE_GAME) ppt
+ 	$(INSTALL_MANUAL) bcd.6 ppt.6
+diff -Naur bsd-games-2.17/primes/Makefrag bsd-games-patch/primes/Makefrag
+--- bsd-games-2.17/primes/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/primes/Makefrag	2020-04-23 22:10:57.953877140 +0700
+@@ -32,6 +32,6 @@
+ primes_all:	primes/primes primes/primes.6
+ 
+ primes_install:	primes_all
+-	$(INSTALL_BINARY) primes/primes $(INSTALL_PREFIX)$(GAMESDIR)/primes
++	$(INSTALL_BINARY) primes/primes $(INSTALL_PREFIX)$(GAMESDIR)/bsd-primes
+ 	$(HIDE_GAME) primes
+ 	$(INSTALL_MANUAL) primes/primes.6
+diff -Naur bsd-games-2.17/quiz/Makefrag bsd-games-patch/quiz/Makefrag
+--- bsd-games-2.17/quiz/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/quiz/Makefrag	2020-04-23 22:10:57.961877039 +0700
+@@ -32,6 +32,6 @@
+ quiz_all:	quiz/quiz quiz/quiz.6
+ 
+ quiz_install:	quiz_all
+-	$(INSTALL_BINARY) quiz/quiz $(INSTALL_PREFIX)$(GAMESDIR)/quiz
++	$(INSTALL_BINARY) quiz/quiz $(INSTALL_PREFIX)$(GAMESDIR)/bsd-quiz
+ 	$(HIDE_GAME) quiz
+ 	$(INSTALL_MANUAL) quiz/quiz.6
+diff -Naur bsd-games-2.17/rain/Makefrag bsd-games-patch/rain/Makefrag
+--- bsd-games-2.17/rain/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/rain/Makefrag	2020-04-23 22:10:57.969876939 +0700
+@@ -31,6 +31,6 @@
+ rain_all:	rain/rain rain/rain.6
+ 
+ rain_install:	rain_all
+-	$(INSTALL_BINARY) rain/rain $(INSTALL_PREFIX)$(GAMESDIR)/rain
++	$(INSTALL_BINARY) rain/rain $(INSTALL_PREFIX)$(GAMESDIR)/bsd-rain
+ 	$(HIDE_GAME) rain
+ 	$(INSTALL_MANUAL) rain/rain.6
+diff -Naur bsd-games-2.17/random/Makefrag bsd-games-patch/random/Makefrag
+--- bsd-games-2.17/random/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/random/Makefrag	2020-04-23 22:10:57.973876889 +0700
+@@ -31,6 +31,6 @@
+ random_all:	random/random random/random.6
+ 
+ random_install:	random_all
+-	$(INSTALL_BINARY) random/random $(INSTALL_PREFIX)$(GAMESDIR)/random
++	$(INSTALL_BINARY) random/random $(INSTALL_PREFIX)$(GAMESDIR)/bsd-random
+ 	$(HIDE_GAME) random
+ 	$(INSTALL_MANUAL) random/random.6
+diff -Naur bsd-games-2.17/robots/Makefrag bsd-games-patch/robots/Makefrag
+--- bsd-games-2.17/robots/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/robots/Makefrag	2020-04-23 22:10:57.981876789 +0700
+@@ -32,7 +32,7 @@
+ robots_all:	robots/robots robots/robots.6
+ 
+ robots_install:	robots_all
+-	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/bsd-robots
+ 	$(HIDE_GAME) robots
+ 	$(INSTALL_SCORE_FILE) $(ROBOTS_SCOREFILE)
+ 	$(INSTALL_MANUAL) robots/robots.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-23 22:10:57.989876689 +0700
+@@ -31,7 +31,7 @@
+ sail_all:	sail/sail sail/sail.6
+ 
+ sail_install:	sail_all
+-	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/bsd-sail
+ 	$(HIDE_GAME) sail
+ 	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+ 	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+diff -Naur bsd-games-2.17/snake/snake/Makefrag bsd-games-patch/snake/snake/Makefrag
+--- bsd-games-2.17/snake/snake/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/snake/snake/Makefrag	2020-04-23 22:10:57.997876588 +0700
+@@ -31,7 +31,7 @@
+ snake_snake_all:	snake/snake/snake snake/snake/snake.6
+ 
+ snake_snake_install:	snake_snake_all
+-	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/bsd-snake
+ 	$(HIDE_GAME) snake
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_SCOREFILE)
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_RAWSCOREFILE)
+diff -Naur bsd-games-2.17/snake/snscore/Makefrag bsd-games-patch/snake/snscore/Makefrag
+--- bsd-games-2.17/snake/snscore/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/snake/snscore/Makefrag	2020-04-23 22:10:58.005876489 +0700
+@@ -32,6 +32,6 @@
+ snake_snscore_all:	snake/snscore/snscore
+ 
+ snake_snscore_install:	snake_snscore_all
+-	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/snscore
++	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/bsd-snscore
+ 	$(HIDE_GAME) snscore
+ 	$(INSTALL_MANUAL) snake.6 snscore.6
+diff -Naur bsd-games-2.17/tetris/Makefrag bsd-games-patch/tetris/Makefrag
+--- bsd-games-2.17/tetris/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/tetris/Makefrag	2020-04-23 22:11:47.137261335 +0700
+@@ -32,7 +32,7 @@
+ tetris_all:	tetris/tetris tetris/tetris.6
+ 
+ tetris_install:	tetris_all
+-	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/bsd-tetris
+ 	$(HIDE_GAME) tetris-bsd
+ 	$(INSTALL_SCORE_FILE) $(TETRIS_SCOREFILE)
+ 	ln -f tetris/tetris.6 tetris/tetris-bsd.6
+diff -Naur bsd-games-2.17/trek/Makefrag bsd-games-patch/trek/Makefrag
+--- bsd-games-2.17/trek/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/trek/Makefrag	2020-04-23 22:10:58.017876338 +0700
+@@ -31,7 +31,7 @@
+ trek_all:	trek/trek trek/trek.6 trek/USD.doc/trek.me
+ 
+ trek_install:	trek_all
+-	$(INSTALL_BINARY) trek/trek $(INSTALL_PREFIX)$(GAMESDIR)/trek
++	$(INSTALL_BINARY) trek/trek $(INSTALL_PREFIX)$(GAMESDIR)/bsd-trek
+ 	$(HIDE_GAME) trek
+ 	$(INSTALL_MANUAL) trek/trek.6
+ 	$(INSTALL_DATA) trek/USD.doc/trek.me $(INSTALL_PREFIX)$(DOCDIR)/trek.me
+diff -Naur bsd-games-2.17/wargames/Makefrag bsd-games-patch/wargames/Makefrag
+--- bsd-games-2.17/wargames/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wargames/Makefrag	2020-04-23 22:10:58.021876288 +0700
+@@ -31,6 +31,6 @@
+ wargames_all:	wargames/wargames wargames/wargames.6
+ 
+ wargames_install:	wargames_all
+-	$(INSTALL_SCRIPT) wargames/wargames $(INSTALL_PREFIX)$(GAMESDIR)/wargames
++	$(INSTALL_SCRIPT) wargames/wargames $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wargames
+ 	$(HIDE_GAME) wargames
+ 	$(INSTALL_MANUAL) wargames/wargames.6
+diff -Naur bsd-games-2.17/worm/Makefrag bsd-games-patch/worm/Makefrag
+--- bsd-games-2.17/worm/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/worm/Makefrag	2020-04-23 22:10:58.029876188 +0700
+@@ -31,6 +31,6 @@
+ worm_all:	worm/worm worm/worm.6
+ 
+ worm_install:	worm_all
+-	$(INSTALL_BINARY) worm/worm $(INSTALL_PREFIX)$(GAMESDIR)/worm
++	$(INSTALL_BINARY) worm/worm $(INSTALL_PREFIX)$(GAMESDIR)/bsd-worm
+ 	$(HIDE_GAME) worm
+ 	$(INSTALL_MANUAL) worm/worm.6
+diff -Naur bsd-games-2.17/worms/Makefrag bsd-games-patch/worms/Makefrag
+--- bsd-games-2.17/worms/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/worms/Makefrag	2020-04-23 22:10:58.033876138 +0700
+@@ -31,6 +31,6 @@
+ worms_all:	worms/worms worms/worms.6
+ 
+ worms_install:	worms_all
+-	$(INSTALL_BINARY) worms/worms $(INSTALL_PREFIX)$(GAMESDIR)/worms
++	$(INSTALL_BINARY) worms/worms $(INSTALL_PREFIX)$(GAMESDIR)/bsd-worms
+ 	$(HIDE_GAME) worms
+ 	$(INSTALL_MANUAL) worms/worms.6
+diff -Naur bsd-games-2.17/wtf/Makefrag bsd-games-patch/wtf/Makefrag
+--- bsd-games-2.17/wtf/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wtf/Makefrag	2020-04-23 22:10:58.037876087 +0700
+@@ -31,7 +31,7 @@
+ wtf_all:	wtf/wtf wtf/wtf.6
+ 
+ wtf_install:	wtf_all
+-	$(INSTALL_SCRIPT) wtf/wtf $(INSTALL_PREFIX)$(GAMESDIR)/wtf
++	$(INSTALL_SCRIPT) wtf/wtf $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wtf
+ 	$(HIDE_GAME) wtf
+ 	$(INSTALL_DATA) wtf/acronyms $(INSTALL_PREFIX)$(WTF_ACRONYMFILE)
+ 	$(INSTALL_DATA) wtf/acronyms.comp $(INSTALL_PREFIX)$(WTF_ACRONYMFILE).comp
+diff -Naur bsd-games-2.17/wump/Makefrag bsd-games-patch/wump/Makefrag
+--- bsd-games-2.17/wump/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wump/Makefrag	2020-04-23 22:10:58.045875988 +0700
+@@ -31,7 +31,7 @@
+ wump_all:	wump/wump wump/wump.6 wump/wump.info
+ 
+ wump_install:	wump_all
+-	$(INSTALL_BINARY) wump/wump $(INSTALL_PREFIX)$(GAMESDIR)/wump
++	$(INSTALL_BINARY) wump/wump $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wump
+ 	$(HIDE_GAME) wump
+ 	$(INSTALL_DATA) wump/wump.info $(INSTALL_PREFIX)$(WUMP_INFOFILE)
+ 	$(INSTALL_MANUAL) wump/wump.6
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
                   ` (4 preceding siblings ...)
  2020-08-04 20:59 ` Vitaliy Shatrov via Guix-patches via
@ 2020-08-05 14:35 ` Vitaliy Shatrov via Guix-patches via
  2020-08-06  4:12 ` Vitaliy Shatrov via Guix-patches via
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-08-05 14:35 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org; +Cc: Nicolas Goaziou


[-- Attachment #1.1: Type: text/plain, Size: 173 bytes --]

Actually sail need the writable directory too.
Do not compile it untill some solution found.

Regards, Vitaliy.

Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #1.2: Type: text/html, Size: 457 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-PATCH-gnu-Add-bsd-games.patch --]
[-- Type: text/x-patch; name=0001-PATCH-gnu-Add-bsd-games.patch, Size: 63153 bytes --]

From 26109469d6e5211f395007b581b39ad374e96655 Mon Sep 17 00:00:00 2001
From: Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
Date: Wed, 5 Aug 2020 21:30:26 +0700
Subject: [PATCH] [PATCH] gnu: Add bsd-games.

* gnu/packages/games.scm (bsd-games): a new variable.

New patches, taken from Arch and Debian:
* gnu/packages/patches/bsd-games-2.17-64bit.patch
* gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
* gnu/packages/patches/bsd-games-fix-number-test.patch
* gnu/packages/patches/bsd-games-gamescreen.h.patch
* gnu/packages/patches/bsd-games-getline.patch
* gnu/packages/patches/bsd-games-null-check.patch
* gnu/packages/patches/bsd-games-number.c.patch
* gnu/packages/patches/bsd-games-stdio.h.patch

New patches:
* gnu/packages/patches/bsd-games-add-configure-config.patch
* gnu/packages/patches/bsd-games-dont-install-empty-files.patch
* gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
---
 gnu/packages/games.scm                        | 139 ++++
 .../patches/bsd-games-2.17-64bit.patch        |  43 ++
 .../bsd-games-add-configure-config.patch      |  25 +
 .../patches/bsd-games-bad-ntohl-cast.patch    |  22 +
 .../bsd-games-dont-install-empty-files.patch  |  87 +++
 .../patches/bsd-games-fix-number-test.patch   |  32 +
 .../patches/bsd-games-gamescreen.h.patch      |  15 +
 gnu/packages/patches/bsd-games-getline.patch  | 194 ++++++
 .../patches/bsd-games-null-check.patch        |  24 +
 gnu/packages/patches/bsd-games-number.c.patch | 156 +++++
 gnu/packages/patches/bsd-games-stdio.h.patch  |  14 +
 ...bsd-games-use-anthology-style-naming.patch | 633 ++++++++++++++++++
 12 files changed, 1384 insertions(+)
 create mode 100644 gnu/packages/patches/bsd-games-2.17-64bit.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-configure-config.patch
 create mode 100644 gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
 create mode 100644 gnu/packages/patches/bsd-games-dont-install-empty-files.patch
 create mode 100644 gnu/packages/patches/bsd-games-fix-number-test.patch
 create mode 100644 gnu/packages/patches/bsd-games-gamescreen.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-getline.patch
 create mode 100644 gnu/packages/patches/bsd-games-null-check.patch
 create mode 100644 gnu/packages/patches/bsd-games-number.c.patch
 create mode 100644 gnu/packages/patches/bsd-games-stdio.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-use-anthology-style-naming.patch

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0f79f5eeba..4af543401f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -115,6 +115,7 @@
   #:use-module (gnu packages gl)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gnu-doc)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages gnuzilla)
   #:use-module (gnu packages gperf)
@@ -584,6 +585,144 @@ possible, while battling many vicious aliens.")
                    license:lgpl2.1+
                    license:bsd-2))))
 
+(define-public bsd-games
+  (package
+    (name "bsd-games")
+    (version "2.17.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://ibiblio.org/pub/linux/games/bsd-games-2.17.tar.gz")
+       (sha256
+        (base32
+         "0q7zdyyfvn15y0w4g54kq3gza89h61py727m8slmw73cxx594vq6"))
+       (patches
+        (search-patches
+         ;; thanks Arch, and Debian
+         "bsd-games-2.17-64bit.patch"
+         "bsd-games-bad-ntohl-cast.patch"
+         "bsd-games-gamescreen.h.patch"
+         "bsd-games-getline.patch"
+         "bsd-games-null-check.patch"
+         "bsd-games-number.c.patch"
+         "bsd-games-stdio.h.patch"
+         "bsd-games-fix-number-test.patch"
+         ;; Guix customizations
+         ;; TODO: make the games with score files and saved state to work.
+         "bsd-games-add-configure-config.patch"
+         "bsd-games-dont-install-empty-files.patch"
+         "bsd-games-use-anthology-style-naming.patch"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("flex" ,flex)
+       ("bison" ,bison)))
+    (inputs
+     `(("curses" ,ncurses)
+       ("pager" ,less)
+       ("miscfiles" ,miscfiles)
+       ("openssl" ,openssl)))  ;used only by 'factor'
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs inputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version))
+                    (man (string-append out "/share/man"))
+                    (word-list (string-append (assoc-ref inputs "miscfiles")
+                                              "/share/web2"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    ;; TODO.
+                    (save-files "DUMMY"))
+               (substitute* "configure"
+                 (("/usr/share/man") man)
+                 (("/usr/share/doc/bsd-games") doc)
+                 (("/usr/share/[^\n/]*") static-data)
+                 (("/var/games") save-files)
+                 (("/usr/bin/less") (which "less"))
+                 (("(/usr/bin|/usr/games)") bin))
+               (substitute* "config.params"
+                 (("WORD_LIST") word-list))
+               (invoke "./configure"))
+             #t))
+         (add-before 'install 'patch-install
+           ;;; Some games need a writable directory containing pre-maded files.
+           ;;; The files get installed to the Store.  TODO.
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    ;; TODO
+                    (save-files "DUMMY"))
+               ;; We can't install to /var (make install attempts too).
+               (substitute* "Makeconfig" ((save-files) static-data)))
+             #t))
+         (add-after 'install 'install-documents
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version)))
+               (rename-file "fortune/Notes" "fortune-Notes")
+               (rename-file "fortune/README" "fortune-README")
+               (rename-file "phantasia/COPYRIGHT" "phantasia-COPYRIGHT")
+               (for-each
+                (lambda(file) (install-file file doc))
+                '("AUTHORS" "BUGS" "README" "SECURITY" "THANKS"
+                  "fortune-Notes" "fortune-README" "phantasia-COPYRIGHT")))
+             #t))
+         )))
+    (home-page "https://github.com/vattam/BSDGames")
+    (synopsis "Collection of the old text-based games and amusements")
+    (description
+     "The BSD-games (some are not yet packaged, score files not working):
+
+Action: atc (keep the airplanes safe), hack (explore the dangerous Dungeon),
+hunt (kill the others for the Pair of Boots, multi-player only), robots (avoid
+the evil robots), sail (game of naval warfare with wooden ships), snake (steal
+the $$ from the cave, anger the snake, and get out alive), tetris (game of
+lining up the falling bricks of different shapes), and worm (eat, grow big,
+and neither bite your tail, nor ram the wall).
+
+Amusements: banner (prints a large banner), bcd & morse & ppt (print a punch
+card, or paper tape, or Morse codes), caesar & rot13 (ciphers and deciphers
+the input), factor (factorizes a number), fortune (prints some random
+message), number (translates numbers into text), pig (translates from English
+to Pig Latin), pom (should print the Moon's phase), primes (generates primes),
+rain & worms (plays an screen-saver in terminal), random (prints randomly
+choosen lines from files, or returns a random exit-code), and wtf (explains
+what do some acronyms mean).
+
+Board: backgammon (lead the men out of board faster than the friend do),
+boggle (find the words in the square of letters), dab (game of dots and
+boxes), gomoku (game of five in a row), hangman (guess a word before man is
+hanged), and monop (game of monopoly, hot-seat only).  Also the card-games:
+canfield, cribbage, fish (juniors game), and mille.
+
+Quests: adventure (search for treasures with the help of wizard),
+battlestar (explore the world around, starting from dying spaceship),
+phantasia (role-play as an rogue), trek (hunt the Klingons, and save the
+Federation), and wump (hunt the big smelly Wumpus in a dark cave).
+
+Quizes: arithmetic, and quiz.")
+    ;; "Auxiliary and data files, distributed with the games in NetBSD, but
+    ;; not bearing copyright notices, probably fall under the terms of the UCB
+    ;; or NetBSD copyrights and licences.  The file "fortune/Notes" contains a
+    ;; warning in regard to the fortune databases."
+    (license (list
+              ;; Most games.  Files: countmail/countmail.6, dab/dab.6,
+              ;; lib/strlcpy.c, wargames/wargames.6
+              license:bsd-3
+              ;; dab and hunt.  Files: adventure/extern.h,
+              ;; backgammon/backgammon/backlocal.h, caesar/rot13.in,
+              ;; countmail/countmail, dm/utmpentry.c, dm/utmpentry.h,
+              ;; hack/extern.h, robots/auto.c, sail/display.h,
+              ;; sail/restart.h, wargames/wargames
+              license:bsd-4
+              ;; wtf (the game)
+              license:public-domain
+              ;; phantasia (all but phantasia/pathnames.h.in, which is bsd-3)
+              (license:fsf-free "file:///phantasia/COPYRIGHT")))))
+
+
 (define-public bzflag
   (package
     (name "bzflag")
diff --git a/gnu/packages/patches/bsd-games-2.17-64bit.patch b/gnu/packages/patches/bsd-games-2.17-64bit.patch
new file mode 100644
index 0000000000..a56ea8454b
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-2.17-64bit.patch
@@ -0,0 +1,43 @@
+David Leverton writes about adventure/crc.c:
+
+The 'adventure' game from the games-misc/bsd-games-2.13 package crashes 
+when saving the game on AMD64 (and probably other 64-bit systems, but I 
+haven't checked).  Find attached to fix this.
+
+http://bugs.gentoo.org/show_bug.cgi?id=77032
+
+
+About utmpentry.c:
+
+the utmpx structure defines the ut_tv member a little differently on 
+64bit hosts so that a 32bit and 64bit structure can be shared.  So the 
+ut_tv is a custom 32bit structure rather than the native 64bit timeval 
+structure.  Work around is to assign the submembers instead.
+
+http://bugs.gentoo.org/show_bug.cgi?id=102667
+
+--- bsd-games/adventure/crc.c
++++ bsd-games/adventure/crc.c
+@@ -134,7 +134,8 @@
+ 				if (step >= sizeof(crctab) / sizeof(crctab[0]))
+ 					step = 0;
+ 			}
+-			crcval = (crcval << 8) ^ crctab[i];
++			/* Mask to 32 bits. */
++			crcval = ((crcval << 8) ^ crctab[i]) & 0xffffffff;
+ 		}
+-	return crcval & 0xffffffff;	/* Mask to 32 bits. */
++	return crcval;
+ }
+--- bsd-games/dm/utmpentry.c
++++ bsd-games/dm/utmpentry.c
+@@ -291,7 +291,8 @@
+ 	e->line[sizeof(e->line) - 1] = '\0';
+ 	(void)strncpy(e->host, up->ut_host, sizeof(up->ut_host));
+ 	e->name[sizeof(e->host) - 1] = '\0';
+-	e->tv = up->ut_tv;
++	e->tv.tv_sec = up->ut_tv.tv_sec;
++	e->tv.tv_usec = up->ut_tv.tv_usec;
+ 	adjust_size(e);
+ }
+ #endif
diff --git a/gnu/packages/patches/bsd-games-add-configure-config.patch b/gnu/packages/patches/bsd-games-add-configure-config.patch
new file mode 100644
index 0000000000..e19923417a
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-configure-config.patch
@@ -0,0 +1,25 @@
+Remove a few 'setenv's from the definition.
+
+diff -Naur bsd-games-2.17/config.params bsd-games-patch/config.params
+--- bsd-games-2.17/config.params	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/config.params	2020-04-22 20:49:40.809695248 +0700
+@@ -0,0 +1,19 @@
++bsd_games_cfg_do_chown=n
++bsd_games_cfg_non_interactive=y
++
++# The offensive fortunes shown only if requested by user.
++bsd_games_cfg_offensive_fortunes=y
++
++# Fix some man-pages: cfscores, morse, ppt, rot13, snscore, teachgammon.
++bsd_games_cfg_use_dot_so=syml
++
++# Don't build dm, countmail, hack, phantasia, and wargames.
++# Wargames isn't convenient as a game launcher.
++# dm is a toy to restrict access to bsd-games.
++# countmail require some BSD-package called `from`.
++# TODO: phantasia, sail, and hack need an writable directory.
++bsd_games_cfg_no_build_dirs="wargames dm countmail phantasia sail hack"
++
++# Those are substitute*'d with GNU miscfiles.
++bsd_games_cfg_hangman_wordsfile=WORD_LIST
++bsd_games_cfg_dictionary_src=WORD_LIST
diff --git a/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
new file mode 100644
index 0000000000..f783813e95
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
@@ -0,0 +1,22 @@
+diff --git a/hunt/hunt/playit.c b/hunt/hunt/playit.c
+index 9acf86e..881a4e7 100644
+--- a/hunt/hunt/playit.c
++++ b/hunt/hunt/playit.c
+@@ -114,7 +114,7 @@ playit()
+ 		bad_con();
+ 		/* NOTREACHED */
+ 	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+ 		bad_ver();
+ 		/* NOTREACHED */
+ 	}
+@@ -649,7 +649,7 @@ do_message()
+ 		bad_con();
+ 		/* NOTREACHED */
+ 	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+ 		bad_ver();
+ 		/* NOTREACHED */
+ 	}
diff --git a/gnu/packages/patches/bsd-games-dont-install-empty-files.patch b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
new file mode 100644
index 0000000000..0cb7deab5a
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
@@ -0,0 +1,87 @@
+Those games rely on user to provide the files to write scores in.
+Those score-files are initially empty.  Anyway, the Store is read-only.
+So we do not install those empty files.
+
+diff -Naur bsd-games-2.17/install-score.in bsd-games-patch/install-score.in
+--- bsd-games-2.17/install-score.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-score.in	2020-04-22 21:41:47.810544804 +0700
+@@ -1,45 +0,0 @@
+-# install-score.in - install a score file
+-#
+-# Copyright (c) 1997, 1998, 1999 Joseph Samuel Myers.
+-# All rights reserved.
+-#
+-# Redistribution and use in source and binary forms, with or without
+-# modification, are permitted provided that the following conditions
+-# are met:
+-# 1. Redistributions of source code must retain the above copyright
+-#    notice, this list of conditions and the following disclaimer.
+-# 2. Redistributions in binary form must reproduce the above copyright
+-#    notice, this list of conditions and the following disclaimer in the
+-#    documentation and/or other materials provided with the distribution.
+-# 3. The name of the author may not be used to endorse or promote products
+-#    derived from this software without specific prior written permission.
+-#
+-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+-# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+-# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+-# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+-# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+-# SUCH DAMAGE.
+-
+-set -e
+-
+-if [ "$1" = "-p" ]; then
+-    scorefile="@install_prefix@$2"
+-    perms=@vardata_perms_priv@
+-else
+-    scorefile="@install_prefix@$1"
+-    perms=@vardata_perms@
+-fi
+-
+-mkdir -p "$(dirname "$scorefile")"
+-
+-test -e "$scorefile" || touch "$scorefile"
+-if [ @do_chown@ = y ]; then
+-    chown @vardata_owner@:@vardata_group@ "$scorefile"
+-fi
+-chmod "$perms" "$scorefile"
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-22 21:26:00.162409464 +0700
+@@ -27,9 +27,8 @@
+ # SUCH DAMAGE.
+ 
+ phantasia_DIRS := $(GAMESDIR) $(MAN6DIR) $(PHANTASIA_DIR)
+-phantasia_VFILES1 := gold lastdead mess monsters motd void
+-phantasia_VFILES2 := scoreboard characs
+-phantasia_CLEANFILES := $(phantasia_VFILES1) $(phantasia_VFILES2) scorefiles.stamp
++phantasia_VFILES1 := monsters
++phantasia_CLEANFILES := $(phantasia_VFILES1) scorefiles.stamp
+ 
+ phantasia_all:	phantasia/phantasia phantasia/phantasia.6 phantasia/scorefiles.stamp
+ 
+@@ -43,9 +42,4 @@
+ 	(set -e; for f in $(phantasia_VFILES1); do \
+ 	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+ 	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/$$f; done)
+-	(set -e; for f in $(phantasia_VFILES2); do \
+-	    if [ ! -e $(PHANTASIA_DIR)/$$f ]; then \
+-		cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; fi; done; \
+-	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/scoreboard; \
+-	    $(INSTALL_SCORE_FILE) -p $(PHANTASIA_DIR)/characs)
+ 	$(INSTALL_MANUAL) phantasia/phantasia.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-22 21:26:48.701801676 +0700
+@@ -34,5 +34,4 @@
+ 	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
+ 	$(HIDE_GAME) sail
+ 	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+-	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+ 	$(INSTALL_MANUAL) sail/sail.6
diff --git a/gnu/packages/patches/bsd-games-fix-number-test.patch b/gnu/packages/patches/bsd-games-fix-number-test.patch
new file mode 100644
index 0000000000..26ff84e51f
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-fix-number-test.patch
@@ -0,0 +1,32 @@
+number is a program that translates the decimal numbers like this:
+0.1 --> one tenth_.
+0.2 --> two tenth_S.
+This patch fix the test.
+
+diff -Naur bsd-games-2.17/tests/number.-0.1 bsd-games-patch/tests/number.-0.1
+--- bsd-games-2.17/tests/number.-0.1	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.1	2020-04-17 15:14:27.831098084 +0700
+@@ -1,3 +1,3 @@
+ minus
+ one.
+-tenths.
++tenth.
+diff -Naur bsd-games-2.17/tests/number.-0.2 bsd-games-patch/tests/number.-0.2
+--- bsd-games-2.17/tests/number.-0.2	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.2	2020-04-17 15:20:48.162336279 +0700
+@@ -0,0 +1,3 @@
++minus
++two.
++tenths.
+diff -Naur bsd-games-2.17/tests/number.test bsd-games-patch/tests/number.test
+--- bsd-games-2.17/tests/number.test	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.test	2020-04-17 15:20:22.774654155 +0700
+@@ -36,6 +36,8 @@
+ testno 1
+ number/number -- -0.1 >test.out 2>&1 || failtest
+ compare test.out tests/number.-0.1
++number/number -- -0.2 >test.out 2>&1 || failtest
++compare test.out tests/number.-0.2
+ rm -f test.out
+ 
+ testno 2
diff --git a/gnu/packages/patches/bsd-games-gamescreen.h.patch b/gnu/packages/patches/bsd-games-gamescreen.h.patch
new file mode 100644
index 0000000000..f74ebcb4be
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-gamescreen.h.patch
@@ -0,0 +1,15 @@
+--- a/dab/gamescreen.h	2004-01-02 23:34:51.000000000 +0530
++++ b/dab/gamescreen.h	2008-07-31 23:45:19.000000000 +0530
+@@ -70,9 +70,9 @@
+     virtual void redraw(void) = 0;			// Refresh
+     virtual int getinput(void) = 0;			// Get user input
+     virtual void bell(void) = 0;			// Beep
+-    virtual void score(size_t p, const PLAYER& p) = 0;	// Post current score
+-    virtual void games(size_t p, const PLAYER& p) = 0;	// Post games won
+-    virtual void total(size_t p, const PLAYER& p) = 0;	// Post total score
++    virtual void score(size_t, const PLAYER&) = 0;	// Post current score
++    virtual void games(size_t, const PLAYER&) = 0;	// Post games won
++    virtual void total(size_t, const PLAYER&) = 0;	// Post total score
+     virtual void ties(const PLAYER& p) = 0;		// Post tie games
+ };
+ 
diff --git a/gnu/packages/patches/bsd-games-getline.patch b/gnu/packages/patches/bsd-games-getline.patch
new file mode 100644
index 0000000000..99a6638477
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-getline.patch
@@ -0,0 +1,194 @@
+diff -Naur bsd-games-2.17/boggle/boggle/bog.c bsd-games-2.17.1/boggle/boggle/bog.c
+--- bsd-games-2.17/boggle/boggle/bog.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/bog.c	2010-05-22 10:51:23.000000000 -0500
+@@ -336,7 +336,7 @@
+ 	}
+ 
+ 	while (1) {
+-		if (getline(buf) == NULL) {
++		if (boggle_getline(buf) == NULL) {
+ 			if (feof(stdin))
+ 				clearerr(stdin);
+ 			break;
+diff -Naur bsd-games-2.17/boggle/boggle/extern.h bsd-games-2.17.1/boggle/boggle/extern.h
+--- bsd-games-2.17/boggle/boggle/extern.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/extern.h	2010-05-22 10:51:23.000000000 -0500
+@@ -43,7 +43,7 @@
+ long	 dictseek(FILE *, long, int);
+ void	 findword(void);
+ void	 flushin(FILE *);
+-char	*getline(char *);
++char	*boggle_getline(char *);
+ void	 getword(char *);
+ int	 help(void);
+ int	 inputch(void);
+diff -Naur bsd-games-2.17/boggle/boggle/mach.c bsd-games-2.17.1/boggle/boggle/mach.c
+--- bsd-games-2.17/boggle/boggle/mach.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/mach.c	2010-05-22 10:51:23.000000000 -0500
+@@ -168,7 +168,7 @@
+  * - doesn't accept words longer than MAXWORDLEN or containing caps
+  */
+ char *
+-getline(q)
++boggle_getline(q)
+ 	char *q;
+ {
+ 	int ch, done;
+diff -Naur bsd-games-2.17/cribbage/cribbage.h bsd-games-2.17.1/cribbage/cribbage.h
+--- bsd-games-2.17/cribbage/cribbage.h	2004-02-08 16:29:14.000000000 -0600
++++ bsd-games-2.17.1/cribbage/cribbage.h	2010-05-22 10:51:23.000000000 -0500
+@@ -77,7 +77,7 @@
+ int	 fifteens(const CARD [], int);
+ void	 game(void);
+ void	 gamescore(void);
+-char	*getline(void);
++char	*cribbage_getline(void);
+ int	 getuchar(void);
+ int	 incard(CARD *);
+ int	 infrom(const CARD [], int, const char *);
+diff -Naur bsd-games-2.17/cribbage/crib.c bsd-games-2.17.1/cribbage/crib.c
+--- bsd-games-2.17/cribbage/crib.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/cribbage/crib.c	2010-05-22 10:51:23.000000000 -0500
+@@ -221,7 +221,7 @@
+ 			if (!rflag) {			/* player cuts deck */
+ 				msg(quiet ? "Cut for crib? " :
+ 			    "Cut to see whose crib it is -- low card wins? ");
+-				getline();
++				cribbage_getline();
+ 			}
+ 			i = (rand() >> 4) % CARDS;	/* random cut */
+ 			do {	/* comp cuts deck */
+@@ -397,7 +397,7 @@
+ 		if (!rflag) {	/* random cut */
+ 			msg(quiet ? "Cut the deck? " :
+ 		    "How many cards down do you wish to cut the deck? ");
+-			getline();
++			cribbage_getline();
+ 		}
+ 		i = (rand() >> 4) % (CARDS - pos);
+ 		turnover = deck[i + pos];
+diff -Naur bsd-games-2.17/cribbage/io.c bsd-games-2.17.1/cribbage/io.c
+--- bsd-games-2.17/cribbage/io.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/cribbage/io.c	2010-05-22 10:51:23.000000000 -0500
+@@ -245,7 +245,7 @@
+ 
+ 	retval = FALSE;
+ 	rnk = sut = EMPTY;
+-	if (!(line = getline()))
++	if (!(line = cribbage_getline()))
+ 		goto gotit;
+ 	p = p1 = line;
+ 	while (*p1 != ' ' && *p1 != '\0')
+@@ -346,7 +346,7 @@
+ 
+ 	for (sum = 0;;) {
+ 		msg(prompt);
+-		if (!(p = getline()) || *p == '\0') {
++		if (!(p = cribbage_getline()) || *p == '\0') {
+ 			msg(quiet ? "Not a number" :
+ 			    "That doesn't look like a number");
+ 			continue;
+@@ -528,12 +528,12 @@
+ }
+ 
+ /*
+- * getline:
++ * cribbage_getline:
+  *      Reads the next line up to '\n' or EOF.  Multiple spaces are
+  *	compressed to one space; a space is inserted before a ','
+  */
+ char *
+-getline()
++cribbage_getline()
+ {
+ 	char *sp;
+ 	int c, oy, ox;
+diff -Naur bsd-games-2.17/gomoku/bdisp.c bsd-games-2.17.1/gomoku/bdisp.c
+--- bsd-games-2.17/gomoku/bdisp.c	2003-12-16 20:47:37.000000000 -0600
++++ bsd-games-2.17.1/gomoku/bdisp.c	2010-05-22 10:51:23.000000000 -0500
+@@ -241,7 +241,7 @@
+ }
+ 
+ int
+-getline(buf, size)
++gomoku_getline(buf, size)
+ 	char *buf;
+ 	int size;
+ {
+diff -Naur bsd-games-2.17/gomoku/gomoku.h bsd-games-2.17.1/gomoku/gomoku.h
+--- bsd-games-2.17/gomoku/gomoku.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/gomoku.h	2010-05-22 10:51:23.000000000 -0500
+@@ -263,7 +263,7 @@
+ 
+ void	bdinit(struct spotstr *);
+ void	init_overlap(void);
+-int	getline(char *, int);
++int	gomoku_getline(char *, int);
+ void	ask(const char *);
+ void	dislog(const char *);
+ void	bdump(FILE *);
+diff -Naur bsd-games-2.17/gomoku/main.c bsd-games-2.17.1/gomoku/main.c
+--- bsd-games-2.17/gomoku/main.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/main.c	2010-05-22 10:51:23.000000000 -0500
+@@ -155,7 +155,7 @@
+ 		if (inputfp == NULL && test == 0) {
+ 			for (;;) {
+ 				ask("black or white? ");
+-				getline(buf, sizeof(buf));
++				gomoku_getline(buf, sizeof(buf));
+ 				if (buf[0] == 'b' || buf[0] == 'B') {
+ 					color = BLACK;
+ 					break;
+@@ -172,7 +172,7 @@
+ 		}
+ 	} else {
+ 		setbuf(stdout, 0);
+-		getline(buf, sizeof(buf));
++		gomoku_getline(buf, sizeof(buf));
+ 		if (strcmp(buf, "black") == 0)
+ 			color = BLACK;
+ 		else if (strcmp(buf, "white") == 0)
+@@ -244,7 +244,7 @@
+ 		getinput:
+ 			if (interactive)
+ 				ask("move? ");
+-			if (!getline(buf, sizeof(buf))) {
++			if (!gomoku_getline(buf, sizeof(buf))) {
+ 				curmove = RESIGN;
+ 				break;
+ 			}
+@@ -256,7 +256,7 @@
+ 					FILE *fp;
+ 
+ 					ask("save file name? ");
+-					(void)getline(buf, sizeof(buf));
++					(void)gomoku_getline(buf, sizeof(buf));
+ 					if ((fp = fopen(buf, "w")) == NULL) {
+ 						glog("cannot create save file");
+ 						goto getinput;
+@@ -309,14 +309,14 @@
+ 		if (i != RESIGN) {
+ 		replay:
+ 			ask("replay? ");
+-			if (getline(buf, sizeof(buf)) &&
++			if (gomoku_getline(buf, sizeof(buf)) &&
+ 			    (buf[0] == 'y' || buf[0] == 'Y'))
+ 				goto again;
+ 			if (strcmp(buf, "save") == 0) {
+ 				FILE *fp;
+ 
+ 				ask("save file name? ");
+-				(void)getline(buf, sizeof(buf));
++				(void)gomoku_getline(buf, sizeof(buf));
+ 				if ((fp = fopen(buf, "w")) == NULL) {
+ 					glog("cannot create save file");
+ 					goto replay;
+@@ -367,7 +367,7 @@
+ 		quit();
+ top:
+ 	ask("cmd? ");
+-	if (!getline(fmtbuf, sizeof(fmtbuf)))
++	if (!gomoku_getline(fmtbuf, sizeof(fmtbuf)))
+ 		quit();
+ 	switch (*fmtbuf) {
+ 	case '\0':
diff --git a/gnu/packages/patches/bsd-games-null-check.patch b/gnu/packages/patches/bsd-games-null-check.patch
new file mode 100644
index 0000000000..048ed93f40
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-null-check.patch
@@ -0,0 +1,24 @@
+diff --git a/hunt/hunt/hunt.c b/hunt/hunt/hunt.c
+index 11f4c44..28321bc 100644
+--- a/hunt/hunt/hunt.c
++++ b/hunt/hunt/hunt.c
+@@ -394,7 +394,8 @@ broadcast_vec(s, vector)
+ 
+ 	vec_cnt = 0;
+ 	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+ 		    (ip->ifa_flags & IFF_BROADCAST))
+ 			vec_cnt++;
+ 
+@@ -405,7 +406,8 @@ broadcast_vec(s, vector)
+ 
+ 	vec_cnt = 0;
+ 	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+ 		    (ip->ifa_flags & IFF_BROADCAST))
+ 			memcpy(&(*vector)[vec_cnt++], ip->ifa_broadaddr,
+ 			       sizeof(struct sockaddr_in));
diff --git a/gnu/packages/patches/bsd-games-number.c.patch b/gnu/packages/patches/bsd-games-number.c.patch
new file mode 100644
index 0000000000..1acbeff30a
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-number.c.patch
@@ -0,0 +1,156 @@
+--- bsdgames-2.17.orig/number/number.c
++++ bsdgames-2.17/number/number.c
+@@ -78,9 +78,9 @@
+ 
+ void	convert(char *);
+ int	main(int, char *[]);
+-int	number(const char *, int);
+-void	pfract(int);
+-int	unit(int, const char *);
++int	number(const char *, int, int *);
++void	pfract(int, int);
++int	unit(int, const char *, int *);
+ void	usage(void) __attribute__((__noreturn__));
+ 
+ int lflag;
+@@ -131,7 +131,7 @@
+ convert(line)
+ 	char *line;
+ {
+-	int flen, len, rval;
++	int flen, len, rval, singular;
+ 	char *p, *fraction;
+ 
+ 	flen = 0;
+@@ -174,7 +174,7 @@
+ 		--len;
+ 	}
+ 
+-	rval = len > 0 ? unit(len, line) : 0;
++	rval = len > 0 ? unit(len, line, &singular) : 0;
+ 	if (fraction != NULL && flen != 0)
+ 		for (p = fraction; *p != '\0'; ++p)
+ 			if (*p != '0') {
+@@ -182,10 +182,10 @@
+ 					(void)printf("%sand%s",
+ 					    lflag ? " " : "",
+ 					    lflag ? " " : "\n");
+-				if (unit(flen, fraction)) {
++				if (unit(flen, fraction, &singular)) {
+ 					if (lflag)
+ 						(void)printf(" ");
+-					pfract(flen);
++					pfract(flen, singular);
+ 					rval = 1;
+ 				}
+ 				break;
+@@ -197,9 +197,10 @@
+ }
+ 
+ int
+-unit(len, p)
++unit(len, p, singular)
+ 	int len;
+ 	const char *p;
++	int *singular;
+ {
+ 	int off, rval;
+ 
+@@ -208,7 +209,7 @@
+ 		if (len % 3) {
+ 			off = len % 3;
+ 			len -= off;
+-			if (number(p, off)) {
++			if (number(p, off, singular)) {
+ 				rval = 1;
+ 				(void)printf(" %s%s",
+ 				    name3[len / 3], lflag ? " " : ".\n");
+@@ -217,14 +218,16 @@
+ 		}
+ 		for (; len > 3; p += 3) {
+ 			len -= 3;
+-			if (number(p, 3)) {
++			if (number(p, 3, singular)) {
+ 				rval = 1;
+ 				(void)printf(" %s%s",
+ 				    name3[len / 3], lflag ? " " : ".\n");
+ 			}
+ 		}
+ 	}
+-	if (number(p, len)) {
++	if (number(p, len, singular)) {
++		if (rval)
++			*singular = 0;
+ 		if (!lflag)
+ 			(void)printf(".\n");
+ 		rval = 1;
+@@ -233,17 +236,20 @@
+ }
+ 
+ int
+-number(p, len)
++number(p, len, singular)
+ 	const char *p;
+ 	int len;
++	int *singular;
+ {
+ 	int val, rval;
+ 
+ 	rval = 0;
++	*singular = 1;
+ 	switch (len) {
+ 	case 3:
+ 		if (*p != '0') {
+ 			rval = 1;
++			*singular = 0;
+ 			(void)printf("%s hundred", name1[*p - '0']);
+ 		}
+ 		++p;
+@@ -262,33 +268,42 @@
+ 			}
+ 			rval = 1;
+ 		}
++		if (val != 1)
++			*singular = 0;
+ 		break;
+ 	case 1:
+ 		if (*p != '0') {
+ 			rval = 1;
+ 			(void)printf("%s", name1[*p - '0']);
+ 		}
++		if (*p != '1')
++			*singular = 0;
+ 	}
+ 	return (rval);
+ }
+ 
+ void
+-pfract(len)
++pfract(len, singular)
+ 	int len;
++	int singular;
+ {
+ 	static const char *const pref[] = { "", "ten-", "hundred-" };
+ 
+ 	switch(len) {
+ 	case 1:
+-		(void)printf("tenths.\n");
++		(void)printf("tenth");
+ 		break;
+ 	case 2:
+-		(void)printf("hundredths.\n");
++		(void)printf("hundredth");
+ 		break;
+ 	default:
+-		(void)printf("%s%sths.\n", pref[len % 3], name3[len / 3]);
++		(void)printf("%s%sth", pref[len % 3], name3[len / 3]);
+ 		break;
+ 	}
++	if (!singular) {
++		printf("s");
++	}
++	printf(".\n");
+ }
+ 
+ void
+
diff --git a/gnu/packages/patches/bsd-games-stdio.h.patch b/gnu/packages/patches/bsd-games-stdio.h.patch
new file mode 100644
index 0000000000..786fa54c4f
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-stdio.h.patch
@@ -0,0 +1,14 @@
+diff -ru a/include/stdio.h b/include/stdio.h
+--- a/include/stdio.h	2000-08-04 10:24:39.000000000 +1000
++++ b/include/stdio.h	2005-06-18 14:26:35.000000000 +1000
+@@ -34,6 +34,10 @@
+ #include <bsd-games.h>
+ #include_next <stdio.h>
+ 
++__BEGIN_DECLS
++
+ #ifndef HAVE_fgetln
+ extern char *fgetln(FILE *stream, size_t *len);
+ #endif
++
++__END_DECLS
diff --git a/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch b/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
new file mode 100644
index 0000000000..0b311f4448
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-use-anthology-style-naming.patch
@@ -0,0 +1,633 @@
+This append the prefix 'bsd-' to the executables, and the manual pages.  This
+prevents the name collisions, ever.  Also it allow the user to type "bsd-",
+press the Tab key, and see the list of all bsd-games at once, which is nice.
+The games were tested after this renaming, and they do work.
+
+Also this patch hides teachgammon, as this is an executable for tutorial of
+backgammon game.  The tutorial is offered to the user at the game start.
+
+diff -Naur bsd-games-2.17/adventure/Makefrag bsd-games-patch/adventure/Makefrag
+--- bsd-games-2.17/adventure/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/adventure/Makefrag	2020-04-23 22:10:57.717880094 +0700
+@@ -35,6 +35,6 @@
+ 	adventure/setup $< >$@
+ 
+ adventure_install:	adventure_all
+-	$(INSTALL_BINARY) adventure/adventure $(INSTALL_PREFIX)$(GAMESDIR)/adventure
++	$(INSTALL_BINARY) adventure/adventure $(INSTALL_PREFIX)$(GAMESDIR)/bsd-adventure
+ 	$(HIDE_GAME) adventure
+ 	$(INSTALL_MANUAL) adventure/adventure.6
+diff -Naur bsd-games-2.17/arithmetic/Makefrag bsd-games-patch/arithmetic/Makefrag
+--- bsd-games-2.17/arithmetic/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/arithmetic/Makefrag	2020-04-23 22:10:57.721880044 +0700
+@@ -32,6 +32,6 @@
+ arithmetic_all:	arithmetic/arithmetic arithmetic/arithmetic.6
+ 
+ arithmetic_install:	arithmetic/arithmetic
+-	$(INSTALL_BINARY) arithmetic/arithmetic $(INSTALL_PREFIX)$(GAMESDIR)/arithmetic
++	$(INSTALL_BINARY) arithmetic/arithmetic $(INSTALL_PREFIX)$(GAMESDIR)/bsd-arithmetic
+ 	$(HIDE_GAME) arithmetic
+ 	$(INSTALL_MANUAL) arithmetic/arithmetic.6
+diff -Naur bsd-games-2.17/atc/Makefrag bsd-games-patch/atc/Makefrag
+--- bsd-games-2.17/atc/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/atc/Makefrag	2020-04-23 22:10:57.729879944 +0700
+@@ -47,7 +47,7 @@
+ 	mv atc/lex.yy.c $@
+ 
+ atc_install:	atc_all
+-	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/bsd-atc
+ 	$(HIDE_GAME) atc
+ 	$(INSTALL_SCORE_FILE) $(ATC_SCOREFILE)
+ 	$(INSTALL_MANUAL) atc/atc.6
+diff -Naur bsd-games-2.17/backgammon/backgammon/Makefrag bsd-games-patch/backgammon/backgammon/Makefrag
+--- bsd-games-2.17/backgammon/backgammon/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/backgammon/Makefrag	2020-04-23 22:10:57.741879794 +0700
+@@ -33,6 +33,6 @@
+ backgammon_backgammon_all:	backgammon/backgammon/backgammon backgammon/backgammon/backgammon.6
+ 
+ backgammon_backgammon_install:	backgammon_backgammon_all
+-	$(INSTALL_BINARY) backgammon/backgammon/backgammon $(INSTALL_PREFIX)$(GAMESDIR)/backgammon
++	$(INSTALL_BINARY) backgammon/backgammon/backgammon $(INSTALL_PREFIX)$(GAMESDIR)/bsd-backgammon
+ 	$(HIDE_GAME) backgammon
+ 	$(INSTALL_MANUAL) backgammon/backgammon/backgammon.6
+diff -Naur bsd-games-2.17/backgammon/common_source/Makefrag bsd-games-patch/backgammon/common_source/Makefrag
+--- bsd-games-2.17/backgammon/common_source/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/common_source/Makefrag	2020-04-23 22:10:57.749879693 +0700
+@@ -26,8 +26,8 @@
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ # SUCH DAMAGE.
+ 
+-backgammon_common_source_EXEC_PATH := $(GAMESDIR)/backgammon
+-backgammon_common_source_TEACH_PATH := $(GAMESDIR)/teachgammon
++backgammon_common_source_EXEC_PATH := $(GAMESDIR)/bsd-backgammon
++backgammon_common_source_TEACH_PATH := $(GAMESDIR)/.bsd-teachgammon
+ 
+ backgammon_common_source_DEFS := -DEXEC_PATH=\"$(backgammon_common_source_EXEC_PATH)\" -DTEACH_PATH=\"$(backgammon_common_source_TEACH_PATH)\"
+ 
+diff -Naur bsd-games-2.17/backgammon/teachgammon/Makefrag bsd-games-patch/backgammon/teachgammon/Makefrag
+--- bsd-games-2.17/backgammon/teachgammon/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/backgammon/teachgammon/Makefrag	2020-04-23 22:10:57.753879644 +0700
+@@ -33,6 +33,6 @@
+ backgammon_teachgammon_all:	backgammon/teachgammon/teachgammon
+ 
+ backgammon_teachgammon_install:	backgammon_teachgammon_all
+-	$(INSTALL_BINARY) backgammon/teachgammon/teachgammon $(INSTALL_PREFIX)$(GAMESDIR)/teachgammon
++	$(INSTALL_BINARY) backgammon/teachgammon/teachgammon $(INSTALL_PREFIX)$(GAMESDIR)/.bsd-teachgammon
+ 	$(HIDE_GAME) teachgammon
+ 	$(INSTALL_MANUAL) backgammon.6 teachgammon.6
+diff -Naur bsd-games-2.17/banner/Makefrag bsd-games-patch/banner/Makefrag
+--- bsd-games-2.17/banner/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/banner/Makefrag	2020-04-23 22:10:57.761879543 +0700
+@@ -31,6 +31,6 @@
+ banner_all:	banner/banner banner/banner.6
+ 
+ banner_install:	banner_all
+-	$(INSTALL_BINARY) banner/banner $(INSTALL_PREFIX)$(GAMESDIR)/banner
++	$(INSTALL_BINARY) banner/banner $(INSTALL_PREFIX)$(GAMESDIR)/bsd-banner
+ 	$(HIDE_GAME) banner
+ 	$(INSTALL_MANUAL) banner/banner.6
+diff -Naur bsd-games-2.17/battlestar/Makefrag bsd-games-patch/battlestar/Makefrag
+--- bsd-games-2.17/battlestar/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/battlestar/Makefrag	2020-04-23 22:10:57.769879443 +0700
+@@ -32,7 +32,7 @@
+ battlestar_all:	battlestar/battlestar battlestar/battlestar.6
+ 
+ battlestar_install:	battlestar_all
+-	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/bsd-battlestar
+ 	$(HIDE_GAME) battlestar
+ 	$(INSTALL_MANUAL) battlestar/battlestar.6
+ 	$(INSTALL_SCORE_FILE) $(BATTLESTAR_SCOREFILE)
+diff -Naur bsd-games-2.17/bcd/Makefrag bsd-games-patch/bcd/Makefrag
+--- bsd-games-2.17/bcd/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/bcd/Makefrag	2020-04-23 22:10:57.773879393 +0700
+@@ -31,6 +31,6 @@
+ bcd_all:	bcd/bcd bcd/bcd.6
+ 
+ bcd_install:	bcd_all
+-	$(INSTALL_BINARY) bcd/bcd $(INSTALL_PREFIX)$(GAMESDIR)/bcd
++	$(INSTALL_BINARY) bcd/bcd $(INSTALL_PREFIX)$(GAMESDIR)/bsd-bcd
+ 	$(HIDE_GAME) bcd
+ 	$(INSTALL_MANUAL) bcd/bcd.6
+diff -Naur bsd-games-2.17/boggle/boggle/Makefrag bsd-games-patch/boggle/boggle/Makefrag
+--- bsd-games-2.17/boggle/boggle/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/boggle/boggle/Makefrag	2020-04-23 22:10:57.785879242 +0700
+@@ -35,7 +35,7 @@
+ boggle_boggle_all:	boggle/boggle/boggle boggle/boggle/boggle.6 boggle/boggle/helpfile
+ 
+ boggle_boggle_install:	boggle_boggle_all
+-	$(INSTALL_BINARY) boggle/boggle/boggle $(INSTALL_PREFIX)$(GAMESDIR)/boggle
++	$(INSTALL_BINARY) boggle/boggle/boggle $(INSTALL_PREFIX)$(GAMESDIR)/bsd-boggle
+ 	$(HIDE_GAME) boggle
+ 	$(INSTALL_MANUAL) boggle/boggle/boggle.6
+ 	$(INSTALL_DATA) boggle/boggle/helpfile $(INSTALL_PREFIX)$(BOGGLE_DIR)/helpfile
+diff -Naur bsd-games-2.17/caesar/Makefrag bsd-games-patch/caesar/Makefrag
+--- bsd-games-2.17/caesar/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/caesar/Makefrag	2020-04-23 22:10:57.805878993 +0700
+@@ -31,9 +31,9 @@
+ caesar_all:	caesar/caesar caesar/caesar.6 caesar/rot13
+ 
+ caesar_install:	caesar_all
+-	$(INSTALL_BINARY) caesar/caesar $(INSTALL_PREFIX)$(GAMESDIR)/caesar
++	$(INSTALL_BINARY) caesar/caesar $(INSTALL_PREFIX)$(GAMESDIR)/bsd-caesar
+ 	$(HIDE_GAME) caesar
+-	$(INSTALL_SCRIPT) caesar/rot13 $(INSTALL_PREFIX)$(GAMESDIR)/rot13
++	$(INSTALL_SCRIPT) caesar/rot13 $(INSTALL_PREFIX)$(GAMESDIR)/bsd-rot13
+ 	$(HIDE_GAME) rot13
+ 	$(INSTALL_MANUAL) caesar/caesar.6
+ 	$(INSTALL_MANUAL) caesar.6 rot13.6
+diff -Naur bsd-games-2.17/caesar/rot13.in bsd-games-patch/caesar/rot13.in
+--- bsd-games-2.17/caesar/rot13.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/caesar/rot13.in	2020-04-23 22:14:31.031209315 +0700
+@@ -34,4 +34,4 @@
+ #	@(#)rot13.sh	8.1 (Berkeley) 5/31/93
+ #
+ 
+-exec @gamesdir@/caesar 13 "$@"
++exec @gamesdir@/bsd-caesar 13 "$@"
+diff -Naur bsd-games-2.17/canfield/canfield/Makefrag bsd-games-patch/canfield/canfield/Makefrag
+--- bsd-games-2.17/canfield/canfield/Makefrag	2020-04-23 22:20:15.274899300 +0700
++++ bsd-games-patch/canfield/canfield/Makefrag	2020-04-23 22:10:57.817878842 +0700
+@@ -31,7 +31,7 @@
+ canfield_canfield_all:	canfield/canfield/canfield canfield/canfield/canfield.6
+ 
+ canfield_canfield_install: canfield_canfield_all
+-	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/bsd-canfield
+ 	$(HIDE_GAME) canfield
+ 	$(INSTALL_MANUAL) canfield/canfield/canfield.6
+ 	$(INSTALL_SCORE_FILE) $(CANFIELD_SCOREFILE)
+diff -Naur bsd-games-2.17/canfield/cfscores/Makefrag bsd-games-patch/canfield/cfscores/Makefrag
+--- bsd-games-2.17/canfield/cfscores/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/canfield/cfscores/Makefrag	2020-04-23 22:10:57.821878792 +0700
+@@ -32,6 +32,6 @@
+ canfield_cfscores_all:	canfield/cfscores/cfscores
+ 
+ canfield_cfscores_install:	canfield_cfscores_all
+-	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/cfscores
++	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/bsd-cfscores
+ 	$(HIDE_GAME) cfscores
+ 	$(INSTALL_MANUAL) canfield.6 cfscores.6
+diff -Naur bsd-games-2.17/countmail/Makefrag bsd-games-patch/countmail/Makefrag
+--- bsd-games-2.17/countmail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/countmail/Makefrag	2020-04-23 22:10:57.825878742 +0700
+@@ -31,6 +31,6 @@
+ countmail_all:	countmail/countmail countmail/countmail.6
+ 
+ countmail_install:	countmail_all
+-	$(INSTALL_SCRIPT) countmail/countmail $(INSTALL_PREFIX)$(GAMESDIR)/countmail
++	$(INSTALL_SCRIPT) countmail/countmail $(INSTALL_PREFIX)$(GAMESDIR)/bsd-countmail
+ 	$(HIDE_GAME) countmail
+ 	$(INSTALL_MANUAL) countmail/countmail.6
+diff -Naur bsd-games-2.17/cribbage/Makefrag bsd-games-patch/cribbage/Makefrag
+--- bsd-games-2.17/cribbage/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/cribbage/Makefrag	2020-04-23 22:10:57.833878642 +0700
+@@ -31,7 +31,7 @@
+ cribbage_all:	cribbage/cribbage cribbage/cribbage.n cribbage/cribbage.6
+ 
+ cribbage_install:	cribbage_all
+-	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/bsd-cribbage
+ 	$(HIDE_GAME) cribbage
+ 	$(INSTALL_DATA) cribbage/cribbage.n $(INSTALL_PREFIX)$(CRIBBAGE_INSTRFILE)
+ 	$(INSTALL_SCORE_FILE) $(CRIBBAGE_SCOREFILE)
+diff -Naur bsd-games-2.17/dab/Makefrag bsd-games-patch/dab/Makefrag
+--- bsd-games-2.17/dab/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/dab/Makefrag	2020-04-23 22:10:57.837878591 +0700
+@@ -31,6 +31,6 @@
+ dab_all:	dab/dab dab/dab.6
+ 
+ dab_install:	dab_all
+-	$(INSTALL_BINARY) dab/dab $(INSTALL_PREFIX)$(GAMESDIR)/dab
++	$(INSTALL_BINARY) dab/dab $(INSTALL_PREFIX)$(GAMESDIR)/bsd-dab
+ 	$(HIDE_GAME) dab
+ 	$(INSTALL_MANUAL) dab/dab.6
+diff -Naur bsd-games-2.17/dm/Makefrag bsd-games-patch/dm/Makefrag
+--- bsd-games-2.17/dm/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/dm/Makefrag	2020-04-23 22:10:57.841878541 +0700
+@@ -33,6 +33,6 @@
+ dm_all:	dm/dm dm/dm.8 dm/dm.conf.5
+ 
+ dm_install:	dm_all
+-	$(INSTALL_DM) dm/dm $(INSTALL_PREFIX)$(GAMESDIR)/dm
++	$(INSTALL_DM) dm/dm $(INSTALL_PREFIX)$(GAMESDIR)/bsd-dm
+ 	$(INSTALL_MANUAL) dm/dm.8
+ 	$(INSTALL_MANUAL) dm/dm.conf.5
+diff -Naur bsd-games-2.17/factor/Makefrag bsd-games-patch/factor/Makefrag
+--- bsd-games-2.17/factor/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/factor/Makefrag	2020-04-23 22:10:57.845878492 +0700
+@@ -34,6 +34,6 @@
+ factor_all:	factor/factor factor/factor.6
+ 
+ factor_install:	factor_all
+-	$(INSTALL_BINARY) factor/factor $(INSTALL_PREFIX)$(GAMESDIR)/factor
++	$(INSTALL_BINARY) factor/factor $(INSTALL_PREFIX)$(GAMESDIR)/bsd-factor
+ 	$(HIDE_GAME) factor
+ 	$(INSTALL_MANUAL) factor/factor.6
+diff -Naur bsd-games-2.17/fish/Makefrag bsd-games-patch/fish/Makefrag
+--- bsd-games-2.17/fish/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fish/Makefrag	2020-04-23 22:10:57.849878441 +0700
+@@ -31,7 +31,7 @@
+ fish_all:	fish/fish fish/fish.instr fish/fish.6
+ 
+ fish_install:	fish_all
+-	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/fish
++	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/bsd-fish
+ 	$(HIDE_GAME) fish
+ 	$(INSTALL_DATA) fish/fish.instr $(INSTALL_PREFIX)$(FISH_INSTRFILE)
+ 	$(INSTALL_MANUAL) fish/fish.6
+diff -Naur bsd-games-2.17/fortune/fortune/Makefrag bsd-games-patch/fortune/fortune/Makefrag
+--- bsd-games-2.17/fortune/fortune/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/fortune/Makefrag	2020-04-23 22:10:57.865878241 +0700
+@@ -33,6 +33,6 @@
+ fortune_fortune_all:	fortune/fortune/fortune fortune/fortune/fortune.6
+ 
+ fortune_fortune_install:	fortune_fortune_all
+-	$(INSTALL_BINARY) fortune/fortune/fortune $(INSTALL_PREFIX)$(GAMESDIR)/fortune
++	$(INSTALL_BINARY) fortune/fortune/fortune $(INSTALL_PREFIX)$(GAMESDIR)/bsd-fortune
+ 	$(HIDE_GAME) fortune
+ 	$(INSTALL_MANUAL) fortune/fortune/fortune.6
+diff -Naur bsd-games-2.17/fortune/strfile/Makefrag bsd-games-patch/fortune/strfile/Makefrag
+--- bsd-games-2.17/fortune/strfile/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/strfile/Makefrag	2020-04-23 22:10:57.869878191 +0700
+@@ -31,5 +31,5 @@
+ fortune_strfile_all:	fortune/strfile/strfile fortune/strfile/strfile.8
+ 
+ fortune_strfile_install:	fortune_strfile_all
+-	$(INSTALL_BINARY) fortune/strfile/strfile $(INSTALL_PREFIX)$(USRBINDIR)/strfile
++	$(INSTALL_BINARY) fortune/strfile/strfile $(INSTALL_PREFIX)$(USRBINDIR)/bsd-strfile
+ 	$(INSTALL_MANUAL) fortune/strfile/strfile.8
+diff -Naur bsd-games-2.17/fortune/unstr/Makefrag bsd-games-patch/fortune/unstr/Makefrag
+--- bsd-games-2.17/fortune/unstr/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/fortune/unstr/Makefrag	2020-04-23 22:10:57.877878091 +0700
+@@ -33,4 +33,4 @@
+ 
+ # We don't install unstr.
+ fortune_unstr_install:	fortune_unstr_all
+-#	$(INSTALL_BINARY) fortune/unstr/unstr $(INSTALL_PREFIX)$(USRBINDIR)/unstr
++#	$(INSTALL_BINARY) fortune/unstr/unstr $(INSTALL_PREFIX)$(USRBINDIR)/bsd-unstr
+diff -Naur bsd-games-2.17/gomoku/Makefrag bsd-games-patch/gomoku/Makefrag
+--- bsd-games-2.17/gomoku/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/gomoku/Makefrag	2020-04-23 22:10:57.881878041 +0700
+@@ -31,6 +31,6 @@
+ gomoku_all:	gomoku/gomoku gomoku/gomoku.6
+ 
+ gomoku_install:	gomoku_all
+-	$(INSTALL_BINARY) gomoku/gomoku $(INSTALL_PREFIX)$(GAMESDIR)/gomoku
++	$(INSTALL_BINARY) gomoku/gomoku $(INSTALL_PREFIX)$(GAMESDIR)/bsd-gomoku
+ 	$(HIDE_GAME) gomoku
+ 	$(INSTALL_MANUAL) gomoku/gomoku.6
+diff -Naur bsd-games-2.17/hack/Makefrag bsd-games-patch/hack/Makefrag
+--- bsd-games-2.17/hack/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/hack/Makefrag	2020-04-23 22:10:57.885877991 +0700
+@@ -53,7 +53,7 @@
+ hack/hack.zap.d hack/rnd.d:	hack/hack.onames.h
+ 
+ hack_install:	hack_all
+-	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hack
+ 	$(HIDE_GAME) hack
+ 	$(INSTALL_HACK_DIR) $(INSTALL_PREFIX)$(HACK_DIR)
+ 	set -e; for f in data help hh rumors; do $(INSTALL_DATA) hack/$$f $(INSTALL_PREFIX)$(HACK_DIR)/$$f; done
+diff -Naur bsd-games-2.17/hangman/Makefrag bsd-games-patch/hangman/Makefrag
+--- bsd-games-2.17/hangman/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hangman/Makefrag	2020-04-23 22:10:57.889877940 +0700
+@@ -31,6 +31,6 @@
+ hangman_all:	hangman/hangman hangman/hangman.6
+ 
+ hangman_install:	hangman_all
+-	$(INSTALL_BINARY) hangman/hangman $(INSTALL_PREFIX)$(GAMESDIR)/hangman
++	$(INSTALL_BINARY) hangman/hangman $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hangman
+ 	$(HIDE_GAME) hangman
+ 	$(INSTALL_MANUAL) hangman/hangman.6
+diff -Naur bsd-games-2.17/hunt/hunt/Makefrag bsd-games-patch/hunt/hunt/Makefrag
+--- bsd-games-2.17/hunt/hunt/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/hunt/Makefrag	2020-04-23 22:10:57.901877791 +0700
+@@ -35,6 +35,6 @@
+ hunt_hunt_all:	hunt/hunt/hunt hunt/hunt/hunt.6
+ 
+ hunt_hunt_install:	hunt_hunt_all
+-	$(INSTALL_BINARY) hunt/hunt/hunt $(INSTALL_PREFIX)$(GAMESDIR)/hunt
++	$(INSTALL_BINARY) hunt/hunt/hunt $(INSTALL_PREFIX)$(GAMESDIR)/bsd-hunt
+ 	$(HIDE_GAME) hunt
+ 	$(INSTALL_MANUAL) hunt/hunt/hunt.6
+diff -Naur bsd-games-2.17/hunt/huntd/Makefrag bsd-games-patch/hunt/huntd/Makefrag
+--- bsd-games-2.17/hunt/huntd/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/huntd/Makefrag	2020-04-23 22:10:57.905877740 +0700
+@@ -34,5 +34,5 @@
+ hunt_huntd_all:	hunt/huntd/huntd hunt/huntd/huntd.6
+ 
+ hunt_huntd_install:	hunt_huntd_all
+-	$(INSTALL_DAEMON) hunt/huntd/huntd $(INSTALL_PREFIX)$(SBINDIR)/huntd
++	$(INSTALL_DAEMON) hunt/huntd/huntd $(INSTALL_PREFIX)$(SBINDIR)/bsd-huntd
+ 	$(INSTALL_MANUAL) hunt/huntd/huntd.6
+diff -Naur bsd-games-2.17/hunt/Makeconfig bsd-games-patch/hunt/Makeconfig
+--- bsd-games-2.17/hunt/Makeconfig	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hunt/Makeconfig	2020-04-23 22:16:23.413802295 +0700
+@@ -59,6 +59,6 @@
+ hunt_DEFS_OSF1 := -DINTERNET -DLOG -DBSD_RELEASE=43 -DSIGNAL_TYPE=void -D_BSD
+ hunt_DEFS_LINUX := -DINTERNET -DLOG -DBSD_RELEASE=44 -DUSE_CURSES -DSIGNAL_TYPE=void
+ 
+-hunt_DEFS := $(hunt_GAME_PARAM) $(hunt_DEFS_LINUX) -DHUNTD=\"$(SBINDIR)/huntd\"
++hunt_DEFS := $(hunt_GAME_PARAM) $(hunt_DEFS_LINUX) -DHUNTD=\"$(SBINDIR)/bsd-huntd\"
+ 
+ endif
+diff -Naur bsd-games-2.17/install-man.in bsd-games-patch/install-man.in
+--- bsd-games-2.17/install-man.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-man.in	2020-04-23 22:17:26.677010195 +0700
+@@ -30,7 +30,7 @@
+ 
+ if [ $# = 1 ]; then
+     page=$1
+-    basepage=$(basename "$page")
++    basepage=bsd-$(basename "$page")
+     section=${basepage##*.}
+     if [ "$section" = 6 ]; then
+ 	mandir=@install_prefix@@man6dir@
+@@ -50,9 +50,9 @@
+ elif [ $# = 2 ]; then
+     # Manpage 2 should link to manpage 1.  No complications of removing
+     # directories from their names.
+-    page1=$1
++    page1=bsd-$1
+     section1=${page1##*.}
+-    page2=$2
++    page2=bsd-$2
+     section2=${page2##*.}
+     if [ "$section2" = 6 ]; then
+ 	mandir=@install_prefix@@man6dir@
+diff -Naur bsd-games-2.17/mille/Makefrag bsd-games-patch/mille/Makefrag
+--- bsd-games-2.17/mille/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/mille/Makefrag	2020-04-23 22:10:57.917877590 +0700
+@@ -31,6 +31,6 @@
+ mille_all:	mille/mille mille/mille.6
+ 
+ mille_install:	mille_all
+-	$(INSTALL_BINARY) mille/mille $(INSTALL_PREFIX)$(GAMESDIR)/mille
++	$(INSTALL_BINARY) mille/mille $(INSTALL_PREFIX)$(GAMESDIR)/bsd-mille
+ 	$(HIDE_GAME) mille
+ 	$(INSTALL_MANUAL) mille/mille.6
+diff -Naur bsd-games-2.17/monop/Makefrag bsd-games-patch/monop/Makefrag
+--- bsd-games-2.17/monop/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/monop/Makefrag	2020-04-23 22:10:57.921877540 +0700
+@@ -35,7 +35,7 @@
+ 	$< monop/cards.inp $@
+ 
+ monop_install:	monop_all
+-	$(INSTALL_BINARY) monop/monop $(INSTALL_PREFIX)$(GAMESDIR)/monop
++	$(INSTALL_BINARY) monop/monop $(INSTALL_PREFIX)$(GAMESDIR)/bsd-monop
+ 	$(HIDE_GAME) monop
+ 	$(INSTALL_MANUAL) monop/monop.6
+ 	$(INSTALL_DATA) monop/cards.pck $(INSTALL_PREFIX)$(MONOP_CARDSFILE)
+diff -Naur bsd-games-2.17/morse/Makefrag bsd-games-patch/morse/Makefrag
+--- bsd-games-2.17/morse/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/morse/Makefrag	2020-04-23 22:10:57.925877490 +0700
+@@ -31,6 +31,6 @@
+ morse_all:	morse/morse
+ 
+ morse_install:	morse_all
+-	$(INSTALL_BINARY) morse/morse $(INSTALL_PREFIX)$(GAMESDIR)/morse
++	$(INSTALL_BINARY) morse/morse $(INSTALL_PREFIX)$(GAMESDIR)/bsd-morse
+ 	$(HIDE_GAME) morse
+ 	$(INSTALL_MANUAL) bcd.6 morse.6
+diff -Naur bsd-games-2.17/number/Makefrag bsd-games-patch/number/Makefrag
+--- bsd-games-2.17/number/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/number/Makefrag	2020-04-23 22:10:57.929877440 +0700
+@@ -32,6 +32,6 @@
+ number_all:	number/number number/number.6
+ 
+ number_install:	number_all
+-	$(INSTALL_BINARY) number/number $(INSTALL_PREFIX)$(GAMESDIR)/number
++	$(INSTALL_BINARY) number/number $(INSTALL_PREFIX)$(GAMESDIR)/bsd-number
+ 	$(HIDE_GAME) number
+ 	$(INSTALL_MANUAL) number/number.6
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-23 22:10:57.937877340 +0700
+@@ -38,7 +38,7 @@
+ 	touch phantasia/scorefiles.stamp
+ 
+ phantasia_install:	phantasia_all
+-	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/bsd-phantasia
+ 	$(HIDE_GAME) phantasia
+ 	(set -e; for f in $(phantasia_VFILES1); do \
+ 	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+diff -ur bsd-games-2.17.orig/phantasia/pathnames.h.in bsd-games-2.17/phantasia/pathnames.h.in
+--- bsd-games-2.17.orig/phantasia/pathnames.h.in	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/phantasia/pathnames.h.in	2020-06-20 02:08:09.212762289 +0700
+@@ -31,7 +31,7 @@
+  *	@(#)pathnames.h	8.2 (Berkeley) 4/2/94
+  */
+ 
+-#define	_PATH_GAMEPROG	"@gamesdir@/phantasia"
++#define	_PATH_GAMEPROG	"@gamesdir@/bsd-phantasia"
+ #define	_PATH_GOLD	"@phantasia_dir@/gold"
+ #define	_PATH_LASTDEAD	"@phantasia_dir@/lastdead"
+ #define	_PATH_MESS	"@phantasia_dir@/mess"
+diff -Naur bsd-games-2.17/pig/Makefrag bsd-games-patch/pig/Makefrag
+--- bsd-games-2.17/pig/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/pig/Makefrag	2020-04-23 22:10:57.941877290 +0700
+@@ -31,6 +31,6 @@
+ pig_all:	pig/pig pig/pig.6
+ 
+ pig_install:	pig_all
+-	$(INSTALL_BINARY) pig/pig $(INSTALL_PREFIX)$(GAMESDIR)/pig
++	$(INSTALL_BINARY) pig/pig $(INSTALL_PREFIX)$(GAMESDIR)/bsd-pig
+ 	$(HIDE_GAME) pig
+ 	$(INSTALL_MANUAL) pig/pig.6
+diff -Naur bsd-games-2.17/pom/Makefrag bsd-games-patch/pom/Makefrag
+--- bsd-games-2.17/pom/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/pom/Makefrag	2020-04-23 22:10:57.945877239 +0700
+@@ -31,6 +31,6 @@
+ pom_all:	pom/pom pom/pom.6
+ 
+ pom_install:	pom_all
+-	$(INSTALL_BINARY) pom/pom $(INSTALL_PREFIX)$(GAMESDIR)/pom
++	$(INSTALL_BINARY) pom/pom $(INSTALL_PREFIX)$(GAMESDIR)/bsd-pom
+ 	$(HIDE_GAME) pom
+ 	$(INSTALL_MANUAL) pom/pom.6
+diff -Naur bsd-games-2.17/ppt/Makefrag bsd-games-patch/ppt/Makefrag
+--- bsd-games-2.17/ppt/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/ppt/Makefrag	2020-04-23 22:10:57.949877189 +0700
+@@ -31,6 +31,6 @@
+ ppt_all:	ppt/ppt
+ 
+ ppt_install:	ppt_all
+-	$(INSTALL_BINARY) ppt/ppt $(INSTALL_PREFIX)$(GAMESDIR)/ppt
++	$(INSTALL_BINARY) ppt/ppt $(INSTALL_PREFIX)$(GAMESDIR)/bsd-ppt
+ 	$(HIDE_GAME) ppt
+ 	$(INSTALL_MANUAL) bcd.6 ppt.6
+diff -Naur bsd-games-2.17/primes/Makefrag bsd-games-patch/primes/Makefrag
+--- bsd-games-2.17/primes/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/primes/Makefrag	2020-04-23 22:10:57.953877140 +0700
+@@ -32,6 +32,6 @@
+ primes_all:	primes/primes primes/primes.6
+ 
+ primes_install:	primes_all
+-	$(INSTALL_BINARY) primes/primes $(INSTALL_PREFIX)$(GAMESDIR)/primes
++	$(INSTALL_BINARY) primes/primes $(INSTALL_PREFIX)$(GAMESDIR)/bsd-primes
+ 	$(HIDE_GAME) primes
+ 	$(INSTALL_MANUAL) primes/primes.6
+diff -Naur bsd-games-2.17/quiz/Makefrag bsd-games-patch/quiz/Makefrag
+--- bsd-games-2.17/quiz/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/quiz/Makefrag	2020-04-23 22:10:57.961877039 +0700
+@@ -32,6 +32,6 @@
+ quiz_all:	quiz/quiz quiz/quiz.6
+ 
+ quiz_install:	quiz_all
+-	$(INSTALL_BINARY) quiz/quiz $(INSTALL_PREFIX)$(GAMESDIR)/quiz
++	$(INSTALL_BINARY) quiz/quiz $(INSTALL_PREFIX)$(GAMESDIR)/bsd-quiz
+ 	$(HIDE_GAME) quiz
+ 	$(INSTALL_MANUAL) quiz/quiz.6
+diff -Naur bsd-games-2.17/rain/Makefrag bsd-games-patch/rain/Makefrag
+--- bsd-games-2.17/rain/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/rain/Makefrag	2020-04-23 22:10:57.969876939 +0700
+@@ -31,6 +31,6 @@
+ rain_all:	rain/rain rain/rain.6
+ 
+ rain_install:	rain_all
+-	$(INSTALL_BINARY) rain/rain $(INSTALL_PREFIX)$(GAMESDIR)/rain
++	$(INSTALL_BINARY) rain/rain $(INSTALL_PREFIX)$(GAMESDIR)/bsd-rain
+ 	$(HIDE_GAME) rain
+ 	$(INSTALL_MANUAL) rain/rain.6
+diff -Naur bsd-games-2.17/random/Makefrag bsd-games-patch/random/Makefrag
+--- bsd-games-2.17/random/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/random/Makefrag	2020-04-23 22:10:57.973876889 +0700
+@@ -31,6 +31,6 @@
+ random_all:	random/random random/random.6
+ 
+ random_install:	random_all
+-	$(INSTALL_BINARY) random/random $(INSTALL_PREFIX)$(GAMESDIR)/random
++	$(INSTALL_BINARY) random/random $(INSTALL_PREFIX)$(GAMESDIR)/bsd-random
+ 	$(HIDE_GAME) random
+ 	$(INSTALL_MANUAL) random/random.6
+diff -Naur bsd-games-2.17/robots/Makefrag bsd-games-patch/robots/Makefrag
+--- bsd-games-2.17/robots/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/robots/Makefrag	2020-04-23 22:10:57.981876789 +0700
+@@ -32,7 +32,7 @@
+ robots_all:	robots/robots robots/robots.6
+ 
+ robots_install:	robots_all
+-	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/bsd-robots
+ 	$(HIDE_GAME) robots
+ 	$(INSTALL_SCORE_FILE) $(ROBOTS_SCOREFILE)
+ 	$(INSTALL_MANUAL) robots/robots.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-23 22:10:57.989876689 +0700
+@@ -31,7 +31,7 @@
+ sail_all:	sail/sail sail/sail.6
+ 
+ sail_install:	sail_all
+-	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/bsd-sail
+ 	$(HIDE_GAME) sail
+ 	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+ 	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+diff -Naur bsd-games-2.17/snake/snake/Makefrag bsd-games-patch/snake/snake/Makefrag
+--- bsd-games-2.17/snake/snake/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/snake/snake/Makefrag	2020-04-23 22:10:57.997876588 +0700
+@@ -31,7 +31,7 @@
+ snake_snake_all:	snake/snake/snake snake/snake/snake.6
+ 
+ snake_snake_install:	snake_snake_all
+-	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/bsd-snake
+ 	$(HIDE_GAME) snake
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_SCOREFILE)
+ 	$(INSTALL_SCORE_FILE) $(SNAKE_RAWSCOREFILE)
+diff -Naur bsd-games-2.17/snake/snscore/Makefrag bsd-games-patch/snake/snscore/Makefrag
+--- bsd-games-2.17/snake/snscore/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/snake/snscore/Makefrag	2020-04-23 22:10:58.005876489 +0700
+@@ -32,6 +32,6 @@
+ snake_snscore_all:	snake/snscore/snscore
+ 
+ snake_snscore_install:	snake_snscore_all
+-	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/snscore
++	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/bsd-snscore
+ 	$(HIDE_GAME) snscore
+ 	$(INSTALL_MANUAL) snake.6 snscore.6
+diff -Naur bsd-games-2.17/tetris/Makefrag bsd-games-patch/tetris/Makefrag
+--- bsd-games-2.17/tetris/Makefrag	2020-04-23 22:20:15.278899250 +0700
++++ bsd-games-patch/tetris/Makefrag	2020-04-23 22:11:47.137261335 +0700
+@@ -32,7 +32,7 @@
+ tetris_all:	tetris/tetris tetris/tetris.6
+ 
+ tetris_install:	tetris_all
+-	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/bsd-tetris
+ 	$(HIDE_GAME) tetris-bsd
+ 	$(INSTALL_SCORE_FILE) $(TETRIS_SCOREFILE)
+ 	ln -f tetris/tetris.6 tetris/tetris-bsd.6
+diff -Naur bsd-games-2.17/trek/Makefrag bsd-games-patch/trek/Makefrag
+--- bsd-games-2.17/trek/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/trek/Makefrag	2020-04-23 22:10:58.017876338 +0700
+@@ -31,7 +31,7 @@
+ trek_all:	trek/trek trek/trek.6 trek/USD.doc/trek.me
+ 
+ trek_install:	trek_all
+-	$(INSTALL_BINARY) trek/trek $(INSTALL_PREFIX)$(GAMESDIR)/trek
++	$(INSTALL_BINARY) trek/trek $(INSTALL_PREFIX)$(GAMESDIR)/bsd-trek
+ 	$(HIDE_GAME) trek
+ 	$(INSTALL_MANUAL) trek/trek.6
+ 	$(INSTALL_DATA) trek/USD.doc/trek.me $(INSTALL_PREFIX)$(DOCDIR)/trek.me
+diff -Naur bsd-games-2.17/wargames/Makefrag bsd-games-patch/wargames/Makefrag
+--- bsd-games-2.17/wargames/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wargames/Makefrag	2020-04-23 22:10:58.021876288 +0700
+@@ -31,6 +31,6 @@
+ wargames_all:	wargames/wargames wargames/wargames.6
+ 
+ wargames_install:	wargames_all
+-	$(INSTALL_SCRIPT) wargames/wargames $(INSTALL_PREFIX)$(GAMESDIR)/wargames
++	$(INSTALL_SCRIPT) wargames/wargames $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wargames
+ 	$(HIDE_GAME) wargames
+ 	$(INSTALL_MANUAL) wargames/wargames.6
+diff -Naur bsd-games-2.17/worm/Makefrag bsd-games-patch/worm/Makefrag
+--- bsd-games-2.17/worm/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/worm/Makefrag	2020-04-23 22:10:58.029876188 +0700
+@@ -31,6 +31,6 @@
+ worm_all:	worm/worm worm/worm.6
+ 
+ worm_install:	worm_all
+-	$(INSTALL_BINARY) worm/worm $(INSTALL_PREFIX)$(GAMESDIR)/worm
++	$(INSTALL_BINARY) worm/worm $(INSTALL_PREFIX)$(GAMESDIR)/bsd-worm
+ 	$(HIDE_GAME) worm
+ 	$(INSTALL_MANUAL) worm/worm.6
+diff -Naur bsd-games-2.17/worms/Makefrag bsd-games-patch/worms/Makefrag
+--- bsd-games-2.17/worms/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/worms/Makefrag	2020-04-23 22:10:58.033876138 +0700
+@@ -31,6 +31,6 @@
+ worms_all:	worms/worms worms/worms.6
+ 
+ worms_install:	worms_all
+-	$(INSTALL_BINARY) worms/worms $(INSTALL_PREFIX)$(GAMESDIR)/worms
++	$(INSTALL_BINARY) worms/worms $(INSTALL_PREFIX)$(GAMESDIR)/bsd-worms
+ 	$(HIDE_GAME) worms
+ 	$(INSTALL_MANUAL) worms/worms.6
+diff -Naur bsd-games-2.17/wtf/Makefrag bsd-games-patch/wtf/Makefrag
+--- bsd-games-2.17/wtf/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wtf/Makefrag	2020-04-23 22:10:58.037876087 +0700
+@@ -31,7 +31,7 @@
+ wtf_all:	wtf/wtf wtf/wtf.6
+ 
+ wtf_install:	wtf_all
+-	$(INSTALL_SCRIPT) wtf/wtf $(INSTALL_PREFIX)$(GAMESDIR)/wtf
++	$(INSTALL_SCRIPT) wtf/wtf $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wtf
+ 	$(HIDE_GAME) wtf
+ 	$(INSTALL_DATA) wtf/acronyms $(INSTALL_PREFIX)$(WTF_ACRONYMFILE)
+ 	$(INSTALL_DATA) wtf/acronyms.comp $(INSTALL_PREFIX)$(WTF_ACRONYMFILE).comp
+diff -Naur bsd-games-2.17/wump/Makefrag bsd-games-patch/wump/Makefrag
+--- bsd-games-2.17/wump/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wump/Makefrag	2020-04-23 22:10:58.045875988 +0700
+@@ -31,7 +31,7 @@
+ wump_all:	wump/wump wump/wump.6 wump/wump.info
+ 
+ wump_install:	wump_all
+-	$(INSTALL_BINARY) wump/wump $(INSTALL_PREFIX)$(GAMESDIR)/wump
++	$(INSTALL_BINARY) wump/wump $(INSTALL_PREFIX)$(GAMESDIR)/bsd-wump
+ 	$(HIDE_GAME) wump
+ 	$(INSTALL_DATA) wump/wump.info $(INSTALL_PREFIX)$(WUMP_INFOFILE)
+ 	$(INSTALL_MANUAL) wump/wump.6
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
                   ` (5 preceding siblings ...)
  2020-08-05 14:35 ` Vitaliy Shatrov via Guix-patches via
@ 2020-08-06  4:12 ` Vitaliy Shatrov via Guix-patches via
  2020-08-06 16:04 ` Vitaliy Shatrov via Guix-patches via
  2020-11-04 14:18 ` bug#40818: [PATCH] gnu: Add bsd-games Nicolas Goaziou
  8 siblings, 0 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-08-06  4:12 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org

[-- Attachment #1: Type: text/plain, Size: 176 bytes --]

I'm sorry, i'm forget to run both the `guix lint` and the code indentation checker.
I'll fix it.

Regards, Vitaliy. Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #2: Type: text/html, Size: 277 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
                   ` (6 preceding siblings ...)
  2020-08-06  4:12 ` Vitaliy Shatrov via Guix-patches via
@ 2020-08-06 16:04 ` Vitaliy Shatrov via Guix-patches via
  2020-08-13  8:30   ` Nicolas Goaziou
  2020-11-04 14:18 ` bug#40818: [PATCH] gnu: Add bsd-games Nicolas Goaziou
  8 siblings, 1 reply; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-08-06 16:04 UTC (permalink / raw)
  To: 40818@debbugs.gnu.org; +Cc: Nicolas Goaziou


[-- Attachment #1.1: Type: text/plain, Size: 510 bytes --]

That is a "final" version. All games are works, the wrapper script works, and no unnecessary changes
were introduced to the games' code in the end. They're configured to search in the current dir, and the
wrapper (a bash script) cares about the files that should be copied from the Store, and cd's to the
BSD_GAMES_DIR (and ask the User to set this variable if it's unset). It's also can use HACKDIR if the game
started is "hack".

Regards, Vitaliy. Sent with [ProtonMail](https://protonmail.com) Secure Email.

[-- Attachment #1.2: Type: text/html, Size: 675 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0002-gnu-Add-bsd-games.patch --]
[-- Type: text/x-patch; name=0002-gnu-Add-bsd-games.patch, Size: 43133 bytes --]

From a6af7beba9d9feb5fdebf9f429c53cdad91b48bd Mon Sep 17 00:00:00 2001
From: Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
Date: Thu, 6 Aug 2020 22:15:22 +0700
Subject: [PATCH] gnu: Add bsd-games.

* gnu/packages/games.scm a new variable.

New patches, taken from Arch and Debian:
* gnu/packages/patches/bsd-games-2.17-64bit.patch
* gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
* gnu/packages/patches/bsd-games-gamescreen.h.patch
* gnu/packages/patches/bsd-games-getline.patch
* gnu/packages/patches/bsd-games-null-check.patch
* gnu/packages/patches/bsd-games-number.c-and-test.patch
* gnu/packages/patches/bsd-games-prevent-name-collisions.patch
* gnu/packages/patches/bsd-games-stdio.h.patch

New patches with our customizations (configure-config built after Arch's):
* gnu/packages/patches/bsd-games-add-configure-config.patch
* gnu/packages/patches/bsd-games-add-wrapper.patch
* gnu/packages/patches/bsd-games-dont-install-empty-files.patch
---
 gnu/packages/games.scm                        | 135 ++++++++++
 .../patches/bsd-games-2.17-64bit.patch        |  43 +++
 .../bsd-games-add-configure-config.patch      |  22 ++
 .../patches/bsd-games-add-wrapper.patch       | 251 ++++++++++++++++++
 .../patches/bsd-games-bad-ntohl-cast.patch    |  22 ++
 .../bsd-games-dont-install-empty-files.patch  |  87 ++++++
 .../patches/bsd-games-gamescreen.h.patch      |  14 +
 gnu/packages/patches/bsd-games-getline.patch  | 194 ++++++++++++++
 .../patches/bsd-games-null-check.patch        |  24 ++
 .../patches/bsd-games-number.c-and-test.patch | 183 +++++++++++++
 .../bsd-games-prevent-name-collisions.patch   |  13 +
 gnu/packages/patches/bsd-games-stdio.h.patch  |  14 +
 12 files changed, 1002 insertions(+)
 create mode 100644 gnu/packages/patches/bsd-games-2.17-64bit.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-configure-config.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-wrapper.patch
 create mode 100644 gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
 create mode 100644 gnu/packages/patches/bsd-games-dont-install-empty-files.patch
 create mode 100644 gnu/packages/patches/bsd-games-gamescreen.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-getline.patch
 create mode 100644 gnu/packages/patches/bsd-games-null-check.patch
 create mode 100644 gnu/packages/patches/bsd-games-number.c-and-test.patch
 create mode 100644 gnu/packages/patches/bsd-games-prevent-name-collisions.patch
 create mode 100644 gnu/packages/patches/bsd-games-stdio.h.patch

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0f79f5eeba..bb87740b64 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -115,6 +115,7 @@
   #:use-module (gnu packages gl)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gnu-doc)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages gnuzilla)
   #:use-module (gnu packages gperf)
@@ -584,6 +585,140 @@ possible, while battling many vicious aliens.")
                    license:lgpl2.1+
                    license:bsd-2))))
 
+(define-public bsd-games
+  (package
+    (name "bsd-games")
+    (version "2.17.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://ibiblio.org/pub/linux/games/bsd-games-2.17.tar.gz")
+       (sha256
+        (base32
+         "0q7zdyyfvn15y0w4g54kq3gza89h61py727m8slmw73cxx594vq6"))
+       (patches
+        (search-patches
+         ;; thanks Arch, and Debian
+         "bsd-games-2.17-64bit.patch"
+         "bsd-games-bad-ntohl-cast.patch"
+         "bsd-games-gamescreen.h.patch"
+         "bsd-games-getline.patch"
+         "bsd-games-null-check.patch"
+         "bsd-games-number.c-and-test.patch"
+         "bsd-games-stdio.h.patch"
+         "bsd-games-prevent-name-collisions.patch"
+         ;; Guix customizations
+         "bsd-games-add-configure-config.patch"
+         "bsd-games-dont-install-empty-files.patch"
+         "bsd-games-add-wrapper.patch"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("flex" ,flex)
+       ("bison" ,bison)))
+    (inputs
+     `(("curses" ,ncurses)
+       ("pager" ,less)
+       ("miscfiles" ,miscfiles)
+       ("openssl" ,openssl)))           ;used only by 'factor'
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs inputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version))
+                    (man (string-append out "/share/man"))
+                    (word-list (string-append (assoc-ref inputs "miscfiles")
+                                              "/share/web2"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    ;; Not a "./" because of substitute* in 'patch-install
+                    ;; below.  The .// allow us not to mess with the games'
+                    ;; code any further: We just use a wrapper script that
+                    ;; cd's to a BSD_GAMES_DIR.  :]
+                    (save-files ".//"))
+               (substitute* "configure"
+                 (("/usr/share/man") man)
+                 (("/usr/share/doc/bsd-games") doc)
+                 (("/usr/share/[^\n/]*") static-data)
+                 (("/var/games") save-files)
+                 (("/usr/bin/less") (which "less"))
+                 (("(/usr/bin|/usr/games)") bin))
+               (substitute* "config.params" (("WORD_LIST") word-list))
+               (substitute* "wrapper" (("STATIC_DATA") static-data))
+               (invoke "./configure"))
+             #t))
+         (add-before 'install 'patch-install
+           ;; Some games need a writable directory containing pre-maded files.
+           ;; The files get installed to the Store.  Then the wrapper kicks in.
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    (save-files ".//"))
+               (substitute* "Makeconfig" ((save-files) static-data)))
+             #t))
+         (add-after 'install 'install-documents
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version)))
+               (rename-file "phantasia/COPYRIGHT" "phantasia-COPYRIGHT")
+               (for-each
+                (lambda(file) (install-file file doc))
+                '("AUTHORS" "BUGS" "README" "SECURITY" "THANKS"
+                  "phantasia-COPYRIGHT")))
+             #t)))))
+    (home-page "https://github.com/vattam/BSDGames")
+    (synopsis "Collection of the old text-based games and amusements")
+    (description
+     "The BSD-games.  See the fortune-mod package for fortunes.
+
+Action: atc (keep the airplanes safe), hack (explore the dangerous Dungeon),
+hunt (kill the others for the Pair of Boots, multi-player only), robots (avoid
+the evil robots), sail (game of naval warfare with wooden ships), snake (steal
+the $$ from the cave, anger the snake, and get out alive), tetris (game of
+lining up the falling bricks of different shapes), and worm (eat, grow big,
+and neither bite your tail, nor ram the wall).
+
+Amusements: banner (prints a large banner), bcd & morse & ppt (print a punch
+card, or paper tape, or Morse codes), caesar & rot13 (ciphers and deciphers
+the input), factor (factorizes a number), number (translates numbers into
+text), pig (translates from English to Pig Latin), pom (should print the
+Moon's phase), primes (generates primes), rain & worms (plays an screen-saver
+in terminal), random (prints randomly choosen lines from files, or returns a
+random exit-code), and wtf (explains what do some acronyms mean).
+
+Board: backgammon (lead the men out of board faster than the friend do),
+boggle (find the words in the square of letters), dab (game of dots and
+boxes), gomoku (game of five in a row), hangman (guess a word before man is
+hanged), and monop (game of monopoly, hot-seat only).  Also the card-games:
+canfield, cribbage, fish (juniors game), and mille.
+
+Quests: adventure (search for treasures with the help of wizard),
+battlestar (explore the world around, starting from dying spaceship),
+phantasia (role-play as an rogue), trek (hunt the Klingons, and save the
+Federation), and wump (hunt the big smelly Wumpus in a dark cave).
+
+Quizes: arithmetic, and quiz.")
+    ;; "Auxiliary and data files, distributed with the games in NetBSD, but
+    ;; not bearing copyright notices, probably fall under the terms of the UCB
+    ;; or NetBSD copyrights and licences.  The file "fortune/Notes" contains a
+    ;; warning in regard to the fortune databases."
+    (license (list
+              ;; Most games.  Files: countmail/countmail.6, dab/dab.6,
+              ;; lib/strlcpy.c, wargames/wargames.6
+              license:bsd-3
+              ;; dab and hunt.  Files: adventure/extern.h,
+              ;; backgammon/backgammon/backlocal.h, caesar/rot13.in,
+              ;; countmail/countmail, dm/utmpentry.c, dm/utmpentry.h,
+              ;; hack/extern.h, robots/auto.c, sail/display.h,
+              ;; sail/restart.h, wargames/wargames
+              license:bsd-4
+              ;; wtf (the game)
+              license:public-domain
+              ;; phantasia (all but phantasia/pathnames.h.in, which is bsd-3)
+              (license:fsf-free "file:///phantasia/COPYRIGHT")))))
+
+
 (define-public bzflag
   (package
     (name "bzflag")
diff --git a/gnu/packages/patches/bsd-games-2.17-64bit.patch b/gnu/packages/patches/bsd-games-2.17-64bit.patch
new file mode 100644
index 0000000000..e286c1c531
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-2.17-64bit.patch
@@ -0,0 +1,43 @@
+David Leverton writes about adventure/crc.c:
+
+The 'adventure' game from the games-misc/bsd-games-2.13 package crashes
+when saving the game on AMD64 (and probably other 64-bit systems, but I
+haven't checked).  Find attached to fix this.
+
+http://bugs.gentoo.org/show_bug.cgi?id=77032
+
+
+About utmpentry.c:
+
+the utmpx structure defines the ut_tv member a little differently on
+64bit hosts so that a 32bit and 64bit structure can be shared.  So the
+ut_tv is a custom 32bit structure rather than the native 64bit timeval
+structure.  Work around is to assign the submembers instead.
+
+http://bugs.gentoo.org/show_bug.cgi?id=102667
+
+--- bsd-games/adventure/crc.c
++++ bsd-games/adventure/crc.c
+@@ -134,7 +134,8 @@
+				if (step >= sizeof(crctab) / sizeof(crctab[0]))
+					step = 0;
+			}
+-			crcval = (crcval << 8) ^ crctab[i];
++			/* Mask to 32 bits. */
++			crcval = ((crcval << 8) ^ crctab[i]) & 0xffffffff;
+		}
+-	return crcval & 0xffffffff;	/* Mask to 32 bits. */
++	return crcval;
+ }
+--- bsd-games/dm/utmpentry.c
++++ bsd-games/dm/utmpentry.c
+@@ -291,7 +291,8 @@
+	e->line[sizeof(e->line) - 1] = '\0';
+	(void)strncpy(e->host, up->ut_host, sizeof(up->ut_host));
+	e->name[sizeof(e->host) - 1] = '\0';
+-	e->tv = up->ut_tv;
++	e->tv.tv_sec = up->ut_tv.tv_sec;
++	e->tv.tv_usec = up->ut_tv.tv_usec;
+	adjust_size(e);
+ }
+ #endif
diff --git a/gnu/packages/patches/bsd-games-add-configure-config.patch b/gnu/packages/patches/bsd-games-add-configure-config.patch
new file mode 100644
index 0000000000..d8636addb6
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-configure-config.patch
@@ -0,0 +1,22 @@
+Remove a few 'setenv's from the definition.
+
+diff -Naur bsd-games-2.17/config.params bsd-games-patch/config.params
+--- bsd-games-2.17/config.params	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/config.params	2020-04-22 20:49:40.809695248 +0700
+@@ -0,0 +1,16 @@
++bsd_games_cfg_do_chown=n
++bsd_games_cfg_non_interactive=y
++
++# Fix some man-pages: cfscores, morse, ppt, rot13, snscore, teachgammon.
++bsd_games_cfg_use_dot_so=syml
++
++# Don't build some games:
++# Countmail require some BSD-package called `from`.
++# DM is a toy to restrict access to bsd-games.
++# Fortune seems to be already packaged (fortune-mod).
++# Wargames isn't convenient as a game launcher.
++bsd_games_cfg_no_build_dirs="countmail dm fortune wargames"
++
++# Those are substitute*'d with GNU miscfiles.
++bsd_games_cfg_hangman_wordsfile=WORD_LIST
++bsd_games_cfg_dictionary_src=WORD_LIST
diff --git a/gnu/packages/patches/bsd-games-add-wrapper.patch b/gnu/packages/patches/bsd-games-add-wrapper.patch
new file mode 100644
index 0000000000..67e64157f3
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-wrapper.patch
@@ -0,0 +1,251 @@
+As we cannot install outside the Store, and those games do not create the
+needed writable files on their own, we need a wrapper script.
+
+diff -Naur bsd-games-2.17/atc/Makefrag bsd-games-patch/atc/Makefrag
+--- bsd-games-2.17/atc/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/atc/Makefrag	2020-04-23 20:24:04.446176222 +0700
+@@ -47,7 +47,8 @@
+	mv atc/lex.yy.c $@
+
+ atc_install:	atc_all
+-	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/.atc-real
+	$(HIDE_GAME) atc
+	$(INSTALL_SCORE_FILE) $(ATC_SCOREFILE)
+	$(INSTALL_MANUAL) atc/atc.6
+diff -Naur bsd-games-2.17/battlestar/Makefrag bsd-games-patch/battlestar/Makefrag
+--- bsd-games-2.17/battlestar/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/battlestar/Makefrag	2020-04-23 20:24:04.482175771 +0700
+@@ -32,7 +32,8 @@
+ battlestar_all:	battlestar/battlestar battlestar/battlestar.6
+
+ battlestar_install:	battlestar_all
+-	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/.battlestar-real
+	$(HIDE_GAME) battlestar
+	$(INSTALL_MANUAL) battlestar/battlestar.6
+	$(INSTALL_SCORE_FILE) $(BATTLESTAR_SCOREFILE)
+diff -Naur bsd-games-2.17/canfield/canfield/Makefrag bsd-games-patch/canfield/canfield/Makefrag
+--- bsd-games-2.17/canfield/canfield/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/canfield/canfield/Makefrag	2020-04-23 20:24:04.522175270 +0700
+@@ -31,7 +31,8 @@
+ canfield_canfield_all:	canfield/canfield/canfield canfield/canfield/canfield.6
+
+ canfield_canfield_install: canfield_canfield_all
+-	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/.canfield-real
+	$(HIDE_GAME) canfield
+	$(INSTALL_MANUAL) canfield/canfield/canfield.6
+	$(INSTALL_SCORE_FILE) $(CANFIELD_SCOREFILE)
+diff -ur bsd-games-2.17.orig/canfield/cfscores/Makefrag bsd-games-2.17/canfield/cfscores/Makefrag
+--- bsd-games-2.17.orig/canfield/cfscores/Makefrag	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/canfield/cfscores/Makefrag	2020-08-06 12:20:10.592076477 +0700
+@@ -32,6 +32,7 @@
+ canfield_cfscores_all:	canfield/cfscores/cfscores
+
+ canfield_cfscores_install:	canfield_cfscores_all
+-	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/cfscores
++	$(INSTALL_BINARY) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/cfscores
++	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/.cfscores-real
+	$(HIDE_GAME) cfscores
+	$(INSTALL_MANUAL) canfield.6 cfscores.6
+diff -Naur bsd-games-2.17/cribbage/Makefrag bsd-games-patch/cribbage/Makefrag
+--- bsd-games-2.17/cribbage/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/cribbage/Makefrag	2020-04-23 20:24:04.534175120 +0700
+@@ -31,7 +31,8 @@
+ cribbage_all:	cribbage/cribbage cribbage/cribbage.n cribbage/cribbage.6
+
+ cribbage_install:	cribbage_all
+-	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/.cribbage-real
+	$(HIDE_GAME) cribbage
+	$(INSTALL_DATA) cribbage/cribbage.n $(INSTALL_PREFIX)$(CRIBBAGE_INSTRFILE)
+	$(INSTALL_SCORE_FILE) $(CRIBBAGE_SCOREFILE)
+diff -Naur bsd-games-2.17/hack/Makefrag bsd-games-patch/hack/Makefrag
+--- bsd-games-2.17/hack/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hack/Makefrag	2020-04-23 20:24:04.590174419 +0700
+@@ -53,7 +53,8 @@
+ hack/hack.zap.d hack/rnd.d:	hack/hack.onames.h
+
+ hack_install:	hack_all
+-	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/.hack-real
+	$(HIDE_GAME) hack
+	$(INSTALL_HACK_DIR) $(INSTALL_PREFIX)$(HACK_DIR)
+	set -e; for f in data help hh rumors; do $(INSTALL_DATA) hack/$$f $(INSTALL_PREFIX)$(HACK_DIR)/$$f; done
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-23 20:24:04.650173667 +0700
+@@ -38,7 +38,8 @@
+	touch phantasia/scorefiles.stamp
+
+ phantasia_install:	phantasia_all
+-	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/.phantasia-real
+	$(HIDE_GAME) phantasia
+	(set -e; for f in $(phantasia_VFILES1); do \
+	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+diff -Naur bsd-games-2.17/robots/Makefrag bsd-games-patch/robots/Makefrag
+--- bsd-games-2.17/robots/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/robots/Makefrag	2020-04-23 20:24:04.702173016 +0700
+@@ -32,7 +32,8 @@
+ robots_all:	robots/robots robots/robots.6
+
+ robots_install:	robots_all
+-	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/.robots-real
+	$(HIDE_GAME) robots
+	$(INSTALL_SCORE_FILE) $(ROBOTS_SCOREFILE)
+	$(INSTALL_MANUAL) robots/robots.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-23 20:24:04.710172917 +0700
+@@ -31,7 +31,8 @@
+ sail_all:	sail/sail sail/sail.6
+
+ sail_install:	sail_all
+-	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/.sail-real
+	$(HIDE_GAME) sail
+	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+diff -Naur bsd-games-2.17/snake/snake/Makefrag bsd-games-patch/snake/snake/Makefrag
+--- bsd-games-2.17/snake/snake/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/snake/snake/Makefrag	2020-04-23 20:24:04.722172766 +0700
+@@ -31,7 +31,8 @@
+ snake_snake_all:	snake/snake/snake snake/snake/snake.6
+
+ snake_snake_install:	snake_snake_all
+-	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/.snake-real
+	$(HIDE_GAME) snake
+	$(INSTALL_SCORE_FILE) $(SNAKE_SCOREFILE)
+	$(INSTALL_SCORE_FILE) $(SNAKE_RAWSCOREFILE)
+--- bsd-games-2.17.orig/snake/snscore/Makefrag	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/snake/snscore/Makefrag	2020-08-06 12:33:09.636089394 +0700
+@@ -32,6 +32,7 @@
+ snake_snscore_all:	snake/snscore/snscore
+
+ snake_snscore_install:	snake_snscore_all
+-	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/snscore
++	$(INSTALL_BINARY) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/snscore
++	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/.snscore-real
+	$(HIDE_GAME) snscore
+	$(INSTALL_MANUAL) snake.6 snscore.6
+diff -Naur bsd-games-2.17/tetris/Makefrag bsd-games-patch/tetris/Makefrag
+--- bsd-games-2.17/tetris/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tetris/Makefrag	2020-04-23 20:24:04.734172616 +0700
+@@ -32,7 +32,8 @@
+ tetris_all:	tetris/tetris tetris/tetris.6
+
+ tetris_install:	tetris_all
+-	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/.tetris-bsd-real
+	$(HIDE_GAME) tetris-bsd
+	$(INSTALL_SCORE_FILE) $(TETRIS_SCOREFILE)
+	ln -f tetris/tetris.6 tetris/tetris-bsd.6
+diff -Naur bsd-games-2.17/wrapper bsd-games-patch/wrapper
+--- bsd-games-2.17/wrapper	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wrapper	2020-04-23 20:24:37.153766719 +0700
+@@ -0,0 +1,91 @@
++#!/bin/sh
++# This file works around limitations of our read-only Store.
++
++set -e
++
++check_empty_files () {
++    # those start empty
++    for f in ${@}
++    do
++        if [[ ! -f ${f} ]]
++        then
++            touch      ${f}
++            echo "$(pwd)/${f} RESTORED"
++        fi
++    done
++}
++check_data_files () {
++    # those start with some initial data
++    for f in ${@}
++    do
++        if [[ ! -f ${f} ]]
++        then
++            cp STATIC_DATA/${game}/${f} ${f}
++            chmod u+w ${f}
++            echo "$(pwd)/${f} RESTORED"
++        fi
++    done
++}
++visit_dir () {
++    mkdir -p ${1}
++    cd ${1}
++}
++exit_with_variable_error () {
++    variables="${1}${2:+ or ${2}}"
++    echo "Guix: Please set up the ${variables} variable."
++    echo "Examples:"
++    echo "   export ${1}=/var/multiplayer"
++    echo "   export ${2:-${1}}=~/.local/share/bsd-games"
++    echo "You can place this in ~/.bashrc or a similar file for Your shell."
++    echo "For multiplayer this directory should be writable for all players."
++    exit 1
++}
++
++game=$(basename $0)
++if [[ ${game} == "hack" ]]
++then
++    if   [[ -n ${HACKDIR} ]];       then visit_dir "${HACKDIR}"
++    elif [[ -n ${BSD_GAMES_DIR} ]]; then visit_dir "${BSD_GAMES_DIR}/hack"
++    else exit_with_variable_error "HACKDIR" "BSD_GAMES_DIR"
++    fi
++else
++    if [[ -n ${BSD_GAMES_DIR} ]]; then visit_dir "${BSD_GAMES_DIR}"
++    else exit_with_variable_error "BSD_GAMES_DIR"
++    fi
++fi
++
++case ${game} in
++    ### Games with score-files
++    atc)
++        check_empty_files "atc_score";;
++    battlestar)
++        check_empty_files "battlestar.log";;
++    canfield)
++        check_empty_files "cfscores";;
++    cribbage)
++        check_empty_files "criblog";;
++    robots)
++        check_empty_files "robots_roll";;
++    snake)
++        check_empty_files "snakerawscores" "snake.log";;
++    tetris)
++        check_empty_files "tetris-bsd.scores";;
++    ### Games with saved state
++    hack)
++        check_empty_files "record" "perm"
++        check_data_files "data" "help" "hh" "rumors"
++        visit_dir "save"
++        cd ../../;;
++    phantasia)
++        visit_dir "phantasia"
++        check_empty_files "characs" "gold" "lastdead"\
++                          "mess" "motd" "scoreboard" "void"
++        check_data_files "monsters"
++        cd ../;;
++    sail)
++        visit_dir "sail"
++        check_empty_files "log" "syncfile"
++        cd ../;;
++esac
++
++exec .${game}-real ${@}
diff --git a/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
new file mode 100644
index 0000000000..caadfa5054
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
@@ -0,0 +1,22 @@
+diff --git a/hunt/hunt/playit.c b/hunt/hunt/playit.c
+index 9acf86e..881a4e7 100644
+--- a/hunt/hunt/playit.c
++++ b/hunt/hunt/playit.c
+@@ -114,7 +114,7 @@ playit()
+		bad_con();
+		/* NOTREACHED */
+	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+		bad_ver();
+		/* NOTREACHED */
+	}
+@@ -649,7 +649,7 @@ do_message()
+		bad_con();
+		/* NOTREACHED */
+	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+		bad_ver();
+		/* NOTREACHED */
+	}
diff --git a/gnu/packages/patches/bsd-games-dont-install-empty-files.patch b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
new file mode 100644
index 0000000000..4ee0578177
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
@@ -0,0 +1,87 @@
+Those games rely on user to provide the files to write scores in.
+Those score-files are initially empty.  Anyway, the Store is read-only.
+So we do not install those empty files.
+
+diff -Naur bsd-games-2.17/install-score.in bsd-games-patch/install-score.in
+--- bsd-games-2.17/install-score.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-score.in	2020-04-22 21:41:47.810544804 +0700
+@@ -1,45 +0,0 @@
+-# install-score.in - install a score file
+-#
+-# Copyright (c) 1997, 1998, 1999 Joseph Samuel Myers.
+-# All rights reserved.
+-#
+-# Redistribution and use in source and binary forms, with or without
+-# modification, are permitted provided that the following conditions
+-# are met:
+-# 1. Redistributions of source code must retain the above copyright
+-#    notice, this list of conditions and the following disclaimer.
+-# 2. Redistributions in binary form must reproduce the above copyright
+-#    notice, this list of conditions and the following disclaimer in the
+-#    documentation and/or other materials provided with the distribution.
+-# 3. The name of the author may not be used to endorse or promote products
+-#    derived from this software without specific prior written permission.
+-#
+-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+-# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+-# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+-# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+-# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+-# SUCH DAMAGE.
+-
+-set -e
+-
+-if [ "$1" = "-p" ]; then
+-    scorefile="@install_prefix@$2"
+-    perms=@vardata_perms_priv@
+-else
+-    scorefile="@install_prefix@$1"
+-    perms=@vardata_perms@
+-fi
+-
+-mkdir -p "$(dirname "$scorefile")"
+-
+-test -e "$scorefile" || touch "$scorefile"
+-if [ @do_chown@ = y ]; then
+-    chown @vardata_owner@:@vardata_group@ "$scorefile"
+-fi
+-chmod "$perms" "$scorefile"
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-22 21:26:00.162409464 +0700
+@@ -27,9 +27,8 @@
+ # SUCH DAMAGE.
+
+ phantasia_DIRS := $(GAMESDIR) $(MAN6DIR) $(PHANTASIA_DIR)
+-phantasia_VFILES1 := gold lastdead mess monsters motd void
+-phantasia_VFILES2 := scoreboard characs
+-phantasia_CLEANFILES := $(phantasia_VFILES1) $(phantasia_VFILES2) scorefiles.stamp
++phantasia_VFILES1 := monsters
++phantasia_CLEANFILES := $(phantasia_VFILES1) scorefiles.stamp
+
+ phantasia_all:	phantasia/phantasia phantasia/phantasia.6 phantasia/scorefiles.stamp
+
+@@ -43,9 +42,4 @@
+	(set -e; for f in $(phantasia_VFILES1); do \
+	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/$$f; done)
+-	(set -e; for f in $(phantasia_VFILES2); do \
+-	    if [ ! -e $(PHANTASIA_DIR)/$$f ]; then \
+-		cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; fi; done; \
+-	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/scoreboard; \
+-	    $(INSTALL_SCORE_FILE) -p $(PHANTASIA_DIR)/characs)
+	$(INSTALL_MANUAL) phantasia/phantasia.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-22 21:26:48.701801676 +0700
+@@ -34,5 +34,4 @@
+	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
+	$(HIDE_GAME) sail
+	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+-	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+	$(INSTALL_MANUAL) sail/sail.6
diff --git a/gnu/packages/patches/bsd-games-gamescreen.h.patch b/gnu/packages/patches/bsd-games-gamescreen.h.patch
new file mode 100644
index 0000000000..d3c6b4ae50
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-gamescreen.h.patch
@@ -0,0 +1,14 @@
+--- a/dab/gamescreen.h	2004-01-02 23:34:51.000000000 +0530
++++ b/dab/gamescreen.h	2008-07-31 23:45:19.000000000 +0530
+@@ -70,9 +70,9 @@
+     virtual void redraw(void) = 0;			// Refresh
+     virtual int getinput(void) = 0;			// Get user input
+     virtual void bell(void) = 0;			// Beep
+-    virtual void score(size_t p, const PLAYER& p) = 0;	// Post current score
+-    virtual void games(size_t p, const PLAYER& p) = 0;	// Post games won
+-    virtual void total(size_t p, const PLAYER& p) = 0;	// Post total score
++    virtual void score(size_t, const PLAYER&) = 0;	// Post current score
++    virtual void games(size_t, const PLAYER&) = 0;	// Post games won
++    virtual void total(size_t, const PLAYER&) = 0;	// Post total score
+     virtual void ties(const PLAYER& p) = 0;		// Post tie games
+ };
diff --git a/gnu/packages/patches/bsd-games-getline.patch b/gnu/packages/patches/bsd-games-getline.patch
new file mode 100644
index 0000000000..d7c0b4034d
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-getline.patch
@@ -0,0 +1,194 @@
+diff -Naur bsd-games-2.17/boggle/boggle/bog.c bsd-games-2.17.1/boggle/boggle/bog.c
+--- bsd-games-2.17/boggle/boggle/bog.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/bog.c	2010-05-22 10:51:23.000000000 -0500
+@@ -336,7 +336,7 @@
+	}
+
+	while (1) {
+-		if (getline(buf) == NULL) {
++		if (boggle_getline(buf) == NULL) {
+			if (feof(stdin))
+				clearerr(stdin);
+			break;
+diff -Naur bsd-games-2.17/boggle/boggle/extern.h bsd-games-2.17.1/boggle/boggle/extern.h
+--- bsd-games-2.17/boggle/boggle/extern.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/extern.h	2010-05-22 10:51:23.000000000 -0500
+@@ -43,7 +43,7 @@
+ long	 dictseek(FILE *, long, int);
+ void	 findword(void);
+ void	 flushin(FILE *);
+-char	*getline(char *);
++char	*boggle_getline(char *);
+ void	 getword(char *);
+ int	 help(void);
+ int	 inputch(void);
+diff -Naur bsd-games-2.17/boggle/boggle/mach.c bsd-games-2.17.1/boggle/boggle/mach.c
+--- bsd-games-2.17/boggle/boggle/mach.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/mach.c	2010-05-22 10:51:23.000000000 -0500
+@@ -168,7 +168,7 @@
+  * - doesn't accept words longer than MAXWORDLEN or containing caps
+  */
+ char *
+-getline(q)
++boggle_getline(q)
+	char *q;
+ {
+	int ch, done;
+diff -Naur bsd-games-2.17/cribbage/cribbage.h bsd-games-2.17.1/cribbage/cribbage.h
+--- bsd-games-2.17/cribbage/cribbage.h	2004-02-08 16:29:14.000000000 -0600
++++ bsd-games-2.17.1/cribbage/cribbage.h	2010-05-22 10:51:23.000000000 -0500
+@@ -77,7 +77,7 @@
+ int	 fifteens(const CARD [], int);
+ void	 game(void);
+ void	 gamescore(void);
+-char	*getline(void);
++char	*cribbage_getline(void);
+ int	 getuchar(void);
+ int	 incard(CARD *);
+ int	 infrom(const CARD [], int, const char *);
+diff -Naur bsd-games-2.17/cribbage/crib.c bsd-games-2.17.1/cribbage/crib.c
+--- bsd-games-2.17/cribbage/crib.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/cribbage/crib.c	2010-05-22 10:51:23.000000000 -0500
+@@ -221,7 +221,7 @@
+			if (!rflag) {			/* player cuts deck */
+				msg(quiet ? "Cut for crib? " :
+			    "Cut to see whose crib it is -- low card wins? ");
+-				getline();
++				cribbage_getline();
+			}
+			i = (rand() >> 4) % CARDS;	/* random cut */
+			do {	/* comp cuts deck */
+@@ -397,7 +397,7 @@
+		if (!rflag) {	/* random cut */
+			msg(quiet ? "Cut the deck? " :
+		    "How many cards down do you wish to cut the deck? ");
+-			getline();
++			cribbage_getline();
+		}
+		i = (rand() >> 4) % (CARDS - pos);
+		turnover = deck[i + pos];
+diff -Naur bsd-games-2.17/cribbage/io.c bsd-games-2.17.1/cribbage/io.c
+--- bsd-games-2.17/cribbage/io.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/cribbage/io.c	2010-05-22 10:51:23.000000000 -0500
+@@ -245,7 +245,7 @@
+
+	retval = FALSE;
+	rnk = sut = EMPTY;
+-	if (!(line = getline()))
++	if (!(line = cribbage_getline()))
+		goto gotit;
+	p = p1 = line;
+	while (*p1 != ' ' && *p1 != '\0')
+@@ -346,7 +346,7 @@
+
+	for (sum = 0;;) {
+		msg(prompt);
+-		if (!(p = getline()) || *p == '\0') {
++		if (!(p = cribbage_getline()) || *p == '\0') {
+			msg(quiet ? "Not a number" :
+			    "That doesn't look like a number");
+			continue;
+@@ -528,12 +528,12 @@
+ }
+
+ /*
+- * getline:
++ * cribbage_getline:
+  *      Reads the next line up to '\n' or EOF.  Multiple spaces are
+  *	compressed to one space; a space is inserted before a ','
+  */
+ char *
+-getline()
++cribbage_getline()
+ {
+	char *sp;
+	int c, oy, ox;
+diff -Naur bsd-games-2.17/gomoku/bdisp.c bsd-games-2.17.1/gomoku/bdisp.c
+--- bsd-games-2.17/gomoku/bdisp.c	2003-12-16 20:47:37.000000000 -0600
++++ bsd-games-2.17.1/gomoku/bdisp.c	2010-05-22 10:51:23.000000000 -0500
+@@ -241,7 +241,7 @@
+ }
+
+ int
+-getline(buf, size)
++gomoku_getline(buf, size)
+	char *buf;
+	int size;
+ {
+diff -Naur bsd-games-2.17/gomoku/gomoku.h bsd-games-2.17.1/gomoku/gomoku.h
+--- bsd-games-2.17/gomoku/gomoku.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/gomoku.h	2010-05-22 10:51:23.000000000 -0500
+@@ -263,7 +263,7 @@
+
+ void	bdinit(struct spotstr *);
+ void	init_overlap(void);
+-int	getline(char *, int);
++int	gomoku_getline(char *, int);
+ void	ask(const char *);
+ void	dislog(const char *);
+ void	bdump(FILE *);
+diff -Naur bsd-games-2.17/gomoku/main.c bsd-games-2.17.1/gomoku/main.c
+--- bsd-games-2.17/gomoku/main.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/main.c	2010-05-22 10:51:23.000000000 -0500
+@@ -155,7 +155,7 @@
+		if (inputfp == NULL && test == 0) {
+			for (;;) {
+				ask("black or white? ");
+-				getline(buf, sizeof(buf));
++				gomoku_getline(buf, sizeof(buf));
+				if (buf[0] == 'b' || buf[0] == 'B') {
+					color = BLACK;
+					break;
+@@ -172,7 +172,7 @@
+		}
+	} else {
+		setbuf(stdout, 0);
+-		getline(buf, sizeof(buf));
++		gomoku_getline(buf, sizeof(buf));
+		if (strcmp(buf, "black") == 0)
+			color = BLACK;
+		else if (strcmp(buf, "white") == 0)
+@@ -244,7 +244,7 @@
+		getinput:
+			if (interactive)
+				ask("move? ");
+-			if (!getline(buf, sizeof(buf))) {
++			if (!gomoku_getline(buf, sizeof(buf))) {
+				curmove = RESIGN;
+				break;
+			}
+@@ -256,7 +256,7 @@
+					FILE *fp;
+
+					ask("save file name? ");
+-					(void)getline(buf, sizeof(buf));
++					(void)gomoku_getline(buf, sizeof(buf));
+					if ((fp = fopen(buf, "w")) == NULL) {
+						glog("cannot create save file");
+						goto getinput;
+@@ -309,14 +309,14 @@
+		if (i != RESIGN) {
+		replay:
+			ask("replay? ");
+-			if (getline(buf, sizeof(buf)) &&
++			if (gomoku_getline(buf, sizeof(buf)) &&
+			    (buf[0] == 'y' || buf[0] == 'Y'))
+				goto again;
+			if (strcmp(buf, "save") == 0) {
+				FILE *fp;
+
+				ask("save file name? ");
+-				(void)getline(buf, sizeof(buf));
++				(void)gomoku_getline(buf, sizeof(buf));
+				if ((fp = fopen(buf, "w")) == NULL) {
+					glog("cannot create save file");
+					goto replay;
+@@ -367,7 +367,7 @@
+		quit();
+ top:
+	ask("cmd? ");
+-	if (!getline(fmtbuf, sizeof(fmtbuf)))
++	if (!gomoku_getline(fmtbuf, sizeof(fmtbuf)))
+		quit();
+	switch (*fmtbuf) {
+	case '\0':
diff --git a/gnu/packages/patches/bsd-games-null-check.patch b/gnu/packages/patches/bsd-games-null-check.patch
new file mode 100644
index 0000000000..ba977c95bf
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-null-check.patch
@@ -0,0 +1,24 @@
+diff --git a/hunt/hunt/hunt.c b/hunt/hunt/hunt.c
+index 11f4c44..28321bc 100644
+--- a/hunt/hunt/hunt.c
++++ b/hunt/hunt/hunt.c
+@@ -394,7 +394,8 @@ broadcast_vec(s, vector)
+
+	vec_cnt = 0;
+	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+		    (ip->ifa_flags & IFF_BROADCAST))
+			vec_cnt++;
+
+@@ -405,7 +406,8 @@ broadcast_vec(s, vector)
+
+	vec_cnt = 0;
+	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+		    (ip->ifa_flags & IFF_BROADCAST))
+			memcpy(&(*vector)[vec_cnt++], ip->ifa_broadaddr,
+			       sizeof(struct sockaddr_in));
diff --git a/gnu/packages/patches/bsd-games-number.c-and-test.patch b/gnu/packages/patches/bsd-games-number.c-and-test.patch
new file mode 100644
index 0000000000..1cf5ba2822
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-number.c-and-test.patch
@@ -0,0 +1,183 @@
+Arch's patch, and a fix for the "number" game's test.
+--- bsdgames-2.17.orig/number/number.c
++++ bsdgames-2.17/number/number.c
+@@ -78,9 +78,9 @@
+
+ void	convert(char *);
+ int	main(int, char *[]);
+-int	number(const char *, int);
+-void	pfract(int);
+-int	unit(int, const char *);
++int	number(const char *, int, int *);
++void	pfract(int, int);
++int	unit(int, const char *, int *);
+ void	usage(void) __attribute__((__noreturn__));
+
+ int lflag;
+@@ -131,7 +131,7 @@
+ convert(line)
+	char *line;
+ {
+-	int flen, len, rval;
++	int flen, len, rval, singular;
+	char *p, *fraction;
+
+	flen = 0;
+@@ -174,7 +174,7 @@
+		--len;
+	}
+
+-	rval = len > 0 ? unit(len, line) : 0;
++	rval = len > 0 ? unit(len, line, &singular) : 0;
+	if (fraction != NULL && flen != 0)
+		for (p = fraction; *p != '\0'; ++p)
+			if (*p != '0') {
+@@ -182,10 +182,10 @@
+					(void)printf("%sand%s",
+					    lflag ? " " : "",
+					    lflag ? " " : "\n");
+-				if (unit(flen, fraction)) {
++				if (unit(flen, fraction, &singular)) {
+					if (lflag)
+						(void)printf(" ");
+-					pfract(flen);
++					pfract(flen, singular);
+					rval = 1;
+				}
+				break;
+@@ -197,9 +197,10 @@
+ }
+
+ int
+-unit(len, p)
++unit(len, p, singular)
+	int len;
+	const char *p;
++	int *singular;
+ {
+	int off, rval;
+
+@@ -208,7 +209,7 @@
+		if (len % 3) {
+			off = len % 3;
+			len -= off;
+-			if (number(p, off)) {
++			if (number(p, off, singular)) {
+				rval = 1;
+				(void)printf(" %s%s",
+				    name3[len / 3], lflag ? " " : ".\n");
+@@ -217,14 +218,16 @@
+		}
+		for (; len > 3; p += 3) {
+			len -= 3;
+-			if (number(p, 3)) {
++			if (number(p, 3, singular)) {
+				rval = 1;
+				(void)printf(" %s%s",
+				    name3[len / 3], lflag ? " " : ".\n");
+			}
+		}
+	}
+-	if (number(p, len)) {
++	if (number(p, len, singular)) {
++		if (rval)
++			*singular = 0;
+		if (!lflag)
+			(void)printf(".\n");
+		rval = 1;
+@@ -233,17 +236,20 @@
+ }
+
+ int
+-number(p, len)
++number(p, len, singular)
+	const char *p;
+	int len;
++	int *singular;
+ {
+	int val, rval;
+
+	rval = 0;
++	*singular = 1;
+	switch (len) {
+	case 3:
+		if (*p != '0') {
+			rval = 1;
++			*singular = 0;
+			(void)printf("%s hundred", name1[*p - '0']);
+		}
+		++p;
+@@ -262,33 +268,42 @@
+			}
+			rval = 1;
+		}
++		if (val != 1)
++			*singular = 0;
+		break;
+	case 1:
+		if (*p != '0') {
+			rval = 1;
+			(void)printf("%s", name1[*p - '0']);
+		}
++		if (*p != '1')
++			*singular = 0;
+	}
+	return (rval);
+ }
+
+ void
+-pfract(len)
++pfract(len, singular)
+	int len;
++	int singular;
+ {
+	static const char *const pref[] = { "", "ten-", "hundred-" };
+
+	switch(len) {
+	case 1:
+-		(void)printf("tenths.\n");
++		(void)printf("tenth");
+		break;
+	case 2:
+-		(void)printf("hundredths.\n");
++		(void)printf("hundredth");
+		break;
+	default:
+-		(void)printf("%s%sths.\n", pref[len % 3], name3[len / 3]);
++		(void)printf("%s%sth", pref[len % 3], name3[len / 3]);
+		break;
+	}
++	if (!singular) {
++		printf("s");
++	}
++	printf(".\n");
+ }
+
+ void
+diff -Naur bsd-games-2.17/tests/number.-0.1 bsd-games-patch/tests/number.-0.1
+--- bsd-games-2.17/tests/number.-0.1	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.1	2020-04-17 15:14:27.831098084 +0700
+@@ -1,3 +1,3 @@
+ minus
+ one.
+-tenths.
++tenth.
+diff -Naur bsd-games-2.17/tests/number.-0.2 bsd-games-patch/tests/number.-0.2
+--- bsd-games-2.17/tests/number.-0.2	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.2	2020-04-17 15:20:48.162336279 +0700
+@@ -0,0 +1,3 @@
++minus
++two.
++tenths.
+diff -Naur bsd-games-2.17/tests/number.test bsd-games-patch/tests/number.test
+--- bsd-games-2.17/tests/number.test	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.test	2020-04-17 15:20:22.774654155 +0700
+@@ -36,6 +36,8 @@
+ testno 1
+ number/number -- -0.1 >test.out 2>&1 || failtest
+ compare test.out tests/number.-0.1
++number/number -- -0.2 >test.out 2>&1 || failtest
++compare test.out tests/number.-0.2
+ rm -f test.out
+
+ testno 2
diff --git a/gnu/packages/patches/bsd-games-prevent-name-collisions.patch b/gnu/packages/patches/bsd-games-prevent-name-collisions.patch
new file mode 100644
index 0000000000..855ce59131
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-prevent-name-collisions.patch
@@ -0,0 +1,13 @@
+There is already a "fish" shell.
+diff -ur bsd-games-2.17.orig/fish/Makefrag bsd-games-2.17/fish/Makefrag
+--- bsd-games-2.17.orig/fish/Makefrag	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/fish/Makefrag	2020-08-06 19:18:43.204492847 +0700
+@@ -31,7 +31,7 @@
+ fish_all:	fish/fish fish/fish.instr fish/fish.6
+
+ fish_install:	fish_all
+-	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/fish
++	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/fish-game
+	$(HIDE_GAME) fish
+	$(INSTALL_DATA) fish/fish.instr $(INSTALL_PREFIX)$(FISH_INSTRFILE)
+	$(INSTALL_MANUAL) fish/fish.6
diff --git a/gnu/packages/patches/bsd-games-stdio.h.patch b/gnu/packages/patches/bsd-games-stdio.h.patch
new file mode 100644
index 0000000000..1c3a402042
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-stdio.h.patch
@@ -0,0 +1,14 @@
+diff -ru a/include/stdio.h b/include/stdio.h
+--- a/include/stdio.h	2000-08-04 10:24:39.000000000 +1000
++++ b/include/stdio.h	2005-06-18 14:26:35.000000000 +1000
+@@ -34,6 +34,10 @@
+ #include <bsd-games.h>
+ #include_next <stdio.h>
+
++__BEGIN_DECLS
++
+ #ifndef HAVE_fgetln
+ extern char *fgetln(FILE *stream, size_t *len);
+ #endif
++
++__END_DECLS
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-08-06 16:04 ` Vitaliy Shatrov via Guix-patches via
@ 2020-08-13  8:30   ` Nicolas Goaziou
  2020-08-25 11:55     ` Vitaliy Shatrov via Guix-patches via
  0 siblings, 1 reply; 15+ messages in thread
From: Nicolas Goaziou @ 2020-08-13  8:30 UTC (permalink / raw)
  To: Vitaliy Shatrov; +Cc: 40818@debbugs.gnu.org

Hello,

Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com> writes:

> That is a "final" version. All games are works, the wrapper script works, and no unnecessary changes
> were introduced to the games' code in the end. They're configured to search in the current dir, and the
> wrapper (a bash script) cares about the files that should be copied from the Store, and cd's to the
> BSD_GAMES_DIR (and ask the User to set this variable if it's unset). It's also can use HACKDIR if the game
> started is "hack".

Thank you.

> Regards, Vitaliy. Sent with [ProtonMail](https://protonmail.com) Secure Email.
> From a6af7beba9d9feb5fdebf9f429c53cdad91b48bd Mon Sep 17 00:00:00 2001
> From: Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
> Date: Thu, 6 Aug 2020 22:15:22 +0700
> Subject: [PATCH] gnu: Add bsd-games.
>
> * gnu/packages/games.scm a new variable.

This should be gnu/packages/games.scm (bsd-games): New variable.

> New patches, taken from Arch and Debian:
> * gnu/packages/patches/bsd-games-2.17-64bit.patch
> * gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
> * gnu/packages/patches/bsd-games-gamescreen.h.patch
> * gnu/packages/patches/bsd-games-getline.patch
> * gnu/packages/patches/bsd-games-null-check.patch
> * gnu/packages/patches/bsd-games-number.c-and-test.patch
> * gnu/packages/patches/bsd-games-prevent-name-collisions.patch
> * gnu/packages/patches/bsd-games-stdio.h.patch
>
> New patches with our customizations (configure-config built after Arch's):
> * gnu/packages/patches/bsd-games-add-configure-config.patch
> * gnu/packages/patches/bsd-games-add-wrapper.patch
> * gnu/packages/patches/bsd-games-dont-install-empty-files.patch

You need to reference all those patches in "gnu/local.mk" file. Could
you send an updated patch?

Note that I did that, but some games still fail to run, e.g., phantasia
and hack.

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 15+ messages in thread

* [bug#40818] [bug #40818] "Add bsd-games"
  2020-08-13  8:30   ` Nicolas Goaziou
@ 2020-08-25 11:55     ` Vitaliy Shatrov via Guix-patches via
  0 siblings, 0 replies; 15+ messages in thread
From: Vitaliy Shatrov via Guix-patches via @ 2020-08-25 11:55 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: 40818@debbugs.gnu.org

[-- Attachment #1: Type: text/plain, Size: 945 bytes --]

Hello Nicolas.

> This should be gnu/packages/games.scm (bsd-games): New variable.

> reference all those patches in "gnu/local.mk" file.

Done

> some games still fail to run, e.g., phantasia and hack.

Pity.  What errors are output?

How i do start the games:

cd git/guix
guix environment --pure guix
./bootstrap && ./configure --localstatedir=/var && make -j2
./pre-inst-env guix environment --ad-hoc bsd-games
phantasia
--->
   Guix: Please set up the BSD_GAMES_DIR variable.
   Examples:
      export BSD_GAMES_DIR=/var/multiplayer
      export BSD_GAMES_DIR=~/.local/share/bsd-games
   You can place this in ~/.bashrc or a similar file for Your shell.
   For multiplayer this directory should be writable for all players.

BSD_GAMES_DIR=~/bsd-dir phantasia
--->
   "You've been caught raping and pillaging"
   "You are attacked by Kobold"
   ...
---

Regards, Vitaliy.
Sent with ProtonMail Secure Email.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-bsd-games.patch --]
[-- Type: text/x-patch; name=0001-gnu-Add-bsd-games.patch, Size: 44365 bytes --]

From 6be6a8d31e9a7e54d45996281aa0de5bc4ef7e76 Mon Sep 17 00:00:00 2001
From: Vitaliy Shatrov <D0dyBo0D0dyBo0@protonmail.com>
Date: Tue, 25 Aug 2020 18:26:38 +0700
Subject: [PATCH] gnu: Add bsd-games.

* gnu/packages/games.scm (bsd-games): New variable.

New patches, taken from Arch and Debian:
* gnu/packages/patches/bsd-games-2.17-64bit.patch
* gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
* gnu/packages/patches/bsd-games-gamescreen.h.patch
* gnu/packages/patches/bsd-games-getline.patch
* gnu/packages/patches/bsd-games-null-check.patch
* gnu/packages/patches/bsd-games-number.c-and-test.patch
* gnu/packages/patches/bsd-games-prevent-name-collisions.patch
* gnu/packages/patches/bsd-games-stdio.h.patch

New patches with our customizations (configure-config built after Arch's):
* gnu/packages/patches/bsd-games-add-configure-config.patch
* gnu/packages/patches/bsd-games-add-wrapper.patch
* gnu/packages/patches/bsd-games-dont-install-empty-files.patch
---
 gnu/local.mk                                  |  11 +
 gnu/packages/games.scm                        | 135 ++++++++++
 .../patches/bsd-games-2.17-64bit.patch        |  43 +++
 .../bsd-games-add-configure-config.patch      |  22 ++
 .../patches/bsd-games-add-wrapper.patch       | 251 ++++++++++++++++++
 .../patches/bsd-games-bad-ntohl-cast.patch    |  22 ++
 .../bsd-games-dont-install-empty-files.patch  |  87 ++++++
 .../patches/bsd-games-gamescreen.h.patch      |  14 +
 gnu/packages/patches/bsd-games-getline.patch  | 194 ++++++++++++++
 .../patches/bsd-games-null-check.patch        |  24 ++
 .../patches/bsd-games-number.c-and-test.patch | 183 +++++++++++++
 .../bsd-games-prevent-name-collisions.patch   |  13 +
 gnu/packages/patches/bsd-games-stdio.h.patch  |  14 +
 13 files changed, 1013 insertions(+)
 create mode 100644 gnu/packages/patches/bsd-games-2.17-64bit.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-configure-config.patch
 create mode 100644 gnu/packages/patches/bsd-games-add-wrapper.patch
 create mode 100644 gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
 create mode 100644 gnu/packages/patches/bsd-games-dont-install-empty-files.patch
 create mode 100644 gnu/packages/patches/bsd-games-gamescreen.h.patch
 create mode 100644 gnu/packages/patches/bsd-games-getline.patch
 create mode 100644 gnu/packages/patches/bsd-games-null-check.patch
 create mode 100644 gnu/packages/patches/bsd-games-number.c-and-test.patch
 create mode 100644 gnu/packages/patches/bsd-games-prevent-name-collisions.patch
 create mode 100644 gnu/packages/patches/bsd-games-stdio.h.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index 2f851afe4e..5f0dd11a60 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -812,6 +812,17 @@ dist_patch_DATA =						\
   %D%/packages/patches/bastet-change-source-of-unordered_set.patch	\
   %D%/packages/patches/bazaar-CVE-2017-14176.patch		\
   %D%/packages/patches/bc-fix-cross-compilation.patch		\
+  %D%/packages/patches/bsd-games-2.17-64bit.patch		\
+  %D%/packages/patches/bsd-games-add-configure-config.patch	\
+  %D%/packages/patches/bsd-games-add-wrapper.patch		\
+  %D%/packages/patches/bsd-games-bad-ntohl-cast.patch		\
+  %D%/packages/patches/bsd-games-dont-install-empty-files.patch	\
+  %D%/packages/patches/bsd-games-gamescreen.h.patch		\
+  %D%/packages/patches/bsd-games-getline.patch			\
+  %D%/packages/patches/bsd-games-null-check.patch		\
+  %D%/packages/patches/bsd-games-number.c-and-test.patch	\
+  %D%/packages/patches/bsd-games-prevent-name-collisions.patch	\
+  %D%/packages/patches/bsd-games-stdio.h.patch			\
   %D%/packages/patches/beancount-disable-googleapis-fonts.patch	\
   %D%/packages/patches/beets-werkzeug-compat.patch		\
   %D%/packages/patches/behave-skip-a-couple-of-tests.patch	\
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 0f01267827..a166183403 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -116,6 +116,7 @@
   #:use-module (gnu packages gl)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages gnu-doc)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages gnuzilla)
   #:use-module (gnu packages gperf)
@@ -585,6 +586,140 @@ possible, while battling many vicious aliens.")
                    license:lgpl2.1+
                    license:bsd-2))))
 
+(define-public bsd-games
+  (package
+    (name "bsd-games")
+    (version "2.17.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://ibiblio.org/pub/linux/games/bsd-games-2.17.tar.gz")
+       (sha256
+        (base32
+         "0q7zdyyfvn15y0w4g54kq3gza89h61py727m8slmw73cxx594vq6"))
+       (patches
+        (search-patches
+         ;; thanks Arch, and Debian
+         "bsd-games-2.17-64bit.patch"
+         "bsd-games-bad-ntohl-cast.patch"
+         "bsd-games-gamescreen.h.patch"
+         "bsd-games-getline.patch"
+         "bsd-games-null-check.patch"
+         "bsd-games-number.c-and-test.patch"
+         "bsd-games-stdio.h.patch"
+         "bsd-games-prevent-name-collisions.patch"
+         ;; Guix customizations
+         "bsd-games-add-configure-config.patch"
+         "bsd-games-dont-install-empty-files.patch"
+         "bsd-games-add-wrapper.patch"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("flex" ,flex)
+       ("bison" ,bison)))
+    (inputs
+     `(("curses" ,ncurses)
+       ("pager" ,less)
+       ("miscfiles" ,miscfiles)
+       ("openssl" ,openssl)))           ;used only by 'factor'
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key outputs inputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version))
+                    (man (string-append out "/share/man"))
+                    (word-list (string-append (assoc-ref inputs "miscfiles")
+                                              "/share/web2"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    ;; Not a "./" because of substitute* in 'patch-install
+                    ;; below.  The .// allow us not to mess with the games'
+                    ;; code any further: We just use a wrapper script that
+                    ;; cd's to a BSD_GAMES_DIR.  :]
+                    (save-files ".//"))
+               (substitute* "configure"
+                 (("/usr/share/man") man)
+                 (("/usr/share/doc/bsd-games") doc)
+                 (("/usr/share/[^\n/]*") static-data)
+                 (("/var/games") save-files)
+                 (("/usr/bin/less") (which "less"))
+                 (("(/usr/bin|/usr/games)") bin))
+               (substitute* "config.params" (("WORD_LIST") word-list))
+               (substitute* "wrapper" (("STATIC_DATA") static-data))
+               (invoke "./configure"))
+             #t))
+         (add-before 'install 'patch-install
+           ;; Some games need a writable directory containing pre-maded files.
+           ;; The files get installed to the Store.  Then the wrapper kicks in.
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (static-data (string-append out "/share/games/bsd-games"))
+                    (save-files ".//"))
+               (substitute* "Makeconfig" ((save-files) static-data)))
+             #t))
+         (add-after 'install 'install-documents
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (doc (string-append out "/share/doc/bsd-games-" ,version)))
+               (rename-file "phantasia/COPYRIGHT" "phantasia-COPYRIGHT")
+               (for-each
+                (lambda(file) (install-file file doc))
+                '("AUTHORS" "BUGS" "README" "SECURITY" "THANKS"
+                  "phantasia-COPYRIGHT")))
+             #t)))))
+    (home-page "https://github.com/vattam/BSDGames")
+    (synopsis "Collection of the old text-based games and amusements")
+    (description
+     "The BSD-games.  See the fortune-mod package for fortunes.
+
+Action: atc (keep the airplanes safe), hack (explore the dangerous Dungeon),
+hunt (kill the others for the Pair of Boots, multi-player only), robots (avoid
+the evil robots), sail (game of naval warfare with wooden ships), snake (steal
+the $$ from the cave, anger the snake, and get out alive), tetris (game of
+lining up the falling bricks of different shapes), and worm (eat, grow big,
+and neither bite your tail, nor ram the wall).
+
+Amusements: banner (prints a large banner), bcd & morse & ppt (print a punch
+card, or paper tape, or Morse codes), caesar & rot13 (ciphers and deciphers
+the input), factor (factorizes a number), number (translates numbers into
+text), pig (translates from English to Pig Latin), pom (should print the
+Moon's phase), primes (generates primes), rain & worms (plays an screen-saver
+in terminal), random (prints randomly choosen lines from files, or returns a
+random exit-code), and wtf (explains what do some acronyms mean).
+
+Board: backgammon (lead the men out of board faster than the friend do),
+boggle (find the words in the square of letters), dab (game of dots and
+boxes), gomoku (game of five in a row), hangman (guess a word before man is
+hanged), and monop (game of monopoly, hot-seat only).  Also the card-games:
+canfield, cribbage, fish (juniors game), and mille.
+
+Quests: adventure (search for treasures with the help of wizard),
+battlestar (explore the world around, starting from dying spaceship),
+phantasia (role-play as an rogue), trek (hunt the Klingons, and save the
+Federation), and wump (hunt the big smelly Wumpus in a dark cave).
+
+Quizes: arithmetic, and quiz.")
+    ;; "Auxiliary and data files, distributed with the games in NetBSD, but
+    ;; not bearing copyright notices, probably fall under the terms of the UCB
+    ;; or NetBSD copyrights and licences.  The file "fortune/Notes" contains a
+    ;; warning in regard to the fortune databases."
+    (license (list
+              ;; Most games.  Files: countmail/countmail.6, dab/dab.6,
+              ;; lib/strlcpy.c, wargames/wargames.6
+              license:bsd-3
+              ;; dab and hunt.  Files: adventure/extern.h,
+              ;; backgammon/backgammon/backlocal.h, caesar/rot13.in,
+              ;; countmail/countmail, dm/utmpentry.c, dm/utmpentry.h,
+              ;; hack/extern.h, robots/auto.c, sail/display.h,
+              ;; sail/restart.h, wargames/wargames
+              license:bsd-4
+              ;; wtf (the game)
+              license:public-domain
+              ;; phantasia (all but phantasia/pathnames.h.in, which is bsd-3)
+              (license:fsf-free "file:///phantasia/COPYRIGHT")))))
+
+
 (define-public bzflag
   (package
     (name "bzflag")
diff --git a/gnu/packages/patches/bsd-games-2.17-64bit.patch b/gnu/packages/patches/bsd-games-2.17-64bit.patch
new file mode 100644
index 0000000000..e286c1c531
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-2.17-64bit.patch
@@ -0,0 +1,43 @@
+David Leverton writes about adventure/crc.c:
+
+The 'adventure' game from the games-misc/bsd-games-2.13 package crashes
+when saving the game on AMD64 (and probably other 64-bit systems, but I
+haven't checked).  Find attached to fix this.
+
+http://bugs.gentoo.org/show_bug.cgi?id=77032
+
+
+About utmpentry.c:
+
+the utmpx structure defines the ut_tv member a little differently on
+64bit hosts so that a 32bit and 64bit structure can be shared.  So the
+ut_tv is a custom 32bit structure rather than the native 64bit timeval
+structure.  Work around is to assign the submembers instead.
+
+http://bugs.gentoo.org/show_bug.cgi?id=102667
+
+--- bsd-games/adventure/crc.c
++++ bsd-games/adventure/crc.c
+@@ -134,7 +134,8 @@
+				if (step >= sizeof(crctab) / sizeof(crctab[0]))
+					step = 0;
+			}
+-			crcval = (crcval << 8) ^ crctab[i];
++			/* Mask to 32 bits. */
++			crcval = ((crcval << 8) ^ crctab[i]) & 0xffffffff;
+		}
+-	return crcval & 0xffffffff;	/* Mask to 32 bits. */
++	return crcval;
+ }
+--- bsd-games/dm/utmpentry.c
++++ bsd-games/dm/utmpentry.c
+@@ -291,7 +291,8 @@
+	e->line[sizeof(e->line) - 1] = '\0';
+	(void)strncpy(e->host, up->ut_host, sizeof(up->ut_host));
+	e->name[sizeof(e->host) - 1] = '\0';
+-	e->tv = up->ut_tv;
++	e->tv.tv_sec = up->ut_tv.tv_sec;
++	e->tv.tv_usec = up->ut_tv.tv_usec;
+	adjust_size(e);
+ }
+ #endif
diff --git a/gnu/packages/patches/bsd-games-add-configure-config.patch b/gnu/packages/patches/bsd-games-add-configure-config.patch
new file mode 100644
index 0000000000..d8636addb6
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-configure-config.patch
@@ -0,0 +1,22 @@
+Remove a few 'setenv's from the definition.
+
+diff -Naur bsd-games-2.17/config.params bsd-games-patch/config.params
+--- bsd-games-2.17/config.params	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/config.params	2020-04-22 20:49:40.809695248 +0700
+@@ -0,0 +1,16 @@
++bsd_games_cfg_do_chown=n
++bsd_games_cfg_non_interactive=y
++
++# Fix some man-pages: cfscores, morse, ppt, rot13, snscore, teachgammon.
++bsd_games_cfg_use_dot_so=syml
++
++# Don't build some games:
++# Countmail require some BSD-package called `from`.
++# DM is a toy to restrict access to bsd-games.
++# Fortune seems to be already packaged (fortune-mod).
++# Wargames isn't convenient as a game launcher.
++bsd_games_cfg_no_build_dirs="countmail dm fortune wargames"
++
++# Those are substitute*'d with GNU miscfiles.
++bsd_games_cfg_hangman_wordsfile=WORD_LIST
++bsd_games_cfg_dictionary_src=WORD_LIST
diff --git a/gnu/packages/patches/bsd-games-add-wrapper.patch b/gnu/packages/patches/bsd-games-add-wrapper.patch
new file mode 100644
index 0000000000..ad3b1a9860
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-add-wrapper.patch
@@ -0,0 +1,251 @@
+As we cannot install outside the Store, and those games do not create the
+needed writable files on their own, we need a wrapper script.
+
+diff -Naur bsd-games-2.17/atc/Makefrag bsd-games-patch/atc/Makefrag
+--- bsd-games-2.17/atc/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/atc/Makefrag	2020-04-23 20:24:04.446176222 +0700
+@@ -47,7 +47,8 @@
+	mv atc/lex.yy.c $@
+
+ atc_install:	atc_all
+-	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/atc
++	$(INSTALL_SCORE_GAME) atc/atc $(INSTALL_PREFIX)$(GAMESDIR)/.atc-real
+	$(HIDE_GAME) atc
+	$(INSTALL_SCORE_FILE) $(ATC_SCOREFILE)
+	$(INSTALL_MANUAL) atc/atc.6
+diff -Naur bsd-games-2.17/battlestar/Makefrag bsd-games-patch/battlestar/Makefrag
+--- bsd-games-2.17/battlestar/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/battlestar/Makefrag	2020-04-23 20:24:04.482175771 +0700
+@@ -32,7 +32,8 @@
+ battlestar_all:	battlestar/battlestar battlestar/battlestar.6
+
+ battlestar_install:	battlestar_all
+-	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/battlestar
++	$(INSTALL_SCORE_GAME) battlestar/battlestar $(INSTALL_PREFIX)$(GAMESDIR)/.battlestar-real
+	$(HIDE_GAME) battlestar
+	$(INSTALL_MANUAL) battlestar/battlestar.6
+	$(INSTALL_SCORE_FILE) $(BATTLESTAR_SCOREFILE)
+diff -Naur bsd-games-2.17/canfield/canfield/Makefrag bsd-games-patch/canfield/canfield/Makefrag
+--- bsd-games-2.17/canfield/canfield/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/canfield/canfield/Makefrag	2020-04-23 20:24:04.522175270 +0700
+@@ -31,7 +31,8 @@
+ canfield_canfield_all:	canfield/canfield/canfield canfield/canfield/canfield.6
+
+ canfield_canfield_install: canfield_canfield_all
+-	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/canfield
++	$(INSTALL_SCORE_GAME) canfield/canfield/canfield $(INSTALL_PREFIX)$(GAMESDIR)/.canfield-real
+	$(HIDE_GAME) canfield
+	$(INSTALL_MANUAL) canfield/canfield/canfield.6
+	$(INSTALL_SCORE_FILE) $(CANFIELD_SCOREFILE)
+diff -ur bsd-games-2.17.orig/canfield/cfscores/Makefrag bsd-games-2.17/canfield/cfscores/Makefrag
+--- bsd-games-2.17.orig/canfield/cfscores/Makefrag	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/canfield/cfscores/Makefrag	2020-08-06 12:20:10.592076477 +0700
+@@ -32,6 +32,7 @@
+ canfield_cfscores_all:	canfield/cfscores/cfscores
+
+ canfield_cfscores_install:	canfield_cfscores_all
+-	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/cfscores
++	$(INSTALL_BINARY) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/cfscores
++	$(INSTALL_BINARY) canfield/cfscores/cfscores $(INSTALL_PREFIX)$(GAMESDIR)/.cfscores-real
+	$(HIDE_GAME) cfscores
+	$(INSTALL_MANUAL) canfield.6 cfscores.6
+diff -Naur bsd-games-2.17/cribbage/Makefrag bsd-games-patch/cribbage/Makefrag
+--- bsd-games-2.17/cribbage/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/cribbage/Makefrag	2020-04-23 20:24:04.534175120 +0700
+@@ -31,7 +31,8 @@
+ cribbage_all:	cribbage/cribbage cribbage/cribbage.n cribbage/cribbage.6
+
+ cribbage_install:	cribbage_all
+-	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/cribbage
++	$(INSTALL_SCORE_GAME) cribbage/cribbage $(INSTALL_PREFIX)$(GAMESDIR)/.cribbage-real
+	$(HIDE_GAME) cribbage
+	$(INSTALL_DATA) cribbage/cribbage.n $(INSTALL_PREFIX)$(CRIBBAGE_INSTRFILE)
+	$(INSTALL_SCORE_FILE) $(CRIBBAGE_SCOREFILE)
+diff -Naur bsd-games-2.17/hack/Makefrag bsd-games-patch/hack/Makefrag
+--- bsd-games-2.17/hack/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/hack/Makefrag	2020-04-23 20:24:04.590174419 +0700
+@@ -53,7 +53,8 @@
+ hack/hack.zap.d hack/rnd.d:	hack/hack.onames.h
+
+ hack_install:	hack_all
+-	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/hack
++	$(INSTALL_SCORE_GAME) hack/hack $(INSTALL_PREFIX)$(GAMESDIR)/.hack-real
+	$(HIDE_GAME) hack
+	$(INSTALL_HACK_DIR) $(INSTALL_PREFIX)$(HACK_DIR)
+	set -e; for f in data help hh rumors; do $(INSTALL_DATA) hack/$$f $(INSTALL_PREFIX)$(HACK_DIR)/$$f; done
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-23 20:24:04.650173667 +0700
+@@ -38,7 +38,8 @@
+	touch phantasia/scorefiles.stamp
+
+ phantasia_install:	phantasia_all
+-	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/phantasia
++	$(INSTALL_SCORE_GAME) phantasia/phantasia $(INSTALL_PREFIX)$(GAMESDIR)/.phantasia-real
+	$(HIDE_GAME) phantasia
+	(set -e; for f in $(phantasia_VFILES1); do \
+	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+diff -Naur bsd-games-2.17/robots/Makefrag bsd-games-patch/robots/Makefrag
+--- bsd-games-2.17/robots/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/robots/Makefrag	2020-04-23 20:24:04.702173016 +0700
+@@ -32,7 +32,8 @@
+ robots_all:	robots/robots robots/robots.6
+
+ robots_install:	robots_all
+-	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/robots
++	$(INSTALL_SCORE_GAME) robots/robots $(INSTALL_PREFIX)$(GAMESDIR)/.robots-real
+	$(HIDE_GAME) robots
+	$(INSTALL_SCORE_FILE) $(ROBOTS_SCOREFILE)
+	$(INSTALL_MANUAL) robots/robots.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-23 20:24:04.710172917 +0700
+@@ -31,7 +31,8 @@
+ sail_all:	sail/sail sail/sail.6
+
+ sail_install:	sail_all
+-	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/sail
++	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/.sail-real
+	$(HIDE_GAME) sail
+	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+diff -Naur bsd-games-2.17/snake/snake/Makefrag bsd-games-patch/snake/snake/Makefrag
+--- bsd-games-2.17/snake/snake/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/snake/snake/Makefrag	2020-04-23 20:24:04.722172766 +0700
+@@ -31,7 +31,8 @@
+ snake_snake_all:	snake/snake/snake snake/snake/snake.6
+
+ snake_snake_install:	snake_snake_all
+-	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/snake
++	$(INSTALL_SCORE_GAME) snake/snake/snake $(INSTALL_PREFIX)$(GAMESDIR)/.snake-real
+	$(HIDE_GAME) snake
+	$(INSTALL_SCORE_FILE) $(SNAKE_SCOREFILE)
+	$(INSTALL_SCORE_FILE) $(SNAKE_RAWSCOREFILE)
+--- bsd-games-2.17.orig/snake/snscore/Makefrag	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/snake/snscore/Makefrag	2020-08-06 12:33:09.636089394 +0700
+@@ -32,6 +32,7 @@
+ snake_snscore_all:	snake/snscore/snscore
+
+ snake_snscore_install:	snake_snscore_all
+-	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/snscore
++	$(INSTALL_BINARY) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/snscore
++	$(INSTALL_BINARY) snake/snscore/snscore $(INSTALL_PREFIX)$(GAMESDIR)/.snscore-real
+	$(HIDE_GAME) snscore
+	$(INSTALL_MANUAL) snake.6 snscore.6
+diff -Naur bsd-games-2.17/tetris/Makefrag bsd-games-patch/tetris/Makefrag
+--- bsd-games-2.17/tetris/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tetris/Makefrag	2020-04-23 20:24:04.734172616 +0700
+@@ -32,7 +32,8 @@
+ tetris_all:	tetris/tetris tetris/tetris.6
+
+ tetris_install:	tetris_all
+-	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) wrapper $(INSTALL_PREFIX)$(GAMESDIR)/tetris-bsd
++	$(INSTALL_SCORE_GAME) tetris/tetris $(INSTALL_PREFIX)$(GAMESDIR)/.tetris-bsd-real
+	$(HIDE_GAME) tetris-bsd
+	$(INSTALL_SCORE_FILE) $(TETRIS_SCOREFILE)
+	ln -f tetris/tetris.6 tetris/tetris-bsd.6
+diff -Naur bsd-games-2.17/wrapper bsd-games-patch/wrapper
+--- bsd-games-2.17/wrapper	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/wrapper	2020-04-23 20:24:37.153766719 +0700
+@@ -0,0 +1,91 @@
++#!/bin/sh
++# This file works around limitations of our read-only Store.
++
++set -e
++
++check_empty_files () {
++    # those start empty
++    for f in ${@}
++    do
++        if [[ ! -f ${f} ]]
++        then
++            touch      ${f}
++            echo "$(pwd)/${f} RESTORED"
++        fi
++    done
++}
++check_data_files () {
++    # those start with some initial data
++    for f in ${@}
++    do
++        if [[ ! -f ${f} ]]
++        then
++            cp STATIC_DATA/${game}/${f} ${f}
++            chmod u+w ${f}
++            echo "$(pwd)/${f} RESTORED"
++        fi
++    done
++}
++visit_dir () {
++    mkdir -p ${1}
++    cd ${1}
++}
++exit_with_variable_error () {
++    variables="${1}${2:+ or ${2}}"
++    echo "Guix: Please set up the ${variables} variable."
++    echo "Examples:"
++    echo "   export ${1}=/var/multiplayer"
++    echo "   export ${2:-${1}}=~/.local/share/bsd-games"
++    echo "You can place this in ~/.bashrc or a similar file for Your shell."
++    echo "For multiplayer this directory should be writable for all players."
++    exit 1
++}
++
++game=$(basename $0)
++if [[ ${game} == "hack" ]]
++then
++    if   [[ -n ${HACKDIR} ]];       then visit_dir "${HACKDIR}"
++    elif [[ -n ${BSD_GAMES_DIR} ]]; then visit_dir "${BSD_GAMES_DIR}/hack"
++    else exit_with_variable_error "HACKDIR" "BSD_GAMES_DIR"
++    fi
++else
++    if [[ -n ${BSD_GAMES_DIR} ]]; then visit_dir "${BSD_GAMES_DIR}"
++    else exit_with_variable_error "BSD_GAMES_DIR"
++    fi
++fi
++
++case ${game} in
++    ### Games with score-files
++    atc)
++        check_empty_files "atc_score";;
++    battlestar)
++        check_empty_files "battlestar.log";;
++    canfield)
++        check_empty_files "cfscores";;
++    cribbage)
++        check_empty_files "criblog";;
++    robots)
++        check_empty_files "robots_roll";;
++    snake)
++        check_empty_files "snakerawscores" "snake.log";;
++    tetris)
++        check_empty_files "tetris-bsd.scores";;
++    ### Games with saved state
++    hack)
++        check_empty_files "record" "perm"
++        check_data_files "data" "help" "hh" "rumors"
++        visit_dir "save"
++        cd ../../;;
++    phantasia)
++        visit_dir "phantasia"
++        check_empty_files "characs" "gold" "lastdead"\
++                          "mess" "motd" "scoreboard" "void"
++        check_data_files "monsters"
++        cd ../;;
++    sail)
++        visit_dir "sail"
++        check_empty_files "log" "syncfile"
++        cd ../;;
++esac
++
++exec .${game}-real ${@}
diff --git a/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
new file mode 100644
index 0000000000..caadfa5054
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-bad-ntohl-cast.patch
@@ -0,0 +1,22 @@
+diff --git a/hunt/hunt/playit.c b/hunt/hunt/playit.c
+index 9acf86e..881a4e7 100644
+--- a/hunt/hunt/playit.c
++++ b/hunt/hunt/playit.c
+@@ -114,7 +114,7 @@ playit()
+		bad_con();
+		/* NOTREACHED */
+	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+		bad_ver();
+		/* NOTREACHED */
+	}
+@@ -649,7 +649,7 @@ do_message()
+		bad_con();
+		/* NOTREACHED */
+	}
+-	if (ntohl(version) != (unsigned long)HUNT_VERSION) {
++	if (ntohl(version) != (uint32_t)HUNT_VERSION) {
+		bad_ver();
+		/* NOTREACHED */
+	}
diff --git a/gnu/packages/patches/bsd-games-dont-install-empty-files.patch b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
new file mode 100644
index 0000000000..4ee0578177
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-dont-install-empty-files.patch
@@ -0,0 +1,87 @@
+Those games rely on user to provide the files to write scores in.
+Those score-files are initially empty.  Anyway, the Store is read-only.
+So we do not install those empty files.
+
+diff -Naur bsd-games-2.17/install-score.in bsd-games-patch/install-score.in
+--- bsd-games-2.17/install-score.in	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/install-score.in	2020-04-22 21:41:47.810544804 +0700
+@@ -1,45 +0,0 @@
+-# install-score.in - install a score file
+-#
+-# Copyright (c) 1997, 1998, 1999 Joseph Samuel Myers.
+-# All rights reserved.
+-#
+-# Redistribution and use in source and binary forms, with or without
+-# modification, are permitted provided that the following conditions
+-# are met:
+-# 1. Redistributions of source code must retain the above copyright
+-#    notice, this list of conditions and the following disclaimer.
+-# 2. Redistributions in binary form must reproduce the above copyright
+-#    notice, this list of conditions and the following disclaimer in the
+-#    documentation and/or other materials provided with the distribution.
+-# 3. The name of the author may not be used to endorse or promote products
+-#    derived from this software without specific prior written permission.
+-#
+-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+-# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+-# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+-# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+-# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+-# SUCH DAMAGE.
+-
+-set -e
+-
+-if [ "$1" = "-p" ]; then
+-    scorefile="@install_prefix@$2"
+-    perms=@vardata_perms_priv@
+-else
+-    scorefile="@install_prefix@$1"
+-    perms=@vardata_perms@
+-fi
+-
+-mkdir -p "$(dirname "$scorefile")"
+-
+-test -e "$scorefile" || touch "$scorefile"
+-if [ @do_chown@ = y ]; then
+-    chown @vardata_owner@:@vardata_group@ "$scorefile"
+-fi
+-chmod "$perms" "$scorefile"
+diff -Naur bsd-games-2.17/phantasia/Makefrag bsd-games-patch/phantasia/Makefrag
+--- bsd-games-2.17/phantasia/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/phantasia/Makefrag	2020-04-22 21:26:00.162409464 +0700
+@@ -27,9 +27,8 @@
+ # SUCH DAMAGE.
+
+ phantasia_DIRS := $(GAMESDIR) $(MAN6DIR) $(PHANTASIA_DIR)
+-phantasia_VFILES1 := gold lastdead mess monsters motd void
+-phantasia_VFILES2 := scoreboard characs
+-phantasia_CLEANFILES := $(phantasia_VFILES1) $(phantasia_VFILES2) scorefiles.stamp
++phantasia_VFILES1 := monsters
++phantasia_CLEANFILES := $(phantasia_VFILES1) scorefiles.stamp
+
+ phantasia_all:	phantasia/phantasia phantasia/phantasia.6 phantasia/scorefiles.stamp
+
+@@ -43,9 +42,4 @@
+	(set -e; for f in $(phantasia_VFILES1); do \
+	    cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; \
+	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/$$f; done)
+-	(set -e; for f in $(phantasia_VFILES2); do \
+-	    if [ ! -e $(PHANTASIA_DIR)/$$f ]; then \
+-		cp phantasia/$$f $(INSTALL_PREFIX)$(PHANTASIA_DIR)/$$f; fi; done; \
+-	    $(INSTALL_SCORE_FILE) $(PHANTASIA_DIR)/scoreboard; \
+-	    $(INSTALL_SCORE_FILE) -p $(PHANTASIA_DIR)/characs)
+	$(INSTALL_MANUAL) phantasia/phantasia.6
+diff -Naur bsd-games-2.17/sail/Makefrag bsd-games-patch/sail/Makefrag
+--- bsd-games-2.17/sail/Makefrag	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/sail/Makefrag	2020-04-22 21:26:48.701801676 +0700
+@@ -34,5 +34,4 @@
+	$(INSTALL_SCORE_GAME) sail/sail $(INSTALL_PREFIX)$(GAMESDIR)/sail
+	$(HIDE_GAME) sail
+	$(INSTALL_SCORE_FILE) $(SAIL_SCOREFILE)
+-	$(INSTALL_SAIL_DIR) $(INSTALL_PREFIX)$(SAIL_DIR)
+	$(INSTALL_MANUAL) sail/sail.6
diff --git a/gnu/packages/patches/bsd-games-gamescreen.h.patch b/gnu/packages/patches/bsd-games-gamescreen.h.patch
new file mode 100644
index 0000000000..d3c6b4ae50
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-gamescreen.h.patch
@@ -0,0 +1,14 @@
+--- a/dab/gamescreen.h	2004-01-02 23:34:51.000000000 +0530
++++ b/dab/gamescreen.h	2008-07-31 23:45:19.000000000 +0530
+@@ -70,9 +70,9 @@
+     virtual void redraw(void) = 0;			// Refresh
+     virtual int getinput(void) = 0;			// Get user input
+     virtual void bell(void) = 0;			// Beep
+-    virtual void score(size_t p, const PLAYER& p) = 0;	// Post current score
+-    virtual void games(size_t p, const PLAYER& p) = 0;	// Post games won
+-    virtual void total(size_t p, const PLAYER& p) = 0;	// Post total score
++    virtual void score(size_t, const PLAYER&) = 0;	// Post current score
++    virtual void games(size_t, const PLAYER&) = 0;	// Post games won
++    virtual void total(size_t, const PLAYER&) = 0;	// Post total score
+     virtual void ties(const PLAYER& p) = 0;		// Post tie games
+ };
diff --git a/gnu/packages/patches/bsd-games-getline.patch b/gnu/packages/patches/bsd-games-getline.patch
new file mode 100644
index 0000000000..d7c0b4034d
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-getline.patch
@@ -0,0 +1,194 @@
+diff -Naur bsd-games-2.17/boggle/boggle/bog.c bsd-games-2.17.1/boggle/boggle/bog.c
+--- bsd-games-2.17/boggle/boggle/bog.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/bog.c	2010-05-22 10:51:23.000000000 -0500
+@@ -336,7 +336,7 @@
+	}
+
+	while (1) {
+-		if (getline(buf) == NULL) {
++		if (boggle_getline(buf) == NULL) {
+			if (feof(stdin))
+				clearerr(stdin);
+			break;
+diff -Naur bsd-games-2.17/boggle/boggle/extern.h bsd-games-2.17.1/boggle/boggle/extern.h
+--- bsd-games-2.17/boggle/boggle/extern.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/extern.h	2010-05-22 10:51:23.000000000 -0500
+@@ -43,7 +43,7 @@
+ long	 dictseek(FILE *, long, int);
+ void	 findword(void);
+ void	 flushin(FILE *);
+-char	*getline(char *);
++char	*boggle_getline(char *);
+ void	 getword(char *);
+ int	 help(void);
+ int	 inputch(void);
+diff -Naur bsd-games-2.17/boggle/boggle/mach.c bsd-games-2.17.1/boggle/boggle/mach.c
+--- bsd-games-2.17/boggle/boggle/mach.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/boggle/boggle/mach.c	2010-05-22 10:51:23.000000000 -0500
+@@ -168,7 +168,7 @@
+  * - doesn't accept words longer than MAXWORDLEN or containing caps
+  */
+ char *
+-getline(q)
++boggle_getline(q)
+	char *q;
+ {
+	int ch, done;
+diff -Naur bsd-games-2.17/cribbage/cribbage.h bsd-games-2.17.1/cribbage/cribbage.h
+--- bsd-games-2.17/cribbage/cribbage.h	2004-02-08 16:29:14.000000000 -0600
++++ bsd-games-2.17.1/cribbage/cribbage.h	2010-05-22 10:51:23.000000000 -0500
+@@ -77,7 +77,7 @@
+ int	 fifteens(const CARD [], int);
+ void	 game(void);
+ void	 gamescore(void);
+-char	*getline(void);
++char	*cribbage_getline(void);
+ int	 getuchar(void);
+ int	 incard(CARD *);
+ int	 infrom(const CARD [], int, const char *);
+diff -Naur bsd-games-2.17/cribbage/crib.c bsd-games-2.17.1/cribbage/crib.c
+--- bsd-games-2.17/cribbage/crib.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/cribbage/crib.c	2010-05-22 10:51:23.000000000 -0500
+@@ -221,7 +221,7 @@
+			if (!rflag) {			/* player cuts deck */
+				msg(quiet ? "Cut for crib? " :
+			    "Cut to see whose crib it is -- low card wins? ");
+-				getline();
++				cribbage_getline();
+			}
+			i = (rand() >> 4) % CARDS;	/* random cut */
+			do {	/* comp cuts deck */
+@@ -397,7 +397,7 @@
+		if (!rflag) {	/* random cut */
+			msg(quiet ? "Cut the deck? " :
+		    "How many cards down do you wish to cut the deck? ");
+-			getline();
++			cribbage_getline();
+		}
+		i = (rand() >> 4) % (CARDS - pos);
+		turnover = deck[i + pos];
+diff -Naur bsd-games-2.17/cribbage/io.c bsd-games-2.17.1/cribbage/io.c
+--- bsd-games-2.17/cribbage/io.c	2004-12-07 07:34:21.000000000 -0600
++++ bsd-games-2.17.1/cribbage/io.c	2010-05-22 10:51:23.000000000 -0500
+@@ -245,7 +245,7 @@
+
+	retval = FALSE;
+	rnk = sut = EMPTY;
+-	if (!(line = getline()))
++	if (!(line = cribbage_getline()))
+		goto gotit;
+	p = p1 = line;
+	while (*p1 != ' ' && *p1 != '\0')
+@@ -346,7 +346,7 @@
+
+	for (sum = 0;;) {
+		msg(prompt);
+-		if (!(p = getline()) || *p == '\0') {
++		if (!(p = cribbage_getline()) || *p == '\0') {
+			msg(quiet ? "Not a number" :
+			    "That doesn't look like a number");
+			continue;
+@@ -528,12 +528,12 @@
+ }
+
+ /*
+- * getline:
++ * cribbage_getline:
+  *      Reads the next line up to '\n' or EOF.  Multiple spaces are
+  *	compressed to one space; a space is inserted before a ','
+  */
+ char *
+-getline()
++cribbage_getline()
+ {
+	char *sp;
+	int c, oy, ox;
+diff -Naur bsd-games-2.17/gomoku/bdisp.c bsd-games-2.17.1/gomoku/bdisp.c
+--- bsd-games-2.17/gomoku/bdisp.c	2003-12-16 20:47:37.000000000 -0600
++++ bsd-games-2.17.1/gomoku/bdisp.c	2010-05-22 10:51:23.000000000 -0500
+@@ -241,7 +241,7 @@
+ }
+
+ int
+-getline(buf, size)
++gomoku_getline(buf, size)
+	char *buf;
+	int size;
+ {
+diff -Naur bsd-games-2.17/gomoku/gomoku.h bsd-games-2.17.1/gomoku/gomoku.h
+--- bsd-games-2.17/gomoku/gomoku.h	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/gomoku.h	2010-05-22 10:51:23.000000000 -0500
+@@ -263,7 +263,7 @@
+
+ void	bdinit(struct spotstr *);
+ void	init_overlap(void);
+-int	getline(char *, int);
++int	gomoku_getline(char *, int);
+ void	ask(const char *);
+ void	dislog(const char *);
+ void	bdump(FILE *);
+diff -Naur bsd-games-2.17/gomoku/main.c bsd-games-2.17.1/gomoku/main.c
+--- bsd-games-2.17/gomoku/main.c	2004-01-27 14:52:07.000000000 -0600
++++ bsd-games-2.17.1/gomoku/main.c	2010-05-22 10:51:23.000000000 -0500
+@@ -155,7 +155,7 @@
+		if (inputfp == NULL && test == 0) {
+			for (;;) {
+				ask("black or white? ");
+-				getline(buf, sizeof(buf));
++				gomoku_getline(buf, sizeof(buf));
+				if (buf[0] == 'b' || buf[0] == 'B') {
+					color = BLACK;
+					break;
+@@ -172,7 +172,7 @@
+		}
+	} else {
+		setbuf(stdout, 0);
+-		getline(buf, sizeof(buf));
++		gomoku_getline(buf, sizeof(buf));
+		if (strcmp(buf, "black") == 0)
+			color = BLACK;
+		else if (strcmp(buf, "white") == 0)
+@@ -244,7 +244,7 @@
+		getinput:
+			if (interactive)
+				ask("move? ");
+-			if (!getline(buf, sizeof(buf))) {
++			if (!gomoku_getline(buf, sizeof(buf))) {
+				curmove = RESIGN;
+				break;
+			}
+@@ -256,7 +256,7 @@
+					FILE *fp;
+
+					ask("save file name? ");
+-					(void)getline(buf, sizeof(buf));
++					(void)gomoku_getline(buf, sizeof(buf));
+					if ((fp = fopen(buf, "w")) == NULL) {
+						glog("cannot create save file");
+						goto getinput;
+@@ -309,14 +309,14 @@
+		if (i != RESIGN) {
+		replay:
+			ask("replay? ");
+-			if (getline(buf, sizeof(buf)) &&
++			if (gomoku_getline(buf, sizeof(buf)) &&
+			    (buf[0] == 'y' || buf[0] == 'Y'))
+				goto again;
+			if (strcmp(buf, "save") == 0) {
+				FILE *fp;
+
+				ask("save file name? ");
+-				(void)getline(buf, sizeof(buf));
++				(void)gomoku_getline(buf, sizeof(buf));
+				if ((fp = fopen(buf, "w")) == NULL) {
+					glog("cannot create save file");
+					goto replay;
+@@ -367,7 +367,7 @@
+		quit();
+ top:
+	ask("cmd? ");
+-	if (!getline(fmtbuf, sizeof(fmtbuf)))
++	if (!gomoku_getline(fmtbuf, sizeof(fmtbuf)))
+		quit();
+	switch (*fmtbuf) {
+	case '\0':
diff --git a/gnu/packages/patches/bsd-games-null-check.patch b/gnu/packages/patches/bsd-games-null-check.patch
new file mode 100644
index 0000000000..ba977c95bf
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-null-check.patch
@@ -0,0 +1,24 @@
+diff --git a/hunt/hunt/hunt.c b/hunt/hunt/hunt.c
+index 11f4c44..28321bc 100644
+--- a/hunt/hunt/hunt.c
++++ b/hunt/hunt/hunt.c
+@@ -394,7 +394,8 @@ broadcast_vec(s, vector)
+
+	vec_cnt = 0;
+	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+		    (ip->ifa_flags & IFF_BROADCAST))
+			vec_cnt++;
+
+@@ -405,7 +406,8 @@ broadcast_vec(s, vector)
+
+	vec_cnt = 0;
+	for (ip = ifp; ip; ip = ip->ifa_next)
+-		if ((ip->ifa_addr->sa_family == AF_INET) &&
++		if (ip->ifa_addr &&
++		    (ip->ifa_addr->sa_family == AF_INET) &&
+		    (ip->ifa_flags & IFF_BROADCAST))
+			memcpy(&(*vector)[vec_cnt++], ip->ifa_broadaddr,
+			       sizeof(struct sockaddr_in));
diff --git a/gnu/packages/patches/bsd-games-number.c-and-test.patch b/gnu/packages/patches/bsd-games-number.c-and-test.patch
new file mode 100644
index 0000000000..1cf5ba2822
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-number.c-and-test.patch
@@ -0,0 +1,183 @@
+Arch's patch, and a fix for the "number" game's test.
+--- bsdgames-2.17.orig/number/number.c
++++ bsdgames-2.17/number/number.c
+@@ -78,9 +78,9 @@
+
+ void	convert(char *);
+ int	main(int, char *[]);
+-int	number(const char *, int);
+-void	pfract(int);
+-int	unit(int, const char *);
++int	number(const char *, int, int *);
++void	pfract(int, int);
++int	unit(int, const char *, int *);
+ void	usage(void) __attribute__((__noreturn__));
+
+ int lflag;
+@@ -131,7 +131,7 @@
+ convert(line)
+	char *line;
+ {
+-	int flen, len, rval;
++	int flen, len, rval, singular;
+	char *p, *fraction;
+
+	flen = 0;
+@@ -174,7 +174,7 @@
+		--len;
+	}
+
+-	rval = len > 0 ? unit(len, line) : 0;
++	rval = len > 0 ? unit(len, line, &singular) : 0;
+	if (fraction != NULL && flen != 0)
+		for (p = fraction; *p != '\0'; ++p)
+			if (*p != '0') {
+@@ -182,10 +182,10 @@
+					(void)printf("%sand%s",
+					    lflag ? " " : "",
+					    lflag ? " " : "\n");
+-				if (unit(flen, fraction)) {
++				if (unit(flen, fraction, &singular)) {
+					if (lflag)
+						(void)printf(" ");
+-					pfract(flen);
++					pfract(flen, singular);
+					rval = 1;
+				}
+				break;
+@@ -197,9 +197,10 @@
+ }
+
+ int
+-unit(len, p)
++unit(len, p, singular)
+	int len;
+	const char *p;
++	int *singular;
+ {
+	int off, rval;
+
+@@ -208,7 +209,7 @@
+		if (len % 3) {
+			off = len % 3;
+			len -= off;
+-			if (number(p, off)) {
++			if (number(p, off, singular)) {
+				rval = 1;
+				(void)printf(" %s%s",
+				    name3[len / 3], lflag ? " " : ".\n");
+@@ -217,14 +218,16 @@
+		}
+		for (; len > 3; p += 3) {
+			len -= 3;
+-			if (number(p, 3)) {
++			if (number(p, 3, singular)) {
+				rval = 1;
+				(void)printf(" %s%s",
+				    name3[len / 3], lflag ? " " : ".\n");
+			}
+		}
+	}
+-	if (number(p, len)) {
++	if (number(p, len, singular)) {
++		if (rval)
++			*singular = 0;
+		if (!lflag)
+			(void)printf(".\n");
+		rval = 1;
+@@ -233,17 +236,20 @@
+ }
+
+ int
+-number(p, len)
++number(p, len, singular)
+	const char *p;
+	int len;
++	int *singular;
+ {
+	int val, rval;
+
+	rval = 0;
++	*singular = 1;
+	switch (len) {
+	case 3:
+		if (*p != '0') {
+			rval = 1;
++			*singular = 0;
+			(void)printf("%s hundred", name1[*p - '0']);
+		}
+		++p;
+@@ -262,33 +268,42 @@
+			}
+			rval = 1;
+		}
++		if (val != 1)
++			*singular = 0;
+		break;
+	case 1:
+		if (*p != '0') {
+			rval = 1;
+			(void)printf("%s", name1[*p - '0']);
+		}
++		if (*p != '1')
++			*singular = 0;
+	}
+	return (rval);
+ }
+
+ void
+-pfract(len)
++pfract(len, singular)
+	int len;
++	int singular;
+ {
+	static const char *const pref[] = { "", "ten-", "hundred-" };
+
+	switch(len) {
+	case 1:
+-		(void)printf("tenths.\n");
++		(void)printf("tenth");
+		break;
+	case 2:
+-		(void)printf("hundredths.\n");
++		(void)printf("hundredth");
+		break;
+	default:
+-		(void)printf("%s%sths.\n", pref[len % 3], name3[len / 3]);
++		(void)printf("%s%sth", pref[len % 3], name3[len / 3]);
+		break;
+	}
++	if (!singular) {
++		printf("s");
++	}
++	printf(".\n");
+ }
+
+ void
+diff -Naur bsd-games-2.17/tests/number.-0.1 bsd-games-patch/tests/number.-0.1
+--- bsd-games-2.17/tests/number.-0.1	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.1	2020-04-17 15:14:27.831098084 +0700
+@@ -1,3 +1,3 @@
+ minus
+ one.
+-tenths.
++tenth.
+diff -Naur bsd-games-2.17/tests/number.-0.2 bsd-games-patch/tests/number.-0.2
+--- bsd-games-2.17/tests/number.-0.2	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.-0.2	2020-04-17 15:20:48.162336279 +0700
+@@ -0,0 +1,3 @@
++minus
++two.
++tenths.
+diff -Naur bsd-games-2.17/tests/number.test bsd-games-patch/tests/number.test
+--- bsd-games-2.17/tests/number.test	1970-01-01 07:00:00.000000000 +0700
++++ bsd-games-patch/tests/number.test	2020-04-17 15:20:22.774654155 +0700
+@@ -36,6 +36,8 @@
+ testno 1
+ number/number -- -0.1 >test.out 2>&1 || failtest
+ compare test.out tests/number.-0.1
++number/number -- -0.2 >test.out 2>&1 || failtest
++compare test.out tests/number.-0.2
+ rm -f test.out
+
+ testno 2
diff --git a/gnu/packages/patches/bsd-games-prevent-name-collisions.patch b/gnu/packages/patches/bsd-games-prevent-name-collisions.patch
new file mode 100644
index 0000000000..855ce59131
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-prevent-name-collisions.patch
@@ -0,0 +1,13 @@
+There is already a "fish" shell.
+diff -ur bsd-games-2.17.orig/fish/Makefrag bsd-games-2.17/fish/Makefrag
+--- bsd-games-2.17.orig/fish/Makefrag	1970-01-01 07:00:01.000000000 +0700
++++ bsd-games-2.17/fish/Makefrag	2020-08-06 19:18:43.204492847 +0700
+@@ -31,7 +31,7 @@
+ fish_all:	fish/fish fish/fish.instr fish/fish.6
+
+ fish_install:	fish_all
+-	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/fish
++	$(INSTALL_BINARY) fish/fish $(INSTALL_PREFIX)$(GAMESDIR)/fish-game
+	$(HIDE_GAME) fish
+	$(INSTALL_DATA) fish/fish.instr $(INSTALL_PREFIX)$(FISH_INSTRFILE)
+	$(INSTALL_MANUAL) fish/fish.6
diff --git a/gnu/packages/patches/bsd-games-stdio.h.patch b/gnu/packages/patches/bsd-games-stdio.h.patch
new file mode 100644
index 0000000000..1c3a402042
--- /dev/null
+++ b/gnu/packages/patches/bsd-games-stdio.h.patch
@@ -0,0 +1,14 @@
+diff -ru a/include/stdio.h b/include/stdio.h
+--- a/include/stdio.h	2000-08-04 10:24:39.000000000 +1000
++++ b/include/stdio.h	2005-06-18 14:26:35.000000000 +1000
+@@ -34,6 +34,10 @@
+ #include <bsd-games.h>
+ #include_next <stdio.h>
+
++__BEGIN_DECLS
++
+ #ifndef HAVE_fgetln
+ extern char *fgetln(FILE *stream, size_t *len);
+ #endif
++
++__END_DECLS
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* bug#40818: [PATCH] gnu: Add bsd-games.
  2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
                   ` (7 preceding siblings ...)
  2020-08-06 16:04 ` Vitaliy Shatrov via Guix-patches via
@ 2020-11-04 14:18 ` Nicolas Goaziou
  8 siblings, 0 replies; 15+ messages in thread
From: Nicolas Goaziou @ 2020-11-04 14:18 UTC (permalink / raw)
  To: Vitaliy Shatrov; +Cc: 40818-done

Hello,

This was long overdue, but I eventually applied this patch. Thank you!

Regards,
-- 
Nicolas Goaziou




^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2020-11-04 14:20 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-24 13:54 [bug#40818] [PATCH] gnu: Add bsd-games Vitaliy Shatrov via Guix-patches via
2020-06-16 13:17 ` Nicolas Goaziou
2020-06-17  7:46 ` [bug#40818] [bug #40818] "Add bsd-games" Vitaliy Shatrov via Guix-patches via
2020-06-17 16:42   ` Vitaliy Shatrov via Guix-patches via
2020-06-17 16:49     ` Vitaliy Shatrov via Guix-patches via
2020-07-07 12:29     ` Nicolas Goaziou
2020-08-01 18:45 ` Vitaliy Shatrov via Guix-patches via
2020-08-04 20:57 ` Vitaliy Shatrov via Guix-patches via
2020-08-04 20:59 ` Vitaliy Shatrov via Guix-patches via
2020-08-05 14:35 ` Vitaliy Shatrov via Guix-patches via
2020-08-06  4:12 ` Vitaliy Shatrov via Guix-patches via
2020-08-06 16:04 ` Vitaliy Shatrov via Guix-patches via
2020-08-13  8:30   ` Nicolas Goaziou
2020-08-25 11:55     ` Vitaliy Shatrov via Guix-patches via
2020-11-04 14:18 ` bug#40818: [PATCH] gnu: Add bsd-games Nicolas Goaziou

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).