pax_global_header 0000666 0000000 0000000 00000000064 14732404111 0014507 g ustar 00root root 0000000 0000000 52 comment=98fa09afd7ab28b6075d771b2c44b0e00479e72f
diceware-1.0.1/ 0000775 0000000 0000000 00000000000 14732404111 0013271 5 ustar 00root root 0000000 0000000 diceware-1.0.1/.github/ 0000775 0000000 0000000 00000000000 14732404111 0014631 5 ustar 00root root 0000000 0000000 diceware-1.0.1/.github/workflows/ 0000775 0000000 0000000 00000000000 14732404111 0016666 5 ustar 00root root 0000000 0000000 diceware-1.0.1/.github/workflows/tests.yml 0000664 0000000 0000000 00000002036 14732404111 0020554 0 ustar 00root root 0000000 0000000 # This workflow will install Python dependencies, run tests and lint with different versions of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# As github support for Python2.7 has gone to meet its maker, we cannot
# run successful coverage tests here.
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 23 * * 1' # run once a week on Monday
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
- ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python (3.9)
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox run -e 'lint,py39'
diceware-1.0.1/.gitignore 0000664 0000000 0000000 00000001252 14732404111 0015261 0 ustar 00root root 0000000 0000000 # Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
.eggs/
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml
# Translations
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/
diceware-1.0.1/.readthedocs.yaml 0000664 0000000 0000000 00000001127 14732404111 0016521 0 ustar 00root root 0000000 0000000 # .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- method: pip
path: .
- requirements: docs/requirements.txt
diceware-1.0.1/CHANGES.rst 0000664 0000000 0000000 00000020533 14732404111 0015076 0 ustar 00root root 0000000 0000000 Changes
=======
1.0.1 (2024-12-24)
------------------
Security Upgrade.
- Update dependency list for generating docs. The old dependencies required
an unsafe version of `jinja2`.
1.0 (2024-12-24)
----------------
Major overhaul of the whole project. We introduce more modern approaches in
project layout (like `pyproject`), use new linters and other tools while we
still support all Python versions from 2.7 up to current 3.12.
We now follow the XDG base directory specification, that tells where config
(and other) files for an application can be found. You now can also use
`${XDG_CONFIG_HOME}/diceware/diceware.ini`, or, if the given var is emtpy or
unset, `${HOME}/.config/diceware/diceware.ini`. The traditional location
`${HOME}/.diceware.ini` is still supported.
Furthermore we read `${XDG_DATA_HOME}/diceware/` (or
`${HOME}/.local/share/diceware/` if `${XDG_DATA_HOME}` is empty or unset) to
lookup further wordlists.
New option `--show-wordlist-dirs` lists all directory locations we search for
contained wordlists.
- Officially support Python 3.10 to 3.12.
- Fixed #86: Follow `XDG `_ base directory specification.
- Fixed #84: Allow to store wordlists also in custom directories.
- Use `ruff` as linter, drop `flake8`.
- Renew `tox` configuration.
- Switch to `pyproject`-based project layout, away from using `setup.py`.
- Fixed #62: Removed `pkg_resources` dependency. Kudos to @htgoebel!
As a side effect no randomness sources from other packages are supported anymore.
- Added French wordlist. Many thanks for the good work go to Tango.
- Added Catalan, Spanish and Italian wordlists.
0.10 (2022-02-15)
-----------------
- Officially support Python 3.8 and Python 3.9.
- Removed official support for pypy2, Python 2.6, and Python 3.3.
- Allow to specify several wordlists in order to create syntactical valid
phrases.
- Also added first wordlists with english adjectives/nouns to generate for
instance phrases that are easier to memorize.
- When using real dice, allow entering of several rolls at once. Patch from
`Adin Hoyle `_.
- Added german wordlists.
- Added carefully compiled brazilian portugese wordlist. Kudos to @drebs.
- Removed original diceware wordlists temporarily, for containing bad terms (#85)
0.9.6 (2018-12-19)
------------------
- Officially support Python 3.7.
- Fixed #51: Fix to formatting of list in Wordlists section. Kudos to `Doug
Muth `_.
0.9.5 (2018-04-07)
------------------
- Fixed #28: use Debian-compliant, machine-readable copyright format. Kudos to
`Simon Fondrie-Teitler `_ and @anarcat.
- Fixed #48: Clarify trademark status of diceware. Mr. Reinhold granted
permission to use the name 'Diceware' in this project and under the conditions
listed in the issue comments. Many thanks to him!
0.9.4 (2018-02-27)
------------------
- Set default logging level to ERROR (was: CRITICAL)
- Fixed #44: provide a short and readable file-not-found message (many thanks to
`bhavin192 `_)
- Fixed #45: clean up logging handlers after test runs.
- Removed date-dependent tests from default test suite. Run ``py.test -m ''``
or ``tox`` to run them.
0.9.3 (2017-09-14)
------------------
- Fix broken test.
0.9.2 (2017-09-14)
------------------
- Fixed #33. Make `en_eff` the new default wordlist. This results in slightly
decreased entropy per word (12.92 bits instead of 13.0), but provides prefix
code and better memorizable words. Thanks to @anarcat for the suggestion.
- Fixed #35. Make `realdice` source of randomness provide an equal distribution
of roll numbers even for sequences shorter than number of dice sides.
- Added a man page.
- Support Python 3.6.
- Import `ConfigParser` instead of `SafeConfigParser` if the latter is an alias
of the former.
- Fixed #37. Ensure file descriptors are closed properly.
- Fixed #38. Get wordlists dir by function (instead of const) to allow
reproducible builds. Kudos go to @drebs, again.
0.9.1 (2016-12-24)
------------------
- Fixed #32, in docs tell that ``--no-caps`` option does not generate
lower-case terms.
- Fixed #31, broken `realdice` source of randomness. `argparse` related bug,
Bug was discovered and fixed by @LogosOfJ, thanks a lot!
- Fixed #29. Tell about code prefix problem in README.
- Activated logging. Using `verbose` will result in additional output.
0.9 (2016-09-14)
----------------
- Added `--dice-sides` option to tell how many sides used dices
provide.
- Changed API interface of `get_config_dict()` to allow more flexible
handling of config files.
- Support different verbosity levels.
- Added new wordlist ``en_eff``. It is a 7776-terms list provided by
the Electronic Frontier Foundation. See
https://www.eff.org/deeplinks/2016/07/new-wordlists-random-passphrases
for details. Thanks to `George V. Reilly
`_ for hinting!
- Fixed #27. Allow dashes in numbered wordlists. Yet, these looked
like ``1234 myterm``. We now also accept ``1-2-3-4 myterm``.
0.8 (2016-05-07)
----------------
- Closed #23. @dwcoder provided a fix that allows use of
whitespace-only values in diceware config files if they are enclosed
in quotes.
- Fixed #21. @dwcoder revealed and fixed (again!). This time `--caps`
and `--no-caps` settings did not work properly when set in CLI or in
`.diceware.ini` config file.
- Shortened real-dice randomness source.
- Added logger as common interface to send messages to users.
- New dependency: `sphinx_rtd_theme` for generating docs. This theme
was formerly a dependency of `Sphinx`.
0.7.1 (2016-04-21)
------------------
- Fixed #19. @dwcoder revealed and fixed a nasty bug in the real-dice
randomness-source. Thanks a lot!
0.7 (2016-04-17)
----------------
- Added sample ``.diceware.ini``.
- Added new english wordlist ``en_securedrop``. This is the new
default list. Thanks to `heartsucker
`_ who compiled and added the list.
- Remove support for Python 3.2. Several packages we depend on for testing
and sandboxing stopped Python 3.2 support. We follow them.
0.6.1 (2015-12-15)
------------------
- Minor doc changes: add separate config file docs.
- Fix docs: the default wordlist is named ``en``. Some docs were not
up-to-date in that regard.
0.6 (2015-12-15)
----------------
- Officially support Python 3.5.
- Tests do not depend on `pytest-cov`, `pytest-xdist` anymore.
- Support configuration files. You can set different defaults in a
file called ``.diceware.ini`` in your home directory.
- Renamed wordlist ``en_8k`` to ``en`` as it serves as the default
for english passphrases.
0.5 (2015-08-05)
----------------
- New option ``-r``, ``--randomsource``. We support a pluggable system
to define alternative sources of randomness. Currently supported
sources: ``"system"`` (to retrieve randomness from standard library,
default) and ``realdice``, which allows use of real dice.
- New option ``-w``, ``--wordlist``. We now provide several wordlists
for users to choose from. Own wordlists could already be fed to
`diceware` before. By default we still use the 8192 words list from
http://diceware.com.
- Rename `SRC_DIR` to `WORDLISTS_DIR` (reflecting what it stands for).
- Use also flake8 with tox.
- Pass `options` to `get_passphrase()` instead of a bunch of single args.
- Output wordlists dir in help output.
0.4 (2015-03-30)
----------------
- Add --delimiter option (thanks to Rodolfo Gouveia).
0.3.1 (2015-03-29)
------------------
- Turned former `diceware` module into a Python package. This is to
fix `bug #1 Wordlists aren't included during installation
`_, this time really.
Wordlists will from now on be stored inside the `diceware` package.
Again many thanks to `conorsch `_ who
digged deep into the matter and also came up with a very considerable
solution.
- Use readthedocs theme in docs.
0.3 (2015-03-28)
----------------
- Fix `bug #1 Wordlists aren't included during installation
`_ . Thanks to `conorsch
`_
- Add --version option.
0.2 (2015-03-27)
----------------
- Minor documentation changes.
- Updated copyright infos.
- Add support for custom wordlists.
0.1 (2015-02-18)
----------------
- Initial release.
diceware-1.0.1/COPYRIGHT 0000664 0000000 0000000 00000160156 14732404111 0014575 0 ustar 00root root 0000000 0000000 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: diceware
Upstream-Contact: Uli Fouquet
Source:
Comment: "Diceware" is a trademark of Arnold G Reinhold, used with permission.
Files: *
Copyright: 2015-2024, Uli Fouquet
License: GPL-3+
Files: diceware/wordlists/wordlist_en_securedrop.asc
Copyright: 1995-2016 Arnold G. Reinhold
2016-2017 Heartsucker
Source: https://github.com/heartsucker/diceware/blob/develop/wordlists/en_US/wordlist.txt
License: Expat
Files: diceware/wordlists/wordlist_de.txt
diceware/wordlists/wordlist_de_8k.txt
Copyright: 2021 Uli Fouquet
License: CC-BY-3.0
Files: diceware/wordlsts/wordlist_en_eff.txt
Copyright: 2016 Electronic Frontier Foundation
Source: https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt
License: CC-BY-3.0
Comment: License comes from eff.org/copyright
Files: diceware/wordlists/wordlist_fr.txt
Copyright: 2024 Tango
License: CC0-1.0
Comment: This wordlist was crafted for use with `diceware`, `Tails` and the `Tor Project`
Files: diceware/wordlists/wordlist_pt-br.txt
Copyright: 2019 drebs
License: CC-BY-3.0
Comment: This wordlist was crafted for use with `diceware`
Files: diceware/wordlists/wordlist_en_adjectives.txt
diceware/wordlists/wordlist_en_nouns.txt
Source: https://github.com/NaturalLanguagePasswords
Copyright: 2020 NaturalLaguagePasswords
License: GPL-3+
Files: diceware/wordlists/wordlist_ca.txt
diceware/wordlists/wordlist_es.txt
diceware/wordlists/wordlist_it.txt
Copyright: 2024 victordargallo
License: CC-BY-4.0
License: Expat
Permission is hereby granted, free of charge, to any person obtaining
a copy of this data (the "Data"), to deal in the Data without
restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of
the Data, and to permit persons to whom the Data is furnished to do
so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Data.
.
THE DATA ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE DATA OR THE USE OR OTHER DEALINGS IN THE DATA.
License: GPL-3+
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
.
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
.
Preamble
.
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By
contrast, the GNU General Public License is intended to guarantee
your freedom to share and change all versions of a program--to make
sure it remains free software for all its users. We, the Free
Software Foundation, use the GNU General Public License for most of
our software; it applies also to any other work released this way by
its authors. You can apply it to your programs, too.
.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and
charge for them if you wish), that you receive source code or can get
it if you want it, that you can change the software or use pieces of
it in new free programs, and that you know you can do these things.
.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you
have certain responsibilities if you distribute copies of the
software, or if you modify it: responsibilities to respect the
freedom of others.
.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too,
receive or can get the source code. And you must show them these
terms so they know their rights.
.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
.
For the developers' and authors' protection, the GPL clearly
explains that there is no warranty for this free software. For both
users' and authors' sake, the GPL requires that modified versions be
marked as changed, so that their problems will not be attributed
erroneously to authors of previous versions.
.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the
manufacturer can do so. This is fundamentally incompatible with the
aim of protecting users' freedom to change the software. The
systematic pattern of such abuse occurs in the area of products for
individuals to use, which is precisely where it is most unacceptable.
Therefore, we have designed this version of the GPL to prohibit the
practice for those products. If such problems arise substantially in
other domains, we stand ready to extend this provision to those
domains in future versions of the GPL, as needed to protect the
freedom of users.
.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish
to avoid the special danger that patents applied to a free program
could make it effectively proprietary. To prevent this, the GPL
assures that patents cannot be used to render the program non-free.
.
The precise terms and conditions for copying, distribution and
modification follow.
.
TERMS AND CONDITIONS
.
0. Definitions.
.
"This License" refers to version 3 of the GNU General Public License.
.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
.
To "modify" a work means to copy from or adapt all or part of the
work in a fashion requiring copyright permission, other than the
making of an exact copy. The resulting work is called a "modified
version" of the earlier work or a work "based on" the earlier work.
.
A "covered work" means either the unmodified Program or a work based
on the Program.
.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user
through a computer network, with no transfer of a copy, is not
conveying.
.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
.
1. Source Code.
.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts
to control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available
free programs which are used unmodified in performing those
activities but which are not part of the work. For example,
Corresponding Source includes interface definition files associated
with source files for the work, and the source code for shared
libraries and dynamically linked subprograms that the work is
specifically designed to require, such as by intimate data
communication or control flow between those subprograms and other
parts of the work.
.
The Corresponding Source need not include anything that users can
regenerate automatically from other parts of the Corresponding
Source.
.
The Corresponding Source for a work in source code form is that
same work.
.
2. Basic Permissions.
.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole
purpose of having them make modifications exclusively for you, or
provide you with facilities for running those works, provided that
you comply with the terms of this License in conveying all material
for which you do not control copyright. Those thus making or running
the covered works for you must do so exclusively on your behalf,
under your direction and control, on terms that prohibit them from
making any copies of your copyrighted material outside their
relationship with you.
.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such
circumvention is effected by exercising rights under this License
with respect to the covered work, and you disclaim any intention to
limit operation or modification of the work as a means of enforcing,
against the work's users, your or third parties' legal rights to
forbid circumvention of technological measures.
.
4. Conveying Verbatim Copies.
.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the
code; keep intact all notices of the absence of any warranty; and
give all recipients a copy of this License along with the Program.
.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
.
5. Conveying Modified Source Versions.
.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
.
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
.
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
.
6. Conveying Non-Source Forms.
.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
.
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal,
family, or household purposes, or (2) anything designed or sold for
incorporation into a dwelling. In determining whether a product is a
consumer product, doubtful cases shall be resolved in favor of
coverage. For a particular product received by a particular user,
"normally used" refers to a typical or common use of that class of
product, regardless of the status of the particular user or of the
way in which the particular user actually uses, or expects or is
expected to use, the product. A product is a consumer product
regardless of whether the product has substantial commercial,
industrial or non-consumer uses, unless such uses represent the only
significant mode of use of the product.
.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to
install and execute modified versions of a covered work in that User
Product from a modified version of its Corresponding Source. The
information must suffice to ensure that the continued functioning of
the modified object code is in no case prevented or interfered with
solely because modification has been made.
.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
.
The requirement to provide Installation Information does not include
a requirement to continue to provide support service, warranty, or
updates for a work that has been modified or installed by the
recipient, or for the User Product in which it has been modified or
installed. Access to a network may be denied when the modification
itself materially and adversely affects the operation of the network
or violates the rules and protocols for communication across the
network.
.
Corresponding Source conveyed, and Installation Information
provided, in accord with this section must be in a format that is
publicly documented (and with an implementation available to the
public in source code form), and must require no special password or
key for unpacking, reading or copying.
.
7. Additional Terms.
.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program
shall be treated as though they were included in this License, to the
extent that they are valid under applicable law. If additional
permissions apply only to part of the Program, that part may be used
separately under those permissions, but the entire Program remains
governed by this License without regard to the additional
permissions.
.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
.
Notwithstanding any other provision of this License, for material
you add to a covered work, you may (if authorized by the copyright
holders of that material) supplement the terms of this License with
terms:
.
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
.
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
.
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
.
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
.
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
.
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as
you received it, or any part of it, contains a notice stating that it
is governed by this License along with a term that is a further
restriction, you may remove that term. If a license document
contains a further restriction but permits relicensing or conveying
under this License, you may add to a covered work material governed
by the terms of that license document, provided that the further
restriction does not survive such relicensing or conveying.
.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions; the
above requirements apply either way.
.
8. Termination.
.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
.
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the
copyright holder fails to notify you of the violation by some
reasonable means prior to 60 days after the cessation.
.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not
permanently reinstated, you do not qualify to receive new licenses
for the same material under section 10.
.
9. Acceptance Not Required for Having Copies.
.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
.
10. Automatic Licensing of Downstream Recipients.
.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not
responsible for enforcing compliance by third parties with this
License.
.
An "entity transaction" is a transaction transferring control of an
or ganization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate
litigation (including a cross-claim or counterclaim in a lawsuit)
alleging that any patent claim is infringed by making, using,
selling, offering for sale, or importing the Program or any portion
of it.
.
11. Patents.
.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
.
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor
version, but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not
to sue for patent infringement). To "grant" such a patent license to
a party means to make such an agreement or commitment not to enforce
a patent against the party.
.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through
a publicly available network server or other readily accessible
means, then you must either (1) cause the Corresponding Source to be
so available, or (2) arrange to deprive yourself of the benefit of
the patent license for this particular work, or (3) arrange, in a
manner consistent with the requirements of this License, to extend
the patent license to downstream recipients. "Knowingly relying"
means you have actual knowledge that, but for the patent license,
your conveying the covered work in a country, or your recipient's use
of the covered work in a country, would infringe one or more
identifiable patents in that country that you have reason to believe
are valid.
.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent
license you grant is automatically extended to all recipients of the
covered work and works based on it.
.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a
covered work if you are a party to an arrangement with a third party
that is in the business of distributing software, under which you
make payment to the third party based on the extent of your activity
of conveying the work, and under which the third party grants, to any
of the parties who would receive the covered work from you, a
discriminatory patent license (a) in connection with copies of the
covered work conveyed by you (or copies made from those copies), or
(b) primarily for and in connection with specific products or
compilations that contain the covered work, unless you entered into
that arrangement, or that patent license was granted, prior to 28
March 2007.
.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
.
12. No Surrender of Others' Freedom.
.
If conditions are imposed on you (whether by court order, agreement
or otherwise) that contradict the conditions of this License, they do
not excuse you from the conditions of this License. If you cannot
convey a covered work so as to satisfy simultaneously your
obligations under this License and any other pertinent obligations,
then as a consequence you may not convey it at all. For example, if
you agree to terms that obligate you to collect a royalty for further
conveying from those to whom you convey the Program, the only way you
could satisfy both those terms and this License would be to refrain
entirely from conveying the Program.
.
13. Use with the GNU Affero General Public License.
.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a
single combined work, and to convey the resulting work. The terms
of this License will continue to apply to the part which is the
covered work, but the special requirements of the GNU Affero General
Public License, section 13, concerning interaction through a network
will apply to the combination as such.
.
14. Revised Versions of this License.
.
The Free Software Foundation may publish revised and/or new versions
of the GNU General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes
you to choose that version for the Program.
.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
.
15. Disclaimer of Warranty.
.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
.
16. Limitation of Liability.
.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES
AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM
(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE
OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
.
17. Interpretation of Sections 15 and 16.
.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
.
END OF TERMS AND CONDITIONS
.
How to Apply These Terms to Your New Programs
.
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make
it free software which everyone can redistribute and change under
these terms.
.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
.
Copyright (C)
.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
.
Also add information on how to contact you by electronic and paper mail.
.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
.
Copyright (C)
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
.
You should also get your employer (if you work as a programmer) or
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. For more information on this, and how to apply and follow
the GNU GPL, see .
.
The GNU General Public License does not permit incorporating your
program into proprietary programs. If your program is a subroutine
library, you may consider it more useful to permit linking
proprietary applications with the library. If this is what you want
to do, use the GNU Lesser General Public License instead of this
License. But first, please read
.
License: CC-BY-3.0
Creative Commons Attribution 3.0 Unported
.
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION
ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE
INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
ITS USE.
.
License
.
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
.
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE
TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY
BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
CONDITIONS.
.
1. Definitions
.
a. "Adaptation" means a work based upon the Work, or upon the Work and
other pre-existing works, such as a translation, adaptation, derivative
work, arrangement of music or other alterations of a literary or
artistic work, or phonogram or performance and includes cinematographic
adaptations or any other form in which the Work may be recast,
transformed, or adapted including in any form recognizably derived from
the original, except that a work that constitutes a Collection will not
be considered an Adaptation for the purpose of this License. For the
avoidance of doubt, where the Work is a musical work, performance or
phonogram, the synchronization of the Work in timed-relation with a
moving image ("synching") will be considered an Adaptation for the
purpose of this License.
.
b. "Collection" means a collection of literary or artistic works, such
as encyclopedias and anthologies, or performances, phonograms or
broadcasts, or other works or subject matter other than works listed in
Section 1(f) below, which, by reason of the selection and arrangement of
their contents, constitute intellectual creations, in which the Work is
included in its entirety in unmodified form along with one or more other
contributions, each constituting separate and independent works in
themselves, which together are assembled into a collective whole. A work
that constitutes a Collection will not be considered an Adaptation (as
defined above) for the purposes of this License.
.
c. "Distribute" means to make available to the public the original and
copies of the Work or Adaptation, as appropriate, through sale or other
transfer of ownership.
.
d. "Licensor" means the individual, individuals, entity or entities that
offer(s) the Work under the terms of this License.
.
e. "Original Author" means, in the case of a literary or artistic work,
the individual, individuals, entity or entities who created the Work or
if no individual or entity can be identified, the publisher; and in
addition (i) in the case of a performance the actors, singers,
musicians, dancers, and other persons who act, sing, deliver, declaim,
play in, interpret or otherwise perform literary or artistic works or
expressions of folklore; (ii) in the case of a phonogram the producer
being the person or legal entity who first fixes the sounds of a
performance or other sounds; and, (iii) in the case of broadcasts, the
organization that transmits the broadcast.
.
f. "Work" means the literary and/or artistic work offered under the
terms of this License including without limitation any production in the
literary, scientific and artistic domain, whatever may be the mode or
form of its expression including digital form, such as a book, pamphlet
and other writing; a lecture, address, sermon or other work of the same
nature; a dramatic or dramatico-musical work; a choreographic work or
entertainment in dumb show; a musical composition with or without words;
a cinematographic work to which are assimilated works expressed by a
process analogous to cinematography; a work of drawing, painting,
architecture, sculpture, engraving or lithography; a photographic work
to which are assimilated works expressed by a process analogous to
photography; a work of applied art; an illustration, map, plan, sketch
or three-dimensional work relative to geography, topography,
architecture or science; a performance; a broadcast; a phonogram; a
compilation of data to the extent it is protected as a copyrightable
work; or a work performed by a variety or circus performer to the extent
it is not otherwise considered a literary or artistic work.
.
g. "You" means an individual or entity exercising rights under this
License who has not previously violated the terms of this License with
respect to the Work, or who has received express permission from the
Licensor to exercise rights under this License despite a previous
violation.
.
h. "Publicly Perform" means to perform public recitations of the Work
and to communicate to the public those public recitations, by any means
or process, including by wire or wireless means or public digital
performances; to make available to the public Works in such a way that
members of the public may access these Works from a place and at a place
individually chosen by them; to perform the Work to the public by any
means or process and the communication to the public of the performances
of the Work, including by public digital performance; to broadcast and
rebroadcast the Work by any means including signs, sounds or images.
.
i. "Reproduce" means to make copies of the Work by any means including
without limitation by sound or visual recordings and the right of
fixation and reproducing fixations of the Work, including storage of a
protected performance or phonogram in digital form or other electronic
medium.
.
2. Fair Dealing Rights. Nothing in this License is intended to reduce,
limit, or restrict any uses free from copyright or rights arising from
limitations or exceptions that are provided for in connection with the
copyright protection under copyright law or other applicable laws.
.
3. License Grant. Subject to the terms and conditions of this License,
Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
perpetual (for the duration of the applicable copyright) license to
exercise the rights in the Work as stated below:
.
a. to Reproduce the Work, to incorporate the Work into one or more
Collections, and to Reproduce the Work as incorporated in the
Collections;
.
b. to create and Reproduce Adaptations provided that any such
Adaptation, including any translation in any medium, takes reasonable
steps to clearly label, demarcate or otherwise identify that changes
were made to the original Work. For example, a translation could be
marked "The original work was translated from English to Spanish," or a
modification could indicate "The original work has been modified.";
.
c. to Distribute and Publicly Perform the Work including as incorporated
in Collections; and,
.
d. to Distribute and Publicly Perform Adaptations.
.
e. For the avoidance of doubt:
.
i. Non-waivable Compulsory License Schemes. In those jurisdictions in
which the right to collect royalties through any statutory or compulsory
licensing scheme cannot be waived, the Licensor reserves the exclusive
right to collect such royalties for any exercise by You of the rights
granted under this License;
.
ii. Waivable Compulsory License Schemes. In those jurisdictions in which
the right to collect royalties through any statutory or compulsory
licensing scheme can be waived, the Licensor waives the exclusive right
to collect such royalties for any exercise by You of the rights granted
under this License; and,
.
iii. Voluntary License Schemes. The Licensor waives the right to collect
royalties, whether individually or, in the event that the Licensor is a
member of a collecting society that administers voluntary licensing
schemes, via that society, from any exercise by You of the rights
granted under this License.
.
The above rights may be exercised in all media and formats whether now
known or hereafter devised. The above rights include the right to make
such modifications as are technically necessary to exercise the rights
in other media and formats. Subject to Section 8(f), all rights not
expressly granted by Licensor are hereby reserved.
.
4. Restrictions. The license granted in Section 3 above is expressly
made subject to and limited by the following restrictions:
.
a. You may Distribute or Publicly Perform the Work only under the terms
of this License. You must include a copy of, or the Uniform Resource
Identifier (URI) for, this License with every copy of the Work You
Distribute or Publicly Perform. You may not offer or impose any terms on
the Work that restrict the terms of this License or the ability of the
recipient of the Work to exercise the rights granted to that recipient
under the terms of the License. You may not sublicense the Work. You
must keep intact all notices that refer to this License and to the
disclaimer of warranties with every copy of the Work You Distribute or
Publicly Perform. When You Distribute or Publicly Perform the Work, You
may not impose any effective technological measures on the Work that
restrict the ability of a recipient of the Work from You to exercise the
rights granted to that recipient under the terms of the License. This
Section 4(a) applies to the Work as incorporated in a Collection, but
this does not require the Collection apart from the Work itself to be
made subject to the terms of this License. If You create a Collection,
upon notice from any Licensor You must, to the extent practicable,
remove from the Collection any credit as required by Section 4(b), as
requested. If You create an Adaptation, upon notice from any Licensor
You must, to the extent practicable, remove from the Adaptation any
credit as required by Section 4(b), as requested.
.
b. If You Distribute, or Publicly Perform the Work or any Adaptations or
Collections, You must, unless a request has been made pursuant to
Section 4(a), keep intact all copyright notices for the Work and
provide, reasonable to the medium or means You are utilizing: (i) the
name of the Original Author (or pseudonym, if applicable) if supplied,
and/or if the Original Author and/or Licensor designate another party or
parties (e.g., a sponsor institute, publishing entity, journal) for
attribution ("Attribution Parties") in Licensor's copyright notice,
terms of service or by other reasonable means, the name of such party or
parties; (ii) the title of the Work if supplied; (iii) to the extent
reasonably practicable, the URI, if any, that Licensor specifies to be
associated with the Work, unless such URI does not refer to the
copyright notice or licensing information for the Work; and (iv) ,
consistent with Section 3(b), in the case of an Adaptation, a credit
identifying the use of the Work in the Adaptation (e.g., "French
translation of the Work by Original Author," or "Screenplay based on
original Work by Original Author"). The credit required by this Section
4 (b) may be implemented in any reasonable manner; provided, however,
that in the case of a Adaptation or Collection, at a minimum such credit
will appear, if a credit for all contributing authors of the Adaptation
or Collection appears, then as part of these credits and in a manner at
least as prominent as the credits for the other contributing authors.
For the avoidance of doubt, You may only use the credit required by this
Section for the purpose of attribution in the manner set out above and,
by exercising Your rights under this License, You may not implicitly or
explicitly assert or imply any connection with, sponsorship or
endorsement by the Original Author, Licensor and/or Attribution Parties,
as appropriate, of You or Your use of the Work, without the separate,
express prior written permission of the Original Author, Licensor and/or
Attribution Parties.
.
c. Except as otherwise agreed in writing by the Licensor or as may be
otherwise permitted by applicable law, if You Reproduce, Distribute or
Publicly Perform the Work either by itself or as part of any Adaptations
or Collections, You must not distort, mutilate, modify or take other
derogatory action in relation to the Work which would be prejudicial to
the Original Author's honor or reputation. Licensor agrees that in those
jurisdictions (e.g. Japan), in which any exercise of the right granted
in Section 3(b) of this License (the right to make Adaptations) would be
deemed to be a distortion, mutilation, modification or other derogatory
action prejudicial to the Original Author's honor and reputation, the
Licensor will waive or not assert, as appropriate, this Section, to the
fullest extent permitted by the applicable national law, to enable You
to reasonably exercise Your right under Section 3(b) of this License
(right to make Adaptations) but not otherwise.
.
5. Representations, Warranties and Disclaimer
.
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,
WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE
EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
.
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
.
7. Termination
.
a. This License and the rights granted hereunder will terminate
automatically upon any breach by You of the terms of this License.
Individuals or entities who have received Adaptations or Collections
from You under this License, however, will not have their licenses
terminated provided such individuals or entities remain in full
compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
survive any termination of this License.
.
b. Subject to the above terms and conditions, the license granted here
is perpetual (for the duration of the applicable copyright in the Work).
Notwithstanding the above, Licensor reserves the right to release the
Work under different license terms or to stop distributing the Work at
any time; provided, however that any such election will not serve to
withdraw this License (or any other license that has been, or is
required to be, granted under the terms of this License), and this
License will continue in full force and effect unless terminated as
stated above.
.
8. Miscellaneous
.
a. Each time You Distribute or Publicly Perform the Work or a
Collection, the Licensor offers to the recipient a license to the Work
on the same terms and conditions as the license granted to You under
this License.
.
b. Each time You Distribute or Publicly Perform an Adaptation, Licensor
offers to the recipient a license to the original Work on the same terms
and conditions as the license granted to You under this License.
.
c. If any provision of this License is invalid or unenforceable under
applicable law, it shall not affect the validity or enforceability of
the remainder of the terms of this License, and without further action
by the parties to this agreement, such provision shall be reformed to
the minimum extent necessary to make such provision valid and
enforceable.
.
d. No term or provision of this License shall be deemed waived and no
breach consented to unless such waiver or consent shall be in writing
and signed by the party to be charged with such waiver or consent. This
License constitutes the entire agreement between the parties with
respect to the Work licensed here. There are no understandings,
agreements or representations with respect to the Work not specified
here. Licensor shall not be bound by any additional provisions that may
appear in any communication from You.
.
e. This License may not be modified without the mutual written agreement
of the Licensor and You.
.
f. The rights granted under, and the subject matter referenced, in this
License were drafted utilizing the terminology of the Berne Convention
for the Protection of Literary and Artistic Works (as amended on
September 28, 1979), the Rome Convention of 1961, the WIPO Copyright
Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and
the Universal Copyright Convention (as revised on July 24, 1971). These
rights and subject matter take effect in the relevant jurisdiction in
which the License terms are sought to be enforced according to the
corresponding provisions of the implementation of those treaty
provisions in the applicable national law. If the standard suite of
rights granted under applicable copyright law includes additional rights
not granted under this License, such additional rights are deemed to be
included in the License; this License is not intended to restrict the
license of any rights under applicable law.
.
Creative Commons Notice
.
Creative Commons is not a party to this License, and makes no warranty
whatsoever in connection with the Work. Creative Commons will not be
liable to You or any party on any legal theory for any damages
whatsoever, including without limitation any general, special,
incidental or consequential damages arising in connection to this
license. Notwithstanding the foregoing two (2) sentences, if Creative
Commons has expressly identified itself as the Licensor hereunder, it
shall have all rights and obligations of Licensor.
.
Except for the limited purpose of indicating to the public that the Work
is licensed under the CCPL, Creative Commons does not authorize the use
by either party of the trademark "Creative Commons" or any related
trademark or logo of Creative Commons without the prior written consent
of Creative Commons. Any permitted use will be in compliance with
Creative Commons' then-current trademark usage guidelines, as may be
published on its website or otherwise made available upon request from
time to time. For the avoidance of doubt, this trademark restriction
does not form part of this License.
.
Creative Commons may be contacted at http://creativecommons.org/.
diceware-1.0.1/LICENSE 0000664 0000000 0000000 00000104515 14732404111 0014304 0 ustar 00root root 0000000 0000000 GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
Copyright (C)
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
.
diceware-1.0.1/MANIFEST.in 0000664 0000000 0000000 00000000325 14732404111 0015027 0 ustar 00root root 0000000 0000000 recursive-include diceware/wordlists *.txt *.asc
recursive-include docs *.bat *.py *.rst Makefile
recursive-include tests *.asc *.py *.txt *.ini
include diceware.1 README.rst CHANGES.rst LICENSE COPYRIGHT tox.ini
diceware-1.0.1/README.rst 0000664 0000000 0000000 00000044013 14732404111 0014762 0 ustar 00root root 0000000 0000000 diceware
========
Passphrases to remember...
|bdg-tests| | `documentation `_ | `sources `_ | `issues `_
.. |bdg-tests| image:: https://github.com/ulif/diceware/actions/workflows/tests.yml/badge.svg?branch=master
:target: https://github.com/ulif/diceware/actions/workflows/tests.yml
:alt: Test Status
.. |bdg-last-release| image:: https://img.shields.io/pypi/v/diceware.svg
:target: https://pypi.python.org/pypi/diceware/
:alt: Latest Release
.. |bdg-versions| image:: https://img.shields.io/pypi/pyversions/diceware.svg
:target: https://pypi.python.org/pypi/diceware/
:alt: Supported Python Versions
.. |bdg-license| image:: https://img.shields.io/pypi/l/diceware.svg
:target: https://pypi.python.org/pypi/diceware/
:alt: License
.. |doc-status| image:: https://readthedocs.io/projects/diceware/badge/?version=latest
:target: https://diceware.readthedocs.io/en/latest/
:alt: Documentation Status
`diceware` is a passphrase generator following the proposals of
Arnold G. Reinhold on http://diceware.com . It generates passphrases
by concatenating words randomly picked from wordlists. For instance::
$ diceware
MyraPend93rdSixthEagleAid
The passphrase contains by default six words (with first char
capitalized) without any separator chars. Optionally you can let
`diceware` insert special chars into the passphrase.
`diceware` supports several sources of randomness (including real life
dice) and different wordlists (including cryptographically signed
ones).
.. contents::
Install
-------
This Python package can be installed via pip_::
$ pip install diceware
The exact way depends on your operating system.
Usage
-----
Once installed, use ``--help`` to list all available options::
$ diceware --help
usage: diceware [-h] [-n NUM] [-c | --no-caps] [-s NUM] [-d DELIMITER]
[-r SOURCE] [-w [NAME [NAME ...]]] [--dice-sides N] [-v]
[--version]
[INFILE]
Create a passphrase
positional arguments:
INFILE Input wordlist. `-' will read from stdin.
optional arguments:
-h, --help show this help message and exit
-n NUM, --num NUM number of words to concatenate. Default: 6
-c, --caps Capitalize words. This is the default.
--no-caps Turn off capitalization.
-s NUM, --specials NUM
Insert NUM special chars into generated word.
-d DELIMITER, --delimiter DELIMITER
Separate words by DELIMITER. Empty string by default.
-r SOURCE, --randomsource SOURCE
Get randomness from this source. Possible values:
`realdice', `system'. Default: system
-w [NAME [NAME ...]], --wordlist [NAME [NAME ...]]
Use words from this wordlist. Possible values: `ca`,
`de', `de_8k', `en_adjectives', `en_eff', `en_nouns',
`en_securedrop', `es`, `fr`, `it`, `pt-br'.
Wordlists are stored in the folders displayed below.
Default: en_eff
-v, --verbose Be verbose. Use several times for increased verbosity.
--version output version information and exit.
--show-wordlist-dirs Output directories we look up to find wordlists and exit.
Arguments related to `realdice' randomsource:
--dice-sides N Number of sides of dice. Default: 6
Use --show-wordlist-dirs to list directories where you can store custom wordlists.
With ``-n`` you can tell how many words are supposed to be picked for
your new passphrase::
$ diceware -n 1
Thud
$ diceware -n 2
KnitMargo
You can `diceware` additionally let generate special chars to replace
characters in the 'normal' passphrase. The number of special chars
generated can be determined with the ``-s`` option (*default is zero*)::
$ diceware -s 2
Heroic%unkLon#DmLewJohns
Here ``"%"`` and ``"#"`` are the special chars.
Special chars are taken from the following list::
~!#$%^&*()-=+[]\{}:;\"'<>?/0123456789
Please note that several special chars might replace the same original
char, resulting in a passphrase with less special chars than requested.
With ``-d`` you can advise `diceware` to put a delimiter string
between the words generated::
$ diceware -d "_"
Wavy_Baden_400_Whelp_Quest_Macon
By default we use the empty string as delimiter, which is good for
copying via double click on Linux systems. But other delimiters might
make your passphrases more readable (and more secure, see
`Security Traps <#sec-traps>`_ below).
By default the single phrase words are capitalized, i.e. the first
char of each word is made uppercase. This does not necessarily give
better entropy (but protects against entropy loss due to non `prefix
code`_, see `Security Traps <#sec-traps>`_ below), and it might
improve phrase readability.
You can nevertheless disable caps with the ``--no-caps`` option::
$ diceware --no-caps
oceanblendbaronferrylistenvalet
This will leave the input words untouched (upper-case stays upper-case,
lower-case stays lower-case). It does *not* mean, that all output words will be
lower-case (except if all words of your wordlist are lowercase).
As the default lists of `diceware` contain only lower-case terms, here
``--no-caps`` means in fact lower-case only output, which might be easier to
type on smart phones and similar.
`diceware` supports also different sources of randomness, which can be
chosen with the ``-r `` or ``--randomsource ``
option. Use the ``--help`` option to list all valid values for this
option.
By default we use the `random.SystemRandom`_ class of standard Python
lib but you can also bring your own dice to create randomness::
$ diceware -r realdice --dice-sides 6
Please roll 5 dice (or a single dice 5 times).
Enter your 5 dice results, separated by spaces: 6 4 2 3 1
Please roll 5 dice (or a single dice 5 times).
Enter your 5 dice results, separated by spaces: 5 4 3 6 2
...
UnleveledSimilarlyBackboardMurkyOasisReplay
Normally dice have six sides. And this is also the default in
`diceware` if you do not use ``--dice-sides``. But if you do, you can
tell how many sides (all) your dice have. More sides will lead to less
rolls required.
`diceware` comes with an English wordlist provided by the EFF_, which will be
used by default and contains 7776 (=6^5) different words. This list is
registered as ``en_eff``.
Additionally `diceware` comes with an English wordlist provided by
`@heartsucker`_, which contains 8192 different words. This list is based off
the original diceware list written by Arnold G. Reinhold.
You can enable a certain (installed) wordlist with the ``-w`` option::
$ diceware --wordlist en_orig
YorkNodePrickEchoToriNiobe
See ``diceware --help`` for a list of all installed wordlists.
You can also build phrases from adjectives and nouns (yet in english only)
using the included `en_adjectives` and `en_nouns` lists. For that you specify
these two wordlists after each other::
$ diceware -n 1 -w en_adjectives en_nouns
TediousPerimeter
These adjective/noun phrases might be easier to memorize.
If you do not like the wordlists provided, you can use your own
one. Any `INFILE` provided will be parsed line by line and each line
considered a possible word. For instance::
$ echo -e "hi\nhello\n" > mywordlist.txt
$ diceware mywordlist.txt
HelloHelloHiHiHiHello
With dash (``-``) as filename you can pipe in wordlists::
$ echo -e "hi\nhello\n" | diceware -
HiHiHelloHiHiHello
In custom wordlists we take each line for a valid word and ignore
empty lines (i.e. lines containing whitespace characters only). Oh,
and we handle even PGP-signed wordlists.
You can set customized default values in a configuration file ``.diceware.ini``
(note the leading dot) placed in your home directory. Since version 1.0 you can
also use ``${XDG_CONFIG_HOME}/diceware/diceware.ini`` or
``${HOME}/.config/diceware/diceware.ini`` (if ``${XDG_CONFIG_HOME}`` is
undefined, see XDG_ for details).
This file could look like this::
[diceware]
num = 7
caps = off
specials = 2
delimiter = "MYDELIMITER"
randomsource = "system"
wordlist = "en_securedrop"
The options names have to match long argument names, as output by
``--help``. The values set must meet the requirements valid for
commandline usage. All options must be set within a section
``[diceware]``.
What is it good for?
--------------------
Normally, `diceware` passphrases are easier to remember than shorter
passwords constructed in more or less bizarre ways. But at the same
time `diceware` passphrases provide more entropy as `xkcd`_ can show
with the famous '936' proof_:
.. image:: http://imgs.xkcd.com/comics/password_strength.png
:align: center
:target: http://xkcd.com/936/
.. _xkcd: http://xkcd.com/
.. _proof: http://xkcd.com/936/
The standard english wordlist of this `diceware` implementation contains 7776 =
6^5 different english words. It is the official EFF_ wordlist. compiled by
`Joseph Bonneau`_. Therefore, picking a random word from this list gives an
entropy of nearly 12.9 bits. Picking six words means an entropy of 6 x 12.9 =
77.54 bits.
The special chars replacing chars of the originally created passphrase
give some more entropy (the more chars you have, the more additional
entropy), but not much. For instance, for a sixteen chars phrase you
have sixteen possibilities to place one of the 36 special chars. That
makes 36 x 16 possibilities or an entropy of about 9.17 you can add.
To get an entropy increase of at least 10 bits, you have to put a
special char in a phrase with at least 29 chars (while at the same
time an additional word would give you 13 bits of extra
entropy). Therefore you might think again about using special chars in
your passphrase.
Is it secure?
-------------
The security level provided by Diceware_ depends heavily on your
source of random. If the delivered randomness is good, then your
passphrases will be very strong. If instead someone can foresee the
numbers generated by a random number generator, your passphrases will
be surprisingly weak.
This Python implementation uses (by default) the
`random.SystemRandom`_ source provided by Python. On Un*x systems it
accesses `/dev/urandom`. You might want to follow reports about
manipulated random number generators in operating systems closely.
The Python API of this package allows usage of other sources of
randomness when generating passphrases. This includes real dice. See
the ``-r`` option.
.. _sec-traps:
Security Traps
--------------
There are issues that might reduce the entropy of the passphrase
generated. One of them is the `prefix code`_ problem:
Prefix Code
...........
If the wordlist contains, for example, the words::
"air", "airport", "portable", "able"
*and* we switched off caps *and* delimiter chars, then `diceware` might
generate a passphrase containing::
"airportable"
which could come from ``air-portable`` or ``airport-able``. We cannot
tell and an attacker would have less combinations to guess.
To avoid that, you can leave caps enabled (the default), use any word
delimiter except the empty string or use the ``en_eff`` wordlist,
which was checked to be a `prefix code`_ (i.e. it does not contain
words that start with other words in the list). The ``pt-br`` is also a secure
`prefix code`_.
Each of these measures is sufficient to protect you against the
`prefix code`_ problem.
Reduced Entropy
...............
Overall, `diceware` is a kind of mapping input values, dice throws for
instance, onto wordlist entries. We normally want each of the words in the
wordlist to be picked for passphrases with the same probability.
This, however, is not possible, if the number of wordlist entries is not a
power of dice sides. In that case we cut some words of the wordlist and inform
the user about the matter. Reducing the number of words this way makes it
easier for attackers to guess the phrase picked.
You can fix that problem by using longer wordlists.
Developer Install
-----------------
Developers want to `fork me on github`_::
$ git clone https://github.com/ulif/diceware.git
We recommend to create and activate a virtualenv_ first::
$ cd diceware/
$ virtualenv -p /usr/bin/python3.11 py311
$ source py311/bin/activate
(py311) $
We support Python versions 2.7, 3.4 to 3.12, and pypy3.
Now you can create the devel environment::
(py311) $ pip install '.[tests,dev]'
This will fetch test packages (py.test_), `ruff` as linter, `black` as code
formatter and `coverage`. You should be able to run tests now::
(py311) $ pytest
If you have also different Python versions installed you can use tox_
for using them all for testing::
(py311) $ pip install tox # only once
(py311) $ tox
Should run tests in all supported Python versions, the linter (`ruff`),
coverage tests and more.
Documentation Install
.....................
The docs can be generated with Sphinx_. The needed packages are
installed via::
(py311) $ pip install '.[docs]'
To create the docs as HTML in a directory of your choice, then run::
(py311) $ sphinx-build docs/ mydir/
You can also change to the ``docs/`` directory and use the prepared
``Makefile``::
(py311) $ cd docs/
(py311) $ make
This should generate the docs in ``docs/_build/html/``.
Creating the Man Page
.....................
We provide a `ReStructuredTexT`_ template to create a man page. When the
documentation engine is installed (`Sphinx`_, see above), then you can create a
manpage doing::
(py311) $ rst2man.py docs/manpage.rst > diceware.1
The template is mainly provided to ease the job of Debian maintainers.
Currently, it is not automatically updated. Dates, authors, synopsis, etc. have
to be updated manually. Information in the manpage may therefore be wrong,
outdated, or simply misleading.
Credits
-------
Arnold G. Reinhold deserves all merits for the working parts of
`Diceware`_. The non-working parts are certainly my fault.
People that helped spotting bugs, providing solutions, etc.:
- `Conor Schaefer (conorsch) `_
- Rodolfo Gouveia suggested to activate the ``--delimiter`` option.
- `@drebs`_ provided patches and discussion for different sources of
randomness and the excellent ``pt-br`` wordlist. `@drebs`_ also initiated
and performed the packaging of `diceware` for the `Debian`_ platform. Many
kudos for this work! `@drebs`_ is also the official Debian maintainer of the
`diceware` package.
- `@heartsucker`_ hand-compiled and added a new english wordlist.
- `dwcoder `_ revealed and fixed bugs
#19, #21, #23. Also showed sound knowledge of (theoretical)
entropy. A pleasure to work with.
- `George V. Reilly `_ pointed to new
EFF wordlists.
- `lieryan `_ brought up the `prefix
code`_ problem.
- `LogosOfJ `_ discovered and fixed
serious `realdice` source of randomness problem.
- `Bhavin Gandhi `_ fixed the confusing error
message when an invalid input filename is given.
- `Simon Fondrie-Teitler `_ contributed a
machine-readable copyright file, with improvements from `@anarcat`_
- `Doug Muth `_ fixed formatting in docs.
- `@kmille`_ suggested support for XDG config file locations.
- `Tango` provided the french wordlist, also provided for `Tails OS`_ and the
`Tor Project`_.
- `@jawlenskys`_ provided the catalan, spanish and italian wordlists, also
provided for `Tails OS`_ and the `Tor Project`_.
Many thanks to all of them!
Links
-----
- The Diceware_ home page. Reading definitely recommended!
- `fork me on github`_
External Wordlists:
- `Diceware standard list`_ by Arnold G. Reinhold.
- `Diceware8k list`_ by Arnold G. Reinhold.
- `Diceware SecureDrop list`_ by `@heartsucker`_.
- `EFF large list`_ provided by EFF_.
- `English adjectives and nouns lists`_ provided by `NaturalLanguagePasswords`_.
License
-------
This Python implementation of Diceware, (C) 2015-2024 Uli Fouquet, is
licensed under the GPL v3+. See file LICENSE for details.
"Diceware" is a trademark of Arnold G Reinhold, used with permission.
The copyright for the `Diceware8k list`_ is owned by Arnold G Reinhold. The
copyright for the `Diceware SecureDrop list`_ are owned by `@heartsucker`_.
Copyright for the `EFF large list`_ by `Joseph Bonneau`_ and EFF_. Copyright
for the brazilian portuguese list by `@drebs`_. Copyright for the english
adjective and noun lists by `NaturalLanguagePasswords`_. See file COPYRIGHT for
details.
.. _pip: https://pip.pypa.io/en/latest/
.. _`@anarcat`: https://github.com/anarcat
.. _`Debian`: https://www.debian.org/
.. _`Diceware`: http://diceware.com/
.. _`Diceware standard list`: http://world.std.com/~reinhold/diceware.wordlist.asc
.. _`Diceware SecureDrop list`: https://github.com/heartsucker/diceware
.. _`Diceware8k list`: http://world.std.com/~reinhold/diceware8k.txt
.. _`@drebs`: https://github.com/drebs
.. _`EFF`: https://eff.org/
.. _`EFF large list`: https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt
.. _`English adjectives and nouns lists`: https://github.com/NaturalLanguagePasswords/system
.. _`fork me on github`: http://github.com/ulif/diceware/
.. _`@heartsucker`: https://github.com/heartsucker/
.. _`@jawlenskys`: https://github.com/jawlenskys
.. _`Joseph Bonneau`: https://www.eff.org/about/staff/joseph-bonneau
.. _`@kmille`: https://github.com/kmille
.. _`NaturalLanguagePasswords`: https://github.com/NaturalLanguagePasswords
.. _`prefix code`: https://en.wikipedia.org/wiki/Prefix_code
.. _`random.SystemRandom`: https://docs.python.org/3.4/library/random.html#random.SystemRandom
.. _`Tails OS`: https://tails.net/
.. _`Tor Project`: https://torproject.org/
.. _ReStructuredText: http://docutils.sourceforge.net/rst.html
.. _virtualenv: https://virtualenv.pypa.io/
.. _py.test: https://pytest.org/
.. _tox: https://tox.wiki/
.. _Sphinx: https://sphinx-doc.org/
.. _`XDG`: https://specifications.freedesktop.org/basedir-spec/latest/
diceware-1.0.1/diceware.1 0000664 0000000 0000000 00000024665 14732404111 0015153 0 ustar 00root root 0000000 0000000 .\" Man page generated from reStructuredText.
.
.
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
\\$1 \\n[an-margin]
level \\n[rst2man-indent-level]
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
-
\\n[rst2man-indent0]
\\n[rst2man-indent1]
\\n[rst2man-indent2]
..
.de1 INDENT
.\" .rstReportMargin pre:
. RS \\$1
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
. nr rst2man-indent-level +1
.\" .rstReportMargin post:
..
.de UNINDENT
. RE
.\" indent \\n[an-margin]
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.TH "DICEWARE" "1" "December 2024" "diceware 1.0.1" "User Commands"
.SH NAME
diceware \- create passphrases
.SH SYNOPSIS
.sp
\fBdiceware\fP [\fIOPTION\fP]... [\fIFILE\fP]
.SH DESCRIPTION
.sp
\fBdiceware\fP generates passphrases by concatenating words randomly picked from
wordlists. It supports also real dice for passphrase generation.
.sp
It is based on the proposals of Arnold G. Reinhold on \&.
.SH OPTIONS
.sp
\fBpositional arguments\fP:
.INDENT 0.0
.INDENT 3.5
.INDENT 0.0
.TP
.B FILE
optional input wordlist. \fB\(aq\-\(aq\fP will read from stdin. Should contain one
word per line.
.UNINDENT
.UNINDENT
.UNINDENT
.sp
\fBoptional arguments\fP:
.INDENT 0.0
.INDENT 3.5
.INDENT 0.0
.TP
.B \fB\-h\fP, \fB\-\-help\fP
show help message and exit
.TP
.B \fB\-n\fP \fINUM\fP, \fB\-\-num\fP \fINUM\fP
number of words to concatenate. Default 6
.TP
.B \fB\-c\fP, \fB\-\-caps\fP
Capitalize words. This is the default.
.TP
.B \fB\-\-no\-caps\fP
Turn off capitalization.
.TP
.B \fB\-s\fP \fINUM\fP, \fB\-\-specials\fP \fINUM\fP
Insert NUM special chars into generated word.
.TP
.B \fB\-d\fP \fIDELIMITER\fP, \fB\-\-delimiter\fP \fIDELIMITER\fP
Separate words by DELIMITER. Empty string by default.
.TP
.B \fB\-r\fP \fISOURCE\fP, \fB\-\-randomsource\fP \fISOURCE\fP
Get randomness from this source. Possible values:
\fBrealdice\fP, \fBsystem\fP\&. Default: \fBsystem\fP
.TP
.B \fB\-w\fP [\fINAME\fP [\fINAME\fP ...]], \fB\-\-wordlist\fP [\fINAME\fP [\fINAME\fP ...]]
Use words from this wordlist. Possible values: \fIca\fP, \fIde\fP, \fIde_8k\fP, \fIen\fP,
\fIen_8k\fP, \fIen_adjectives\fP, \fIen_eff\fP, \fIen_nouns\fP, \fIen_orig\fP, \fIen_securedrop\fP\&.
\fIes\fP, \fIit\fP, \fIpt\-br\fP\&. Default: \fBen_eff\fP
.TP
.B \fB\-v\fP, \fB\-\-verbose\fP
Be verbose. Use several times for increased verbosity.
.TP
.B \fB\-\-version\fP
output version information and exit.
.UNINDENT
.UNINDENT
.UNINDENT
.sp
\fBArguments related to\fP \fIrealdice\fP \fBrandomsource\fP:
.INDENT 0.0
.INDENT 3.5
.INDENT 0.0
.TP
.B \fB\-\-dice\-sides\fP \fIN\fP
Number of sides of dice. Default: 6
.UNINDENT
.UNINDENT
.UNINDENT
.SH ENVIRONMENT VARIABLES
.INDENT 0.0
.TP
.B \fBXDG_CONFIG_HOME\fP
If set and not empty, this variable determines the directory to use for
user\-local configuration files. We then lookup
\fI${XDG_CONFIG_HOME}/diceware/diceware.ini\fP and values set here override
system\-wide config files.
.TP
.B \fBXDG_CONFIG_DIRS\fP
If set and not empty, this variable is interpreted as colon\-separated list
of directories, that might contain system\-wide configuration files. We
lookup \fI/diceware/diceware.ini\fP for each directory set in
\fI$XDG_CONFIG_DIRS\fP\&.
.TP
.B \fBXDG_DATA_HOME\fP
.INDENT 7.0
.INDENT 3.5
If set and not empty, this variable determines a directory to search for
additional wordlists. We then lookup \fI${XDG_DATA_HOME}/diceware\fP for any
existing wordlist files.
.UNINDENT
.UNINDENT
.INDENT 7.0
.TP
.B \fBXDG_DATA_DIRS\fP
If set and not empty, this variable is interpreted as colon\-separated list
of directories, that might contain additional wordlist files. See below. We
lookup \fI/diceware/\fP then for each directory set in the list.
.UNINDENT
.UNINDENT
.SH FILES
.sp
Depending on environment variables set (or not set) we lookup certain
directories for configuration files called \fBdiceware.ini\fP and for wordlist
files.
.SS CONFIGURATION FILES
.sp
Configuration settings for \fBdiceware\fP can be spread over several
configuration files. We parse configuration values from the files given below,
but values set in former files take precedence over values set in latter ones.
.INDENT 0.0
.TP
.B \fI~/.diceware.ini\fP
Your personal diceware configuration file. Values set here override values
from any other configuration file.
.TP
.B \fI$XDG_CONFIG_HOME/diceware/diceware.ini\fP
Additional location for your personal diceware configuration. Values set
here will override any system\-wide valid values but can be overridden by
\fI~/.diceware.ini\fP\&.
.TP
.B \fI$HOME/.config/diceware/diceware.ini\fP
Alternative location for diceware configuration, only used if
\fI${XDG_CONFIG_HOME}\fP is empty or unset.
.TP
.B \fI/etc/xdg/diceware/diceware.ini\fP
If \fB$XDG_CONFIG_DIRS\fP is not set or empty, we look here for a system\-wide
configuration file. Values set here take least precedence.
.UNINDENT
.SS WORDLIST FILES AND WORDLIST DIRECTORIES:
.sp
\fBdiceware\fP comes with a set of wordlists but enables you to add new wordlists
by putting them into certain directories. The paths where the lists are stored
(including the built\-in ones) is shown using \fB\-\-show\-wordlist\-dirs\fP\&.
.sp
Wordlist files are expected to contain lines with one term on each
line and they must have a certain filenames to be found.
.sp
Wordlist filenames have to follow the pattern: \fBwordlist_.txt\fP
where \fB\fP can be any name consisting of letters, numbers, underscores and
hyphens. For instance \fBwordlist_en_eff.txt\fP is the filename of the EFF
(electronic frontier foundation) word list. \fBen_eff\fP is the name of this list.
.sp
We support \fB\&.txt\fP and \fB\&.asc\fP as filename extensions for wordlists, where
\fB\&.txt\fP files are expected to be plain wordlists and \fB\&.asc\fP files should
provide a PGP\-signature.
.sp
If wordlists with the same name are found in different directories then the one
in the directory with the highest precedence is taken only. The following
locations are ordered by precedence (highest first). Therefore built\-in
wordlists cannot be overridden by custom wordlists. You can, however, use
custom wordlists with a different name.
.sp
Directories we look up that do not exist (in part or completely) are silently
skipped when searching for wordlist files.
.INDENT 0.0
.TP
.B \fI/wordlists/\fP
The directory containing the built\-in wordlists as part of the
installation. These are the wordlists that are always available, regardless
of configuration values and their exact location depends on the
installation location of the \fBdiceware\fP package.
.TP
.B \fI$XDG_DATA_HOME/diceware/\fP
If $XDG_DATA_HOME is set and not empty, we look in this directory for
wordlists.
.TP
.B \fI$HOME/.local/share/diceware/\fP
If $XDG_DATA_HOME is unset or empty, we look into this directory for
wordlists.
.TP
.B \fI/diceware\fP from \fI$XDG_DATA_DIRS\fP
If $XDG_DATA_DIR is set and not empty, it is interpreted as a
colon\-separated list of directories with \fI/diceware\fP appended. So,
\fI/foo/bar:/baz\fP will make us look into \fI/foo/bar/diceware/\fP and
\fI/baz/diceware/\fP in that order.
.TP
.B \fI/usr/local/share/diceware/\fP, \fI/usr/share/diceware\fP
If $XDG_DATA_DIRS is unset or empty, we look into these two directories for
wordlists.
.UNINDENT
.SH EXAMPLES
.INDENT 0.0
.TP
.B \fBdiceware\fP
Create a passphrase using defaults. Outputs something like
\(dq\fBWheelDyeHonkCanvasWitsPuck\fP\(dq
.TP
.B \fBdiceware \-d\fP \fI\(dq\-\(dq\fP \fB\-n\fP \fI3\fP
Create a passphrase with three words, separated by dash (\(dq\fI\-\fP\(dq). Results in
something like \(dq\fBWheel\-Dye\-Honk\fP\(dq
.TP
.B \fBdiceware \-\-no\-caps\fP
Create a passphrase without capital words. Creates something like
\(dq\fBwheel\-dye\-honk\fP\(dq.
.TP
.B \fBdiceware \-r\fP \fIrealdice\fP
Use real dice to create a passphrase. The program will tell you what to do
(roll dice and tell what numbers appear) and in the end present a
passphrase.
.TP
.B \fBdiceware \-r\fP \fIrealdice\fP \fB\-\-dice\-sides\fP \fI20\fP
Use real dice, as shown above, but this time use dice with 20 faces,
instead of standard, 6\-sided dice.
.TP
.B \fBdiceware mywordlist.txt\fP
Create a passphrase with words from file \(dqmywordlist.txt\(dq. The file should
contain one word on each line.
.TP
.B \fBdiceware \-w en_securedrop \-s 2\fP
Create a passphrase with two special chars spread over the generated
passphrase and containing words from wordlist \(dq\fBen_securedrop\fP\(dq. This is
one of the wordlists that come included with \fIdiceware\fP\&. Creates something
like:
\(dq\fBPlayaBrigVer{SeesNe\-tsGets\fP\(dq.
.TP
.B \fBdiceware \-w en_adjectives en_nouns \-n 2\fP
Create two syntactically meaningful phrases, each one consisting of an
adjective and a noun. Results in something like:
\(dq\fBCruelAttendeesCleanCoffee\fP\(dq.
.UNINDENT
.SH COPYRIGHT
.sp
Copyright (C) 2015\-2024 Uli Fouquet and contributors
.sp
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
.sp
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
.sp
You should have received a copy of the GNU General Public License along with
this program. If not, see < >.
.sp
diceware is a concept invented by Arnold G. Reinhold, Cambridge, Massachusetts
USA.
.sp
The Securedrop wordlist (file \fBwordlists/wordlist_en_securedrop.asc\fP) by
Heartsucker is licensed under the \fIMIT\fP license (see ).
.sp
The EFF wordlist (file \fBwordlsts/wordlist_en_eff.txt\fP) is licensed by the
Electronic Frontier Foundation under the \fICreative Commons CC\-BY 3.0 US\fP
license (see ).
.sp
The copyright for the the \fIDiceware SecureDrop\fP list is owned by \fI@heartsucker\fP\&.
Copyright for the \fIEFF large\fP list by \fIJoseph Bonneau\fP and \fIEFF\fP\&. Copyright for
the brazilian portuguese list by \fI@drebs\fP\&. Copyright for the english adjective
and noun lists by \fINaturalLanguagePasswords\fP\&.
.sp
\(dqDiceware\(dq is a trademark of Arnold G Reinhold, used with permission.
.SH AUTHOR
Written by Uli Fouquet and contributors
.\" Generated by docutils manpage writer.
.
diceware-1.0.1/diceware/ 0000775 0000000 0000000 00000000000 14732404111 0015054 5 ustar 00root root 0000000 0000000 diceware-1.0.1/diceware/__about__.py 0000664 0000000 0000000 00000000320 14732404111 0017327 0 ustar 00root root 0000000 0000000 version = "1.0.1"
random_sources = {
'system': 'diceware.random_sources:SystemRandomSource',
'realdice': 'diceware.random_sources:RealDiceRandomSource',
# add more sources of randomness here...
}
diceware-1.0.1/diceware/__init__.py 0000664 0000000 0000000 00000021074 14732404111 0017171 0 ustar 00root root 0000000 0000000 # diceware -- passphrases to remember
# Copyright (C) 2015-2022 Uli Fouquet
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
"""diceware -- rememberable passphrases
"""
import argparse
import sys
import logging
from errno import ENOENT
from random import SystemRandom
from .__about__ import version as __version__
from diceware.config import get_config_dict
from diceware.logger import configure
from diceware.wordlist import (
WordList, get_wordlist_path, get_wordlist_dirs, get_wordlist_names,
)
#: Special chars inserted on demand
SPECIAL_CHARS = r"~!#$%^&*()-=+[]\{}:;" + r'"' + r"'<>?/0123456789"
GPL_TEXT = (
"""
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
"""
)
def print_version():
"""Output current version and other infos.
"""
print("diceware %s" % __version__)
print("Copyright (C) 2015-2024 Uli Fouquet")
print("diceware is based on suggestions of Arnold G. Reinhold.")
print("See http://diceware.com for details.")
print("'Diceware' is a trademark of Arnold G Reinhold,"
" used with permission")
print(GPL_TEXT)
def print_wordlist_dirs():
"""Output all dirs we look up for wordlists.
"""
for entry in get_wordlist_dirs():
print(entry)
def get_random_sources():
"""Get a dictionary of all entry points called diceware_random_source.
Returns a dictionary with names mapped to callables registered as
`entry_point`s for the ``diceware_randomsource`` group.
Callables should accept `options` when called and return something
that provides a `choice(sequence)` method that works like the
respective method in the standard Python lib `random` module.
"""
from .__about__ import random_sources
result = dict()
for name, spec in random_sources.items():
module, func = spec.split(":")
module = __import__(module, fromlist=['__name__'], level=0)
try:
func = getattr(module, func)
except AttributeError as exc:
raise ImportError(str(exc))
result[name] = func
return result
def handle_options(args):
"""Handle commandline options.
"""
plugins = get_random_sources()
rnd_sources = plugins.keys()
wordlist_names = get_wordlist_names()
defaults = get_config_dict()
parser = argparse.ArgumentParser(
description="Create a passphrase",
epilog="Use --show-wordlist-dirs to list directories where you can store custom wordlists."
)
parser.add_argument(
'-n', '--num', default=6, type=int,
help='number of words to concatenate. Default: 6')
cap_group = parser.add_mutually_exclusive_group()
cap_group.add_argument(
'-c', '--caps', action='store_true',
help='Capitalize words. This is the default.')
cap_group.add_argument(
'--no-caps', action='store_false', dest='caps',
help='Turn off capitalization.')
parser.add_argument(
'-s', '--specials', default=0, type=int, metavar='NUM',
help="Insert NUM special chars into generated word.")
parser.add_argument(
'-d', '--delimiter', default='',
help="Separate words by DELIMITER. Empty string by default.")
parser.add_argument(
'-r', '--randomsource', default='system', choices=rnd_sources,
metavar="SOURCE",
help=(
"Get randomness from this source. Possible values: `%s'. "
"Default: system" % "', `".join(sorted(rnd_sources))))
parser.add_argument(
'-w', '--wordlist', default=['en_eff'], choices=wordlist_names,
metavar="NAME", nargs='*',
help=(
"Use words from this wordlist. Possible values: `%s'. "
"Wordlists are stored in the folders displayed below. "
"Default: en_eff" % "', `".join(wordlist_names)))
realdice_group = parser.add_argument_group(
"Arguments related to `realdice' randomsource",
)
realdice_group.add_argument(
'--dice-sides', default=6, type=int, metavar="N",
help='Number of sides of dice. Default: 6'
)
parser.add_argument(
'infile', nargs='?', metavar='INFILE', default=None,
help="Input wordlist. `-' will read from stdin.",
)
parser.add_argument(
'-v', '--verbose', action='count',
help='Be verbose. Use several times for increased verbosity.')
parser.add_argument(
'--version', action='store_true',
help='Output version information and exit.',
)
parser.add_argument(
'--show-wordlist-dirs', action='store_true',
help='Output directories we look up to find wordlists and exit.',
)
for plugin in plugins.values():
if hasattr(plugin, "update_argparser"):
parser = plugin.update_argparser(parser)
parser.set_defaults(**defaults)
args = parser.parse_args(args)
return args
def insert_special_char(word, specials=SPECIAL_CHARS, rnd=None):
"""Insert a char out of `specials` into `word`.
`rnd`, if passed in, will be used as a (pseudo) random number
generator. We use `.choice()` only.
Returns the modified word.
"""
if rnd is None:
rnd = SystemRandom()
char_list = list(word)
char_list[rnd.choice(range(len(char_list)))] = rnd.choice(specials)
return ''.join(char_list)
def get_passphrase(options=None):
"""Get a diceware passphrase.
`options` is a set of arguments as provided by
`argparse.OptionParser.parse_args()`.
The passphrase returned will contain `options.num` words delimited by
`options.delimiter` and `options.specials` special chars.
For the passphrase generation we will use the random source
registered under the name `options.randomsource` (something like
"system" or "dice").
If `options.caps` is ``True``, all words will be caps.
If `options.infile`, a file descriptor, is given, it will be used
instead of a 'built-in' wordlist. `options.infile` must be open for
reading.
"""
if options is None:
options = handle_options(args=[])
rnd_source = get_random_sources()[options.randomsource]
rnd = rnd_source(options)
words = []
paths = [options.infile]
if paths == [None]:
paths = [get_wordlist_path(x) for x in options.wordlist]
wordlists = [list(WordList(path)) for path in paths]
for x_ in range(options.num):
for wordlist in wordlists:
words.append(rnd.choice(wordlist))
if options.caps:
words = [x.capitalize() for x in words]
result = options.delimiter.join(words)
for _ in range(options.specials):
result = insert_special_char(result, rnd=rnd)
return result
def main(args=None):
"""Main programme.
Called when `diceware` script is called.
`args` is a list of command line arguments to process. If no such
args are given, we use `sys.argv`.
"""
if args is None:
args = sys.argv[1:]
options = handle_options(args)
configure(options.verbose)
if options.version:
print_version()
raise SystemExit(0)
elif options.show_wordlist_dirs:
print_wordlist_dirs()
raise SystemExit(0)
try:
print(get_passphrase(options))
except (OSError, IOError) as infile_error:
if getattr(infile_error, 'errno', 0) == ENOENT:
logging.getLogger('ulif.diceware').error(
"The file '%s' does not exist." % infile_error.filename)
raise SystemExit(1)
else:
raise
diceware-1.0.1/diceware/__main__.py 0000664 0000000 0000000 00000000135 14732404111 0017145 0 ustar 00root root 0000000 0000000 from diceware import main
def run():
if __name__ == '__main__':
main()
run()
diceware-1.0.1/diceware/config.py 0000664 0000000 0000000 00000010147 14732404111 0016676 0 ustar 00root root 0000000 0000000 # diceware -- passphrases to remember
# Copyright (C) 2015-2024 Uli Fouquet
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
"""config -- diceware configuration
`diceware` is configurable via commandline, configuration files and
direct API calls.
"""
import os
import re
from configparser import ConfigParser as SafeParser
OPTIONS_DEFAULTS = dict(
num=6,
caps=True,
specials=0,
delimiter="",
randomsource="system",
verbose=0,
wordlist=["en_eff"],
dice_sides=6,
)
#: valid wordlist names
RE_WLIST_NAME = re.compile(r'(?![\w\-]+).')
def valid_locations():
"""The list of valid paths we look up for config files.
We search for config files in the following locations (in that order):
1a) dirs in colon-separated var $XDG_CONFIG_DIRS
1b) /etc/xdg/diceware/diceware.ini # if $XDG_CONFIG_DIRS is undefined
2a) $XDG_CONFIG_HOME/diceware/diceware.ini # if $XDG_CONFIG_HOME is defined
2b) $HOME/.config/diceware/diceware.ini # if $HOME is defined but not $XDG_CONFIG_HOME
Finally we look also for:
3) ~/.diceware.ini
Later read configs override prior ones. Therefore an existing
`~/.diceware.ini` contains values that cannot be overridden, except on
commandline.
"""
result = []
user_home = os.path.expanduser("~")
if user_home != "~":
result.append(os.path.join(user_home, ".diceware.ini"))
xdg_dirs = os.getenv("XDG_CONFIG_DIRS", os.path.normcase("/etc/xdg"))
if os.getenv("XDG_CONFIG_HOME") or os.getenv("HOME"):
xdg_dirs = (
os.getenv("XDG_CONFIG_HOME", os.path.join(os.getenv("HOME", ""), ".config"))
+ ":"
+ xdg_dirs
)
result.extend(
[os.path.join(x, "diceware", "diceware.ini") for x in xdg_dirs.split(":")]
)
result.reverse()
return result
def get_configparser(path_list=None):
"""Parse `path_list` for config values.
If no list is given we use `valid_locations()`.
Return a list of paths read and a config parser instance.
"""
if path_list is None:
path_list = valid_locations()
parser = SafeParser()
found = parser.read(path_list)
return found, parser
def string_to_wlist_list(text):
"""Split string into list of valid wordlist names.
"""
return [name for name in re.split(RE_WLIST_NAME, text) if name != ""]
def get_config_dict(
path_list=None, defaults_dict=OPTIONS_DEFAULTS, section="diceware"):
"""Get config values found in files from `path_list`.
Read files in `path_list` config files and return option values from
section `section` as regular dictionary.
We only accept values for which a default exists in
`defaults_dict`. If `defaults_dict` is ``None`` we use
``OPTIONS_DEFAULTS``.
Values are interpolated to have same value type as same-named values
from `defaults_dict` if they are integers or boolean.
String/text values are stripped from preceding/trailing quotes
(single and double).
"""
result = dict(defaults_dict)
found, parser = get_configparser(path_list)
for key, val in defaults_dict.items():
if not parser.has_option(section, key):
continue
if isinstance(val, bool):
result[key] = parser.getboolean(section, key)
elif isinstance(val, int):
result[key] = parser.getint(section, key)
elif key == "wordlist":
result[key] = string_to_wlist_list(parser.get(section, key))
else:
result[key] = parser.get(section, key).strip("\"'")
return result
diceware-1.0.1/diceware/logger.py 0000664 0000000 0000000 00000003521 14732404111 0016706 0 ustar 00root root 0000000 0000000 # diceware -- passphrases to remember
# Copyright (C) 2016-2019 Uli Fouquet and contributors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
"""logging -- output status and other data.
The `logger` provided in this module is meant to be used by other
components for messages to users.
It is named `"ulif.openoffice"` and can, as a singleton, be retrieved by
calling standard lib `logging.getLogger("ulif.diceware")`.
By default it provides a `logging.NullHandler` as libraries normally
do. Other components might add other handlers.
"""
import logging
#: Logger that can be used for all diceware related messages.
logger = logging.getLogger("ulif.diceware")
logger.addHandler(logging.NullHandler())
def configure(verbosity=None):
"""Configure global diceware logger.
`verbosity` sets the diceware logger verbosity. ``0`` enables info
mode, while all numbers > 2 enable debug mode.
If no `verbosity` is given, we leave the logging level untouched.
"""
if verbosity is None:
return
logger.setLevel(logging.ERROR)
if verbosity == 1:
logger.setLevel(logging.INFO)
elif verbosity > 1:
logger.setLevel(logging.DEBUG)
logger.addHandler(logging.StreamHandler())
logger.debug("Verbose logging enabled")
diceware-1.0.1/diceware/random_sources.py 0000664 0000000 0000000 00000016241 14732404111 0020455 0 ustar 00root root 0000000 0000000 # diceware -- passphrases to remember
# Copyright (C) 2015-2017 Uli Fouquet and contributors.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
"""Sources of randomness.
Please register all sources as entry point in ``__about__.py``. Look out for
"SystemRandomSource" for an example.
For developers of interfaces to other sources of randomness: Currently,
you can extend `diceware` random sources by registering a class, that
provides a suitable `__init__(self, options)` and a `choice(self,
sequence)` method. Optionally, you can also provide a `classmethod`
called ``update_arparse`` that will get the possibility to update the
`argparser.ArgumentParser` used by `diceware`.
The `__init__` method of your class will be called with `options`, a set
of options as parsed from the commandline. The initialization code can
use the options to determine further actions or ignore it. The
`__init__` method is also the right place to ask users for one-time
infos you need. This includes infos like the number of sides of a dice,
an API key for random.org or other infos that should not change between
generating different words (but might change from one `diceware` call
to the next).
The `choice` method then, will get a sequence of chars, strings, or
numbers and should pick one of them based on the source of randomness
intended to be utilized by your code. If further user interaction is
required, `choice` might also ask users for input or similar. Typically,
`choice` is called once for each word and once for each special char to
generate.
If you want to manage own commandline options with your plugin, you can
implement a `classmethod` called ``update_argparser(parser)`` which gets
an `argparse.ArgumentParser` instance as argument (no pun intended).
Finally, to register the source, add some stanza in `__about__.py`
that looks like::
# ...
random_sources' = {
# ...
'myrandom': 'mypkg.mymodule:MyRandomSource',
'myothersrc': 'mypkg.mymodule:MyOtherSource',
}
# ...
Here the `myrandom` and `myothersrc` lines register random sources that
(if installed) `diceware` will find on startup and offer to users under
the name given. In the described case, users could do for instance::
diceware -r myrandom
and the random source defined in the given class would be used for
generating a passphrase.
"""
import math
import sys
import re
from random import SystemRandom
input_func = input
if sys.version[0] < "3":
input_func = raw_input # NOQA: F821 # defined in python 2 only.
class SystemRandomSource(object):
"""A Random Source utilizing the standard Python `SystemRandom` call.
As time of writing, SystemRandom makes use of ``/dev/urandom`` to get
fairly useable random numbers.
This source is registered as entry_point in setup.py under the name
'system' in the ``diceware_random_sources`` group.
The constructor will be called with options at beginning of a
programme run if the user has chosen the respective source of
random.
The SystemRandomSource is the default source.
"""
def __init__(self, options):
self.options = options
self.rnd = SystemRandom()
def choice(self, sequence):
"""Pick one item out of `sequence`.
The `sequence` will normally be a sequence of strings
(wordlist), special chars, or numbers.
Sequences can be (at least) lists, tuples and other types that
have a `len`. Generators do not have to be supported (and are
in fact not supported by this source).
This method should return one item of the `sequence` picked based on
the underlying source of randomness.
In the long run, the choice should return each `sequence` item
(i.e.: no items should be 'unreachable').
It should also cope with any length > 0 of `sequence` and not
break if a sequence is "too short" or "too long". Empty
sequences, however, might raise exceptions.
"""
return self.rnd.choice(sequence)
class RealDiceRandomSource(object):
"""A source of randomness working with real dice.
"""
def __init__(self, options):
self.options = options
self.dice_sides = 6
if options is not None:
self.dice_sides = getattr(options, 'dice_sides', 6)
def pre_check(self, num_rolls, sequence):
"""Checks performed before picking an item of a sequence.
We make sure that `num_rolls`, the number of rolls, is in an
acceptable range and issue an hint about the procedure.
"""
if num_rolls == 0:
raise ValueError
if (self.dice_sides ** num_rolls) < len(sequence):
print(
"Warning: entropy is reduced! Using only first %s of %s "
"words/items of your wordlist." % (
self.dice_sides ** num_rolls, len(sequence)
)
)
print(
"Please roll %s dice (or a single dice %s times)." % (
num_rolls, num_rolls))
return
def get_num_rolls(self, seq_len):
"""Compute how many dice rolls we need to pick a value from a sequence
"""
num_rolls = int(math.log(seq_len, self.dice_sides))
if num_rolls < 1:
# If this happens, there are less values in the sequence to
# choose from than there are dice sides.
num_rolls = 1
return num_rolls
def choice(self, sequence):
"""Pick one item out of `sequence`.
"""
if len(sequence) == 1:
return sequence[0] # no need to roll dice.
num_rolls = self.get_num_rolls(len(sequence))
self.pre_check(num_rolls, sequence)
repeat = True
while repeat:
result = 0
for i, rolled in self.__get_rolls(num_rolls):
result += ((self.dice_sides ** (i - 1)) * (int(rolled) - 1))
if result < len(sequence):
repeat = False
else:
print("Value out of range. Please roll dice again.")
return sequence[result]
def __get_rolls(self, num_rolls):
"""Ask the user for all dice results at once
"""
rolls = []
valid_rolls = [str(x) for x in range(1, self.dice_sides + 1)]
while len(rolls) != num_rolls or not set(rolls).issubset(valid_rolls):
rolls = re.split(r'\D+', input_func(
"Enter your %d dice results, separated by non-digits: "
% num_rolls))
# remove leading/trailing Nones
rolls = list(filter(None, rolls))
return [(num_rolls - i, roll) for i, roll in enumerate(rolls)]
diceware-1.0.1/diceware/wordlist.py 0000664 0000000 0000000 00000016251 14732404111 0017302 0 ustar 00root root 0000000 0000000 # diceware -- passphrases to remember
# Copyright (C) 2015-2017 Uli Fouquet and contributors.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
"""wordlist.py -- special handling of wordlists.
"""
import os
import re
import sys
import tempfile
#: Maximum in-memory file size in bytes (20 MB).
#:
#: This value is used when creating temporary files replacing
#: unseekable input streams. If an input file is larger, we write to
#: disk.
MAX_IN_MEM_SIZE = 20 * 1024 * 1024
#: A regular expression matching allowed wordlist names. We
#: allow names that cannot easily mess up filesystems.
RE_WORDLIST_NAME = re.compile(r'^[\w-]+$')
#: A regular expression matching numbered entries in wordlists.
RE_NUMBERED_WORDLIST_ENTRY = re.compile(r'^[0-9]+(\-[0-9]+)*\s+([^\s]+)$')
#: A regular expression describing valid wordlist file names.
RE_VALID_WORDLIST_FILENAME = re.compile(
r'^wordlist_([\w-]+)\.[\w][\w\.]+[\w]+$')
def get_wordlist_dirs():
"""Get the directories in which wordlists can be stored.
We look into the following dirs (in that order):
(1) Local `wordlists` dir (part of install)
(2a) ${XDG_DATA_HOME}/diceware/ (if $XDG_DATA_HOME is defined)
(2b) ${HOME}/.local/share/diceware/ (else)
if ${XDG_DATA_DIRS} is defined
(3a) `/diceware/` for each in ${XDG_DATA_DIRS}
else
(3b) /usr/local/share/diceware/, /usr/share/diceware/
"""
xdg_data_dirs = os.getenv("XDG_DATA_DIRS")
if not xdg_data_dirs: # unset or empty string
xdg_data_dirs = "/usr/local/share:/usr/share"
user_home = os.path.expanduser("~")
xdg_data_home = os.getenv("XDG_DATA_HOME", "")
if (xdg_data_home == "") and (user_home != "~"):
xdg_data_home = os.path.join(user_home, ".local", "share")
if xdg_data_home:
xdg_data_dirs = "%s:%s" % (xdg_data_home, xdg_data_dirs)
local_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), "wordlists"))
result = [local_dir] + list(
[
os.path.join(os.path.abspath(path), "diceware")
for path in xdg_data_dirs.split(":")
]
)
return result
def get_wordlists_dir():
"""Get the directory in which word lists are stored.
"""
return os.path.abspath(
os.path.join(os.path.dirname(__file__), 'wordlists'))
def get_wordlist_names():
"""Get a all names of wordlists stored locally.
"""
result = []
# wordlists_dir = get_wordlists_dir()
for wordlists_dir in get_wordlist_dirs():
if not os.path.isdir(wordlists_dir):
continue
filenames = os.listdir(wordlists_dir)
for filename in filenames:
if not os.path.isfile(os.path.join(wordlists_dir, filename)):
continue
match = RE_VALID_WORDLIST_FILENAME.match(filename)
if not match:
continue
result.append(match.groups()[0])
return sorted(result)
def get_wordlist_path(name):
"""Get path to a wordlist file for a wordlist named `name`.
The `name` string must not contain special chars beside ``-``,
``_``, regular chars ``A-Z`` (upper or lower case) or
numbers. Invalid names raise a ValueError.
If a path with the given name (names are not filenames here) does
not exist, `None` is returned.
"""
if not RE_WORDLIST_NAME.match(name):
raise ValueError("Not a valid wordlist name: %s" % name)
for wordlists_dir in get_wordlist_dirs():
if not os.path.isdir(wordlists_dir):
continue
for filename in os.listdir(wordlists_dir):
if not os.path.isfile(os.path.join(wordlists_dir, filename)):
continue
match = RE_VALID_WORDLIST_FILENAME.match(filename)
if match and match.groups()[0] == name:
return os.path.join(wordlists_dir, filename)
class WordList(object):
"""A word list contains words for building passphrases.
`path` is the path of the wordlist file. With single dash (``-``) as path,
we read from `sys.stdin`.
In case input comes from stdin, we write the input stream into a file if
the content length is larger than `MAX_IN_MEM_SIZE`. Otherwise, the
wordlist is kept in memory.
Wordlist files are expected to contain words, one word per line. Empty
lines are ignored, also whitespaces before or trailing a line are
stripped. If a "word" contains inner whitespaces, then these are
preserved.
The input file can be a signed wordlist. Signed wordlists are expected to
be ordinary lists of words but with ASCII armored signatures (as described
in RFC 4880).
In case of signed wordlists the signature headers/footers are stripped and
the contained list of words is read.
WordList are generators. That means, that you can retrieve the words of a
wordlist by iterating over an instance of `WordList`.
"""
def __init__(self, path):
self.path = path
self.fd = None
if self.path == "-":
self.fd = tempfile.SpooledTemporaryFile(
max_size=MAX_IN_MEM_SIZE, mode="w+")
self.fd.write(sys.stdin.read())
self.fd.seek(0)
else:
self.fd = open(self.path, "r")
self.signed = self.is_signed()
def __del__(self):
if self.path != "-" and self.fd is not None:
self.fd.close()
def __iter__(self):
self.fd.seek(0)
if self.signed:
while self.fd.readline().strip():
# wait for first empty line
pass
for line in self.fd:
line = self.refine_entry(line)
if not line:
continue
elif self.signed and line == '-----BEGIN PGP SIGNATURE-----':
break
yield line
def is_signed(self):
"""check, whether this file is cryptographically signed.
This operation is expensive and resets the file descriptor to
the beginning of file.
"""
self.fd.seek(0)
line1 = self.fd.readline()
self.fd.seek(0)
if line1.rstrip() == "-----BEGIN PGP SIGNED MESSAGE-----":
return True
return False
def refine_entry(self, entry):
"""Apply modifications to form a proper wordlist entry.
Refining means: strip() `entry` remove escape-dashes (if this is
a signed wordlist) and extract the term if it is preceded by
numbers.
"""
if self.signed and entry.startswith('- '):
entry = entry[2:]
entry = entry.strip()
match = RE_NUMBERED_WORDLIST_ENTRY.match(entry)
if match:
entry = match.groups()[1]
return entry
diceware-1.0.1/diceware/wordlists/ 0000775 0000000 0000000 00000000000 14732404111 0017106 5 ustar 00root root 0000000 0000000 diceware-1.0.1/diceware/wordlists/wordlist_ca.txt 0000664 0000000 0000000 00000146077 14732404111 0022200 0 ustar 00root root 0000000 0000000 aaron
abarca
abarta
abasts
abata
abatem
abatia
abatible
abatis
abats
abcissa
abdon
abeuro
abili
ableno
aboco
aboiam
aboiau
aboio
abolia
abonen
aboneu
abonim
abono
abriac
abrian
abriat
abrigo
abrivo
abrogo
absis
abstreu
abura
abusen
acabar
acabau
acabo
acaceu
acaia
acalam
acalen
acalin
acampo
acanau
acapto
acareu
acarin
acaten
acato
accessos
acereu
aceris
acers
aciden
acidis
acils
acimam
acimau
acimem
acimo
aclamo
acloto
acmes
acmita
acnes
acoblo
acopam
acopen
acopis
acopo
acords
acorin
acoro
acosts
acotem
acotin
acoto
acots
acotxo
acta
actes
actius
activo
actuem
actueu
actuo
actuu
acubau
acubeu
acubis
acubo
acudiu
aculam
aculen
aculis
acullo
aculo
acumular
acurto
acuseu
acuso
acuts
adagio
adagis
adeia
adeim
adeis
adeixo
adepta
adequo
adern
adesc
adiats
adiau
adida
adides
adiem
adieu
adiga
adii
adim
adint
adio
adiran
adirem
adires
adireu
adita
adites
adits
adius
adixes
adjuro
adlert
admeta
admets
admiro
adnata
adobeu
adobis
adobo
adobs
adolf
adollo
adonam
adonis
adono
adorau
adoreu
adoris
adormo
adorno
adorns
adoro
adosso
adrets
adulam
adulau
adulf
adulin
adulo
adults
adunam
adunen
aduneu
adunis
aduno
adusts
advenc
advens
aedes
aeris
afaeno
afamo
afanau
afanis
afanys
afegia
afelis
afers
afilem
afilen
afilio
afilo
afineu
afino
afins
afirmo
afixam
afixen
afixeu
afixin
afloro
afogau
afogo
afoneu
afonin
afono
aforo
afraus
afta
aftes
afuau
afuem
afuen
afueu
afuo
afusam
afusen
afuseu
afuso
afusts
afuu
agabi
agaci
agafau
agafem
agafen
agama
agames
agape
agell
agenda
ageu
agfa
agileu
agitau
agito
aglifa
aglifs
agnada
agnoms
agrego
agria
agrici
agrida
agries
agriu
agrons
agrors
aguam
aguats
aguau
aguava
aguiso
aguo
agusau
aguseu
agusin
aguso
aguts
ahinau
ahinem
ahinen
ahineu
ahino
ahir
ahuco
ahucs
aiac
aiats
aicard
aidam
aidant
aidats
aidau
aidem
aiden
aideu
aidin
aidis
aido
aiet
aimat
aimia
aimies
aina
aiora
aires
airina
aitals
aiter
aixac
aixecs
aixes
aixols
ajaceu
ajacin
ajaga
ajaiem
ajaus
ajec
ajega
ajeia
ajeien
ajeim
ajeis
ajeuen
ajeus
ajocau
ajoco
ajovau
ajoven
ajovin
ajovis
ajovo
ajudau
ajudem
ajudin
ajudo
ajupa
ajupes
ajupia
ajupiu
ajupo
ajups
ajusts
ajuts
alabal
alabau
alabem
alabeu
alabis
alabo
alada
alades
alaga
alamir
alana
alans
alant
alaran
alarem
alaren
alareu
alaria
alarmo
alars
alart
alats
alaves
albana
albany
albeca
albeny
albera
albern
albesa
albet
albeu
albins
albiol
albiu
albs
alcans
alcea
alcees
alcem
alcen
alceu
alcin
aldoi
aldols
aldufs
alecua
aledo
alegem
alegeu
aleig
alejau
alejo
alenem
aleneu
aleno
alens
aleres
alern
alers
aleta
aletes
aleuta
alfara
alfes
alfeu
algama
algues
alhora
aliada
aliam
aliana
aliant
aliany
aliau
aliava
aliem
alieno
aliers
alieu
alii
alins
alio
alipi
aliu
allers
alleto
alloco
alls
alluno
almeda
almera
alna
alnes
alocs
aloges
aloi
aloja
alomar
alosa
aloses
alots
alous
alpens
alpina
alric
alsius
altas
alteig
alters
altesa
altet
altius
altres
altri
alts
aluart
aluda
aluig
aluja
alullo
alums
alvina
alvins
alzet
amacem
amaceu
amacis
amada
amadeu
amago
amam
amaniu
amanso
amants
amarau
amaren
amargs
amaris
amaro
amats
amava
amaven
amblam
amblem
amblen
ambleu
amblin
amblo
ambons
ambos
ameba
amelau
ameleu
amell
amem
amens
amerau
ameris
amero
ametla
ameu
amics
amiden
amidis
amido
amiell
amigo
amils
amits
ammina
amoms
amonis
amorat
amorfa
amors
amos
amotau
amoto
ampits
amplii
amprem
ampreu
ampris
ampro
amuram
amurin
amuris
amuro
anada
anals
anaps
anara
anaren
anats
anau
ancuts
andoio
andola
anecte
anells
anets
angola
anici
animin
anins
aniol
aniran
anirem
aniria
anisam
anisau
anisin
anners
anoa
anoes
anoia
anotau
anoteu
anotin
anoto
ansam
ansau
anselm
ansem
ansen
anseu
ansis
anso
antecs
antera
ants
anuals
anura
anurs
anus
anxova
anyals
anyera
anyers
anyins
anys
aombro
aonis
aorta
aortes
aosta
apamen
apamo
apanau
apanem
apanin
apano
apanyo
aparts
apasso
apatia
apegam
apego
apelfo
apetim
apetiu
apileu
apilin
apis
apitxo
aplato
aplego
apnea
apomam
apomem
aponam
aponau
aponin
apono
aporto
aposo
apreuo
apropo
aptesa
apugeu
apuig
apujo
apurau
apurem
apuren
apurin
apuro
aquea
aqueus
arada
arafat
arams
aranya
arbeca
arbona
arboro
arbram
arbrau
arbren
arbro
arcada
arcadi
arcam
arcats
arcau
arcs
ardits
ardus
areca
arecs
aregam
arego
arenem
areneu
arengs
arens
aresta
arets
arezzo
argany
argius
argons
argos
argus
aribau
ariel
arieta
ariets
arilam
arilau
arileu
arilin
arilis
arilo
arils
arisa
arles
armau
armem
armeu
arnada
arnam
arnava
arnem
arnen
arners
arnet
arneu
arnils
arnin
arnis
arnosa
arns
aromau
aromin
aromir
arpam
arpau
arpava
arpejo
arpem
arpen
arpera
arpers
arpeu
arpin
arpono
arquem
arqueu
arraso
arreo
arrieu
arrii
arrimo
arrio
arropo
arrops
arroyo
arruem
arruen
arrugo
arruo
arrupa
arrupo
arruu
arsac
arsis
artal
artega
artera
arters
arts
aruba
asafia
asceta
ascii
ascis
ascleu
asclin
asclis
asclo
ascs
ases
aseta
asilen
asilin
asilo
asils
asmats
asmes
asnar
asos
aspada
aspes
aspiem
aspieu
aspii
aspio
aspiro
aspis
asprau
asprem
aspris
asseus
assuts
astal
asters
astes
astis
astol
astos
asts
atacs
atardo
atea
atees
atenia
atenim
ateniu
atens
atenyo
atesa
ateses
ateus
atiant
atiau
atiem
atien
atieu
atii
atinc
atio
atipeu
atipis
atiplo
atipo
atles
atorgo
atots
atraco
atraga
atrapo
atrec
atreta
atris
atupam
atupeu
atupo
aturau
aturem
aturen
atureu
aturin
aturis
aturs
atxa
atxes
atxul
auca
audet
auger
auges
augita
auguro
aulans
auler
aules
aulets
aurada
aurats
aureli
aures
auriga
aurons
ausona
avalam
avall
avals
avaluo
avareu
avarin
avaro
avars
avenen
avenga
avenia
avens
averen
avero
avesem
avesin
avets
aviau
aviava
avidam
avideu
avidis
aviem
avien
avieu
avii
avileu
avilo
avinau
avinc
avinem
avineu
avino
avisem
avisen
aviseu
avisin
avisos
avivem
aviven
aviveu
avivin
avivo
avoco
avui
axis
axons
azida
azina
azoles
azos
azots
babaua
babes
bables
babols
babot
babra
baccus
bach
bacons
bacs
bacus
badam
badau
badava
badesa
badeu
badis
badocs
bafs
bages
baget
bagolo
bagoto
bagots
bagra
bagres
baguls
baies
bailac
bailes
baina
baiona
bais
baixau
bajans
bajas
bajocs
balada
balari
balasc
balata
balbam
balbem
balben
balbeu
balbis
balbs
balcau
balcet
baldau
baldeu
balida
balien
balim
balisa
baliu
ballac
ballam
balls
balmam
balmeu
balmo
balms
balots
balous
balsac
bamba
bambes
bancam
banco
bancs
baners
bans
bantus
banyau
banyeu
banys
baralt
barats
barau
barbem
barbeu
barbs
barces
bardem
bardes
bards
baret
baria
barns
baroi
barons
barrau
barreu
bartra
baruc
barxa
barxes
basac
basals
basars
basats
bascau
bascs
basem
basen
basera
basers
baseu
basin
basis
baso
bastem
basteu
bastia
bastiu
basts
batata
bataus
batea
batecs
batet
bateu
batiem
batii
batin
batio
batle
batria
bats
batuta
batuts
bauds
baula
baules
baura
bauxa
bavada
bavam
bavant
bavats
bavau
bavem
baven
baveu
bavin
bavis
bavors
beaces
beata
beats
becam
becau
becet
becosa
becs
becuda
beda
befam
befant
befats
befau
befem
befen
befeu
befin
befis
befo
beguen
beguis
begur
beina
beines
beisa
beises
belada
belais
belam
belau
belava
belda
belen
beleu
belga
belin
bellet
belsa
benac
bensau
bentos
beocis
bequem
berard
berc
bereno
beret
berma
bermes
berry
berta
besada
besau
beseit
besem
besen
beseu
besin
besis
besos
betes
betums
beuda
beuen
beules
beuran
beurem
beures
beureu
beuria
beus
bevem
beveu
bevia
bevies
biada
bidons
biela
bielet
biern
bifet
bigals
bigues
bilis
bills
binam
binant
binem
binen
bineu
binin
biomes
biosca
biota
birbam
birbau
birben
birbin
birbo
birla
bisam
bisau
bisava
bisem
bisen
biseu
bisin
bisis
bisons
bisos
bissus
bitam
bitau
bitava
bitem
biteu
bitis
bitocs
bits
bitxes
bixa
blaia
blajot
blans
blats
blaus
blava
blaves
blecs
bledes
bleesc
blegam
blegau
blego
blenda
blens
blets
bleva
blima
blindo
bloco
blocs
blues
blufs
boada
boals
bocada
bocals
bocana
bocem
bocen
boceu
bocis
bocs
bocuda
boda
bodes
boeci
boera
boes
boets
bogals
bogau
boges
bogos
boguem
boguen
boguin
boiam
boiant
boiau
boids
boiem
boien
boiets
boieu
boigs
boina
boio
boirac
boirau
boirem
boixen
boixeu
bojors
bolcau
bolco
bolcs
bolda
boldes
boldos
boleio
boles
bollem
bolleu
bollin
bollis
bolls
bols
bombis
bonald
bonany
bonat
bondes
bondia
bonesc
bonia
bonim
bonits
boniu
bonora
bonys
bonzes
booms
borau
bordam
bordau
bordin
bords
borges
boris
borja
borlem
borleu
borlo
borms
bornau
bornem
bornen
bornis
borns
borses
boscau
bosch
botant
botau
botejo
botem
boters
boteu
botia
botien
botim
botina
botits
botiu
botono
botosa
botrem
botria
botris
botxa
botxes
bouals
bouera
bous
bovada
boves
bovet
bovina
bovins
bovors
boxam
boxats
boxau
boxejo
boxem
boxen
boxeu
boxin
boxis
boxo
braces
bracs
bramam
bramau
bramo
brams
braus
brea
brecs
breda
brees
bregam
bregau
bregma
breix
brencs
brens
breus
breva
brians
brics
briera
brills
brins
briols
brios
brisem
brisen
brisin
brisis
brivam
brivis
brivo
brocau
broco
brocs
brodau
brodem
brodin
brodis
brodo
brogia
brollo
bromem
bromeu
broms
broncs
bronzo
brotem
broteu
brotis
brots
brotxo
brous
bruac
brucs
brufau
bruma
brumo
brums
bruna
brunei
brunes
bruns
brusa
bruscs
bruts
buades
buanya
buata
buba
bubes
bucard
bucart
bucles
bucs
budes
buenos
bues
bufant
bufau
bufego
bufem
bufen
bufets
bufeu
bufin
bufis
bufits
bufort
bufs
bugada
bugats
bugia
bugies
bugius
buidem
buideu
buidis
buier
buina
buines
buireu
buits
bulbs
bulls
bultra
bums
buna
bunera
bunes
buosa
burats
burda
bureta
burgen
burgs
burins
burjam
burlam
burlau
burres
burxam
burxau
burxem
busco
buseu
busos
busts
butza
cabem
cabeu
cabien
cabina
cablam
cablau
cablen
cablin
cablis
cablo
cabots
cabran
cabuda
cacaus
cacem
cacen
cacera
caceu
cacics
cacin
cacis
cadafs
cades
cadis
cadups
cafida
cafres
cagau
cagons
caiacs
caids
caiem
caieu
caiga
cairam
caius
caixac
caixes
calant
calaus
calba
calbet
calbs
calcam
calcs
calds
calduc
calem
calens
caler
caleu
calfin
calfo
calga
calia
calics
callen
calls
calmam
calmen
calmis
calms
calons
cals
calta
caltes
calua
calut
cameig
camena
cames
cameta
camins
camuts
canals
canana
canoa
canoca
canono
canons
canots
cantem
canteu
cants
canuts
caoba
caos
capam
capant
capau
capceu
capem
capen
capets
capeu
capits
capiu
capols
capots
capsa
capses
captis
capto
cardis
cards
careis
careno
careta
carga
cariam
caribs
carieu
carii
carns
carona
carps
carram
carren
carsts
casada
casana
casau
casava
cascs
casem
caseu
casis
casors
casos
casots
caspa
caspis
cassem
cassen
cassis
casts
catena
catets
cats
catxen
catxin
catxis
catxos
cauen
caurem
causen
causeu
causin
causo
cauts
cavam
cavats
cavau
cavem
caven
caveu
cavims
cavin
cavis
cavons
ccoo
ceber
cebes
cecs
cedesc
cedia
cedies
cedim
cediu
cegons
ceguda
ceiba
celam
celant
celats
celau
celava
celem
celeu
celles
cells
celoni
celta
cenes
censau
censem
cents
cenyiu
cepada
ceps
cercau
cercs
cerera
ceris
cerna
cerno
cerns
cerots
cerra
cerros
cers
certs
cesis
cessem
cesso
cests
cesura
cetre
ciada
ciades
ciam
cians
ciant
ciaran
ciareu
ciaria
ciats
ciau
ciava
cicas
cici
ciem
cieu
cifre
cignes
cilis
cimam
cimats
cimau
cimava
cimem
cimeu
cimin
cimis
cims
cinca
cincs
cines
cinglo
cintam
cintau
cinten
cintin
cints
cirac
circs
ciril
ciris
cirus
cisam
cisau
cisava
cisem
cisen
ciseu
cisin
cisis
cisma
ciso
cists
citada
citam
citats
citau
citem
citen
citeu
citis
civeta
civit
claco
clacs
clamem
clameu
clamin
clams
clans
clapeu
claps
clarac
clarer
clares
clars
clasta
clavin
cleca
cleda
clepsa
clerc
cleta
cletes
cletxa
clics
climes
clins
clipis
clips
clisis
clisso
cloca
cloem
cloeu
clofa
cloga
cloig
clonem
clonen
clonis
clono
clons
clops
clorau
clorem
cloreu
clorin
cloris
clors
closa
clotem
clotin
clots
clouen
clous
clova
cloves
clua
clubs
clucs
cluet
clusa
cnidis
coala
coales
coapto
cobeig
cobrem
cobriu
cobros
coces
cocos
cocous
cocs
coderc
codes
coem
coers
coes
coets
coeu
cofam
cofau
cofava
cofem
cofen
cofeu
coga
coguen
cogueu
coguis
coguts
cois
coits
coixa
colada
colant
colau
colcam
colcau
colco
colent
colera
colers
coleta
coleu
colgo
colia
collam
collau
collen
colleu
collia
collim
coloro
colps
colrem
colreu
colris
colro
cols
colta
colts
colzen
colzeu
colzo
comals
comano
comats
comau
comava
comem
cometo
comets
comeu
comuns
concos
concs
condia
condiu
conec
conesa
confii
confio
conga
conram
conren
conteu
conus
conxam
conxis
conys
cook
copam
copats
copau
copava
copeig
copel
copem
copen
copera
copeu
copiau
copiem
copien
copieu
copii
copons
copra
copsin
copsis
copso
copta
coptes
copura
corada
corbam
corbeu
corbis
corbo
corbs
corcs
cordeu
cordis
cords
corees
corejo
corfa
coriza
corma
cormes
corms
cornau
cornin
corno
corns
cornuo
cornuu
correm
corria
corts
coses
cosia
cosida
cosim
cosiu
cosme
cossin
cossis
cossos
costau
costs
cotal
cotant
cotau
cotem
coten
cotera
cotet
coteu
cotnam
cotneu
cotnin
cotnis
cotno
cots
cotxes
cotxos
couen
coureu
couria
cous
covant
covau
covava
covem
coveu
covin
covis
coxes
cracs
craneu
crano
crans
crasis
craspa
cream
creats
creau
crebam
crebin
crebo
crecs
creem
creeu
crega
creia
creies
creim
creis
crems
creps
cresca
creuam
creuau
creueu
creuo
creus
criac
criada
criam
criant
criau
crica
crics
cridau
criden
cridis
crido
criem
crien
crieu
crii
crimea
crims
crina
crins
crisis
crispo
crits
croats
crocs
croera
crols
cromam
cromau
cromen
cromin
croms
crons
crosa
crossa
cruell
crueta
crugia
cruiam
cruiau
cruii
cruio
cruis
cruixa
cruors
crups
crusat
csif
csins
cuada
cuats
cubans
cubera
cubs
cucada
cucala
cucam
cucau
cucosa
cucs
cudols
cuegeu
cueig
cuejau
cuejo
cuera
cueres
cuers
cues
cueta
cuetes
cugat
cuguls
cuiden
cuidis
cuido
cuinam
cuinau
cuinem
cuinen
cuinis
cuino
cuiros
cuirs
cuiten
cuitin
cuits
cuixes
culam
culana
culans
culant
culau
culem
culen
culera
culers
culeu
culis
cullin
cullo
culls
culots
culpau
culpen
culpeu
culs
cumens
cunit
cunys
cuots
cupons
cups
cuqueu
curam
curats
curau
curda
curdes
curds
curem
cureta
cureu
curin
curis
cursam
cursis
curts
cusa
cusen
cuses
cusis
cussa
cutina
cutis
dabau
dacis
dades
dadors
daga
daina
daines
dakota
dallau
dallin
dalls
dames
damnam
damnin
damnis
damunt
danot
dansau
dansem
dansen
danseu
dansis
danso
danyam
danyau
danys
daran
dardau
dardis
dardo
dards
darem
daren
dares
dareu
darga
daria
darien
dasia
dassis
datam
datau
datem
daten
dateu
datin
dativa
dato
dats
datxa
dauner
daurem
daureu
daurin
dauro
daven
daves
david
dcvb
debano
debel
deceba
decils
decors
dedeu
dedico
deessa
defeco
deguem
degueu
deien
deies
deig
deim
dejoan
dejuns
delats
delcor
delcos
delego
delejo
delers
delfar
delhi
delia
deliu
delmem
delmen
delmo
delos
demesa
demors
denego
deners
denes
denses
dentam
dento
dents
deodat
depenc
derivo
dermis
derna
dernes
derogo
derris
desada
desant
desats
desbac
desdic
deseu
desfem
desfeu
desfiu
desnii
desnuo
desolo
dessin
destil
desvei
detinc
detono
detrec
deuen
deures
deureu
deuria
deutes
devem
devesa
deveu
devia
devies
dexeus
diaca
diacs
diada
dials
diana
diarca
diaris
dics
dicteu
dicto
dides
didos
diego
diem
diens
dient
diesis
dieu
diga
digens
dignem
dignen
dignin
dignis
digno
diguin
dilla
dimes
dinant
dinats
dinau
dinava
dindau
dindeu
dindin
dindis
dindo
dinem
dinen
dineu
dinin
dinis
dinous
dins
dinyem
dinyen
dinyo
dioics
diols
dipas
dipols
diputo
diran
direm
direu
diria
dirien
diries
dirla
dirs
discos
discs
distam
ditada
ditejo
dites
dits
diuder
diuen
dius
divans
dives
divins
divos
dixis
doba
dobleu
docs
doctes
dodat
dogals
dogams
dogues
dogv
doina
dois
dojo
dolada
dolam
dolau
dolava
dolem
doleu
dolga
dolia
dolien
dolis
dolla
dolls
dols
domam
domau
domem
domeu
domino
domis
domni
domo
doms
domtem
domten
domteu
domtin
domtis
domto
domus
donau
donava
doncs
donem
donen
doneu
donin
donis
dons
donyau
dopam
dopats
dopau
dopem
dopen
dopeu
dopin
dopis
dopo
dorada
dorca
doric
doris
dorma
dormia
dormo
dorms
dosam
dosau
dosem
dosen
doseu
dosin
dosis
dosos
dotam
dotats
dotau
dotem
doten
doteu
dotin
dotis
doto
dotres
dots
dotzes
dracma
dracs
dragau
drapeu
drapis
drapo
draps
drecen
dreceu
drenem
drenen
drenin
dreno
drens
drets
driblo
drils
dringo
drings
drissa
droc
dropa
dropes
drubau
druda
drusa
druts
duals
duana
duars
duart
duat
dubtam
dubten
dubtin
ducals
ducats
ducs
duels
duem
duent
duero
duets
dueu
duga
dugem
dugen
dugeu
dugin
dugis
duguin
duia
duien
duies
duig
duim
duis
duita
duits
dujam
dujant
dujau
dujo
dula
dules
dulia
dulls
duma
dumes
dunes
duos
dupla
durada
durans
durant
durau
durell
durem
duren
dureu
duria
durin
duris
duros
durs
dusai
duta
dutes
duts
dutxau
dutxen
dutxeu
dutxo
duus
duxs
ebla
ebre
ebris
ecidis
ecus
edats
edemes
edesi
edgar
edils
editam
edmond
eduard
educo
eduls
efebs
efebus
efesis
efigio
efods
efrem
egea
egees
egeus
egidi
egist
egos
ehem
einer
eines
eixalo
eixea
eixes
eixia
eixien
eixono
eixos
eixugo
eixuts
eladi
elba
elda
elegiu
elena
eles
elets
elevam
eleveu
elevin
elevis
elevo
elfs
elidia
elies
eligi
elina
eliseu
elits
ella
elles
ells
elms
elna
elois
elsa
eludim
elvira
emanin
emano
embago
embalo
embats
embec
emblau
embleu
emblin
emblo
embocs
embogo
embons
embreo
embuts
emesa
emesis
emesos
emeta
emetem
emetia
emetis
emeto
emets
emirs
emmaro
empano
emparo
empego
emprau
emprin
emprou
emulam
emulen
emuleu
emulis
emulo
enarco
encamp
encauo
encenc
encero
enceto
encovo
endalt
endego
enduc
endueu
enduia
enees
enervo
enes
enfigo
enfito
enfits
enfuig
enfuja
enjovo
enmig
ennovo
enols
enpuig
enric
enroso
ensoto
ensums
entimo
entono
entreu
envers
enveto
envido
enviem
envii
envio
envolo
enzes
eolis
eons
eosina
equina
erada
erals
erbis
erbs
eren
ereram
ererau
ererem
ereren
ererin
erero
erers
eres
ereta
erets
ergols
ergs
ericem
erill
erina
erines
ermam
ermant
ermau
ermava
ermem
ermet
ermeu
ermis
ermots
erms
erogam
erogau
erogen
erogo
erolam
erolau
eroleu
erolis
erolo
erols
errata
errau
errava
errem
erren
erreu
errin
erris
erros
erta
ertes
erts
eructo
esbats
escada
escaic
escava
escoa
escons
escosa
escric
escuo
escuts
escuu
esdres
esfumo
esmam
esmau
esmem
esmeu
esmin
esmis
esnobs
espats
espers
espert
espeus
espiem
espii
espoi
espots
espueu
espuo
esputs
espuu
esquii
esquio
essa
essent
esses
estaio
estem
estenc
esteta
esteu
estibo
estils
estimo
estiuo
estofo
estols
estrio
estris
ests
estubo
estucs
etalis
etans
etapa
etens
eterns
etilem
etilin
etilo
etils
etins
etolis
etusa
etuses
eugeni
eulogi
eunucs
eures
evacuo
evadim
evadiu
evenci
evitam
eviteu
evito
evocam
evocau
evoco
evodi
excito
excloc
exergs
exhalo
exhumo
exigiu
exilii
eximim
exina
exons
expenc
expesa
expiau
expii
expilo
expio
exsudo
extres
exulto
exvots
facem
facen
faces
faceu
facis
fadau
fadem
faden
fadeu
fadin
fadis
faena
fageca
fageda
fages
faget
faigs
faista
faixen
faja
falba
falbs
falcia
fallam
falleu
fallo
falls
falsem
falsen
falsia
falsis
faltem
falto
falua
faluga
fama
famejo
fames
fams
fangs
fans
fardes
farem
fareu
fargam
fargau
fargo
faria
faries
faroe
farola
farots
farts
fases
fasos
fasts
fatals
fatics
fatos
fats
fatus
fatxes
faula
fauna
faura
fausts
favars
favera
faves
favons
faxos
febres
fecals
federo
fedes
feia
feien
feies
feijoa
feim
feis
feixem
felera
femada
femam
femant
femats
femau
fembra
femejo
femem
femeu
femis
fems
femtem
femtis
fencs
fendiu
fenem
feneu
fenga
fenien
fenols
fens
fent
fenya
fenyem
fenyeu
fenyia
fenyo
fenys
ferejo
feren
ferim
ferina
ferint
feriu
ferla
fermem
fermo
ferms
ferrau
ferrin
fers
fesa
feses
fesos
fessis
festes
fetes
fets
fetus
feus
fiada
fiam
fiant
fiareu
fiats
fiau
fiava
fiaven
fiaves
fiblam
fiblau
fiblin
fibres
ficam
ficau
fics
ficus
fidels
fiem
fien
fieu
filats
filau
filen
filera
fileta
filets
fileu
filiem
filii
filin
filio
fillat
fills
filmau
filmem
filmen
films
filoja
fils
filtro
fimbro
finada
finats
finau
fincam
finco
fineig
finejo
finem
finen
finesc
fineta
fineu
fingia
finia
finies
finita
finiu
fins
finten
fintin
fintis
finto
fiola
fiquis
firada
firam
firau
firem
firen
fireu
firin
firis
firmem
firmen
firmeu
firmis
firmo
firo
fiscs
fissa
fitada
fitam
fitats
fitau
fitava
fitem
fiten
fitis
fitons
fits
fitxem
fitxeu
fitxin
fitxo
fius
fixada
fixau
fixem
fixen
fixeu
fixin
fixis
fixos
flacs
flamam
flamau
flamem
flameu
flamo
flams
flancs
flaona
flaps
flats
fleca
fleuma
flingo
flirto
flitem
fliten
flito
flits
flixam
flixau
flixem
flixen
flixis
flixo
flocam
floco
flocs
flors
flotau
floten
flous
floxs
fluesc
fluint
flums
focals
focea
focees
foceus
foci
focs
focus
fofa
fofes
fofos
fogam
fogars
fogau
fogueu
foguin
foiera
foios
folcs
folgau
foliem
folieu
folii
folis
follis
folls
folris
fonant
fonau
fonava
fonc
foneu
fonga
fongs
fonin
fonis
fons
fontic
fonts
fonyen
fonyeu
fonyin
fonyo
forals
forana
forans
forats
forbim
forbiu
forcen
forceu
forcin
forcs
foret
forgeu
forjau
forjo
formam
fornia
forns
forra
forts
foscs
foses
fosos
fossau
fosseu
fossin
fossis
fosso
fost
fotem
fotera
foteu
fotgem
fotgin
fotia
fotien
foties
fotjo
fotons
fotran
fotreu
fotria
fots
fotuts
fous
fracs
francs
franjo
frans
frases
fraus
frecs
fredes
freds
fregiu
frego
fremia
frenam
frenen
frenin
frens
freons
fresau
fresen
freser
freseu
freus
frigis
frisam
frisen
frisis
frou
fruits
frusts
fucus
fuels
fues
fuets
fugada
fugen
fuges
fugia
fugien
fugies
fugim
fugits
fugiu
fuig
fuita
fuites
fuja
fujo
fules
fulgia
fulgiu
fullau
fullem
fullen
fulleu
fullin
fulls
fuls
fumam
fumau
fumeig
fumejo
fumem
fument
fumeu
fumia
fumien
fumin
fumosa
fums
fundem
fundeu
fundo
funya
funyen
funyia
funyo
funys
furam
furau
furava
furem
furen
furers
fureu
furgam
furin
furiol
furis
furots
furra
furros
furs
furtem
furtin
furtis
furto
furts
fusada
fusels
fuses
fusets
fusos
fusts
futes
futris
gabam
gabats
gabau
gabem
gaben
gabeu
gabis
gades
gafes
gags
gaiata
gaies
gaigs
gais
gaita
gaixet
gajos
galard
galba
galda
gales
galgam
galgau
galgo
galls
galopo
gals
galzo
gamam
gamant
gamau
gamava
gamben
gamem
gamen
gameu
gamin
gamis
gammes
gamoia
gamois
gamons
gams
ganejo
ganer
ganes
ganga
ganta
ganuts
ganxa
ganxes
ganxos
ganyes
ganyil
gaons
garet
garfim
garfiu
garil
garlau
garolo
garres
garsam
garsau
garseu
gasada
gasal
gasam
gasau
gasava
gasca
gaseig
gasejo
gasem
gaseu
gasin
gasis
gasons
gaspam
gaspem
gaspis
gaspo
gassa
gastau
gasten
gasto
gatada
gatejo
gaters
gates
gatono
gaubem
gaubo
gaudia
gaudiu
gauss
gautxa
gaveta
gavira
gebrem
gebrin
gebris
gebro
gecs
geis
gelada
gelam
gelart
gelau
gelea
gelees
gelem
gelen
gelet
geleu
gelin
gelis
gelors
gemia
gemien
gemies
gemim
gemits
gemiu
genals
genar
geners
gens
gents
geoda
gepa
gepes
gepica
geps
gerds
gerga
germen
gerp
gerres
gerri
gerros
gespa
gesps
gestem
gesten
gesteu
gestos
gests
gets
getuli
ghana
gicada
gicam
gicats
gicau
gico
giert
gigues
gili
ginyem
ginys
giol
gipons
giquem
giquen
giqueu
girafa
girard
girau
girem
giren
gireu
girin
giris
girons
girs
giscam
gisco
gisela
gitams
gitant
gitau
gitava
gitem
giten
giteu
gitin
gitis
gito
gits
glaceu
glacin
glans
glaucs
gleis
glena
glera
gleva
glies
gloms
glops
glosin
gloso
glotes
glotis
glots
glua
gnoms
gnosis
gobert
gobis
godes
godet
godia
godori
goesa
gofau
gofrin
gofris
gofro
gogem
gogen
gogeu
gogin
goigs
gojam
gojant
gojau
gojava
goleig
golejo
goles
golfa
golfs
golls
golsa
goluts
gomara
gomats
gomera
gomes
gomets
gomis
gongs
gorbs
gorda
gords
gorgal
gorgs
gorlic
gosam
gosars
gosem
gosen
goseu
gosin
gosis
goso
gosses
goteig
gotes
gotims
gotor
gots
gotxa
gotxes
gotza
gouda
goula
grades
graduo
grafs
grams
granam
graneu
granja
grans
grapam
grapen
grapin
gratau
gratis
grato
grats
grauet
graula
gravau
gravem
gravo
grays
greals
greca
grecs
greja
grells
gresca
greuig
greus
grifam
grifeu
grifis
grifs
grimpo
grina
grips
grises
grisos
grius
griva
grocs
groga
grogs
gronsa
gronys
gropes
grops
gruam
gruant
gruau
gruem
gruen
grueu
grufam
grufo
grumam
grumis
grums
grunyo
gruo
grups
gruta
grutes
gruu
guals
guam
guanys
guapa
guapes
guaria
guasc
guaspa
gueta
guiada
guiau
guic
guiem
guien
guiers
guieu
guifre
guii
guils
guiol
guiot
guipen
guipo
guiral
guisis
guitam
guitet
guiteu
guitin
guito
guits
guitza
guixam
guixin
guixos
gules
gumia
guna
gurb
gurus
gusart
gusla
gussis
gusteu
gustin
gusts
gutis
gutxos
guyana
hacs
hadals
hades
hagem
hagen
hageu
hagin
hagis
haguts
haig
hajam
hajant
hajats
hajau
hajo
halam
halats
halau
halem
halen
haleu
halin
halis
halos
hamaca
hampa
hampes
hams
hansa
hauran
havana
havem
havers
haveu
havia
havien
havre
heard
hebe
hebrea
helis
hems
hereus
hereva
heuem
heuent
heuera
heueu
heuia
heuien
heuin
heuis
heuo
heuran
heures
heus
heuuda
hevea
hexans
hexils
hiats
hiena
hifa
hifes
higini
hilda
hindis
hissam
hissen
hisseu
hissin
hissis
hisso
homes
honoro
honors
honrem
honrin
honris
hopes
horaci
horda
hordes
hores
horrac
hortet
hostos
hosts
hotels
hubert
huelva
huit
huix
hules
hulla
humida
humits
humus
huns
hurra
iacs
iaia
iaies
iaios
iais
iarda
ibera
ibers
ibis
ibran
icacs
icona
icors
ictus
ideada
ideals
ideam
ideats
ideau
ideem
ideen
ideeu
idei
idiota
idumea
idus
iens
ignara
ignasi
ignis
ignota
ignots
igualo
iguana
ileals
ilis
illada
illes
ilota
iluro
imams
imants
imides
imina
imitau
imiten
imito
immolo
immuto
incoeu
incou
incusa
indens
inerts
inflau
inflen
infleu
infons
infosa
ingrid
inhalo
inhumo
inicio
inicis
inics
inques
inris
insans
insolo
insteu
instil
instis
insto
intina
inundo
invoco
inxa
inxes
iodada
iodam
iodau
iodem
ioden
iodeu
iodin
iodits
iods
ioga
ioles
iols
ionis
ionona
ions
iota
iotes
iots
ipso
iques
irats
ireixo
irem
ireneu
ireu
iria
irien
iries
irisam
irisau
irisem
irisin
irisis
iriso
iritis
irona
ironia
irosa
iroses
irrigo
irun
isaac
isaci
isalt
isanda
isards
isart
isaura
isbn
iscle
isern
isidre
islams
ismael
isolda
isolem
isolis
isolo
isona
iterau
itereu
iterin
itero
itris
iuans
iuca
iure
ivars
ives
ivons
ivoris
ixes
ixin
ixis
jaca
jaces
jacks
jacos
jactem
jacteu
jactis
jacto
jades
jafre
jaga
jaguen
jagueu
jaguts
jaia
jaiem
jaies
jaieu
jais
jamet
jana
janol
janus
jauen
jaumon
jaumot
jaupau
jaupeu
jaupo
jaurem
jazzs
jeeps
jega
jeguen
jegues
jeguis
jeia
jeien
jeies
jeim
jeis
jets
jeuen
jeure
jeus
joca
jocs
jodar
joia
joiera
joiers
joies
jonama
jonces
joncs
jonis
joques
jorba
jorns
josepa
jota
jotes
jous
jovals
joves
jubilo
judes
judit
judoka
judos
jueus
jueva
jugada
jugant
jugats
jugau
jugava
jugo
juguen
jugueu
juia
juies
julis
julls
jumels
juncs
juneda
junts
junyim
junys
jupa
jupes
jups
jurant
jurats
jurau
jurcau
jurco
jurem
juren
jureu
jurin
juro
justau
justen
justeu
justos
justs
juta
jutes
jutgin
jutgis
jutjo
juts
kabul
kaons
kappa
karts
kees
khans
khins
kifs
kiwis
knuts
kong
kosovo
ksins
kurda
kurdes
kurds
l'hi
l'uf
la'n
lacais
lacats
lacau
lacis
lacot
lacram
lacrin
lacris
lacro
lactau
lacten
lactis
lagena
laia
laics
lais
lames
lamic
lanau
landa
landes
lanka
lapona
lapsa
laquin
largo
lars
lassam
lassen
lasseu
lassis
lates
lats
laves
lavila
lavit
laxau
laxem
laxen
laxeu
laxin
laxis
laxos
lecr
leila
leks
lemes
lents
leobi
leone
leos
lepra
lesa
leses
lesos
leus
lexema
li'ls
li'n
liana
liasos
libada
libam
libant
libau
libem
liben
libeu
libin
libis
libori
libres
liceus
licini
licis
lidero
lidis
lieja
lierp
lila
liles
lillet
lima
limba
linus
linxis
linxo
linxs
lipoma
liquam
liquo
lires
lirona
lisis
litigo
litina
llacen
llaceu
llacis
llacs
llama
llanda
llanes
llapes
llargs
llars
llasts
llauno
lleba
llebes
llecs
llegim
llegiu
lleiem
lleim
lleis
lleixo
llejos
llema
llenca
llepin
llera
llers
llests
lleuen
lleus
llevau
llevem
lleven
lleveu
llevis
llevo
llices
lligau
llimem
llims
llins
llinya
llirga
llirs
llisos
llitam
llitau
llitem
llitis
llits
lliuro
lloam
lloant
lloau
lloava
llocs
lloem
lloen
lloeu
llofro
llogo
lloms
lloo
llopis
llops
llorac
llorba
llors
lloses
llots
llovic
lluco
llucs
llufam
llufen
llufeu
llufis
llufo
llull
llums
llunes
lluors
llurs
lluus
lobars
lobats
lobels
lobus
loess
loina
lola
lona
lones
loquis
lora
lorda
lords
lores
lotari
lots
lotus
lucana
lucia
lucil
lucram
lucren
lucreu
lucrin
lucro
luda
ludes
lues
luges
lugo
lumen
lunars
lupa
lupes
lupus
lutis
lutita
luvis
luxada
luxam
luxant
luxau
luxen
luxeu
luxin
luxis
luxs
m'hi
m'ho
macam
macant
macars
macau
macero
macers
maces
macos
macra
macs
madons
maduro
mages
magina
magins
mags
magues
mahoma
maians
maier
maies
maigs
maimir
mainal
mainar
maines
maiol
majola
majos
maldic
maldin
maleig
malejo
malesa
malfii
malfio
mallin
mallis
malls
malms
malts
mamam
mamau
mamem
mamen
mameu
mamin
mamis
mamona
mams
manaia
manant
manats
mancs
manel
manem
manera
mangra
mania
manin
manisa
manoi
mants
manxam
manxau
manxem
manxen
manxeu
maons
mapant
mapau
mapem
mapen
mapeu
mapin
mapis
mapo
maqueu
marbro
marcs
maresa
maresc
margau
maric
maries
marill
marot
marroc
marta
marts
marxem
marxo
masada
mascou
masego
masera
masgem
masies
masnou
masona
masos
matada
matau
matem
maten
maters
maties
mats
matuta
matxs
maula
mauram
maurau
mauro
mayen
me'ls
me'n
meats
mecs
medea
medes
medir
medusa
meixa
melada
melca
melera
meleta
melgar
melsa
melva
membro
menada
menam
menats
menau
menejo
menem
menen
menera
meners
meneu
menga
mengeu
mengin
mengis
mengod
menic
menjau
mentim
mentiu
ments
menuts
merda
merins
merla
merles
merola
meros
mers
mesam
mesau
mesava
mesclo
mescos
mescs
mesem
meseu
mesin
mesis
mesons
metent
metera
meteu
metgen
metgeu
metgin
metgis
metia
metils
metin
metis
metjam
metjo
metran
metria
mets
metxa
meua
meuca
meues
meus
meva
meves
mialet
miasis
micra
midam
midats
midau
midem
miden
mideu
midin
midis
midons
mies
mieta
miga
migrau
migs
milet
milis
milito
mills
miloca
mils
mimam
mimant
mimau
mimava
mimem
mimen
mimeu
mimin
mimis
mims
minam
minats
minau
minem
minen
mineu
mingos
mingot
minii
minin
minoro
minos
minvau
minvem
miolen
mioleu
miols
mioma
miops
miosis
mirada
mirau
mireia
mirem
miren
miret
mireu
miriam
miroia
mirosa
mirram
mirrin
mirris
mirro
misses
mites
mitils
mitjos
mitres
miula
miules
mixa
mixes
mixeu
mixos
mixta
mixtes
mixts
mnac
moblin
moblo
mocada
mocam
mocau
mocs
models
modero
mofam
mofau
mofava
mofem
mofen
mofeu
mofin
mofis
mofo
moga
mogola
mogols
moguin
moguts
moira
molam
molats
molau
molc
molem
molent
molers
moleta
moleu
molga
molia
molies
molig
molino
molist
molls
molsa
molta
moltes
molts
moma
momes
moms
monal
monges
monja
montet
monya
monyes
monyos
moquem
moquin
morana
morcam
morco
morei
morena
moreta
morfea
morfs
moria
mories
morim
moriu
morma
mormes
mornau
morot
morres
morsa
mortes
mortis
morts
moruna
moruns
moscou
moser
mosses
mosset
mosts
motes
motets
motins
motles
motos
mots
motu
motxa
mouen
moureu
movem
moveu
movia
mpta
mucus
mudant
mudau
mudava
mudem
muden
mudesa
mudeu
mudin
mudis
mudoi
mufla
mufles
muga
mugesc
mugia
mugida
mugies
mugiu
muigs
muixa
muixes
mujada
mujal
mulers
mules
muleta
mullem
mullo
muls
multam
multau
multem
multen
multo
munar
munell
munesc
munia
munida
munim
munits
muniu
munteu
muntis
munts
munya
munyia
munyiu
munyo
munys
muons
mures
murga
murla
murs
murtes
musac
musam
musats
musau
muscos
muscs
musem
musen
musics
musin
musis
musos
musses
mustii
muts
mutus
n'hi
n'hug
nabau
nabera
nadam
nadats
nadau
nadem
naden
nadeu
nadin
nadirs
nadons
nafrem
nafro
nahua
nahues
naiac
naies
naips
naixia
nalec
nana
nanes
nannam
nannem
nannen
nanneu
nanno
nanot
nantes
napea
napees
napeig
napejo
napes
naps
nards
narrem
narreu
narris
narro
nasals
nasca
nassos
natals
nater
nates
natgin
natgis
natjam
natjo
nats
nauta
navada
navau
navego
naveta
navio
nazari
neac
necis
nedam
nedats
nedau
nedem
neden
nedeu
nedin
nedis
nedo
nefiac
negada
negau
negus
neixen
neixo
nemesi
nena
nenes
nens
neons
nepta
neptes
nerets
nereu
neros
nesca
nespra
netes
nets
neulen
neuma
neumes
neus
nevada
nevam
nevau
nevem
neven
nevers
neveu
nevin
nevus
nexes
ngais
niada
niades
niala
nials
niam
niant
niares
niaria
niats
niau
niava
nicasi
nicea
nicens
nicis
niells
niem
nien
niers
nieu
nigua
nimbeu
nimbis
nimfea
nimfes
nimis
ninada
ninoia
ninona
ninons
ninos
nins
niobis
nipis
nipona
nirvis
nitram
nits
nius
nivals
nivis
no-res
nocada
nocam
nocau
nocava
nocers
noces
noco
nocs
nodals
nodes
nodosa
nodria
nodriu
nodus
noedes
noel
noem
noent
noeu
nofre
noguda
nogueu
noguin
noguts
noiesa
nois
nolis
nolla
nomem
nomeu
nomia
nomis
noms
nomuda
nomuts
nonada
nonats
nones
nonets
noquen
noquis
norais
norat
nords
nores
noris
noses
notada
notam
notau
notava
notem
noten
noteu
notin
notis
nouen
nouera
nouran
nourem
nouria
nous
novau
novens
noves
nuada
nuant
nuaran
nuares
nuareu
nuaria
nuats
nuau
nuava
nuaven
nuaves
nubis
nuca
nucia
nucs
nuell
nuem
nuen
nuesa
nueta
nuets
nueu
nugam
nugau
nugosa
nuguin
nuguis
nules
nuls
numen
nuosa
nuoses
nuus
nuvis
nyacau
nyaco
nyacs
nyafa
nyams
nyapa
nyaps
nyecs
nyepa
nyepes
nyerra
nyics
nyiga
nyoca
nyonya
nyora
nyuns
oasis
obacs
obaga
obceco
obencs
obesa
obis
oblada
oblia
obon
obram
obrau
obrem
obren
obrers
obreu
obria
obrien
obriu
obro
obsten
obsteu
obstis
obsto
obturo
obusos
obviam
obviau
obvii
obvio
obvis
ocapis
ocasos
occia
occida
occien
occim
occint
occits
occiu
oceja
ocels
ocis
ocorro
ocres
octans
octaus
octes
octets
oculto
ocupem
ocupeu
ocupin
ocupo
odes
odiam
odiant
odiats
odiau
odiem
odien
odieu
odii
odila
odoram
odorau
odorem
odoren
odoreu
odorin
odres
odrina
oeixo
oesc
oestos
oests
ofecs
ofenc
ofenia
ofensa
oferiu
oferts
ofesa
ofeses
ofita
ofites
ofusco
ogassa
ohms
oiada
oiam
oiant
oiaren
oiares
oiats
oiau
oiava
oiaves
oiem
oients
oieu
oints
oiois
oiran
oirem
oireu
oiria
oirien
oiries
oixque
oleats
oleica
oleics
olem
olent
oleta
oleu
olga
olguem
olguen
olguis
oliam
oliana
oliats
oliau
oliba
oliem
olien
oliera
oliet
olieu
olii
oliosa
olius
olivam
oliveu
olivis
ollers
olles
olmer
olmo
olms
oloreu
olors
olost
olta
oltes
olts
oluja
olvan
omars
ombau
ombrau
ombreu
omeda
omega
omeia
omesa
omeses
omesos
ometa
ometem
ometeu
ometin
ometis
ometo
omets
omisa
omises
ompla
omples
omplo
onada
onades
ondam
ondau
ondeig
ondem
onden
onders
ondeu
ondis
onegeu
onegis
onejam
onejau
ones
onsa
onses
onsos
onyar
onzena
onzes
opacs
operem
operen
operin
opilam
opilau
opilem
opileu
opilo
opimes
opims
opinau
opinin
opinis
opino
oposam
oposem
oposen
oposo
optada
optam
optats
optau
optem
opten
opteu
optimo
optin
optis
opugno
oques
orada
orades
orals
oram
orares
orats
orau
orava
oraven
orbada
orbau
orbava
orbem
orben
orbera
orbeu
orbin
orbis
orbo
orbs
orcina
orcs
ordeno
ordesc
ordiam
ordii
ordim
ordiu
oregin
oregis
oreigs
oreix
orejam
oremus
orenc
oreu
orfes
orfeu
orgia
orgies
orgues
oriac
orinau
orinem
orineu
orinin
orino
orins
oriols
oris
orlam
orlats
orlau
orlem
orlen
orleu
orlin
orlis
orlons
ornant
ornau
ornem
ornen
orneu
ornin
ornis
orno
orons
orosi
orovig
orra
orris
orrit
orsam
orsant
orsats
orsau
orsem
orsen
orseu
orsin
orsis
orso
orteu
ortiva
ortiz
orvai
orvals
orxana
orxans
orxego
osaka
osbert
oscada
oscam
oscant
oscau
oscil
oscos
oscs
osees
oses
oslo
osmis
osona
osqueu
ossats
osses
ossis
ossosa
ostaga
ostes
otger
otiu
otzet
ouada
ouats
ouen
ouera
oueres
ovada
ovades
ovalem
ovalin
ovalis
ovalo
ovals
ovats
ovella
ovidi
ovina
ovines
ovins
ovnis
ovulem
ovulo
oxidam
oxidem
oxiden
oxima
oximes
oxina
oxines
oxonis
ozena
ozons
pacomi
pacs
pactem
pacten
pactin
pacto
padda
paddes
padern
paera
paeres
paers
paesc
pafs
pagada
pagana
pagans
pagant
pagau
pagino
pagos
paguem
paguin
paguis
paia
paies
paint
paios
pairia
pairis
pairo
paixau
palats
pallen
pallin
palms
palol
palons
palou
palps
pals
pams
panada
panda
pandes
paners
panna
pansa
pansiu
panys
paona
paons
paors
papada
papals
papats
papem
papen
papeu
papies
papin
papiol
papirs
papo
paps
papua
papus
parats
parava
parcel
parcs
parec
parega
pareu
paries
parim
parits
pariu
parlau
parlem
parlen
parlin
parlis
parma
parnau
parres
partia
parts
parva
passau
passen
pasts
patesc
patia
paties
patits
patiu
patums
patxot
paula
paulo
pauses
pavia
pavono
peanys
pebres
pecant
pecats
pecau
peces
peceta
peco
pecs
pedats
pedis
pegada
pegau
peguem
peguen
peguin
peia
peiers
peies
peiteu
peixeu
peixia
pelada
pelaia
pelam
pelats
pelau
pelem
pelen
peleu
pelfen
pelfeu
pelfin
pelin
pelis
pellau
pellem
pells
peloia
pels
peluts
penals
penam
penant
penats
penau
pencau
penco
penem
penen
peneu
pengen
pengeu
pengin
penics
penina
pennes
penols
pensau
penseu
pensis
penso
penyes
penys
peonam
peonau
peonem
peoneu
peono
peons
pepell
pepida
perai
perda
perdia
perdin
perds
peresa
perfan
perfem
perfiu
perim
perits
periu
perles
pernes
perns
peroi
perols
perona
perot
perxo
pesam
pesau
pescau
pesco
pesem
pesen
peseu
pesin
pesis
pesos
pestes
petau
petava
petem
peten
peteu
petin
petis
petjam
petjo
petons
petris
petrus
pets
peus
piafau
piafen
piafis
piafo
pianos
pians
picau
picoll
picors
picots
pics
picta
piera
pierre
pies
pifres
pigada
pigem
pigots
pigues
pijama
pilada
pilars
pilera
piles
pilis
pillam
pillau
pillen
pillin
pillis
pilosa
pilots
pimem
pincem
pincis
pincs
pinsos
pinteu
pinxau
pinxem
pinxen
pinxin
pinyot
pioca
piocs
piogen
piola
pions
piotxa
pipada
pipam
pipant
pipats
pipau
pipava
pipem
pipen
pipeu
pipins
pipis
pipo
piquem
pirals
pirata
pirau
pirava
pirem
pirens
pireu
piris
pirita
pisam
pisans
pisant
pisau
pisava
piscau
pisces
pisem
pisen
piseu
pisin
pisis
pisos
pispau
pispem
pispeu
pispin
pispo
pistes
pitart
pitea
pites
pitgen
pitgeu
pitgin
pitgis
pitis
pitjau
pits
piuada
piuam
piuant
piuats
piuau
piuem
piuen
piueu
piulam
piuleu
piuo
pius
pixada
pixam
pixant
pixau
pixem
pixen
pixeu
pixin
pixis
pixota
pixums
pizza
pizzes
placam
placau
placem
placin
plaem
plaeu
plaia
plaja
planen
planeu
planin
plans
plants
plapa
platja
plaute
plebs
pleca
plecs
plegau
plenes
plens
plepa
plepes
plers
pleta
plets
plica
plini
plints
ploc
plofs
ploga
plomem
ploms
plorem
ploris
plors
plouen
plous
plovem
poada
poades
poals
poam
poant
poareu
poaria
poats
poau
poava
pobleu
poblo
pocs
podam
podant
podats
podau
podem
podeu
podia
podies
podin
podis
podrem
podriu
poema
poen
poeu
poguts
poises
poitou
polars
polca
polina
pollau
polls
polos
polpa
polpes
polps
polsis
pomada
pomars
pomers
pomes
pompa
poms
ponem
poneu
ponga
ponia
ponies
ponis
pons
ponten
ponts
popam
popant
popau
popem
popen
popeu
popin
popis
popo
pops
porcau
porco
porcs
porgam
porgo
porres
portau
portis
portos
ports
porucs
porus
posada
posam
posant
posau
posava
posem
posen
poseu
posin
posis
posts
potada
potau
poteig
potera
pouam
pouau
pouava
pouem
pouen
poueu
pouo
pous
praga
preada
preant
preats
preau
preava
precs
preen
preeu
pregau
premeu
prenc
prenem
preneu
prenga
presos
pressa
prests
preuo
preus
priors
prisen
priseu
prisin
priso
privem
priven
privis
privo
proa
probes
proesa
proles
prones
prons
propis
prous
provam
provem
prua
prues
pruis
pruit
pruna
pruo
pruus
psalms
psins
psoes
psora
psuc
puada
puats
pubis
pubs
puces
puda
pudelo
pudes
pudia
pudies
pudim
pudint
pudiu
pudus
pues
pufins
pufs
puga
pugem
pugesa
puget
pugeu
pugin
pugis
pugnem
pugnen
pugneu
pugnin
pugnis
pugno
pugons
pugueu
puguin
puixeu
pujada
pujalt
pujau
pujava
pujot
pujou
pulla
puma
pumes
pums
puna
punesc
punia
punida
punies
puniu
puntau
punteu
punts
puntuu
punxin
punyau
punyo
punys
puons
pupa
pupes
puputs
purgo
purna
purs
putes
puts
quanta
quarts
quebec
queca
quecs
quedau
queden
quedeu
quedin
quedo
queia
queien
quema
quemes
querem
queris
querot
quers
queta
quica
quics
quids
quiets
quilis
quillo
quils
quims
quines
quins
quirc
quirze
quists
quitau
quitem
quitis
quito
quota
rabera
rabert
races
radars
rades
radii
radis
radons
raedor
raem
raents
raeu
rafes
rafets
rafis
ragem
ragen
ragera
rageu
ragin
ragis
raguda
raguem
ragueu
raguin
raia
raids
raien
raiers
raies
raigs
rails
raimon
rais
rajam
rajats
rajau
rajava
rajos
ralic
rallem
rallin
rallo
ralls
rals
ramam
ramant
ramau
rameig
ramem
ramen
rameu
ramin
ramir
ramis
rampes
rampeu
rams
ramuda
rancis
rancs
randes
raneig
ranejo
ranes
rangs
ranis
ranxos
raola
raonau
raoneu
raono
raons
raors
rapam
rapau
rapeig
rapejo
rapem
rapen
rapesc
rapeu
rapia
rapida
rapien
rapim
rapits
rapiu
rapo
raquel
raques
raquis
rareig
rarejo
rars
rasau
rasava
rascam
rasco
rasem
rasen
rasera
raseu
rasin
rasis
rasos
raspau
raspem
raspis
rassa
rastos
rasts
ratam
ratats
ratau
ratejo
ratem
raten
rateu
rats
ratxem
ratxen
raucam
rauco
raucs
rauen
rauran
raureu
rauria
rauric
raus
rautin
rauto
rauxa
raves
rdleg
realp
reals
reart
reats
rebata
rebato
rebats
rebava
rebega
rebem
rebera
rebeus
rebia
rebies
rebin
rebis
reblam
reblem
reblia
rebots
rebrem
rebreu
rebuda
recada
recaic
recalo
recant
recaus
recels
recoc
recoga
recs
redic
rediem
redieu
rediga
redius
redolo
refan
refem
refent
refeta
refeu
refiam
refiem
refieu
refii
refino
refio
refiu
refonc
regada
regals
regam
regau
regava
regia
regida
regien
regies
regint
regiu
reglem
regnau
regnem
regneu
regnin
regnis
regno
regors
regs
reguem
reguen
reials
reids
reies
reigs
reines
reis
reixes
rejos
rels
relui
remam
remant
remats
remau
remava
remers
remigs
remoga
remolo
rems
remucs
remudo
renals
renana
renau
renfe
renga
rengs
renoi
rens
rentis
rento
rents
renyam
renyem
renys
repeuo
repoms
reps
reptem
repteu
repto
repuig
requem
resada
resam
resats
resau
reseda
resem
resen
reseu
resolc
resos
restem
resteu
rests
retens
retera
reteu
retia
retiro
retirs
retis
retocs
retolo
retopo
retrec
retrii
retrio
rets
retuts
retxau
retxin
retxo
reunim
reveia
reveim
reveis
revelo
revens
revins
revius
revolo
rhons
riada
rialb
rials
riart
ribau
ribert
ribosa
ricada
ricall
ricant
ricau
ricort
rics
riem
rients
rieres
ries
rieu
rifam
rifau
rifem
rifeu
rifin
rifis
rifo
rigal
rigors
riguda
riguen
riguis
riguts
rimada
rimam
rimau
rimava
rimem
rimen
rimers
rimeu
rimin
rimis
rimo
rims
riner
rings
rioja
riola
riols
riota
riqueu
riscla
riscs
rissam
rissau
rissis
risto
rita
ritmeu
ritmo
ritus
riuada
riuen
riurem
riures
riureu
riusec
rizina
roals
roart
roassa
robada
robau
robava
robem
roben
robeu
robis
rocati
rocks
rocolo
rocs
rodau
rodem
rodera
rodeu
rodin
rodis
rodolf
roera
rofes
rogeig
rogejo
roges
rogeta
roigs
roinis
roino
rojors
rojos
roland
roleus
rollam
rollen
rollis
rollo
rolls
rols
romans
romasa
romejo
romers
romeua
romeus
romeva
rompa
rompem
rompia
rompo
roms
roncs
rondem
ronden
rondeu
rondo
ronxam
ronxeu
ronxos
ronyam
ronyau
rosada
rosant
roscau
rosco
rosecs
rosem
rosen
rosers
roseu
rosin
rosis
rosos
rosses
rossos
rostem
rostiu
rostos
rosts
rotam
rotant
rotau
rotem
roten
rotera
roteu
rotin
rotis
rotlos
rots
rouret
rous
roves
ruacs
ruaix
ruana
ruanes
ruans
ruat
rubles
rubors
rucons
rucs
ruda
rueca
ruecs
ruera
rueres
rues
rufac
rufart
rufat
rufet
rufins
ruflem
ruflo
rugia
rugien
rugim
rugits
rugiu
rugosa
ruixau
ruiz
rullau
rullen
rullin
rulls
rumbs
rumen
rumiem
rumieu
rumii
rumino
rumors
runes
rupia
rupies
rupits
ruques
ruscs
ruta
rutes
rutilo
rutllo
rwanda
s'hi
s'ho
sabau
sabea
sabem
sabera
sabers
sabia
sabien
sabirs
sabocs
sabons
sabors
sabran
sabria
sabuts
sacam
sacant
sacasa
sacau
saciem
sacien
sacii
sacio
sacres
sacreu
sacsau
sacsem
sacseu
saddam
saera
safata
safena
safes
safirs
safres
sagau
sageta
sagnam
sagnem
sagneu
sagnin
sagnis
sagol
saies
saigs
saiols
saions
sajola
sajos
salant
salau
salava
salden
saldin
saldos
salen
saleu
salgot
salias
salics
sallis
salms
salom
salou
salpem
salpo
salrac
salsa
salsiu
salteu
saltis
salts
salven
salvin
salvis
salvo
salvs
sambes
samers
sames
samsot
samuel
sanats
sanau
saneig
sanem
sanen
saneu
sangs
sanin
sanis
sanou
sansa
sanui
sanxo
saons
sapes
saps
saquen
saqueu
saraus
sards
sares
sargs
saris
sarja
sarna
saros
sarpes
sarris
sasala
satius
sativa
saturo
saugar
saula
saulet
sauna
saupa
saura
saures
saurs
saus
savis
saxona
saxons
scoop
se'ls
se'm
se'ns
se't
seana
sebons
secans
secors
secs
sedada
sedam
sedans
sedats
sedau
sedava
sedejo
sedem
sedera
seders
sedeu
sedin
sedis
segant
segau
seguen
seguiu
seguts
seia
seiem
seies
seieu
seleuc
sels
selves
semam
semats
semau
sembro
semeu
sems
senan
senars
sendil
senent
sense
senta
sents
senyis
senys
seran
serem
sereu
serfs
sergi
serieu
serii
serola
serps
serrau
serreu
serro
sers
servem
servet
sestis
sesto
setes
setets
setii
setins
setio
setis
setra
sets
setzes
seua
seuen
seues
seuosa
seureu
seuria
seus
seva
severs
seves
sevirs
sexes
sexts
sides
siena
sierra
sifons
sifre
sigil
sigla
signau
signin
signo
siguda
siguem
siguin
silas
silfs
silils
sillac
sills
sils
silurs
simes
simis
sinesi
sinol
sins
sipais
sipam
sipats
sipau
sipava
sipem
sipen
sipeu
sipin
sipis
sipo
sirgam
sirgau
sirgo
siris
siscla
sisets
sismes
sisons
sisos
sitars
sitis
sitra
sitres
sits
situau
situo
situu
sixt
sobrau
sobreu
sobrin
sobris
sobro
sobtem
sobten
sobtin
socies
socis
socons
socs
sodats
sodes
sodis
sofia
sogada
sogam
sogau
sogava
soges
soguen
sogueu
soguis
soia
soib
soies
soja
solada
solana
solans
solars
solau
solava
solco
solcs
soldam
soldau
solden
soldin
soldis
soldo
solejo
solenc
soleta
soleu
solfes
solga
solia
solin
soliva
sollem
sollen
sollo
solls
solos
soltem
solto
solts
soluts
somada
somaia
somes
somiau
somics
somiem
somieu
somii
somoc
sompa
somric
soms
sonam
sonars
sonata
sonau
sondam
sondau
sondeu
sondis
sondo
sonem
sonen
soneu
sonin
sonis
sonors
sonses
sonsos
sopada
sopam
sopau
sopava
sopem
sopena
sopera
sopeu
sopin
sopis
sords
sores
sorgiu
sorna
sorns
sorreu
sorrin
sorris
sors
sorts
sorus
sosa
soses
sotera
sotes
sotgem
sotgin
sotils
sotjo
sous
sovent
statu
stei
stib
stilbs
stokes
suada
suai
suam
suant
suaren
suats
suaus
suava
subils
sucada
sucam
sucant
sucats
sucau
sucava
sucs
sudes
sudeta
suds
suecs
suem
suen
suera
suert
sueus
sueva
sueves
suids
suller
sulles
sulls
sulsim
sumam
sumau
sumem
sumen
sumesc
sumeu
sumia
sumida
sumies
sumim
sumiu
summes
sunna
sunnes
suors
suosa
suosos
suquem
surals
suram
surau
surava
surem
surers
sureu
surfs
suris
surosa
surra
surres
surta
surten
surtin
surto
surts
sutges
sutja
suturo
t'hi
t'ho
tabals
tabita
tacada
tacam
tacant
tacau
tacs
tactes
tadeu
tafia
tafoi
taifa
taifes
tais
taix
talada
talars
talau
talcs
taleu
talin
tallem
talma
talmes
talons
talpa
talps
tals
tancs
tanda
tandes
tanes
tangos
tanka
tanoca
tants
tanyau
tanyin
tanyo
tanys
tapau
tapem
tapen
tapera
tapeta
tapets
tapeu
tapial
tapiam
tapieu
tapii
taps
taquis
tarats
tarau
tardam
tardau
tardem
tarem
taren
tareu
tarin
taris
tarja
tarosa
tascau
tasos
tassis
tastau
tastem
tasten
tastos
tasts
tatans
tatos
tatuam
tatuau
tatuem
tatuen
tatuo
tatuu
tatxen
tatxeu
taulam
taulau
tauons
taures
taus
taxam
taxats
taxau
taxen
taxeu
taxin
te'ls
te'm
te'ns
tebeos
tebes
tebis
tecals
tecis
tecles
tecs
tedis
teia
teids
teies
teiosa
teista
teixia
teixos
telau
telen
telers
teleu
telin
telis
tells
telm
telons
tels
temem
temeu
temia
temin
temis
tempos
tempro
temps
tempto
tems
tenca
tendia
tenen
tenga
tenia
tenir
teniu
tensau
tenseu
tensin
tensis
tenyia
teques
terceu
teris
terns
terol
terroc
ters
tesam
tesats
tesem
tesen
teseu
tesina
tesis
tesla
tesles
tesors
tesos
tests
tetes
teua
teues
teulam
teulem
teulen
teuleu
teulo
teus
teva
teves
texas
texs
textos
texts
thais
theta
thetes
tiador
tiama
tiana
tiara
tibats
tibaut
tibava
tibem
tiben
tibeu
tibin
tibis
tica
tics
tiel
ties
tifes
tifons
tifus
tiges
tijada
timons
tims
timus
tinc
tines
tinga
tingla
tinten
tinteu
tints
tinyam
tinyen
tinyin
tiols
tions
tipa
tipes
tips
tipus
tirans
tirats
tirau
tirem
tiren
tireu
tirin
tises
tisis
tites
titets
titil
titots
titubo
titus
tmesis
tocau
tocs
todart
tofa
tofes
tofuda
togats
togues
toia
toies
toixos
tola
tolba
tolc
tolem
tolent
tolero
tolesc
toleu
tolga
tolia
tolien
tolies
tolim
tolint
toliu
tolla
tolls
tols
tolta
toltes
tolts
tomaca
tomada
tomam
tomats
tomau
tomava
tombo
tombs
tomem
tomet
tomeu
tomic
tomin
tomir
toms
tonc
tonema
tonent
tones
toneu
tonia
tonus
tonya
tonyes
topau
topem
topen
topeu
topin
topis
tops
toquem
toquis
torada
torans
torbau
torben
torbin
torbs
torcia
torcis
torco
tords
torera
tores
torita
tormos
torms
torno
torns
toros
torris
torrs
torts
torus
torxa
tosa
toscs
toses
toset
tossam
tossau
tossem
tossen
tosseu
tossiu
tots
touera
tous
toves
tovors
traesc
tragus
traiga
tramam
tramin
trampa
trams
traper
trass
trauco
traus
travau
traven
trec
trega
treia
treies
treim
treis
tremim
trems
trenam
trenau
trencs
trenem
treneu
trenin
treno
trens
trepam
trepen
trepis
treps
tresau
trescs
tresin
tressa
treta
trets
treus
treva
trials
triam
triana
triats
triau
tribus
triem
trieu
trigam
trigau
trii
trills
trinam
trinau
trincs
trinem
trinin
trinis
trins
triol
trists
trita
trits
trobeu
trobo
trocs
troica
tromba
troncs
tronen
troneu
tronis
trono
trons
tropes
trops
trotam
trotau
troteu
trotin
troto
trucam
trucau
truco
trucs
trufam
trufen
trufin
trufis
trufo
trusts
tsars
tubert
tubes
tubs
tucans
tucs
tudam
tudant
tudats
tudau
tudem
tuden
tudeu
tudin
tudis
tuegeu
tuegis
tueig
tuejam
tuejo
tufs
tuia
tuies
tulipa
tulis
tulla
tuls
tunyac
tupada
tupaia
tupam
tupant
tupats
tupau
tupava
tupem
tupen
tupeu
tupis
tupo
turca
turcs
turer
turet
turks
turons
turos
turs
tusac
tussau
tussem
tusseu
tussis
tustem
tustin
tusts
tutau
tutes
tutis
tutora
tuvalu
txeca
txecs
uadis
ubald
ubals
ubico
ubics
ucada
ucades
ucam
ucant
ucaran
ucarem
ucasos
ucats
ucau
ucava
ucaves
udolo
udols
ufana
ufans
uganda
ugem
ugen
ugeu
ugin
ugis
ugons
uissem
uissen
uissis
uisso
uixera
uixos
ujada
ujam
ujant
ujaran
ujarem
ujaren
ujares
ujareu
ujats
ujau
ujava
ulans
ulema
ulitis
ullals
ullam
ullau
ullem
ullen
ulleu
ullin
ullis
ulls
ulnars
ulnes
ulric
ultrem
ultreu
ultrin
ultro
ululem
ululen
ululeu
ululis
ululo
unaris
unces
uneixo
unesco
unflam
unflem
unflo
ungesc
ungia
ungien
ungies
ungint
ungits
ungiu
unglam
unglem
unglin
unglis
unguis
unien
unies
unint
uniran
unirem
unisca
units
uniu
untau
untem
unten
unteu
untin
untis
untons
untosa
unts
upes
uquem
uquen
uqueu
uquin
uquis
uranis
urartu
urats
urbs
urcs
urea
urees
ureica
ureics
urents
urgia
urgida
urgien
urgim
urgiu
uriac
urna
urnes
urpada
urpam
urpant
urpats
urpau
urpeig
urpem
urpen
urpeu
urpia
urpida
urpim
urpint
urpits
urpiu
urpo
urrea
ursina
urtx
usac
usall
usam
usant
usard
usareu
usaria
usats
usau
usava
usem
usen
useres
useu
usina
usis
usos
ustec
uteix
utopia
vacada
vacam
vacau
vacil
vaco
vacus
vagau
vagen
vages
vagis
vagons
vagosa
vaig
vaires
vairs
vaja
vajol
valc
valem
valeu
valga
valgs
valia
valido
valisa
valons
valsau
valsem
vamba
vanau
vanem
vanen
vaneu
vanin
vanis
vanos
vans
vantem
vanten
vantin
vanto
vaqueu
varada
varam
varans
varau
varava
varecs
varem
vareu
varien
varieu
varii
varin
varius
varoi
vasa
vases
vasos
vastos
vasts
vatua
vaud
vauma
veces
vedam
vedant
vedau
vedem
veden
vedeu
vedin
vedo
vegem
vegen
veges
vegeu
vegin
vegis
veia
veiem
veieu
veig
veim
veis
veja
velada
velant
velau
velem
velen
velera
veleu
velin
velis
vells
vels
venceu
vencia
vencin
vencis
venem
venes
veneu
venga
vengin
vengis
venies
venim
venir
veniu
venjau
venjo
vens
ventau
venteu
ventis
vents
venuts
venys
verada
verai
verals
verbs
verds
vereda
veremo
veren
veres
verins
vermis
verms
vernet
verns
verosa
verpa
verpes
versen
verseu
versta
vesam
vesant
vesau
vescs
vesem
vesen
veseu
vesina
vesins
vesis
vesos
vespa
vesso
vetada
vetam
vetant
vetats
vetau
vetem
veten
veteu
vetin
vetis
vetlau
vetleu
vetlin
vetlo
vetos
vets
veuen
veuran
veureu
veuria
veus
vexam
vexau
vexem
vexen
vexeu
vexin
vexis
vexo
viada
vials
vialta
viam
viant
viares
viaria
viaris
viats
viau
viava
viaves
vibrau
vibris
vibro
viciam
vicii
vides
vidreu
vidris
vidro
vidus
vieira
vielha
viem
viena
vieta
vieu
vigia
vigim
vigint
vigiu
viguet
vilans
vilera
vileta
vilona
vils
vims
vinces
vinga
vinils
vins
vints
violeu
vionin
vionis
viono
vions
viots
viram
virant
virau
virem
viren
vireu
virils
virin
viris
virona
virons
virus
visada
visam
visant
visau
viscs
visem
visen
visern
viset
viseu
visin
visis
visos
vists
vitals
viteta
vitro
vits
vitxos
viuda
viuen
viuran
viuria
vius
vivers
vivet
vivien
vivim
vivint
viviu
vodka
vodkes
vogada
vogam
vogats
vogau
vogia
vogim
vogint
vogits
vogiu
vogo
voguin
volam
volats
volau
volea
volees
volem
volers
voleu
volis
volo
vols
voltau
voltin
volts
volva
vorejo
vorera
vores
voreto
voris
votam
votats
votau
votem
voten
voteu
votin
votis
votius
voto
vots
vuits
vull
vults
xacals
xacam
xacant
xacats
xacau
xacava
xacona
xacs
xafada
xafam
xafart
xafau
xafem
xafen
xafeu
xafin
xafis
xafons
xaiam
xaiau
xaica
xaiem
xaieu
xaio
xaira
xaires
xais
xalant
xalats
xalau
xalem
xalen
xaleu
xalina
xalis
xalma
xalocs
xals
xamam
xamau
xamava
xamba
xambra
xamem
xameu
xamin
xamis
xanca
xanxa
xanxes
xapam
xapau
xapem
xapen
xapeu
xapin
xapis
xapota
xaps
xaquen
xaqueu
xarada
xares
xarols
xarona
xarops
xarpau
xarpem
xarpen
xarpeu
xarren
xarro
xarxes
xata
xates
xatos
xautam
xautem
xauto
xauxa
xavals
xaves
xavier
xavos
xecs
xefla
xefles
xefs
xeics
xeixar
xeixs
xeldo
xella
xena
xerecs
xerifs
xerla
xerles
xerpa
xerpes
xerrem
xerren
xerta
xibeca
xibecs
xibucs
xics
xifla
xifram
xifrau
xifrem
xifren
xifreu
xifris
xifro
xilla
xilles
ximbla
xinam
xinant
xinau
xinem
xinen
xineu
xinin
xinis
xinxes
xips
xirics
xirigo
xiruca
xitam
xitau
xitem
xiten
xiteu
xitin
xitis
xito
xiulem
xiuleu
xiulis
xiulo
xivana
xivita
xixona
xocam
xocats
xocau
xocs
xodos
xollau
xollem
xollo
xolls
xona
xones
xons
xopada
xopam
xopau
xopem
xopen
xopeu
xopina
xopis
xops
xoquis
xorics
xorla
xorram
xorreu
xorris
xotis
xotra
xots
xotxa
xous
xubecs
xubet
xuclo
xueta
xufars
xufera
xufers
xufes
xuixem
xuixeu
xulla
xuller
xulles
xumada
xumam
xumant
xumats
xumau
xumem
xumen
xumeu
xumin
xumis
xumo
xunga
xunts
xupa
xupes
xuplam
xuplo
xurla
xurmem
xurmin
xurmo
xurra
xurres
xusma
xutada
xutam
xutant
xutau
xutava
xutem
xuten
xuteu
xutin
xutis
xuto
xuts
yale
york
zagreb
zamit
zamora
zaqueu
zarra
zasos
zeids
zelam
zelats
zelau
zelem
zelen
zeleu
zelin
zelis
zels
zencs
zens
zeros
zeta
zetes
zeugma
zigoma
zimasa
zincs
zita
zoel
zoile
zombis
zonals
zones
zooms
zuaus
zulus
zuric
diceware-1.0.1/diceware/wordlists/wordlist_de.txt 0000664 0000000 0000000 00000305464 14732404111 0022202 0 ustar 00root root 0000000 0000000 11111 aalen
11112 abart
11113 abba
11114 abbe
11115 abbiegen
11116 abbild
11121 abbitte
11122 abbruch
11123 abdecken
11124 abdrehen
11125 abdruck
11126 abebben
11131 abend
11132 aber
11133 abfahrt
11134 abfall
11135 abfedern
11136 abfeuern
11141 abflug
11142 abfluss
11143 abfolge
11144 abfrage
11145 abfuhr
11146 abgabe
11151 abgang
11152 abgas
11153 abgeben
11154 abgehen
11155 abgesang
11156 abgetan
11161 abgrund
11162 abgucken
11163 abguss
11164 abhaben
11165 abhaken
11166 abhalten
11211 abhang
11212 abhauen
11213 abheben
11214 abhelfen
11215 abhilfe
11216 abholen
11221 abholung
11222 abholzen
11223 abidjan
11224 abitur
11225 abjagen
11226 abkaufen
11231 abkehr
11232 abladen
11233 ablage
11234 ablass
11235 ablauf
11236 ableben
11241 ablegen
11242 ableger
11243 ablehnen
11244 ablesbar
11245 ablesen
11246 abluft
11251 abmachen
11252 abmagern
11253 abmahnen
11254 abnahme
11255 abnehmen
11256 abnehmer
11261 abnorm
11262 abnutzen
11263 abonnent
11264 abpfiff
11265 abpumpen
11266 abraten
11311 abraum
11312 abrede
11313 abreise
11314 abriss
11315 abruf
11316 abrunden
11321 abrupt
11322 absage
11323 absatz
11324 abscheu
11325 absehen
11326 abseits
11331 absenden
11332 absender
11333 absenz
11334 absicht
11335 absolut
11336 abspann
11341 absprung
11342 abstand
11343 abstieg
11344 abstract
11345 abstrus
11346 abstufen
11351 absturz
11352 absurd
11353 abtanzen
11354 abtasten
11355 abtei
11356 abtritt
11361 abtun
11362 abwahl
11363 abwasch
11364 abweg
11365 abwehr
11366 abweisen
11411 abwinken
11412 abwurf
11413 abzahlen
11414 abziehen
11415 abzug
11416 abzweig
11421 access
11422 achse
11423 acht
11424 acid
11425 acker
11426 acre
11431 acryl
11432 acta
11433 action
11434 actor
11435 adagio
11436 adapter
11441 adaption
11442 adaptiv
11443 additiv
11444 adel
11445 ader
11446 adieu
11451 adjutant
11452 adler
11453 adlig
11454 admiral
11455 adonis
11456 adresse
11461 adrett
11462 adult
11463 advent
11464 advokat
11465 aerobic
11466 aerosol
11511 affe
11512 affin
11513 affront
11514 afghane
11515 after
11516 agape
11521 agenda
11522 agent
11523 agieren
11524 agiert
11525 agil
11526 agonie
11531 agora
11532 ahle
11533 ahnden
11534 ahndung
11535 ahnen
11536 ahnherr
11541 ahnung
11542 ahoi
11543 ahorn
11544 aids
11545 aikido
11546 airbag
11551 airline
11552 airport
11553 akazie
11554 akkord
11555 akku
11556 akne
11561 akribie
11562 akrobat
11563 akronym
11564 akte
11565 aktie
11566 aktion
11611 aktiv
11612 aktuar
11613 aktuell
11614 akustik
11615 akut
11616 akzent
11621 aland
11622 alane
11623 alarm
11624 albaner
11625 albern
11626 albion
11631 albtraum
11632 album
11633 albus
11634 alchemie
11635 alert
11636 alfa
11641 alge
11642 alias
11643 alibi
11644 alien
11645 alken
11646 alkohol
11651 alkoven
11652 allah
11653 alldem
11654 alle
11655 alliance
11656 allianz
11661 allmacht
11662 allmend
11663 allrad
11664 allround
11665 allseits
11666 alltag
12111 allzeit
12112 allzu
12113 almosen
12114 aloe
12115 alpe
12116 alpha
12121 alphorn
12122 alpin
12123 alsbald
12124 alsdann
12125 also
12126 altan
12131 altar
12132 altauto
12133 altbau
12134 alte
12135 altfall
12136 altglas
12141 altherr
12142 altholz
12143 altklug
12144 altlast
12145 altstar
12146 amalgam
12151 amateur
12152 amber
12153 ambiente
12154 ambition
12155 amboss
12156 ambra
12161 ameise
12162 amen
12163 amin
12164 ammann
12165 amme
12166 amnesie
12211 amnestie
12212 amok
12213 amorph
12214 amour
12215 ampel
12216 ampere
12221 amphibie
12222 ampulle
12223 amsel
12224 amten
12225 amtiert
12226 amtlich
12231 amtmann
12232 amtsarzt
12233 amtseid
12234 amtshaus
12235 amtshof
12236 amtssitz
12241 amtszeit
12242 amulett
12243 anabol
12244 anaerob
12245 anal
12246 ananas
12251 anarchie
12252 anatom
12253 anbahnen
12254 anbau
12255 anbeten
12256 anbieter
12261 anblick
12262 anbot
12263 anbruch
12264 andacht
12265 andante
12266 andauen
12311 andauern
12312 andere
12313 andermal
12314 anders
12315 andrang
12316 anecken
12321 aneignen
12322 anfachen
12323 anfahrt
12324 anfall
12325 anfang
12326 anfassen
12331 anflug
12332 anfrage
12333 angabe
12334 angeben
12335 angeber
12336 angebot
12341 angehen
12342 angel
12343 anger
12344 angesagt
12345 angetan
12346 angina
12351 angler
12352 angriff
12353 angst
12354 angucken
12355 anhaben
12356 anhalten
12361 anhalter
12362 anhand
12363 anhang
12364 anhaus
12365 anheben
12366 anheim
12411 anhieb
12412 anhin
12413 anilin
12414 anion
12415 anis
12416 ankauf
12421 anker
12422 anklage
12423 anklang
12424 ankommen
12425 ankunft
12426 anlage
12431 anlass
12432 anlauf
12433 anlegen
12434 anleger
12435 anleihe
12436 anlocken
12441 anmalen
12442 anmelden
12443 anmerken
12444 anmieten
12445 anmut
12446 annahme
12451 annalen
12452 anno
12453 anode
12454 anonym
12455 anorak
12456 anordnen
12461 anpassen
12462 anpfiff
12463 anprall
12464 anraten
12465 anrecht
12466 anrede
12511 anregen
12512 anreise
12513 anreiz
12514 anrichte
12515 anrollen
12516 anruf
12521 ansage
12522 ansatz
12523 anschau
12524 anschlag
12525 anschub
12526 ansehen
12531 ansicht
12532 anspiel
12533 ansporn
12534 anspruch
12535 anstalt
12536 anstand
12541 anstatt
12542 anstehen
12543 anstelle
12544 anstieg
12545 anstrich
12546 ansturm
12551 ansuchen
12552 ante
12553 anthrax
12554 antigen
12555 antigon
12556 antik
12561 antiqua
12562 antlitz
12563 antrag
12564 antrieb
12565 antritt
12566 antun
12611 antwort
12612 anus
12613 anwachs
12614 anwalt
12615 anweisen
12616 anwenden
12621 anwesen
12622 anwidern
12623 anwurf
12624 anzahl
12625 anzapfen
12626 anzeige
12631 anzug
12632 apache
12633 apart
12634 apathie
12635 aperitif
12636 apern
12641 apfel
12642 apollon
12643 apostel
12644 apparat
12645 appeal
12646 appell
12651 appendix
12652 appetit
12653 applaus
12654 april
12655 apropos
12656 apsis
12661 aqua
12662 araber
12663 arbeit
12664 arch
12665 areal
12666 arena
13111 arglos
13112 argon
13113 argwohn
13114 arid
13115 arie
13116 arisch
13121 arkade
13122 arles
13123 armada
13124 armatur
13125 armband
13126 armbrust
13131 arme
13132 armselig
13133 armut
13134 aroma
13135 array
13136 arrest
13141 arroganz
13142 arsen
13143 artefakt
13144 arten
13145 arterie
13146 arthrose
13151 artig
13152 artikel
13153 artist
13154 artmann
13155 arznei
13156 arzt
13161 asbest
13162 aschbach
13163 asche
13164 ashby
13165 asiat
13166 askese
13211 asket
13212 asozial
13213 aspekt
13214 asphalt
13215 aspirin
13216 assessor
13221 asset
13222 assist
13223 assyrer
13224 asten
13225 aster
13226 asthma
13231 astrein
13232 asyl
13233 atelier
13234 atem
13235 atheist
13236 athener
13241 athlet
13242 atlas
13243 atmen
13244 atmung
13245 atoll
13246 atom
13251 atonal
13252 atrium
13253 attack
13254 attentat
13255 attest
13256 attila
13261 attisch
13262 attrappe
13263 auch
13264 audienz
13265 audit
13266 aufbau
13311 aufessen
13312 aufgabe
13313 aufgang
13314 aufguss
13315 aufheben
13316 aufkauf
13321 auflage
13322 auflauf
13323 aufleben
13324 aufrecht
13325 aufruf
13326 aufruhr
13331 aufs
13332 auftakt
13333 auftrag
13334 auftrieb
13335 auftun
13336 aufwand
13341 aufwind
13342 aufzucht
13343 aufzug
13344 auge
13345 augur
13346 august
13351 auktion
13352 aula
13353 aura
13354 ausbau
13355 ausblick
13356 ausbuhen
13361 ausdauer
13362 ausdruck
13363 ausfahrt
13364 ausfall
13365 ausflug
13366 ausfuhr
13411 ausgabe
13412 ausgang
13413 ausgeben
13414 aushang
13415 aushub
13416 auskunft
13421 ausladen
13422 auslage
13423 ausland
13424 auslauf
13425 ausleben
13426 auslegen
13431 ausleger
13432 ausleihe
13433 auslese
13434 auspuff
13435 ausrede
13436 ausreise
13441 ausritt
13442 ausruf
13443 aussaat
13444 aussage
13445 ausschau
13446 aussehen
13451 ausstand
13452 ausstieg
13453 auster
13454 austritt
13455 auswahl
13456 ausweg
13461 ausweis
13462 auswuchs
13463 auszeit
13464 auszug
13465 autark
13466 autismus
13511 autist
13512 auto
13513 auwald
13514 avance
13515 avatar
13516 avenue
13521 avers
13522 avis
13523 avocado
13524 aware
13525 axial
13526 axiom
13531 azteke
13532 azubi
13533 azur
13534 babbeln
13535 baby
13536 bach
13541 back
13542 bacon
13543 badehaus
13544 badehose
13545 bademode
13546 baden
13551 badeort
13552 badesee
13553 badi
13554 baff
13555 bagdader
13556 bagger
13561 bahn
13562 bahre
13563 baht
13564 baier
13565 bairisch
13566 baisse
13611 bajazzo
13612 bajuware
13613 bakken
13614 balance
13615 bald
13616 balg
13621 balken
13622 balkon
13623 ball
13624 balsam
13625 balte
13626 balz
13631 bambus
13632 bammel
13633 banal
13634 banane
13635 banat
13636 band
13641 bang
13642 banjo
13643 bank
13644 bann
13645 bantu
13646 baptist
13651 baracke
13652 barbar
13653 barbe
13654 barbier
13655 barcode
13656 barde
13661 barett
13662 bargeld
13663 bariton
13664 bark
13665 barmen
13666 barmer
14111 barock
14112 baron
14113 barrage
14114 barre
14115 barriere
14116 barrios
14121 bart
14122 basal
14123 basar
14124 base
14125 basic
14126 basiert
14131 basilika
14132 basis
14133 baske
14134 baskisch
14135 basler
14136 bass
14141 bast
14142 batik
14143 batterie
14144 batzen
14145 bauamt
14146 bauart
14151 bauboom
14152 bauch
14153 bauen
14154 bauer
14155 baufeld
14156 bauform
14161 bauherr
14162 bauhof
14163 bauholz
14164 baujahr
14165 baukran
14166 baukunst
14211 bauland
14212 bauleute
14213 baulich
14214 baulos
14215 baum
14216 bauplan
14221 baurat
14222 baurecht
14223 baureif
14224 bausatz
14225 bausch
14226 baustein
14231 baustil
14232 bauteil
14233 bauwagen
14234 bauwerk
14235 bauzaun
14236 bauzeit
14241 bauzone
14242 bayer
14243 beamen
14244 beamer
14245 beamte
14246 beamtin
14251 beat
14252 beau
14253 bebauen
14254 bebaut
14255 bebauung
14256 beben
14261 bebop
14262 becher
14263 becken
14264 bedacht
14265 bedankt
14266 bedarf
14311 bedeckt
14312 bedenken
14313 bedient
14314 bedingen
14315 bedingt
14316 bedruckt
14321 beduine
14322 beehren
14323 beeilen
14324 beenden
14325 beendet
14326 beengen
14331 beengt
14332 beerben
14333 beere
14334 beet
14335 befall
14336 befangen
14341 befassen
14342 befasst
14343 befehl
14344 befeuern
14345 befinden
14346 befolgen
14351 befragt
14352 befreien
14353 befreier
14354 befreit
14355 befugen
14356 befugt
14361 befund
14362 begaben
14363 begabt
14364 begabung
14365 begangen
14366 begeben
14411 begegnet
14412 begehbar
14413 begehen
14414 begehrt
14415 begierig
14416 begine
14421 beginn
14422 begnadet
14423 begonnen
14424 begrenzt
14425 begriff
14426 behaart
14431 behaftet
14432 behagen
14433 behalten
14434 beharrt
14435 behauen
14436 beheben
14441 behebung
14442 beheizen
14443 beheizt
14444 beherzt
14445 behind
14446 behutsam
14451 beichte
14452 beide
14453 beifall
14454 beigabe
14455 beige
14456 beiheft
14461 beil
14462 beim
14463 bein
14464 beirat
14465 beirren
14466 beisein
14511 beisel
14512 beisl
14513 beitrag
14514 beiwerk
14515 beiz
14516 bejagen
14521 bejagung
14522 bejahen
14523 bejahung
14524 bejubeln
14525 bekannt
14526 bekenner
14531 bekleben
14532 beladen
14533 belag
14534 belang
14535 beleben
14536 belebt
14541 beleg
14542 belehren
14543 beleibt
14544 belesen
14545 beletage
14546 belgier
14551 belieben
14552 beliebt
14553 bellen
14554 belohnen
14555 belohnt
14556 belt
14561 beluga
14562 bemalen
14563 bemalt
14564 bemalung
14565 bemannen
14566 bemannt
14611 bemerken
14612 bemerkt
14613 bemessen
14614 benannt
14615 benefiz
14616 beneiden
14621 bengale
14622 bengel
14623 benne
14624 benoten
14625 benotung
14626 benutzt
14631 benzin
14632 benzol
14633 bequem
14634 berappen
14635 beraten
14636 berater
14641 beraubt
14642 berber
14643 bereden
14644 beredt
14645 bereich
14646 bereist
14651 bereit
14652 bereuen
14653 bereut
14654 berg
14655 bericht
14656 beringen
14661 beringer
14662 berner
14663 bernisch
14664 bersten
14665 bertl
14666 beruf
15111 beruhen
15112 beruhigt
15113 besagen
15114 besagt
15115 besatz
15116 beschuss
15121 beseelt
15122 besehen
15123 besen
15124 besessen
15125 besetzen
15126 besiegt
15131 besitz
15132 besonnen
15133 besorgt
15134 bessern
15135 best
15136 besuch
15141 besudeln
15142 beta
15143 beten
15144 bethaus
15145 betiteln
15146 beton
15151 betracht
15152 betrag
15153 betraut
15154 betreff
15155 betreten
15156 betrieb
15161 betrug
15162 bett
15163 betucht
15164 beugen
15165 beugung
15166 beule
15211 beute
15212 beutler
15213 bevor
15214 bewachen
15215 bewacht
15216 bewahrer
15221 bewahrt
15222 bewegen
15223 bewegt
15224 bewegung
15225 bewehren
15226 bewehrt
15231 beweis
15232 bewerb
15233 bewerten
15234 bewertet
15235 bewirkt
15236 bewohner
15241 bewohnt
15242 beworben
15243 bewuchs
15244 bewusst
15245 bezahlen
15246 bezahlt
15251 bezeugen
15252 bezeugt
15253 beziehen
15254 bezieher
15255 bezirk
15256 bezirzen
15261 bezogen
15262 bezug
15263 biathlet
15264 bibbern
15265 bibel
15266 biber
15311 bibi
15312 bieder
15313 biege
15314 biegsam
15315 biegung
15316 biene
15321 bier
15322 biest
15323 bieten
15324 bieter
15325 bigband
15326 bigott
15331 bike
15332 bikini
15333 bilanz
15334 bild
15335 billard
15336 bille
15341 billig
15342 billion
15343 bimmeln
15344 binde
15345 bindung
15346 binge
15351 bingo
15352 binnen
15353 binse
15354 bioethik
15355 biogas
15356 biogen
15361 biograf
15362 biohof
15363 bioland
15364 biologe
15365 biosprit
15366 biotop
15411 bipolar
15412 birke
15413 birnbaum
15414 birne
15415 bischof
15416 bisher
15421 bislang
15422 bison
15423 biss
15424 bistro
15425 bistum
15426 bitte
15431 bitumen
15432 biwak
15433 bizarr
15434 blackbox
15435 blamabel
15436 blamage
15441 blank
15442 blase
15443 blass
15444 blatt
15445 blau
15446 blazer
15451 blech
15452 blecken
15453 blei
15454 blende
15455 blendung
15456 blessur
15461 bleu
15462 blick
15463 blind
15464 blinken
15465 blinker
15466 blinzeln
15511 blitz
15512 bloch
15513 block
15514 blogger
15515 blond
15516 blues
15521 bluff
15522 blume
15523 blumig
15524 bluse
15525 blut
15526 board
15531 bobo
15532 boccia
15533 bock
15534 bodden
15535 boden
15536 body
15541 bogen
15542 boheme
15543 bohle
15544 bohne
15545 bohren
15546 bohrer
15551 bohrloch
15552 bohrung
15553 boiler
15554 boje
15555 bolero
15556 bolid
15561 bolle
15562 bollwerk
15563 bolzen
15564 bombe
15565 bommel
15566 bonbon
15611 bond
15612 bongen
15613 bonjour
15614 bonmot
15615 bonner
15616 bonsai
15621 bonus
15622 bonze
15623 boogie
15624 booklet
15625 boom
15626 boot
15631 bora
15632 bord
15633 borg
15634 borke
15635 borste
15636 borusse
15641 boshaft
15642 bosheit
15643 bosniake
15644 bosnier
15645 bosse
15646 botanik
15651 bote
15652 bott
15653 bouillon
15654 boulogne
15655 bourbon
15656 boutique
15661 bowle
15662 bowling
15663 boxen
15664 boxer
15665 boxring
15666 boygroup
16111 boykott
16112 bozner
16113 brach
16114 brack
16115 brain
16116 bram
16121 branche
16122 brand
16123 brasil
16124 brassen
16125 braten
16126 bratsche
16131 brauch
16132 braue
16133 braun
16134 brause
16135 braut
16136 brav
16141 break
16142 breche
16143 brei
16144 bremer
16145 bremse
16146 brennbar
16151 brennen
16152 brenner
16153 bresche
16154 brett
16155 brezel
16156 bridge
16161 brie
16162 brigade
16163 brigg
16164 brikett
16165 brille
16166 bringen
16211 brink
16212 brisant
16213 brisanz
16214 brise
16215 brite
16216 britin
16221 britisch
16222 brocken
16223 brodeln
16224 broker
16225 brokkoli
16226 brom
16231 bronchie
16232 bronze
16233 brosche
16234 brot
16235 browser
16236 bruch
16241 bruder
16242 brummen
16243 brummer
16244 brummi
16245 brunch
16246 brunn
16251 brunst
16252 brust
16253 brut
16254 bube
16255 bubi
16256 buch
16261 buckel
16262 bucklig
16263 buddeln
16264 buddha
16265 bude
16266 budget
16311 buggy
16312 buhen
16313 buhlen
16314 buhmann
16315 buhruf
16316 bukett
16321 bulette
16322 bulgare
16323 bulgarin
16324 bulimie
16325 bulldog
16326 bulle
16331 bullig
16332 bully
16333 bumerang
16334 bummel
16335 bund
16336 bungalow
16341 bunge
16342 bunker
16343 bunt
16344 bure
16345 burg
16346 burka
16351 burlesk
16352 bursch
16353 busch
16354 busen
16355 busnetz
16356 bussard
16361 busspur
16362 bustour
16363 butler
16364 butt
16365 butz
16366 bypass
16411 byte
16412 cabaret
16413 cabrio
16414 cache
16415 cadmium
16416 caine
16421 call
16422 calypso
16423 camp
16424 cannabis
16425 canto
16426 cape
16431 caravan
16432 carbo
16433 carlton
16434 carrier
16435 cartoon
16436 carver
16441 carving
16442 cash
16443 cassius
16444 casten
16445 casting
16446 castor
16451 catcher
16452 catering
16453 causa
16454 celler
16455 cellist
16456 cello
16461 celsius
16462 cembalo
16463 cent
16464 chalet
16465 champion
16466 chance
16511 change
16512 channel
16513 chanson
16514 chaos
16515 chaot
16516 chapeau
16521 charge
16522 charmant
16523 charme
16524 chart
16525 chassis
16526 chat
16531 check
16532 chef
16533 chemie
16534 chemiker
16535 chemisch
16536 chianti
16541 chief
16542 chiffre
16543 chilene
16544 chili
16545 chillen
16546 chinese
16551 chinesin
16552 chip
16553 chirurg
16554 chlor
16555 cholera
16556 chopper
16561 chor
16562 chose
16563 christ
16564 chrom
16565 chronik
16566 chronist
16611 chuzpe
16612 cineast
16613 cinema
16614 cirka
16615 city
16616 claim
16621 clean
16622 clever
16623 client
16624 clinch
16625 clique
16626 clou
16631 clown
16632 cluster
16633 coach
16634 cockpit
16635 coeur
16636 cognac
16641 collage
16642 college
16643 collie
16644 colombo
16645 colonel
16646 colt
16651 combo
16652 comedy
16653 comic
16654 commedia
16655 compiler
16656 comte
16661 conseil
16662 content
16663 contest
16664 continuo
16665 cookie
16666 cool
21111 core
21112 cottage
21113 cotton
21114 couch
21115 couleur
21116 count
21121 coup
21122 courage
21123 course
21124 cousin
21125 couture
21126 cover
21131 cowboy
21132 crack
21133 crash
21134 creek
21135 crew
21136 cricket
21141 crime
21142 cross
21143 croupier
21144 cruisen
21145 cruiser
21146 culpa
21151 cupsieg
21152 cupspiel
21153 cure
21154 curie
21155 curling
21156 curry
21161 cutter
21162 dabei
21163 dach
21164 dackel
21165 dadaist
21166 daddy
21211 dadurch
21212 dagegen
21213 daheim
21214 daher
21215 dahin
21216 dahlie
21221 dakar
21222 dakota
21223 dalai
21224 daliegen
21225 damalig
21226 damals
21231 dame
21232 damit
21233 damm
21234 dampf
21235 damwild
21236 danach
21241 dancer
21242 dancing
21243 dandy
21244 daneben
21245 danger
21246 dank
21251 dann
21252 dantes
21253 danziger
21254 daran
21255 darauf
21256 daraus
21261 darben
21262 darg
21263 darin
21264 darling
21265 darm
21266 darnach
21311 darob
21312 darre
21313 darum
21314 dasein
21315 dasitzen
21316 dass
21321 date
21322 datiert
21323 dativ
21324 dato
21325 datscha
21326 dattel
21331 datum
21332 dauer
21333 daumen
21334 daune
21335 dauphin
21336 daviscup
21341 davon
21342 davor
21343 dazu
21344 deal
21345 debakel
21346 debatte
21351 debil
21352 dechant
21353 deck
21354 decoder
21355 defekt
21356 defilee
21361 defizit
21362 deftig
21363 degen
21364 dehnbar
21365 dehnen
21366 dehnung
21411 deich
21412 dein
21413 dekade
21414 dekan
21415 dekor
21416 dekret
21421 delfin
21422 delikat
21423 delikt
21424 delle
21425 delta
21426 demagoge
21431 dement
21432 demenz
21433 demeter
21434 demnach
21435 demo
21436 demut
21441 denkbar
21442 denken
21443 denker
21444 denkmal
21445 denn
21446 deponie
21451 depot
21452 depp
21453 derart
21454 derb
21455 derer
21456 derivat
21461 derlei
21462 derweil
21463 derwisch
21464 derzeit
21465 deshalb
21466 design
21511 desktop
21512 desolat
21513 despot
21514 dessauer
21515 dessert
21516 dessous
21521 desto
21522 detail
21523 deubel
21524 deut
21525 device
21526 devise
21531 devot
21532 dezember
21533 dezent
21534 dezernat
21535 dezibel
21536 diabetes
21541 diabolo
21542 diadem
21543 diagnose
21544 diakon
21545 dialekt
21546 dialog
21551 dialyse
21552 diamant
21553 diaschau
21554 diashow
21555 dicht
21556 dick
21561 didaktik
21562 dieb
21563 diel
21564 dien
21565 diesel
21566 diesmal
21611 diffus
21612 digest
21613 digital
21614 diktat
21615 diktiert
21616 diktion
21621 diktum
21622 dilemma
21623 dill
21624 dime
21625 dinar
21626 diner
21631 ding
21632 dinkel
21633 dinner
21634 dino
21635 diode
21636 dion
21641 dioxin
21642 diplom
21643 direkt
21644 dirigat
21645 dirndl
21646 dirne
21651 disc
21652 diskette
21653 diskont
21654 diskret
21655 diskurs
21656 diskus
21661 disparat
21662 display
21663 disput
21664 dissen
21665 distanz
21666 distel
22111 distrikt
22112 dito
22113 diva
22114 divers
22115 divis
22116 diwan
22121 dixie
22122 doch
22123 dock
22124 doge
22125 dogge
22126 dogma
22131 dohle
22132 doktor
22133 doktrin
22134 doku
22135 dolce
22136 dolch
22141 dole
22142 doll
22143 dolomit
22144 domain
22145 domberg
22146 domchor
22151 domherr
22152 domhof
22153 domina
22154 dominion
22155 domino
22156 dominus
22161 domizil
22162 domplatz
22163 dompteur
22164 dona
22165 donna
22166 donner
22211 doof
22212 doors
22213 dopamin
22214 dopen
22215 doping
22216 doppel
22221 doppler
22222 dopplung
22223 dorado
22224 dorf
22225 doria
22226 dorisch
22231 dorn
22232 dorsch
22233 dort
22234 dose
22235 dosieren
22236 dosiert
22241 dosis
22242 dossier
22243 dotieren
22244 dotiert
22245 dotter
22246 doubeln
22251 double
22252 down
22253 doyen
22254 dozent
22255 dozieren
22256 drache
22261 drachme
22262 draht
22263 drall
22264 drama
22265 dran
22266 drauf
22311 dreck
22312 dreh
22313 drei
22314 dreschen
22315 drescher
22316 dress
22321 driesch
22322 drift
22323 drill
22324 drin
22325 dritt
22326 drive
22331 droben
22332 droge
22333 drogist
22334 drohen
22335 drohne
22336 drohung
22341 drollig
22342 dromedar
22343 drossel
22344 drost
22345 druck
22346 druide
22351 drum
22352 drunten
22353 drunter
22354 dschihad
22355 dual
22356 dubios
22361 duce
22362 ducken
22363 dudeln
22364 duell
22365 duett
22366 duff
22411 duft
22412 duke
22413 duktus
22414 dulden
22415 duldung
22416 duma
22421 dumm
22422 dumpf
22423 dumping
22424 dune
22425 dung
22426 dunkel
22431 dunst
22432 durch
22433 durst
22434 dusche
22435 dust
22436 dutt
22441 dutzend
22442 duzen
22443 dynamik
22444 dynamit
22445 dynamo
22446 eagle
22451 ebbe
22452 eben
22453 eber
22454 ebnen
22455 echo
22456 echse
22461 echt
22462 eckball
22463 ecke
22464 eckhaus
22465 eckig
22466 eckturm
22511 eckwert
22512 eckzahn
22513 ecstasy
22514 edel
22515 eden
22516 edieren
22521 ediert
22522 edikt
22523 edition
22524 editor
22525 efeu
22526 effekt
22531 egal
22532 egge
22533 egli
22534 egoismus
22535 egoist
22536 ehebett
22541 ehedem
22542 ehefrau
22543 ehejahr
22544 ehelich
22545 ehemals
22546 ehemann
22551 ehepaar
22552 eher
22553 ehest
22554 ehrbar
22555 ehre
22556 ehrgeiz
22561 ehrlich
22562 ehrung
22563 eibe
22564 eichbaum
22565 eichborn
22566 eiche
22611 eichner
22612 eiern
22613 eiertanz
22614 eifeler
22615 eifer
22616 eifrig
22621 eigelb
22622 eigen
22623 eignen
22624 eigner
22625 eignung
22626 eiland
22631 eile
22632 eilig
22633 eilzug
22634 eimer
22635 einbahn
22636 einband
22641 einbau
22642 einbezug
22643 einblick
22644 einen
22645 einer
22646 einfach
22651 einfahrt
22652 einfall
22653 einfalt
22654 einfluss
22655 einfuhr
22656 eingabe
22661 eingang
22662 einhalt
22663 einhaus
22664 einheit
22665 einher
22666 einholen
23111 einhorn
23112 einig
23113 einkauf
23114 einkehr
23115 einklang
23116 einlage
23121 einlass
23122 einlauf
23123 einlesen
23124 einmal
23125 einnahme
23126 einrad
23131 einrede
23132 eins
23133 eintopf
23134 eintrag
23135 eintritt
23136 einwand
23141 einwurf
23142 einzel
23143 einzig
23144 einzug
23145 eisbahn
23146 eisberg
23151 eisen
23152 eisern
23153 eisfrei
23154 eisig
23155 eiskalt
23156 eislauf
23161 eismann
23162 eismeer
23163 eissport
23164 eistanz
23165 eistee
23166 eisvogel
23211 eiswein
23212 eiszeit
23213 eitel
23214 eiter
23215 eitrig
23216 eizelle
23221 ekel
23222 eklat
23223 eklig
23224 ekliptik
23225 ekstase
23226 ekuador
23231 ekzem
23232 elan
23233 elch
23234 elefant
23235 elegant
23236 eleganz
23241 elegie
23242 elegisch
23243 elektrik
23244 element
23245 elend
23246 eleve
23251 elfe
23252 elfmal
23253 elite
23254 elle
23255 ellipse
23256 eloge
23261 elster
23262 eltern
23263 elysee
23264 email
23265 embargo
23266 emblem
23311 embryo
23312 emder
23313 emeritus
23314 eminent
23315 eminenz
23316 emir
23321 emmaus
23322 emmel
23323 emotion
23324 empfang
23325 emphase
23326 empire
23331 empirie
23332 empor
23333 emscher
23334 emser
23335 emsig
23336 emulsion
23341 ende
23342 endkampf
23343 endlauf
23344 endlich
23345 endlos
23346 endogen
23351 endpreis
23352 endpunkt
23353 endrang
23354 endrunde
23355 endsieg
23356 endspiel
23361 endspurt
23362 endstufe
23363 endung
23364 endzeit
23365 endziel
23366 endzone
23411 energie
23412 enge
23413 englisch
23414 engpass
23415 enkel
23416 enklave
23421 enorm
23422 enquete
23423 ente
23424 entgelt
23425 entlang
23426 entlegen
23431 entlockt
23432 entnahme
23433 entree
23434 entsandt
23435 entwurf
23436 entzug
23441 enzian
23442 enzym
23443 epigone
23444 epilog
23445 episch
23446 episode
23451 epitaph
23452 epochal
23453 epoche
23454 epos
23455 epsilon
23456 equipe
23461 erachten
23462 erahnen
23463 erbauen
23464 erbauer
23465 erbaut
23466 erbe
23511 erbfall
23512 erbgut
23513 erbin
23514 erblast
23515 erblich
23516 erbosen
23521 erbost
23522 erbrecht
23523 erbse
23524 erdacht
23525 erdball
23526 erdbeben
23531 erde
23532 erdgas
23533 erdig
23534 erdkugel
23535 erdloch
23536 erdmasse
23541 erdnah
23542 erdnuss
23543 erdteil
23544 erdwall
23545 ereilen
23546 ereilt
23551 eremit
23552 eren
23553 ererbt
23554 erfassen
23555 erfinden
23556 erfinder
23561 erfolg
23562 erfreut
23563 ergeben
23564 ergebnis
23565 ergehen
23566 ergiebig
23611 ergo
23612 ergrauen
23613 ergraut
23614 erguss
23615 erhaben
23616 erhalt
23621 erheben
23622 erhebung
23623 erhitzt
23624 erhoben
23625 erhoffen
23626 erhofft
23631 erholen
23632 erholsam
23633 erholt
23634 erika
23635 eriwan
23636 erkannt
23641 erkennen
23642 erker
23643 erkiesen
23644 erkunden
23645 erlahmen
23646 erlangt
23651 erlass
23652 erle
23653 erlitten
23654 ermahnt
23655 ermorden
23656 ermordet
23661 ernannt
23662 erneuen
23663 erneut
23664 ernst
23665 ernte
23666 erobern
24111 erobert
24112 eros
24113 erotik
24114 erpel
24115 erpicht
24116 erproben
24121 erprobt
24122 erraten
24123 erregen
24124 erreger
24125 erregt
24126 erregung
24131 erretten
24132 error
24133 ersatz
24134 ersehen
24135 ersehnt
24136 ersetzen
24141 erspart
24142 erst
24143 ersucht
24144 ertappen
24145 ertappt
24146 erteilt
24151 ertrag
24152 erturnen
24153 eruieren
24154 eruption
24155 eruptiv
24156 erwachen
24161 erwacht
24162 erwecken
24163 erweckt
24164 erweisen
24165 erwerb
24166 erwidern
24211 erwidert
24212 erwiesen
24213 erwirkt
24214 erwogen
24215 erworben
24216 erzeugt
24221 erzieher
24222 erzielen
24223 erzielt
24224 erzogen
24225 esche
24226 escudo
24231 esel
24232 eskorte
24233 esprit
24234 essay
24235 essbar
24236 esse
24241 essig
24242 esswein
24243 este
24244 estnisch
24245 estrich
24246 etage
24251 etappe
24252 etat
24253 eternit
24254 ethik
24255 ethisch
24256 ethnie
24261 ethos
24262 etikett
24263 etliche
24264 etter
24265 etui
24266 etwa
24311 euch
24312 euer
24313 eugenik
24314 eule
24315 eunuch
24316 euphorie
24321 eure
24322 euro
24323 euter
24324 event
24325 evident
24326 evidenz
24331 ewer
24332 ewig
24333 exakt
24334 examen
24335 exchange
24336 exegese
24341 exempel
24342 exemplar
24343 exfrau
24344 exil
24345 existent
24346 existenz
24351 exklave
24352 exklusiv
24353 exkurs
24354 exodus
24355 exorzist
24356 exot
24361 expansiv
24362 expert
24363 explizit
24364 exponat
24365 exponent
24366 export
24411 express
24412 exquisit
24413 extern
24414 extra
24415 extrem
24416 exzess
24421 fabel
24422 fabrik
24423 face
24424 fach
24425 fackel
24426 fact
24431 fade
24432 fagott
24433 fahl
24434 fahnden
24435 fahnder
24436 fahne
24441 fahrbahn
24442 fahrbar
24443 fahren
24444 fahrer
24445 fahrig
24446 fahrrad
24451 fahrstil
24452 fahrt
24453 fahrweg
24454 fahrwerk
24455 fahrzeit
24456 fahrzeug
24461 faible
24462 fair
24463 fake
24464 fakir
24465 fakt
24466 falb
24511 falke
24512 falkner
24513 fall
24514 falsch
24515 falte
24516 faltig
24521 faltung
24522 familie
24523 famos
24524 fanal
24525 fanblock
24526 fanbus
24531 fanfare
24532 fang
24533 fanklub
24534 fanshop
24535 fantast
24536 fanzine
24541 farbbild
24542 farbe
24543 farbfilm
24544 farbig
24545 farblos
24546 farbraum
24551 farbton
24552 farce
24553 farin
24554 farm
24555 farn
24556 fasan
24561 faseln
24562 faser
24563 fashion
24564 fass
24565 fast
24566 fatal
24611 fatum
24612 fatwa
24613 fauchen
24614 faul
24615 faun
24616 faust
24621 fauxpas
24622 favela
24623 favorit
24624 faxe
24625 fazit
24626 feature
24631 feber
24632 februar
24633 fechten
24634 fechter
24635 feder
24636 feed
24641 feeling
24642 fegen
24643 fehde
24644 fehl
24645 feien
24646 feier
24651 feig
24652 feil
24653 fein
24654 feist
24655 feixen
24656 feld
24661 felge
24662 fell
24663 fels
24664 feminin
24665 fenchel
24666 fender
25111 fenn
25112 fenster
25113 fenz
25114 ferien
25115 ferkel
25116 fern
25121 ferse
25122 fertig
25123 fesch
25124 fessel
25125 fest
25126 fete
25131 fetisch
25132 fett
25133 fetz
25134 feucht
25135 feudal
25136 feuer
25141 feurig
25142 fiaker
25143 fiasko
25144 fibel
25145 fichte
25146 ficken
25151 fidel
25152 fieber
25153 fiebrig
25154 fiedler
25155 fies
25156 fifa
25161 figaro
25162 fight
25163 figur
25164 fiktion
25165 fiktiv
25166 file
25211 filiale
25212 filipino
25213 filius
25214 film
25215 filou
25216 filter
25221 filz
25222 fina
25223 finden
25224 finder
25225 findig
25226 finesse
25231 finger
25232 finish
25233 fink
25234 finne
25235 finnin
25236 finnisch
25241 finster
25242 finte
25243 firewall
25244 firm
25245 first
25246 fisch
25251 fiskus
25252 fitness
25253 fitten
25254 fittich
25255 fixen
25256 fixer
25261 fixiert
25262 fixing
25263 fjord
25264 flach
25265 flackern
25266 fladen
25311 flagge
25312 flair
25313 flak
25314 flame
25315 flamingo
25316 flamme
25321 flaneur
25322 flanke
25323 flapsig
25324 flasche
25325 flash
25326 flat
25331 flau
25332 flechte
25333 fleck
25334 fleet
25335 flegel
25336 flehen
25341 fleisch
25342 flex
25343 flicken
25344 flieder
25345 fliege
25346 fliehen
25351 fliese
25352 flink
25353 flinte
25354 flip
25355 flirren
25356 flirt
25361 flitzen
25362 flitzer
25363 float
25364 flocke
25365 flockig
25366 floh
25411 flop
25412 flor
25413 floskel
25414 flosse
25415 flott
25416 fluch
25421 flug
25422 fluid
25423 fluor
25424 flur
25425 fluss
25426 flut
25431 flyer
25432 fock
25433 fohlen
25434 fokus
25435 folder
25436 folge
25441 folglich
25442 folgsam
25443 folie
25444 folk
25445 folter
25446 fond
25451 fonem
25452 fonetik
25453 font
25454 food
25455 foppen
25456 fordern
25461 forelle
25462 forint
25463 form
25464 forsch
25465 forst
25466 fort
25511 forum
25512 forward
25513 fossa
25514 fossil
25515 foto
25516 foul
25521 fourier
25522 foxtrott
25523 foyer
25524 fracht
25525 frack
25526 frage
25531 fragil
25532 fraglos
25533 fragment
25534 fraktur
25535 frame
25536 franc
25541 frank
25542 franse
25543 frater
25544 fratze
25545 frau
25546 freak
25551 frech
25552 fregatte
25553 frei
25554 fremd
25555 frequenz
25556 fresko
25561 fresse
25562 freude
25563 freudig
25564 freuen
25565 freund
25566 frevel
25611 friaul
25612 friede
25613 friedhof
25614 friedsam
25615 frieren
25616 fries
25621 frisbee
25622 frisch
25623 friseur
25624 friseuse
25625 frisiert
25626 frist
25631 frisur
25632 fritte
25633 frivol
25634 froh
25635 fromm
25636 fronen
25641 front
25642 frosch
25643 frost
25644 frucht
25645 frust
25646 fuchs
25651 fuge
25652 fuhre
25653 fuldaer
25654 fummeln
25655 fund
25656 funk
25661 furche
25662 furcht
25663 furie
25664 furios
25665 furor
25666 furt
26111 fuscheln
26112 fusion
26113 futsch
26114 futter
26115 futur
26116 gabe
26121 gabler
26122 gackern
26123 gaffer
26124 gage
26125 gala
26126 galeere
26131 galerie
26132 galgen
26133 galle
26134 gallier
26135 gallo
26136 galopp
26141 gambe
26142 gamma
26143 gams
26144 gang
26145 ganove
26146 gans
26151 gant
26152 ganz
26153 garage
26154 garant
26155 garaus
26156 garbe
26161 garde
26162 gardine
26163 gardist
26164 gare
26165 garland
26166 garn
26211 garstig
26212 garten
26213 gasen
26214 gasfeld
26215 gasmarkt
26216 gasmaske
26221 gasnetz
26222 gasse
26223 gassi
26224 gast
26225 gaswerk
26226 gate
26231 gatte
26232 gattin
26233 gattung
26234 gauch
26235 gaudi
26236 gaukeln
26241 gaukler
26242 gaul
26243 gaumen
26244 gauner
26245 gautier
26246 gave
26251 gazelle
26252 gazette
26253 geadelt
26254 geartet
26255 geballt
26256 gebannt
26261 gebaren
26262 gebaut
26263 gebein
26264 gebell
26265 geben
26266 geber
26311 gebet
26312 gebeugt
26313 gebiet
26314 gebilde
26315 gebinde
26316 gebirge
26321 gebiss
26322 gebogen
26323 geboren
26324 geborgt
26325 gebot
26326 gebracht
26331 gebraten
26332 gebrauch
26333 gebraut
26334 gebrech
26335 gebucht
26336 gebunden
26341 geburt
26342 geck
26343 gedacht
26344 gedanke
26345 gedeck
26346 gedehnt
26351 gedeih
26352 gedenken
26353 gedicht
26354 gediegen
26355 gedient
26356 gedopt
26361 gedreht
26362 gedruckt
26363 geduld
26364 geehrt
26365 geeignet
26366 geeint
26411 geerbt
26412 gefahr
26413 gefallen
26414 gefasst
26415 gefecht
26416 gefeit
26421 gefieder
26422 gefilde
26423 gefilmt
26424 geflecht
26425 gefleckt
26426 geflohen
26431 gefolge
26432 geformt
26433 gefoult
26434 gefragt
26435 gefunden
26436 gegeben
26441 gegen
26442 geglaubt
26443 gegner
26444 gegrillt
26445 gehabe
26446 gehackt
26451 gehalt
26452 gehasst
26453 gehauen
26454 gehege
26455 gehegt
26456 geheim
26461 geheizt
26462 gehemmt
26463 gehen
26464 geher
26465 gehetzt
26466 geheuer
26511 geheul
26512 gehhilfe
26513 gehilfe
26514 gehirn
26515 gehoben
26516 geholt
26521 gehorsam
26522 gehrer
26523 gehweg
26524 gehzeit
26525 geier
26526 geige
26531 geil
26532 geimpft
26533 geisel
26534 geisha
26535 geist
26536 geiz
26541 gejagt
26542 gejohle
26543 gekannt
26544 gekapert
26545 gekehrt
26546 gekippt
26551 geklaut
26552 geklont
26553 gekocht
26554 gekonnt
26555 gekreuzt
26556 geladen
26561 gelage
26562 gelandet
26563 gelangen
26564 gelangt
26565 gelass
26566 gelaufe
26611 gelb
26612 geld
26613 gelebt
26614 gelee
26615 gelege
26616 gelegt
26621 gelehrig
26622 gelehrt
26623 geleise
26624 geleit
26625 gelenk
26626 gelernt
26631 gelesen
26632 geliebte
26633 gelind
26634 gelistet
26635 gell
26636 geloben
26641 gelockt
26642 gelt
26643 gemach
26644 gemahl
26645 gemein
26646 gemetzel
26651 gemisch
26652 genau
26653 gendarm
26654 genehm
26655 geneigt
26656 general
26661 genervt
26662 genese
26663 genesis
26664 genetik
26665 genfer
26666 genial
31111 genick
31112 genie
31113 genitale
31114 genitiv
31115 genius
31116 genmais
31121 genom
31122 genormt
31123 genosse
31124 genozid
31125 genre
31126 gens
31131 gent
31132 genug
31133 genuin
31134 genus
31135 genutzt
31136 geograf
31141 geologe
31142 geopark
31143 gepackt
31144 gepard
31145 geparkt
31146 geplagt
31151 geplatzt
31152 geputzt
31153 gerade
31154 gerahmt
31155 geranie
31156 geraten
31161 geraubt
31162 geraum
31163 gerben
31164 gerber
31165 gerecht
31166 gerede
31211 gereift
31212 gereiht
31213 gereimt
31214 gereizt
31215 gerettet
31216 gericht
31221 gerieren
31222 gering
31223 gerippe
31224 gerissen
31225 germane
31226 gern
31231 gerste
31232 gerte
31233 geruch
31234 gesamt
31235 gesandt
31236 gesang
31241 gescheit
31242 geschenk
31243 geschirr
31244 geschont
31245 geschoss
31246 gesegnet
31251 gesehen
31252 gesell
31253 gesendet
31254 gesenkt
31255 gesetz
31256 gesicht
31261 gesims
31262 gesinde
31263 gesittet
31264 gespann
31265 gespart
31266 gesperrt
31311 gest
31312 gesuch
31313 gesund
31314 getan
31315 getarnt
31316 getaucht
31321 getauft
31322 geteert
31323 geteilt
31324 getier
31325 getragen
31326 getreten
31331 getreu
31332 getriebe
31333 getrost
31334 getto
31335 getue
31336 geviert
31341 gewagt
31342 gewahr
31343 gewalt
31344 gewand
31345 gewann
31346 gewebe
31351 geweckt
31352 gewehr
31353 geweih
31354 gewellt
31355 gewerbe
31356 gewerk
31361 gewesen
31362 gewicht
31363 gewieft
31364 gewinde
31365 gewinn
31366 gewirr
31411 gewiss
31412 gewitzt
31413 gewogen
31414 gewohnt
31415 gewollt
31416 geworfen
31421 gewusel
31422 geysir
31423 gezackt
31424 gezahlt
31425 gezapft
31426 gezeigt
31431 gezeit
31432 gezerre
31433 gezeter
31434 gezeugt
31435 gezielt
31436 geziert
31441 gezogen
31442 ghanaer
31443 gibbon
31444 gibbs
31445 gicht
31446 giebel
31451 gier
31452 gift
31453 gigant
31454 gigolo
31455 gilde
31456 gilge
31461 ginger
31462 ginko
31463 gipfel
31464 gips
31465 giraffe
31466 girl
31511 giro
31512 gischt
31513 gisler
31514 gitarre
31515 gitter
31516 glace
31521 glamour
31522 glanz
31523 glarner
31524 glas
31525 glatt
31526 glatze
31531 glaube
31532 gleich
31533 gleis
31534 gleiten
31535 glied
31536 glimmen
31541 glitter
31542 glitzer
31543 global
31544 globus
31545 glocke
31546 gloria
31551 glorie
31552 glosen
31553 gloser
31554 glossar
31555 glosse
31556 glotze
31561 glucke
31562 glukose
31563 glut
31564 glyzerin
31565 gmbh
31566 gnade
31611 gneis
31612 gnom
31613 goal
31614 gobelin
31615 gockel
31616 gode
31621 gold
31622 golem
31623 golf
31624 goliath
31625 gondel
31626 gong
31631 goodwill
31632 googeln
31633 gordisch
31634 gorilla
31635 gospel
31636 gosse
31641 gote
31642 gotik
31643 gotisch
31644 gott
31645 gouache
31646 gourmet
31651 grab
31652 gracht
31653 grad
31654 graf
31655 gral
31656 gram
31661 gran
31662 graph
31663 gras
31664 grat
31665 grau
31666 graveur
32111 gravur
32112 grazer
32113 grazie
32114 grazil
32115 greif
32116 greinen
32121 greis
32122 grell
32123 gremium
32124 grenze
32125 grenzort
32126 grieche
32131 gries
32132 griff
32133 grill
32134 grimm
32135 grindel
32136 grinsen
32141 grippal
32142 grippe
32143 grips
32144 grob
32145 groll
32146 groove
32151 groovig
32152 gros
32153 grotesk
32154 grotte
32155 groupie
32156 grube
32161 gruft
32162 grund
32163 grunge
32164 grunzen
32165 gruppe
32166 gruselig
32211 gruseln
32212 guayana
32213 gucken
32214 guest
32215 guide
32216 gulag
32221 gulasch
32222 gulden
32223 gully
32224 gummi
32225 gunkel
32226 gunst
32231 gurgel
32232 gurke
32233 gurren
32234 gurt
32235 guru
32236 guss
32241 gusto
32242 guthaben
32243 gutperle
32244 gutshof
32245 gutteil
32246 guttun
32251 haager
32252 haar
32253 habe
32254 habgier
32255 habhaft
32256 habicht
32261 habil
32262 habitat
32263 habitus
32264 hacke
32265 hader
32266 hades
32311 hafen
32312 hafer
32313 haff
32314 hafner
32315 haft
32316 hagel
32321 hager
32322 haha
32323 hahn
32324 haifisch
32325 haiku
32326 hain
32331 haken
32332 hakim
32333 halb
32334 halde
32335 halfpipe
32336 hall
32341 halm
32342 halo
32343 hals
32344 halt
32345 halunke
32346 hamas
32351 hamit
32352 hammel
32353 hammer
32354 hampeln
32355 hamster
32356 hand
32361 hanf
32362 hang
32363 hanse
32364 hantel
32365 hapern
32366 happen
32411 happig
32412 happy
32413 hardcore
32414 harde
32415 harem
32416 harfe
32421 harke
32422 harm
32423 harn
32424 harren
32425 hart
32426 harzer
32431 harzig
32432 haschen
32433 hase
32434 hass
32435 hast
32436 hatz
32441 haube
32442 hauch
32443 haue
32444 haufe
32445 haupt
32446 haus
32451 haut
32452 havarie
32453 haxe
32454 header
32455 hearing
32456 hebamme
32461 hebe
32462 hebung
32463 hecheln
32464 hecht
32465 heck
32466 heer
32511 hefe
32512 heft
32513 hege
32514 hehl
32515 hehr
32516 heide
32521 heikel
32522 heil
32523 heim
32524 heini
32525 heirat
32526 heiser
32531 heister
32532 heiter
32533 heizen
32534 heizer
32535 heizung
32536 heizwert
32541 hektar
32542 hektik
32543 held
32544 helfen
32545 helfer
32546 helium
32551 hell
32552 helm
32553 hemd
32554 hemmen
32555 hemmer
32556 hemmnis
32561 hemmung
32562 hendl
32563 hengst
32564 henken
32565 henker
32566 henne
32611 herab
32612 heraldik
32613 heran
32614 herauf
32615 heraus
32616 herb
32621 herd
32622 herein
32623 herero
32624 hergang
32625 hergeben
32626 herholen
32631 hering
32632 herkunft
32633 hermelin
32634 hernach
32635 herodot
32636 heroe
32641 heroin
32642 heros
32643 herr
32644 hertz
32645 herum
32646 herunter
32651 hervor
32652 herz
32653 hesse
32654 hessin
32655 hessisch
32656 hetero
32661 hetze
32662 hetzjagd
32663 heuen
32664 heuer
32665 heulen
32666 heumarkt
33111 heupelz
33112 heurig
33113 heut
33114 hexe
33115 hick
33116 hieb
33121 hier
33122 hiesig
33123 hieven
33124 hiezu
33125 high
33126 hilfe
33131 hilflos
33132 hilfsgut
33133 himmel
33134 hinab
33135 hinauf
33136 hinaus
33141 hindern
33142 hindi
33143 hindu
33144 hinein
33145 hingabe
33146 hingeben
33151 hingehen
33152 hinkel
33153 hinken
33154 hinserie
33155 hinsicht
33156 hinten
33161 hinter
33162 hinunter
33163 hinweg
33164 hinweis
33165 hinzu
33166 hipp
33211 hirn
33212 hirsch
33213 hirse
33214 hirt
33215 hissen
33216 hitze
33221 hitzig
33222 hitzkopf
33223 hobart
33224 hobbit
33225 hobby
33226 hobel
33231 hoch
33232 hock
33233 hoden
33234 hofburg
33235 hofdame
33236 hoffen
33241 hoffest
33242 hoffnung
33243 hofgut
33244 hofladen
33245 hofmaler
33246 hofmark
33251 hofnarr
33252 hofrat
33253 hofraum
33254 hoftor
33255 hoheit
33256 hohelied
33261 hohl
33262 hohn
33263 hold
33264 holen
33265 holler
33266 holpern
33311 holprig
33312 holter
33313 holunder
33314 holz
33315 homeland
33316 hommage
33321 homo
33322 honen
33323 honig
33324 honne
33325 honorar
33326 honorig
33331 hopfen
33332 hopp
33333 hopsen
33334 hora
33335 horchen
33336 horde
33341 horizont
33342 hormon
33343 horn
33344 horrend
33345 horror
33346 horse
33351 hort
33352 hose
33353 hospiz
33354 host
33355 hotel
33356 hotline
33361 hotspot
33362 hott
33363 hube
33364 hubraum
33365 huch
33366 hufnagel
33411 huhn
33412 hulk
33413 human
33414 humbug
33415 hummel
33416 hummer
33421 humor
33422 humpeln
33423 humus
33424 hund
33425 hunger
33426 hungrig
33431 hunne
33432 hunt
33433 hupe
33434 hurra
33435 hurrikan
33436 hurtig
33441 husar
33442 husch
33443 husky
33444 hussit
33445 husten
33446 huster
33451 hybrid
33452 hybris
33453 hydra
33454 hygiene
33455 hymne
33456 hymnus
33461 hype
33462 hypnose
33463 iberer
33464 iberisch
33465 ibis
33466 icon
33511 ideal
33512 idee
33513 iden
33514 ideologe
33515 idiom
33516 idiot
33521 idol
33522 idyll
33523 igel
33524 iglu
33525 ignoranz
33526 ihnen
33531 ihrige
33532 ikone
33533 ilias
33534 illegal
33535 image
33536 imago
33541 imam
33542 imbiss
33543 imitator
33544 imker
33545 immens
33546 immer
33551 immun
33552 impact
33553 impetus
33554 impfen
33555 impfung
33556 import
33561 imposant
33562 impotent
33563 impuls
33564 inaktiv
33565 inch
33566 indem
33611 inder
33612 indes
33613 index
33614 indigen
33615 indigo
33616 indio
33621 indirekt
33622 indisch
33623 indiz
33624 infam
33625 infantil
33626 infarkt
33631 infekt
33632 inferior
33633 inferno
33634 info
33635 infrage
33636 ingwer
33641 inhaber
33642 inhalt
33643 inhuman
33644 initial
33645 initiant
33646 inka
33651 inland
33652 inline
33653 inmitten
33654 inne
33655 innig
33656 innung
33661 input
33662 insasse
33663 insekt
33664 insel
33665 inserat
33666 inside
34111 insigne
34112 insofern
34113 instabil
34114 instand
34115 instanz
34116 insulin
34121 intakt
34122 integer
34123 integral
34124 interim
34125 intern
34126 intim
34131 intrige
34132 intro
34133 intuitiv
34134 intus
34135 inuit
34136 invalid
34141 invasiv
34142 invasor
34143 invers
34144 investiv
34145 inzest
34146 inzucht
34151 ionisch
34152 iraker
34153 irakisch
34154 iraner
34155 iranisch
34156 irdisch
34161 ireland
34162 irgend
34163 iridium
34164 irin
34165 irisch
34166 irmtraut
34211 irokese
34212 ironie
34213 irre
34214 irrig
34215 irrsinn
34216 irrtum
34221 irrung
34222 irrweg
34223 ische
34224 ischl
34225 islam
34226 isotop
34231 israeli
34232 item
34233 ivorer
34234 ivorisch
34235 jacht
34236 jacke
34241 jackpot
34242 jacquet
34243 jade
34244 jagd
34245 jagen
34246 jager
34251 jaguar
34252 jahr
34253 jaja
34254 jako
34255 jalousie
34256 jammer
34261 janneck
34262 januar
34263 japaner
34264 jargon
34265 jass
34266 jauche
34311 jaulen
34312 jause
34313 jawoll
34314 jawort
34315 jazz
34316 jeans
34321 jeck
34322 jedesmal
34323 jedoch
34324 jeep
34325 jeher
34326 jemals
34331 jemand
34332 jenaer
34333 jenisch
34334 jenseits
34335 jerez
34336 jesuit
34341 jetlag
34342 jeton
34343 jetten
34344 jetzig
34345 jetzt
34346 jeweils
34351 jiddisch
34352 jobben
34353 jobber
34354 joch
34355 jockei
34356 jodeln
34361 jodler
34362 joggen
34363 jogger
34364 jogging
34365 jogurt
34366 johanni
34411 johlen
34412 joint
34413 joker
34414 jolle
34415 jongleur
34416 josefin
34421 journal
34422 jovial
34423 joystick
34424 jubel
34425 jubilar
34426 jucken
34431 juckreiz
34432 jude
34433 judo
34434 jugend
34435 jukebox
34436 juli
34441 jump
34442 jung
34443 juni
34444 junker
34445 junkie
34446 junktim
34451 juno
34452 junta
34453 jura
34454 juris
34455 juror
34456 jurte
34461 jury
34462 juso
34463 just
34464 jute
34465 juvenil
34466 juwel
34511 kabale
34512 kabbala
34513 kabel
34514 kabine
34515 kachel
34516 kadaver
34521 kadenz
34522 kader
34523 kadett
34524 kadi
34525 kaeser
34526 kaff
34531 kahl
34532 kaimauer
34533 kairoer
34534 kaiser
34535 kajak
34536 kakadu
34541 kakao
34542 kaktus
34543 kalauer
34544 kalb
34545 kali
34546 kalk
34551 kalorie
34552 kalt
34553 kalzium
34554 kamel
34555 kamera
34556 kamille
34561 kamin
34562 kamm
34563 kampf
34564 kanal
34565 kandare
34566 kandidat
34611 kanne
34612 kanon
34613 kantate
34614 kante
34615 kantig
34616 kantine
34621 kanton
34622 kantor
34623 kanu
34624 kanzel
34625 kanzlei
34626 kanzler
34631 kapelle
34632 kapern
34633 kapieren
34634 kapital
34635 kapitel
34636 kapitol
34641 kaplan
34642 kapo
34643 kappe
34644 kapsel
34645 kaputt
34646 kapuze
34651 karaoke
34652 karat
34653 karbon
34654 karde
34655 kardinal
34656 karenz
34661 karg
34662 kariert
34663 karies
34664 karma
34665 karner
34666 karo
35111 karpfen
35112 karre
35113 karst
35114 kart
35115 karwoche
35116 kasache
35121 kaserne
35122 kasino
35123 kaskade
35124 kasper
35125 kaspisch
35126 kassa
35131 kasse
35132 kassier
35133 kaste
35134 kasus
35135 kata
35136 kater
35141 katheter
35142 kathode
35143 kation
35144 katze
35145 kauen
35146 kauer
35151 kauf
35152 kaugummi
35153 kaule
35154 kaum
35155 kausal
35156 kaution
35161 kauz
35162 kavalier
35163 kaviar
35164 kebab
35165 keck
35166 keep
35211 kees
35212 kegel
35213 kegler
35214 kehle
35215 kehlkopf
35216 kehr
35221 keifen
35222 keil
35223 keim
35224 keks
35225 kelch
35226 kelle
35231 kellner
35232 kelt
35233 kelvin
35234 kennen
35235 kenner
35236 kennung
35241 kennzahl
35242 kentern
35243 kentucky
35244 keramik
35245 kerb
35246 kerker
35251 kerl
35252 kern
35253 kerosin
35254 kerwe
35255 kerze
35256 kess
35261 ketscher
35262 kette
35263 kettler
35264 ketzer
35265 keuchen
35266 keule
35311 keusch
35312 khan
35313 khmer
35314 kibbuz
35315 kichern
35316 kick
35321 kiebitz
35322 kiefer
35323 kieler
35324 kieme
35325 kien
35326 kies
35331 kiez
35332 kiffen
35333 kiffer
35334 killen
35335 killer
35336 kilo
35341 kilt
35342 kimono
35343 kind
35344 kingdom
35345 kinn
35346 kino
35351 kiosk
35352 kippe
35353 kirche
35354 kirgise
35355 kirke
35356 kirmes
35361 kirnen
35362 kirsche
35363 kissen
35364 kiste
35365 kitsch
35366 kitt
35411 kitz
35412 kiwi
35413 klaffen
35414 klage
35415 klaglos
35416 klamauk
35421 klamm
35422 klan
35423 klappe
35424 klaps
35425 klar
35426 klasse
35431 klassik
35432 klatsch
35433 klauben
35434 klaue
35435 klause
35436 klausur
35441 klavier
35442 kleben
35443 kleber
35444 klebrig
35445 klecks
35446 klee
35451 klei
35452 klemme
35453 klempner
35454 klepper
35455 klerus
35456 klette
35461 klick
35462 klient
35463 klima
35464 klimmen
35465 klimpern
35466 klinge
35511 klinik
35512 klinke
35513 klipp
35514 klirren
35515 kloake
35516 klobig
35521 klon
35522 klopfen
35523 klopfer
35524 klopp
35525 kloss
35526 kloster
35531 klotz
35532 klub
35533 kluft
35534 klug
35535 klump
35536 knabe
35541 knack
35542 knall
35543 knapp
35544 knarre
35545 knast
35546 knatsch
35551 knattern
35552 knauf
35553 knebel
35554 knecht
35555 kneifen
35556 kneip
35561 knete
35562 knick
35563 knie
35564 kniff
35565 knigge
35566 knipsen
35611 knipser
35612 knirps
35613 knistern
35614 knittel
35615 knobel
35616 knochen
35621 knolle
35622 knopf
35623 knopp
35624 knorpel
35625 knorr
35626 knospe
35631 knoten
35632 knurren
35633 knute
35634 koala
35635 kobalt
35636 kobel
35641 koben
35642 kober
35643 kobold
35644 kobra
35645 koch
35646 koda
35651 kode
35652 kodiert
35653 koffein
35654 koffer
35655 kogel
35656 kohl
35661 kohorte
35662 koje
35663 kojote
35664 kokain
35665 koken
35666 kokerei
36111 kokett
36112 kokon
36113 koks
36114 kolben
36115 kolibri
36116 kolik
36121 kollaps
36122 kolleg
36123 koller
36124 kollier
36125 kolonial
36126 kolonie
36131 kolonist
36132 kolonne
36133 kolorit
36134 koloss
36135 kolumne
36136 koma
36141 kombi
36142 komet
36143 komfort
36144 komik
36145 komisch
36146 komitat
36151 komitee
36152 komma
36153 kommen
36154 kommer
36155 kommode
36156 kommune
36161 kompakt
36162 kompanie
36163 kompass
36164 komplex
36165 komplize
36166 komplott
36211 kompost
36212 komtur
36213 kondom
36214 konfetti
36215 konflikt
36216 konform
36221 konfus
36222 konisch
36223 konkav
36224 konklave
36225 konkret
36226 konkurs
36231 konsens
36232 konserve
36233 konsole
36234 konsorte
36235 konsul
36236 konsum
36241 kontakt
36242 konter
36243 kontext
36244 konto
36245 kontra
36246 kontur
36251 konvent
36252 konvex
36253 konvoi
36254 konzept
36255 konzern
36256 konzert
36261 konzil
36262 kopf
36263 kopie
36264 kopilot
36265 koppel
36266 koppen
36311 kopplung
36312 kopte
36313 koralle
36314 koran
36315 korb
36316 kord
36321 kore
36322 kork
36323 kormoran
36324 korn
36325 korona
36326 korps
36331 korpus
36332 korrekt
36333 korridor
36334 korrupt
36335 korse
36336 korso
36341 kosak
36342 koscher
36343 kosen
36344 kosmos
36345 kost
36346 kotzen
36351 kraal
36352 krabbe
36353 krach
36354 krad
36355 kraft
36356 kragen
36361 krake
36362 kralle
36363 kram
36364 kran
36365 krapfen
36366 krapp
36411 krass
36412 krater
36413 kratze
36414 kraul
36415 kraus
36416 kraut
36421 krawall
36422 krawatte
36423 kraxeln
36424 kreativ
36425 kreatur
36426 krebs
36431 kredit
36432 kredo
36433 kreide
36434 kreiert
36435 kreis
36436 kreme
36441 kremig
36442 kreml
36443 krempel
36444 kremser
36445 kren
36446 kresse
36451 kretisch
36452 kreuz
36453 krick
36454 krida
36455 kriechen
36456 krieg
36461 krimi
36462 kring
36463 kripo
36464 krippe
36465 kris
36466 kritik
36511 kritzeln
36512 kroate
36513 kroatin
36514 krokus
36515 kroll
36516 krone
36521 kropf
36522 kross
36523 krud
36524 krug
36525 krumm
36526 kruste
36531 krux
36532 krypta
36533 kubaner
36534 kubik
36535 kubisch
36536 kubus
36541 kuchen
36542 kucken
36543 kuckuck
36544 kufe
36545 kugel
36546 kuhberg
36551 kuhle
36552 kuhmilch
36553 kuhstall
36554 kulant
36555 kulanz
36556 kuli
36561 kullern
36562 kult
36563 kumm
36564 kumpan
36565 kumpel
36566 kunde
36611 kundig
36612 kundin
36613 kundtun
36614 kunkel
36615 kunst
36616 kupfer
36621 kupon
36622 kuppe
36623 kurator
36624 kurbad
36625 kurbel
36626 kurde
36631 kurdin
36632 kurdisch
36633 kuren
36634 kurgast
36635 kurhaus
36636 kurhotel
36641 kurie
36642 kurios
36643 kurland
36644 kurort
36645 kurpark
36646 kurs
36651 kurtaxe
36652 kurve
36653 kurvig
36654 kurz
36655 kuschen
36656 kusine
36661 kuss
36662 kustos
36663 kutsche
36664 kutte
36665 kuttner
36666 kuvert
41111 kyrie
41112 label
41113 laben
41114 labern
41115 labil
41116 labor
41121 lache
41122 lachgas
41123 lachhaft
41124 lachs
41125 lack
41126 lade
41131 ladung
41132 lady
41133 laessig
41134 lage
41135 lagune
41136 lahm
41141 laib
41142 laich
41143 laie
41144 lakai
41145 lake
41146 lakritz
41151 lallen
41152 lama
41153 lambda
41154 lamelle
41155 lamento
41156 lametta
41161 lamm
41162 lampe
41163 lampion
41164 land
41165 lang
41166 lanze
41211 lapidar
41212 lapp
41213 lapsus
41214 laptop
41215 largo
41216 larve
41221 lasch
41222 laser
41223 lassen
41224 lasso
41225 last
41226 lasziv
41231 latein
41232 latent
41233 lateral
41234 laterne
41235 latex
41236 latino
41241 latrine
41242 latsch
41243 latte
41244 latzhose
41245 laub
41246 lauch
41251 laudatio
41252 laude
41253 lauern
41254 lauf
41255 lauge
41256 laumann
41261 laune
41262 launig
41263 launisch
41264 laus
41265 laut
41266 lauwarm
41311 lava
41312 lavieren
41313 lawine
41314 lead
41315 leasen
41316 leasing
41321 leben
41322 leber
41323 lebhaft
41324 leblos
41325 lebzeit
41326 lechzen
41331 leck
41332 leder
41333 ledig
41334 leer
41335 legal
41336 legat
41341 legen
41342 leger
41343 legion
41344 legitim
41345 leguan
41346 lehen
41351 lehm
41352 lehne
41353 lehr
41354 leib
41355 leiche
41356 leichnam
41361 leicht
41362 leid
41363 leier
41364 leihen
41365 leihgabe
41366 leim
41411 leine
41412 leise
41413 leistbar
41414 leiste
41415 leistung
41416 leitbild
41421 leite
41422 leitgeb
41423 leitidee
41424 leitung
41425 leitwerk
41426 lektion
41431 lektor
41432 lemma
41433 lemming
41434 lende
41435 lenken
41436 lenker
41441 lenkrad
41442 lenkung
41443 lenz
41444 leopard
41445 lepra
41446 lerche
41451 lernen
41452 lernort
41453 lesart
41454 lesbar
41455 lesbe
41456 lesbisch
41461 lese
41462 lesung
41463 lette
41464 lettisch
41465 lettner
41466 letzt
41511 leuchte
41512 leugnen
41513 leugner
41514 leumund
41515 leut
41516 level
41521 levit
41522 lexikon
41523 leykam
41524 liaison
41525 libanese
41526 libelle
41531 liberal
41532 libero
41533 libido
41534 libyer
41535 libysch
41536 licht
41541 lido
41542 lieb
41543 lied
41544 liefern
41545 liege
41546 lien
41551 liesche
41552 lift
41553 liga
41554 light
41555 ligist
41556 ligue
41561 liieren
41562 lila
41563 lilie
41564 limes
41565 limit
41566 limmat
41611 limo
41612 lind
41613 lineal
41614 linear
41615 linge
41616 linie
41621 link
41622 linse
41623 linzer
41624 lippe
41625 liquid
41626 lira
41631 lire
41632 lispeln
41633 list
41634 litanei
41635 litauer
41636 lite
41641 lithium
41642 live
41643 livre
41644 lizenz
41645 lobby
41646 loben
41651 loblied
41652 lobrede
41653 loch
41654 locke
41655 lockig
41656 lockruf
41661 lodern
41662 lodz
41663 loft
41664 logbuch
41665 loge
41666 loggia
42111 logieren
42112 logik
42113 logis
42114 logo
42115 lohen
42116 lohn
42121 loipe
42122 lokal
42123 londoner
42124 longe
42125 look
42126 looping
42131 looser
42132 lorbeer
42133 lord
42134 lore
42135 lori
42136 lose
42141 losgehen
42142 lossagen
42143 lost
42144 losung
42145 loten
42146 lotse
42151 lotto
42152 lotus
42153 lounge
42154 lover
42155 loyal
42156 luchs
42161 luder
42162 ludothek
42163 luft
42164 lugen
42165 luke
42166 lumen
42211 lumpen
42212 luna
42213 lunch
42214 lunge
42215 lunte
42216 lupe
42221 lupfen
42222 lupfer
42223 lupus
42224 lurch
42225 lusaka
42226 lust
42231 lutschen
42232 luxor
42233 luxus
42234 luzid
42235 luzifer
42236 lynchen
42241 lyra
42242 lyrik
42243 lyrisch
42244 lyzeum
42245 maar
42246 maat
42251 mach
42252 macke
42253 maculan
42254 madam
42255 made
42256 madig
42261 madjar
42262 madonna
42263 madras
42264 madrider
42265 maestro
42266 mafia
42311 mafios
42312 magazin
42313 magd
42314 mage
42315 magie
42316 magisch
42321 magister
42322 magma
42323 magnat
42324 magnet
42325 magnolie
42326 magnum
42331 mahatma
42332 mahl
42333 mahnen
42334 mahner
42335 mahnmal
42336 mahnung
42341 mahr
42342 maibach
42343 maibaum
42344 maid
42345 maifeier
42346 maifeld
42351 maifest
42352 mail
42353 mainzer
42354 mairie
42355 mais
42356 maja
42361 major
42362 makaber
42363 makak
42364 makel
42365 makler
42366 makro
42411 malaria
42412 malen
42413 maler
42414 malheur
42415 malkurs
42416 malochen
42421 malus
42422 malz
42423 mama
42424 mambo
42425 mami
42426 mamma
42431 mammon
42432 mammut
42433 mampfen
42434 managen
42435 manager
42436 manchmal
42441 mandala
42442 mandant
42443 mandat
42444 mandel
42445 mandl
42446 manege
42451 manga
42452 mange
42453 mango
42454 manie
42455 manifest
42456 manisch
42461 manitu
42462 manko
42463 mann
42464 mantel
42465 mantra
42466 manual
42511 manuell
42512 maoist
42513 maori
42514 mappe
42515 maputo
42516 marathon
42521 marder
42522 marge
42523 maribor
42524 marille
42525 marin
42526 maritim
42531 mark
42532 marlen
42533 marmor
42534 marod
42535 marotte
42536 marquis
42541 mars
42542 marterl
42543 marxist
42544 marzipan
42545 masche
42546 maschine
42551 maser
42552 maske
42553 maso
42554 massage
42555 massai
42556 massaker
42561 masse
42562 massig
42563 massiv
42564 mast
42565 masure
42566 matador
42611 match
42612 mate
42613 mathe
42614 matinee
42615 matrix
42616 matrose
42621 matsch
42622 matt
42623 matura
42624 matze
42625 mauer
42626 maul
42631 maure
42632 maurisch
42633 maus
42634 maut
42635 maximal
42636 maxime
42641 maximum
42642 maya
42643 mayor
42644 meckern
42645 medaille
42646 meder
42651 media
42652 medium
42653 medizin
42654 medley
42655 medusa
42656 meer
42661 meeting
42662 megabit
42663 megabyte
42664 megafon
42665 mehl
42666 mehr
43111 meiden
43112 meierei
43113 meile
43114 mein
43115 meise
43116 meist
43121 melange
43122 melanom
43123 melde
43124 meldung
43125 melk
43126 melodie
43131 melodik
43132 melone
43133 melos
43134 membran
43135 memento
43136 memo
43141 menge
43142 menhir
43143 meniskus
43144 mensa
43145 mensch
43146 mensur
43151 mental
43152 mentor
43153 menu
43154 meritum
43155 merkbar
43156 merken
43161 merker
43162 merkmal
43163 merkur
43164 merle
43165 mesched
43166 mesmer
43211 mesner
43212 message
43213 messbar
43214 messe
43215 messias
43216 messing
43221 messung
43222 messwert
43223 meta
43224 meteor
43225 meter
43226 methadon
43231 methan
43232 methode
43233 metier
43234 metrik
43235 metrisch
43236 metrum
43241 mett
43242 metze
43243 metzger
43244 metzler
43245 meute
43246 micke
43251 mickrig
43252 midi
43253 mieder
43254 mief
43255 miene
43256 mies
43261 miete
43262 mietzins
43263 mieze
43264 migrant
43265 mikado
43266 mikro
43311 milano
43312 milbe
43313 milch
43314 mild
43315 milieu
43316 miliz
43321 mille
43322 million
43323 milorad
43324 milz
43325 mime
43326 mimik
43331 mimisch
43332 mimus
43333 minarett
43334 minder
43335 mindeste
43336 mine
43341 mini
43342 minne
43343 minoisch
43344 minor
43345 mint
43346 minus
43351 minute
43352 minze
43353 mirage
43354 mirakel
43355 mirza
43356 mischen
43361 mise
43362 miss
43363 mist
43364 mitautor
43365 mitgeben
43366 mitgift
43411 mitglied
43412 mithin
43413 mitleid
43414 mitlesen
43415 mitnahme
43416 mitreden
43421 mitsamt
43422 mittag
43423 mitte
43424 mittig
43425 mittler
43426 mittun
43431 mittwoch
43432 mixed
43433 mixen
43434 mixer
43435 mixtur
43436 moabit
43441 mobben
43442 mobbing
43443 mobil
43444 modal
43445 mode
43446 modisch
43451 modul
43452 modus
43453 mofa
43454 mogeln
43455 mogul
43456 mohn
43461 mohr
43462 mokieren
43463 molch
43464 mole
43465 molke
43466 moll
43511 moloch
43512 moment
43513 monarch
43514 monat
43515 mond
43516 mongole
43521 monieren
43522 moniert
43523 monitor
43524 monnet
43525 mono
43526 monreal
43531 monster
43532 monsun
43533 montag
43534 montan
43535 monteur
43536 month
43541 montiert
43542 montur
43543 moor
43544 moos
43545 moped
43546 mops
43551 mora
43552 morbid
43553 mord
43554 morgen
43555 morgig
43556 moritat
43561 mormone
43562 morphin
43563 morsch
43564 mortal
43565 mosaik
43566 moschee
43611 moselort
43612 mosern
43613 moskauer
43614 moskito
43615 moslem
43616 most
43621 motel
43622 motette
43623 motion
43624 motiv
43625 moto
43626 motte
43631 motto
43632 motzen
43633 movie
43634 mucke
43635 muezzin
43636 muff
43641 mufti
43642 mulde
43643 mull
43644 mulmig
43645 multi
43646 mumie
43651 mumm
43652 mumps
43653 mund
43654 mungo
43655 munition
43656 munkeln
43661 munter
43662 murau
43663 mure
43664 murmel
43665 murren
43666 muschel
44111 muse
44112 musica
44113 musik
44114 musisch
44115 muskat
44116 muskel
44121 muslim
44122 muss
44123 mustang
44124 muster
44125 mutant
44126 muten
44131 mutiert
44132 mutig
44133 mutlos
44134 mutprobe
44135 mutter
44136 mutti
44141 mystik
44142 mythe
44143 mythos
44144 nabe
44145 nach
44146 nacken
44151 nackt
44152 nadel
44153 nadler
44154 nagel
44155 nagen
44156 nager
44161 nahe
44162 nahost
44163 nahrhaft
44164 nahrung
44165 naht
44166 naiv
44211 name
44212 namhaft
44213 nanu
44214 napalm
44215 napf
44216 narbe
44221 narkose
44222 narr
44223 narziss
44224 nasal
44225 naschen
44226 nase
44231 nashorn
44232 nass
44233 nation
44234 nativ
44235 natrium
44236 natter
44241 natur
44242 nebel
44243 neben
44244 neblig
44245 nebst
44246 necken
44251 need
44252 neffe
44253 negativ
44254 negieren
44255 nehmen
44256 nehmer
44261 neid
44262 neige
44263 neigung
44264 nein
44265 nekrolog
44266 nektar
44311 nelke
44312 nemesis
44313 nennen
44314 nenner
44315 nenngeld
44316 nennung
44321 neon
44322 neptun
44323 nerv
44324 nerz
44325 nessel
44326 nest
44331 nett
44332 network
44333 netz
44334 neubau
44335 neudeck
44336 neudruck
44341 neue
44342 neugier
44343 neuheit
44344 neujahr
44345 neukauf
44346 neuland
44351 neulich
44352 neuling
44353 neumond
44354 neun
44355 neureich
44356 neuron
44361 neurose
44362 neutral
44363 neutrino
44364 neutron
44365 neutrum
44366 neuwagen
44411 neuwahl
44412 neuwerk
44413 neuzeit
44414 news
44415 nice
44416 nicht
44421 nickel
44422 nicken
44423 nicki
44424 nicol
44425 nieder
44426 niedrig
44431 niemals
44432 niemand
44433 niere
44434 nieseln
44435 niesen
44436 niet
44441 nigger
44442 nikotin
44443 nilpferd
44444 nimbus
44445 nimmer
44446 nippen
44451 nippes
44452 nirgends
44453 nirwana
44454 nische
44455 nisse
44456 nisten
44461 nister
44462 nitrat
44463 niveau
44464 nixe
44465 nobel
44466 nobody
44511 noch
44512 nocturne
44513 noir
44514 nomade
44515 nomen
44516 nominal
44521 none
44522 nonne
44523 nonsens
44524 nonstop
44525 nord
44526 noricum
44531 norm
44532 notar
44533 notation
44534 notdurft
44535 note
44536 notfall
44541 nothing
44542 notiert
44543 notiz
44544 notlage
44545 notruf
44546 notwehr
44551 notzeit
44552 nous
44553 nova
44554 novelle
44555 novize
44556 novum
44561 nuance
44562 nudel
44563 nugget
44564 nuklear
44565 null
44566 numerus
44611 nummer
44612 nunmehr
44613 nuntius
44614 nurmehr
44615 nuscheln
44616 nuss
44621 nutzbar
44622 nutzen
44623 nutzer
44624 nutzlast
44625 nutzlos
44626 nutztier
44631 nutzung
44632 nylon
44633 nymphe
44634 oase
44635 obdach
44636 obelisk
44641 oben
44642 ober
44643 obfrau
44644 obhut
44645 obig
44646 objekt
44651 oblast
44652 oblate
44653 obleute
44654 obligat
44655 obmann
44656 oboe
44661 oboist
44662 obolus
44663 obrist
44664 obschon
44665 obsessiv
44666 obskur
45111 obsolet
45112 obst
45113 obus
45114 obwohl
45115 ochs
45116 ocker
45121 odeon
45122 oder
45123 odyssee
45124 oeldorf
45125 oertel
45126 oeuvre
45131 ofen
45132 offen
45133 offert
45134 office
45135 offizier
45136 offline
45141 oftmalig
45142 oftmals
45143 ogtum
45144 oheim
45145 ohmsch
45146 ohne
45151 ohrring
45152 ohrwurm
45153 okay
45154 oker
45155 okkult
45156 oktave
45161 oktett
45162 oktober
45163 oldie
45164 oleander
45165 oliv
45166 olymp
45211 omega
45212 omen
45213 omnibus
45214 onkel
45215 online
45216 opal
45221 open
45222 oper
45223 opfer
45224 opiat
45225 opium
45226 opponent
45231 optik
45232 optimal
45233 optimist
45234 optimum
45235 option
45236 optisch
45241 opulent
45242 opulenz
45243 opus
45244 orakel
45245 oral
45246 orange
45251 oranier
45252 orbit
45253 orden
45254 order
45255 ordnen
45256 ordner
45261 ordnung
45262 ordre
45263 organ
45264 orgel
45265 orgie
45266 orient
45311 original
45312 orion
45313 orkan
45314 orlean
45315 orten
45316 orthodox
45321 ortsamt
45322 ortsbild
45323 ortschef
45324 ortskern
45325 ortslage
45326 ortsnah
45331 ortsrat
45332 ortsring
45333 ortung
45334 osloer
45335 osmane
45336 ossi
45341 ostbahn
45342 osten
45343 osterei
45344 ostern
45345 ostertag
45346 ostfront
45351 osthafen
45352 ostkreuz
45353 ostland
45354 ostler
45355 ostliga
45356 ostrand
45361 ostseite
45362 ostteil
45363 ostufer
45364 ostwand
45365 ostwind
45366 ostzone
45411 otter
45412 outback
45413 outdoor
45414 outen
45415 outfit
45416 outing
45421 outlaw
45422 outlet
45423 outlook
45424 output
45425 outside
45426 oval
45431 ovation
45432 overall
45433 ovum
45434 oxid
45435 ozean
45436 ozon
45441 paar
45442 pace
45443 pacht
45444 pack
45445 paddel
45446 paddler
45451 padre
45452 paella
45453 paffen
45454 page
45455 pagode
45456 pain
45461 pair
45462 paket
45463 pakt
45464 palais
45465 palas
45466 palaver
45511 palazzo
45512 palette
45513 pali
45514 pallas
45515 palme
45516 pampa
45521 panda
45522 panel
45523 panik
45524 panisch
45525 panne
45526 pantani
45531 panter
45532 panzer
45533 papa
45534 paper
45535 papi
45536 pappe
45541 paprika
45542 papst
45543 papua
45544 papyrus
45545 parabel
45546 parade
45551 paradox
45552 paragraf
45553 parallel
45554 paranoia
45555 paranoid
45556 parasit
45561 parat
45562 parcours
45563 pardon
45564 paria
45565 pariert
45566 pariser
45611 park
45612 parodie
45613 parole
45614 paroli
45615 part
45616 pascal
45621 pascha
45622 pass
45623 pasta
45624 paste
45625 pastor
45626 patch
45631 pate
45632 pathos
45633 patient
45634 patin
45635 patriot
45636 patron
45641 patsche
45642 patt
45643 patzen
45644 patzer
45645 pauke
45646 pauschal
45651 pause
45652 pavian
45653 pazifist
45654 peak
45655 peanuts
45656 pech
45661 pedal
45662 pegasus
45663 pegel
45664 peilen
45665 pein
45666 pekinger
46111 pelikan
46112 pelle
46113 peloton
46114 pelz
46115 penalty
46116 pence
46121 pendant
46122 pendel
46123 pendler
46124 penibel
46125 penis
46126 pennen
46131 penner
46132 pension
46133 pensum
46134 pentagon
46135 peppen
46136 peppig
46141 peptid
46142 perfekt
46143 perfid
46144 pergola
46145 periode
46146 perl
46151 perplex
46152 perret
46153 perron
46154 perser
46155 perseus
46156 persisch
46161 person
46162 pervers
46163 pesen
46164 peseta
46165 peso
46166 pest
46211 petit
46212 petter
46213 petto
46214 petze
46215 pfad
46216 pfaffe
46221 pfahl
46222 pfand
46223 pfanne
46224 pfarre
46225 pfau
46226 pfeffer
46231 pfeife
46232 pfeil
46233 pfennig
46234 pferd
46235 pfiff
46236 pfirsich
46241 pflanze
46242 pflaster
46243 pflaume
46244 pflege
46245 pflicht
46246 pflock
46251 pflug
46252 pforte
46253 pfosten
46254 pfote
46255 pfui
46256 pfund
46261 pfusch
46262 phaeton
46263 phalanx
46264 phantom
46265 pharao
46266 phase
46311 phenol
46312 phobie
46313 phon
46314 phosphor
46315 phrase
46316 physik
46321 physis
46322 pianist
46323 piano
46324 piazza
46325 pichler
46326 pick
46331 piece
46332 piep
46333 pier
46334 pieta
46335 pigment
46336 pikant
46341 pike
46342 pikiert
46343 pikkolo
46344 pilar
46345 pilger
46346 pilgrim
46351 pille
46352 pilot
46353 pils
46354 pilz
46355 pinguin
46356 pinie
46361 pink
46362 pinsel
46363 pint
46364 pinzette
46365 pionier
46366 pipa
46411 pipe
46412 piranha
46413 pirat
46414 pirsch
46415 pissoir
46416 piste
46421 pistol
46422 piston
46423 pitbull
46424 pitcher
46425 pixel
46426 pizza
46431 placebo
46432 plafond
46433 plage
46434 plagge
46435 plagiat
46436 plakat
46441 plakette
46442 plan
46443 plasma
46444 plastik
46445 platane
46446 plateau
46451 platin
46452 platt
46453 platz
46454 plausch
46455 playboy
46456 player
46461 playoff
46462 plazet
46463 pleite
46464 plenum
46465 plinius
46466 plot
46511 plump
46512 plunder
46513 plural
46514 plus
46515 pneu
46516 pochen
46521 pocke
46522 podest
46523 podium
46524 poem
46525 poesie
46526 poet
46531 pogrom
46532 point
46533 poitiers
46534 pokal
46535 poker
46536 polar
46541 polder
46542 pole
46543 police
46544 polier
46545 polin
46546 polio
46551 politik
46552 politur
46553 polizei
46554 polizist
46555 polka
46556 pollack
46561 pollen
46562 poller
46563 polnisch
46564 polo
46565 polster
46566 poltern
46611 polyfon
46612 polygon
46613 polymer
46614 polynom
46615 polyp
46616 pomadig
46621 pommer
46622 pommes
46623 pomp
46624 pontius
46625 ponton
46626 pony
46631 pool
46632 popband
46633 popcorn
46634 pope
46635 popmusik
46636 poppen
46641 popper
46642 poppig
46643 popsong
46644 popstar
46645 pore
46646 porno
46651 port
46652 posaune
46653 posche
46654 pose
46655 posieren
46656 posiert
46661 positiv
46662 posse
46663 post
46664 potent
46665 potenz
46666 pott
51111 power
51112 pracht
51113 prager
51114 prahlen
51115 praktik
51116 praline
51121 prall
51122 prangen
51123 pranger
51124 pranke
51125 praxis
51126 predigen
51131 predigt
51132 preien
51133 preis
51134 prellen
51135 prelude
51136 premier
51141 premium
51142 preschen
51143 presse
51144 pressure
51145 prestige
51146 presto
51151 preview
51152 prickeln
51153 priel
51154 prim
51155 print
51156 prinz
51161 prior
51162 prise
51163 prisma
51164 privat
51165 prix
51166 proband
51211 probat
51212 probe
51213 problem
51214 produkt
51215 profan
51216 profi
51221 profund
51222 progress
51223 projekt
51224 prolet
51225 proll
51226 prolog
51231 promi
51232 promoten
51233 prompt
51234 proper
51235 prophet
51236 proporz
51241 propst
51242 prosa
51243 prosit
51244 prospekt
51245 prost
51246 protein
51251 protest
51252 proton
51253 prototyp
51254 protz
51255 provinz
51256 prozent
51261 prozess
51262 prunk
51263 prusten
51264 psalm
51265 psyche
51266 publik
51311 puck
51312 pudding
51313 pudel
51314 puder
51315 puff
51316 pulk
51321 pulle
51322 pulli
51323 pulp
51324 puls
51325 pult
51326 pulver
51331 puma
51332 pumpe
51333 pumpgun
51334 pumps
51335 punch
51336 punk
51341 punsch
51342 pupille
51343 puppe
51344 purist
51345 purpur
51346 purzeln
51351 puschen
51352 push
51353 puste
51354 pute
51355 putsch
51356 putte
51361 putz
51362 puzzle
51363 pyjama
51364 pylon
51365 pyramide
51366 python
51411 quader
51412 quadrat
51413 quai
51414 quaken
51415 qual
51416 quantum
51421 quark
51422 quart
51423 quarz
51424 quasi
51425 quatsch
51426 quattro
51431 quechua
51432 queen
51433 quell
51434 quengeln
51435 quer
51436 quick
51441 quieken
51442 quinta
51443 quinte
51444 quirlig
51445 quitte
51446 quittung
51451 quiz
51452 quorum
51453 quote
51454 rabat
51455 rabauke
51456 rabbi
51461 rabe
51462 rabiat
51463 rache
51464 rack
51465 radar
51466 radau
51511 radball
51512 rade
51513 radfeld
51514 radial
51515 radikal
51516 radio
51521 radius
51522 radl
51523 radon
51524 radsport
51525 radtour
51526 radweg
51531 raffen
51532 rafter
51533 rafting
51534 rage
51535 ragtime
51536 rahm
51541 rahn
51542 raid
51543 raison
51544 rake
51545 rally
51546 rambo
51551 rammen
51552 rammler
51553 rampe
51554 ramsch
51555 ranch
51556 rand
51561 ranft
51562 rang
51563 rank
51564 ranzen
51565 ranzig
51566 rapid
51611 rapp
51612 raps
51613 rapunzel
51614 rasant
51615 rasanz
51616 rasch
51621 rasen
51622 raser
51623 rasieren
51624 rasiert
51625 rasse
51626 rassig
51631 rassist
51632 rast
51633 rate
51634 rathaus
51635 rating
51636 ratio
51641 ratlos
51642 ratsam
51643 ratsfrau
51644 ratsherr
51645 ratte
51646 ratz
51651 raub
51652 rauch
51653 raue
51654 rauf
51655 raum
51656 raunen
51661 raunzen
51662 raupe
51663 raus
51664 raute
51665 rave
51666 rayon
52111 razzia
52112 reader
52113 reaktion
52114 reaktiv
52115 reaktor
52116 real
52121 rebberg
52122 rebe
52123 rebhuhn
52124 reblaus
52125 rebound
52126 rebstock
52131 rechen
52132 rechnen
52133 rechner
52134 recht
52135 reck
52136 redaktor
52141 rede
52142 redlich
52143 redner
52144 reduit
52145 reede
52146 reell
52151 referat
52152 referee
52153 referent
52154 reflex
52155 reform
52156 refrain
52161 regal
52162 regatta
52163 rege
52164 reggae
52165 regie
52166 regime
52211 region
52212 register
52213 regler
52214 reglos
52215 regnen
52216 regress
52221 regular
52222 regung
52223 reha
52224 rehbein
52225 rehbock
52226 rehkitz
52231 rehling
52232 rehwild
52233 reibe
52234 reibung
52235 reich
52236 reif
52241 reigen
52242 reih
52243 reim
52244 rein
52245 reis
52246 reiten
52251 reiter
52252 reitklub
52253 reiz
52254 rekeln
52255 reklame
52256 rekord
52261 rekrut
52262 rektor
52263 rekurs
52264 relais
52265 relation
52266 relativ
52311 relaxen
52312 release
52313 relief
52314 religion
52315 relikt
52316 reling
52321 remake
52322 remis
52323 remixen
52324 rempeln
52325 rendite
52326 renitent
52331 rennbahn
52332 rennen
52333 renner
52334 rennrad
52335 renntag
52336 rentabel
52341 rente
52342 rentier
52343 rentner
52344 replik
52345 report
52346 reprint
52351 reprise
52352 repro
52353 reptil
52354 republik
52355 requiem
52356 requisit
52361 resch
52362 research
52363 reservat
52364 reserve
52365 residenz
52366 resolut
52411 resonanz
52412 resort
52413 respekt
52414 ressort
52415 rest
52416 retorte
52421 retour
52422 retro
52423 retten
52424 retter
52425 rettich
52426 rettung
52431 return
52432 retusche
52433 reue
52434 reuig
52435 reunion
52436 reuten
52441 reverenz
52442 revers
52443 revier
52444 review
52445 revision
52446 revisor
52451 revival
52452 revolte
52453 revue
52454 rezent
52455 rezept
52456 rhema
52461 rheuma
52462 rhizom
52463 rhodos
52464 rhythmik
52465 rhythmus
52466 richten
52511 richter
52512 richtig
52513 richtung
52514 riechen
52515 riecher
52516 ried
52521 riege
52522 riemen
52523 riese
52524 riesig
52525 riff
52526 rigid
52531 rigoros
52532 rikscha
52533 rille
52534 rind
52535 ring
52536 rinne
52541 rinnsal
52542 rippe
52543 rise
52544 risiko
52545 riskant
52546 risotto
52551 riss
52552 rist
52553 ritt
52554 ritual
52555 rituell
52556 ritus
52561 ritz
52562 rivale
52563 rivalin
52564 river
52565 roadster
52566 robbe
52611 robe
52612 robinie
52613 robodoc
52614 roboter
52615 robotik
52616 robust
52621 rochade
52622 rochen
52623 rock
52624 rodel
52625 roden
52626 rodeo
52631 rodler
52632 rodung
52633 roggen
52634 rogner
52635 rohbau
52636 rohheit
52641 rohkost
52642 rohleder
52643 rohling
52644 rohr
52645 rohstoff
52646 rokoko
52651 rollator
52652 rollbahn
52653 rolle
52654 rollfeld
52655 rolli
52656 rollo
52661 roman
52662 rome
52663 rondell
52664 rondo
52665 rosa
52666 rose
53111 rosig
53112 rosine
53113 ross
53114 rost
53115 rotarier
53116 rotary
53121 rotation
53122 rotbuch
53123 rotjacke
53124 rotkohl
53125 rotlicht
53126 rotor
53131 rotte
53132 rotton
53133 rotunde
53134 rotwein
53135 rotwild
53136 rotz
53141 rouen
53142 rouge
53143 roulade
53144 roulett
53145 route
53146 routine
53151 rowdy
53152 royal
53153 ruander
53154 rubel
53155 rubin
53156 rubrik
53161 ruch
53162 ruck
53163 rudel
53164 ruder
53165 rufen
53166 rufer
53211 rufmord
53212 rufname
53213 rugby
53214 ruhe
53215 ruhig
53216 ruhm
53221 ruin
53222 rumba
53223 rummel
53224 rumoren
53225 rumpel
53226 rumpf
53231 rund
53232 rune
53233 runge
53234 runs
53235 runter
53236 runzeln
53241 rupfen
53242 rupie
53243 ruppig
53244 rural
53245 rusch
53246 russe
53251 russia
53252 russin
53253 russisch
53254 russland
53255 rustikal
53256 rute
53261 rutsch
53262 rutte
53263 saal
53264 saat
53265 saba
53266 sabbat
53311 sache
53312 sachlage
53313 sachlich
53314 sachse
53315 sacht
53316 sack
53321 sadist
53322 safari
53323 safe
53324 safran
53325 saft
53326 saga
53331 sage
53332 sahne
53333 saison
53334 saite
53335 sake
53336 sakko
53341 sakral
53342 sakrileg
53343 salami
53344 salat
53345 salbe
53346 saldo
53351 saline
53352 salm
53353 salon
53354 saloon
53355 salopp
53356 salsa
53361 salto
53362 salut
53363 salve
53364 salz
53365 samba
53366 same
53411 sammeln
53412 sammler
53413 sammlung
53414 sampeln
53415 sample
53416 samstag
53421 samt
53422 samurai
53423 sanctus
53424 sand
53425 sanft
53426 sang
53431 saniert
53432 sanktion
53433 santa
53434 saphir
53435 sardine
53436 sarg
53441 sari
53442 sasse
53443 satan
53444 satin
53445 satire
53446 satt
53451 saturn
53452 satz
53453 sauber
53454 saudi
53455 sauen
53456 sauer
53461 saufen
53462 saugen
53463 saum
53464 sauna
53465 saurier
53466 saus
53511 savanne
53512 saxofon
53513 scala
53514 scannen
53515 scanner
53516 scene
53521 schabe
53522 schach
53523 schade
53524 schaf
53525 schah
53526 schakal
53531 schal
53532 scham
53533 schande
53534 schank
53535 schanze
53536 schar
53541 schassen
53542 schatz
53543 schau
53544 scheck
53545 scheel
53546 scheffel
53551 scheibe
53552 scheich
53553 scheide
53554 schein
53555 scheit
53556 schelle
53561 schelm
53562 schelte
53563 schema
53564 schemel
53565 schen
53566 schepp
53611 scherbe
53612 schere
53613 scherge
53614 scherhag
53615 scherz
53616 scheu
53621 schicht
53622 schick
53623 schief
53624 schiene
53625 schier
53626 schiff
53631 schiit
53632 schild
53633 schilf
53634 schimpf
53635 schindel
53636 schinken
53641 schippe
53642 schiri
53643 schirm
53644 schisma
53645 schlacht
53646 schlaf
53651 schlag
53652 schlamm
53653 schlange
53654 schlank
53655 schlapp
53656 schlau
53661 schleck
53662 schlegel
53663 schleier
53664 schleim
53665 schlemm
53666 schlick
54111 schliff
54112 schlimm
54113 schlinge
54114 schlips
54115 schlitz
54116 schloss
54121 schlot
54122 schlucht
54123 schluck
54124 schlumpf
54125 schlund
54126 schlupf
54131 schluss
54132 schmach
54133 schmal
54134 schmatz
54135 schmaus
54136 schmelz
54141 schmerz
54142 schminke
54143 schmoren
54144 schmuck
54145 schmusen
54146 schmutz
54151 schnabel
54152 schnack
54153 schnaps
54154 schnatz
54155 schnauze
54156 schnecke
54161 schnee
54162 schneid
54163 schnell
54164 schnitt
54165 schnuppe
54166 schnur
54211 schober
54212 schock
54213 schoko
54214 schola
54215 scholle
54216 schon
54221 schopf
54222 schote
54223 schott
54224 schrank
54225 schranz
54226 schraube
54231 schreck
54232 schrei
54233 schrift
54234 schrill
54235 schrimp
54236 schritt
54241 schroff
54242 schrot
54243 schub
54244 schufa
54245 schuft
54246 schuh
54251 schulamt
54252 schulbus
54253 schuld
54254 schule
54255 schulter
54256 schultyp
54261 schulung
54262 schund
54263 schupp
54264 schur
54265 schuss
54266 schutt
54311 schutz
54312 schwabe
54313 schwach
54314 schwager
54315 schwall
54316 schwamm
54321 schwan
54322 schwarm
54323 schwarz
54324 schwatz
54325 schwebe
54326 schwede
54331 schweif
54332 schwein
54333 schwelen
54334 schwelle
54335 schwenk
54336 schwer
54341 schwinge
54342 schwitze
54343 schwul
54344 schwund
54345 schwung
54346 schwupp
54351 schwur
54352 schwyzer
54353 score
54354 scout
54355 screen
54356 script
54361 scrollen
54362 seal
54363 sechs
54364 sechzig
54365 section
54366 seeadler
54411 seebad
54412 seeburg
54413 seegang
54414 seehund
54415 seekarte
54416 seekatz
54421 seele
54422 seelig
54423 seemann
54424 seenland
54425 seenot
54426 seerose
54431 seestern
54432 seeufer
54433 seewald
54434 seeweg
54435 seewolf
54436 segel
54441 segen
54442 segler
54443 segment
54444 segnen
54445 segnung
54446 sehen
54451 seher
54452 sehne
54453 sehr
54454 sehtest
54455 seicht
54456 seide
54461 seidig
54462 seiend
54463 seife
54464 seil
54465 sein
54466 seit
54511 sejm
54512 sekret
54513 sekt
54514 sekunde
54515 selber
54516 selbig
54521 selbst
54522 selen
54523 selig
54524 selten
54525 seltsam
54526 seminar
54531 semmel
54532 senat
54533 send
54534 senf
54535 sengen
54536 senil
54541 senior
54542 senke
54543 senkung
54544 senn
54545 sense
54546 sensibel
54551 sensor
54552 sentenz
54553 separat
54554 sept
54555 sequenz
54556 serail
54561 serbe
54562 serbin
54563 serie
54564 serum
54565 server
54566 service
54611 servus
54612 sesam
54613 sessel
54614 sesshaft
54615 session
54616 setting
54621 setzen
54622 setzer
54623 setzung
54624 seuche
54625 seufzen
54626 seufzer
54631 sexismus
54632 sexshop
54633 sexszene
54634 sextett
54635 sexual
54636 sexuell
54641 sexy
54642 sezieren
54643 shaker
54644 shampoo
54645 shanty
54646 sharen
54651 sharing
54652 sheriff
54653 sherpa
54654 sherry
54655 shirt
54656 shit
54661 shop
54662 shorts
54663 shorty
54664 show
54665 shuttle
54666 sich
55111 sicken
55112 sickern
55113 sieb
55114 siech
55115 siedeln
55116 sieden
55121 siedler
55122 siedlung
55123 sieg
55124 sierra
55125 siesta
55126 siezen
55131 sigel
55132 sigma
55133 signal
55134 signatur
55135 signet
55136 signor
55141 signum
55142 sikh
55143 silbe
55144 silbrig
55145 silikon
55146 silo
55151 sima
55152 simmer
55153 simpel
55154 simplex
55155 sims
55156 sinfonie
55161 singen
55162 single
55163 sinken
55164 sinn
55165 sinologe
55166 sintflut
55211 sinto
55212 sinus
55213 sioux
55214 sippe
55215 sirene
55216 sirius
55221 sirup
55222 sitcom
55223 site
55224 sitte
55225 sittich
55226 sitz
55231 skala
55232 skalpell
55233 skandal
55234 skat
55235 skelett
55236 skepsis
55241 sketsch
55242 skiflug
55243 skiklub
55244 skikurs
55245 skilauf
55246 skilift
55251 skin
55252 skiort
55253 skipass
55254 skipper
55255 skischuh
55256 skisport
55261 skistar
55262 skitag
55263 skitour
55264 skizze
55265 sklave
55266 sklavin
55311 skript
55312 skrupel
55313 skulptur
55314 skurril
55315 skye
55316 skyline
55321 skythe
55322 slalom
55323 slang
55324 slawe
55325 slip
55326 slogan
55331 slot
55332 slowake
55333 slowene
55334 slum
55335 smaragd
55336 smart
55341 smog
55342 smoken
55343 smoking
55344 snack
55345 snob
55346 soap
55351 sobald
55352 soccer
55353 society
55354 socke
55355 soda
55356 sode
55361 sodom
55362 soeben
55363 sofa
55364 sofern
55365 sofort
55366 soft
55411 sogar
55412 sohle
55413 sohn
55414 sohr
55415 soiree
55416 soja
55421 solang
55422 solanum
55423 solar
55424 sold
55425 sole
55426 soli
55431 soll
55432 solo
55433 solvent
55434 soma
55435 somit
55436 sommer
55441 sonar
55442 sonate
55443 sonde
55444 sone
55445 song
55446 sonne
55451 sonnig
55452 sonntag
55453 sonor
55454 sonst
55455 sooft
55456 sopran
55461 sorbe
55462 sorge
55463 sorgfalt
55464 sorglos
55465 sorgsam
55466 sorte
55511 sosehr
55512 soul
55513 sound
55514 source
55515 soviel
55516 sowas
55521 soweit
55522 sowenig
55523 sowie
55524 sowjet
55525 sowohl
55526 sozi
55531 spagat
55532 spagetti
55533 spalier
55534 spalt
55535 spam
55536 span
55541 sparbuch
55542 sparen
55543 sparer
55544 spargel
55545 spark
55546 sparplan
55551 sparren
55552 sparsam
55553 sparte
55554 sparziel
55555 sparzins
55556 spaten
55561 spatz
55562 spaziert
55563 specht
55564 special
55565 species
55566 speck
55611 speech
55612 speed
55613 speer
55614 speiche
55615 speien
55616 speis
55621 spektrum
55622 spende
55623 sperber
55624 sperma
55625 sperre
55626 sperrig
55631 spesen
55632 spezi
55633 sphinx
55634 spicken
55635 spider
55636 spiegel
55641 spiel
55642 spike
55643 spin
55644 spion
55645 spirale
55646 spirit
55651 spital
55652 spitz
55653 spleen
55654 split
55655 spoiler
55656 sponsor
55661 spontan
55662 spor
55663 spot
55664 sprache
55665 spray
55666 spreizen
56111 spreu
56112 spring
56113 sprint
56114 sprit
56115 spross
56116 spruch
56121 sprudel
56122 sprung
56123 spucke
56124 spuk
56125 spule
56126 spur
56131 sputen
56132 sputnik
56133 squash
56134 staat
56135 stab
56136 stachel
56141 stack
56142 stadel
56143 stadion
56144 stadium
56145 stadt
56146 staffel
56151 stag
56152 stahl
56153 stakkato
56154 stall
56155 stamm
56156 stand
56161 stange
56162 stanzen
56163 stapel
56164 stapfen
56165 star
56166 statik
56211 station
56212 statisch
56213 statist
56214 stativ
56215 statt
56216 statue
56221 statur
56222 status
56223 statut
56224 stau
56225 steak
56226 stechen
56231 stecher
56232 stecken
56233 stecker
56234 steg
56235 stehen
56236 steher
56241 stehlen
56242 steif
56243 steig
56244 steil
56245 stein
56246 steirer
56251 stele
56252 stelle
56253 stelze
56254 stemmen
56255 stempel
56256 stepp
56261 sterben
56262 stereo
56263 steril
56264 sterling
56265 stern
56266 steroid
56311 stet
56312 steuer
56313 steurer
56314 steward
56315 stich
56316 sticken
56321 sticker
56322 stickig
56323 stieben
56324 stieber
56325 stiefel
56326 stiege
56331 stiel
56332 stier
56333 stift
56334 stigma
56335 stil
56336 stimme
56341 stimmig
56342 stinken
56343 stirn
56344 stocher
56345 stock
56346 stoff
56351 stoiker
56352 stoisch
56353 stola
56354 stolle
56355 stolz
56356 stop
56361 storch
56362 store
56363 stork
56364 story
56365 stotz
56366 strack
56411 strafe
56412 straff
56413 straflos
56414 strahl
56415 stramm
56416 strand
56421 strang
56422 strapaze
56423 straps
56424 strauch
56425 strebe
56426 strecke
56431 streich
56432 streife
56433 streik
56434 streit
56435 streng
56436 stress
56441 streu
56442 strich
56443 strick
56444 strike
56445 strikt
56446 string
56451 strip
56452 strittig
56453 strobel
56454 stroh
56455 strolch
56456 strom
56461 strong
56462 strophe
56463 strub
56464 strudel
56465 struktur
56466 strumpf
56511 strunk
56512 struppig
56513 struse
56514 stubben
56515 stube
56516 stuck
56521 student
56522 studie
56523 studio
56524 studium
56525 stufe
56526 stuhl
56531 stulle
56532 stumm
56533 stumpf
56534 stunde
56535 stundung
56536 stunt
56541 stupa
56542 stupend
56543 stupid
56544 stur
56545 stute
56546 stutzen
56551 stutzig
56552 stylen
56553 styling
56554 styropor
56555 subjekt
56556 substrat
56561 subtext
56562 subtil
56563 subtyp
56564 subway
56565 suche
56566 suchhund
56611 sucht
56612 sudhaus
56613 suff
56614 sufi
56615 suhlen
56616 suite
56621 suizid
56622 sujet
56623 sulfat
56624 sultan
56625 summa
56626 summe
56631 summiert
56632 sumo
56633 sumpf
56634 sund
56635 sunnit
56636 supen
56641 super
56642 suppe
56643 support
56644 sure
56645 surfen
56646 surfer
56651 surreal
56652 surren
56653 sushi
56654 suspekt
56655 swap
56656 sweet
56661 swing
56662 symbol
56663 symptom
56664 synapse
56665 syndikat
56666 syndrom
61111 synergie
61112 synodal
61113 synode
61114 synonym
61115 syntax
61116 syrer
61121 syrisch
61122 system
61123 szenario
61124 szene
61125 tabak
61126 tabelle
61131 tableau
61132 tablett
61133 tabu
61134 tacho
61135 tadel
61136 tafel
61141 taff
61142 taft
61143 tagaktiv
61144 tagaus
61145 tagblatt
61146 tagebau
61151 tagein
61152 tagen
61153 taggeld
61154 tags
61155 tagung
61156 tagwerk
61161 taifun
61162 taiga
61163 taille
61164 take
61165 takt
61166 talar
61211 talboden
61212 talent
61213 taler
61214 talfahrt
61215 taliban
61216 talisman
61221 talk
61222 tallage
61223 talmud
61224 talseite
61225 tambour
61226 tamil
61231 tamtam
61232 tand
61233 tang
61234 tank
61235 tanne
61236 tante
61241 tanz
61242 tapa
61243 tape
61244 tapfer
61245 tappen
61246 tappert
61251 tapsig
61252 tara
61253 target
61254 tarif
61255 tarnen
61256 tarnung
61261 tarzan
61262 tasche
61263 task
61264 tasse
61265 taste
61266 tastsinn
61311 tatar
61312 tatenlos
61313 tatort
61314 tattag
61315 tattoo
61316 tatze
61321 taub
61322 tauchen
61323 taucher
61324 tauen
61325 tauer
61326 taufe
61331 taufpate
61332 taugen
61333 tauglich
61334 taumel
61335 taurus
61336 tausch
61341 tausend
61342 taverne
61343 taxe
61344 taxi
61345 taxler
61346 taxon
61351 team
61352 technik
61353 techno
61354 teddy
61355 teehaus
61356 teelicht
61361 teen
61362 teer
61363 teestube
61364 tegel
61365 teich
61366 teig
61411 teil
61412 teint
61413 tele
61414 teller
61415 tempel
61416 templer
61421 tempo
61422 tempus
61423 tendenz
61424 tender
61425 tenn
61426 tenor
61431 teppich
61432 tequila
61433 term
61434 terra
61435 terribel
61436 terrier
61441 terror
61442 terz
61443 tesla
61444 test
61445 tetanus
61446 tetra
61451 teuer
61452 teufe
61453 teutone
61454 texaner
61455 text
61456 theater
61461 theiss
61462 theke
61463 thema
61464 theorem
61465 theorie
61466 thermal
61511 therme
61512 thermik
61513 these
61514 thesis
61515 thing
61516 thon
61521 thora
61522 thron
61523 thuner
61524 thuram
61525 thymian
61526 tibeter
61531 tick
61532 tide
61533 tiebreak
61534 tief
61535 tiepolo
61536 tier
61541 tifosi
61542 tifoso
61543 tiger
61544 tilde
61545 tilgen
61546 tilgung
61551 timbre
61552 timen
61553 timing
61554 tingeln
61555 tinktur
61556 tinnitus
61561 tinte
61562 tion
61563 tipi
61564 tipp
61565 tirade
61566 tiroler
61611 tisch
61612 titan
61613 titel
61614 toast
61615 tobak
61616 tobel
61621 toben
61622 tochter
61623 todernst
61624 todestag
61625 todfeind
61626 todkrank
61631 tofu
61632 toilette
61633 tokkata
61634 toll
61635 tomate
61636 tombola
61641 tomus
61642 tonal
61643 tonart
61644 tonband
61645 tonfall
61646 tonfilm
61651 tonhalle
61652 tonlage
61653 tonlos
61654 tonnage
61655 tonne
61656 tonspur
61661 tool
61662 topf
61663 topklub
61664 topmodel
61665 topos
61666 topp
62111 topspin
62112 topstar
62113 topteam
62114 torecke
62115 torero
62116 torf
62121 torhaus
62122 torheit
62123 torino
62124 torjubel
62125 torkeln
62126 torleute
62131 torlinie
62132 torlos
62133 tormann
62134 tornado
62135 torpedo
62136 torraub
62141 torso
62142 torte
62143 tortur
62144 torwand
62145 torwart
62146 tory
62151 tosen
62152 total
62153 tote
62154 totholz
62155 toto
62156 totsagen
62161 touch
62162 tour
62163 tower
62164 toxin
62165 toxisch
62166 trab
62211 tracht
62212 track
62213 tradiert
62214 trading
62215 trafik
62216 trafo
62221 tragbar
62222 trage
62223 tragik
62224 tragisch
62225 tragwerk
62226 tragzeit
62231 trailer
62232 train
62233 trakt
62234 tram
62235 tran
62236 trapez
62241 trapp
62242 trasse
62243 tratsch
62244 traube
62245 trauen
62246 trauer
62251 traufe
62252 traum
62253 traun
62254 traurig
62255 traut
62256 trauung
62261 treck
62262 treff
62263 treiben
62264 treiber
62265 tremolo
62266 trend
62311 trennen
62312 treppe
62313 tresen
62314 tresor
62315 tretboot
62316 treten
62321 treter
62322 treu
62323 triade
62324 trias
62325 tribun
62326 tribus
62331 tribut
62332 trichter
62333 trick
62334 trieb
62335 triefen
62336 trierer
62341 triftig
62342 trigger
62343 trigon
62344 trikot
62345 triller
62346 trilogie
62351 trimmen
62352 trinken
62353 trinker
62354 trio
62355 trip
62356 trist
62361 tritium
62362 triton
62363 tritt
62364 triumph
62365 trivial
62366 trocken
62411 trog
62412 troika
62413 trojaner
62414 troll
62415 trommel
62416 tropen
62421 tropf
62422 tropus
62423 tross
62424 trost
62425 trott
62426 trotz
62431 trouble
62432 trubel
62433 truck
62434 trudeln
62435 trug
62436 truhe
62441 trumm
62442 trumpf
62443 trunk
62444 trupp
62445 trust
62446 trutzig
62451 tscheche
62452 tsunami
62453 tuareg
62454 tuba
62455 tube
62456 tuch
62461 tuckern
62462 tuff
62463 tugend
62464 tulpe
62465 tumb
62466 tummeln
62511 tumor
62512 tumult
62513 tundra
62514 tunen
62515 tuner
62516 tunesier
62521 tunika
62522 tuning
62523 tunken
62524 tunlich
62525 tunnel
62526 tunte
62531 tupfen
62532 tupfer
62533 turban
62534 turbine
62535 turbo
62536 turf
62541 turiner
62542 turm
62543 turn
62544 turteln
62545 tusch
62546 tutor
62551 tutti
62552 tweed
62553 twen
62554 twist
62555 twitter
62556 tycoon
62561 type
62562 typhus
62563 typisch
62564 typus
62565 tyrann
62566 ufer
62611 uhrmann
62612 uhrturm
62613 uhrwerk
62614 uhrzeit
62615 ukulele
62616 ulan
62621 ulken
62622 ulkig
62623 ulme
62624 ulster
62625 ultima
62626 ultimo
62631 ultra
62632 umarmen
62633 umarmt
62634 umarmung
62635 umbau
62636 umbruch
62641 umbuchen
62642 umfang
62643 umfassen
62644 umfeld
62645 umfrage
62646 umgang
62651 umgarnen
62652 umgebaut
62653 umgeben
62654 umgegend
62655 umgehen
62656 umgehung
62661 umhang
62662 umhauen
62663 umher
62664 umhin
62665 umjubelt
62666 umkehr
63111 umkreis
63112 umladen
63113 umlage
63114 umland
63115 umlauf
63116 umlaut
63121 umlegen
63122 umrahmt
63123 umriss
63124 umsatz
63125 umschau
63126 umschlag
63131 umsehen
63132 umsicht
63133 umso
63134 umstand
63135 umstieg
63136 umsturz
63141 umtaufen
63142 umtausch
63143 umtrieb
63144 umtrunk
63145 umweg
63146 umwehen
63151 umwelt
63152 umwidmen
63153 umworben
63154 umzug
63155 unart
63156 unbelebt
63161 unbelegt
63162 unbequem
63163 unbewegt
63164 unbill
63165 uncool
63166 underdog
63211 undicht
63212 undine
63213 unding
63214 uneben
63215 unecht
63216 uneinig
63221 uneins
63222 uneitel
63223 unfair
63224 unfall
63225 unfein
63226 unfrei
63231 unfriede
63232 unfug
63233 ungar
63234 ungeahnt
63235 ungeist
63236 ungenau
63241 ungerad
63242 ungern
63243 ungnade
63244 ungunst
63245 ungut
63246 unheil
63251 unhold
63252 unicode
63253 uniform
63254 unikat
63255 unikum
63256 union
63261 unisono
63262 unit
63263 univers
63264 unke
63265 unklar
63266 unklug
63311 unkraut
63312 unlauter
63313 unlust
63314 unmenge
63315 unmodern
63316 unmut
63321 unrat
63322 unrecht
63323 unreif
63324 unrein
63325 unruh
63326 unsanft
63331 unscharf
63332 unschuld
63333 unselig
63334 unser
63335 unsicher
63336 unsinn
63341 unsitte
63342 unsrige
63343 unstet
63344 unsumme
63345 untat
63346 unten
63351 unter
63352 untiefe
63353 untot
63354 untreu
63355 unwahr
63356 unweit
63361 unwesen
63362 unwille
63363 unwirsch
63364 unwissen
63365 unwohl
63366 unwort
63411 unzahl
63412 unze
63413 unzucht
63414 update
63415 upgrade
63416 uralt
63421 uran
63422 urban
63423 urbar
63424 urbild
63425 ureigen
63426 urenkel
63431 urform
63432 urheber
63433 urig
63434 urin
63435 urknall
63436 urkunde
63441 urlaub
63442 urne
63443 urologe
63444 urologie
63445 uroma
63446 ursache
63451 urteil
63452 urvater
63453 urwahl
63454 urwald
63455 urzeit
63456 usbeke
63461 user
63462 usus
63463 utensil
63464 utility
63465 utopia
63466 utopie
63511 utopisch
63512 vage
63513 vagina
63514 vakant
63515 vakanz
63516 vakuum
63521 valid
63522 value
63523 valuta
63524 vamp
63525 vandale
63526 vanille
63531 variant
63532 varianz
63533 varus
63534 vasall
63535 vase
63536 vater
63541 vati
63542 vegan
63543 vehement
63544 vehemenz
63545 vehikel
63546 veiel
63551 veilchen
63552 vektor
63553 velde
63554 velo
63555 velvet
63556 vene
63561 ventil
63562 venus
63563 veraltet
63564 veranda
63565 verarmen
63566 verarmt
63611 verb
63612 verdacht
63613 verdankt
63614 verdeck
63615 verderb
63616 verdikt
63621 verdreht
63622 verdruss
63623 veredeln
63624 verehrt
63625 verein
63626 vereist
63631 verengt
63632 vererben
63633 vererbt
63634 verewigt
63635 verfall
63636 verfasst
63641 verfemt
63642 vergabe
63643 vergasen
63644 vergeben
63645 vergilbt
63646 verhauen
63651 verheben
63652 verirrt
63653 verkappt
63654 verkauf
63655 verkehr
63656 verkohlt
63661 verlag
63662 verlass
63663 verlaub
63664 verlauf
63665 verleben
63666 verlebt
64111 verlegt
64112 verleih
64113 verlies
64114 verlobt
64115 verloren
64116 verlosen
64121 verlust
64122 vermacht
64123 vermerk
64124 vermint
64125 vermuten
64126 vermutet
64131 verpatzt
64132 verputz
64133 verquer
64134 verrat
64135 verriss
64136 verrucht
64141 verruf
64142 vers
64143 vertagen
64144 vertagt
64145 vertan
64146 vertont
64151 vertrag
64152 vertraut
64153 vertun
64154 verve
64155 verweben
64156 verweis
64161 verwesen
64162 verwest
64163 verwoben
64164 verzagt
64165 verzehr
64166 verzinst
64211 verzogen
64212 verzug
64213 vespa
64214 vesper
64215 veste
64216 vesuv
64221 veteran
64222 veto
64223 vettel
64224 vetter
64225 viadukt
64226 vibrato
64231 vickers
64232 video
64233 viech
64234 vieh
64235 viel
64236 vier
64241 vignette
64242 vikar
64243 villa
64244 vinothek
64245 vinyl
64246 violett
64251 violine
64252 viper
64253 viral
64254 virtuos
64255 virus
64256 viscount
64261 visier
64262 vision
64263 visite
64264 vista
64265 visuell
64266 visum
64311 vita
64312 vitrine
64313 vivace
64314 vize
64315 vlies
64316 voce
64321 vogel
64322 vogesen
64323 vogt
64324 vogue
64325 vokabel
64326 vokal
64331 voliere
64332 volk
64333 voll
64334 volt
64335 volum
64336 vorab
64341 voralpen
64342 voran
64343 voraus
64344 vorband
64345 vorbau
64346 vorbei
64351 vorbeter
64352 vorbild
64353 vorbote
64354 vorburg
64355 vordach
64356 vordem
64361 vorerst
64362 vorfahr
64363 vorfall
64364 vorfeld
64365 vorgabe
64366 vorgang
64411 vorgriff
64412 vorhaben
64413 vorhalle
64414 vorhalt
64415 vorhand
64416 vorhang
64421 vorher
64422 vorhin
64423 vorhof
64424 vorhut
64425 vorig
64426 vorjahr
64431 vorkampf
64432 vorladen
64433 vorlage
64434 vorland
64435 vorlauf
64436 vorlaut
64441 vorleben
64442 vorlieb
64443 vorm
64444 vorn
64445 vorort
64446 vorplatz
64451 vorrang
64452 vorrat
64453 vorraum
64454 vorrecht
64455 vorrede
64456 vors
64461 vortag
64462 vorteil
64463 vortrag
64464 vorwagen
64465 vorwahl
64466 vorwand
64511 vorweg
64512 vorwerk
64513 vorwort
64514 vorwurf
64515 vorzeit
64516 vorzug
64521 votant
64522 votiert
64523 votum
64524 voyeur
64525 vulgo
64526 vulkan
64531 waage
64532 wabe
64533 wach
64534 wackeln
64535 wacker
64536 wacklig
64541 wade
64542 wadi
64543 wafer
64544 waffe
64545 wagemut
64546 wagen
64551 waggon
64552 wagnis
64553 wagrain
64554 wagram
64555 wahl
64556 wahn
64561 wahr
64562 waise
64563 wake
64564 wald
64565 walfang
64566 waliser
64611 walke
64612 walking
64613 walkman
64614 wallach
64615 wallen
64616 waller
64621 wallone
64622 wallung
64623 walnuss
64624 walten
64625 walz
64626 wams
64631 wand
64632 wange
64633 wank
64634 wann
64635 wanze
64636 wappen
64641 wappnen
64642 ware
64643 warlord
64644 warm
64645 warnen
64646 warner
64651 warnung
64652 warp
64653 wart
64654 warum
64655 warze
64656 waschen
64661 wasser
64662 waten
64663 watt
64664 webb
64665 webcam
64666 weben
65111 weber
65112 weblink
65113 weblog
65114 website
65115 wechsel
65116 weck
65121 wedeln
65122 weder
65123 weekend
65124 wegebau
65125 wegen
65126 wegerle
65131 wegern
65132 wegfall
65133 weggang
65134 wegkreuz
65135 weglegen
65136 wegrand
65141 wegzug
65142 wehe
65143 wehmut
65144 wehr
65145 wehtun
65146 weib
65151 weich
65152 weide
65153 weidling
65154 weidmann
65155 weigern
65156 weihe
65161 weil
65162 weimarer
65163 wein
65164 weise
65165 weisung
65166 weit
65211 weizen
65212 welfe
65213 welfisch
65214 welk
65215 welle
65216 wellig
65221 wellness
65222 welpe
65223 wels
65224 welt
65225 wende
65226 wendig
65231 wendung
65232 wenig
65233 wenn
65234 werben
65235 werber
65236 werbung
65241 werden
65242 werfen
65243 werfer
65244 werft
65245 werk
65246 wert
65251 werwolf
65252 wesen
65253 weshalb
65254 wespe
65255 wessi
65256 west
65261 wett
65262 wetzen
65263 whig
65264 whiskey
65265 whisky
65266 wicher
65311 wichser
65312 wicht
65313 wicke
65314 widder
65315 wider
65316 widmen
65321 widmung
65322 widrig
65323 wieder
65324 wiege
65325 wiehern
65326 wiener
65331 wiese
65332 wiesheu
65333 wiesn
65334 wieso
65335 wieviel
65336 wieweit
65341 wiewohl
65342 wiking
65343 wild
65344 wilken
65345 wille
65346 willig
65351 wimmeln
65352 wimmern
65353 wimpel
65354 wimper
65355 wind
65356 wingert
65361 wink
65362 winseln
65363 winter
65364 winzer
65365 winzig
65366 wipfel
65411 wippe
65412 wirbel
65413 wirken
65414 wirksam
65415 wirkung
65416 wirr
65421 wirt
65422 wisch
65423 wisent
65424 wismut
65425 wispern
65426 wissen
65431 wisser
65432 witschen
65433 wittern
65434 witwe
65435 witz
65436 wobei
65441 woche
65442 wodka
65443 wodurch
65444 woge
65445 woher
65446 wohin
65451 wohl
65452 wohnbau
65453 wohnen
65454 wohngeld
65455 wohnlich
65456 wohnort
65461 wohnraum
65462 wohnsitz
65463 wohnung
65464 wohnwert
65465 wohnzone
65466 wolf
65511 wolke
65512 wolkig
65513 wolle
65514 wollig
65515 wollust
65516 womit
65521 wonach
65522 wonne
65523 woran
65524 worauf
65525 woraus
65526 worin
65531 workshop
65532 wormser
65533 wort
65534 worum
65535 worunter
65536 wotan
65541 wovon
65542 wovor
65543 wozu
65544 wrack
65545 wucher
65546 wuchs
65551 wucht
65552 wummern
65553 wund
65554 wunsch
65555 wupper
65556 wurf
65561 wurm
65562 wurscht
65563 wurst
65564 wurz
65565 wuselig
65566 wuseln
65611 wust
65612 wyss
65613 xenon
65614 xylofon
65615 yakin
65616 yankee
65621 yard
65622 yeti
65623 yoga
65624 yogi
65625 ypsilon
65626 yucca
65631 yuppie
65632 zach
65633 zack
65634 zaghaft
65635 zahl
65636 zahm
65641 zahn
65642 zairisch
65643 zander
65644 zange
65645 zank
65646 zapatist
65651 zapf
65652 zappeln
65653 zappen
65654 zarin
65655 zart
65656 zauber
65661 zauderer
65662 zaudern
65663 zaum
65664 zaun
65665 zebra
65666 zeche
66111 zechner
66112 zecke
66113 zeder
66114 zehe
66115 zehn
66116 zehren
66121 zeichen
66122 zeichnen
66123 zeichner
66124 zeigen
66125 zeiger
66126 zeihen
66131 zeile
66132 zeit
66133 zelle
66134 zelt
66135 zement
66136 zenit
66141 zensor
66142 zensur
66143 zensus
66144 zentner
66145 zentral
66146 zentrum
66151 zepter
66152 zerbe
66153 zerbombt
66154 zerfall
66155 zerfetzt
66156 zerlegt
66161 zerreden
66162 zerren
66163 zerrung
66164 zerzaust
66165 zeta
66166 zetern
66211 zettel
66212 zeug
66213 zicke
66214 zickig
66215 zickzack
66216 ziege
66221 ziehen
66222 zieher
66223 ziehsohn
66224 ziehung
66225 ziel
66226 ziemen
66231 ziemer
66232 ziemlich
66233 zier
66234 ziffer
66235 zigarre
66236 zille
66241 zimmer
66242 zimt
66243 zingler
66244 zink
66245 zinn
66246 zins
66251 zionist
66252 zipfel
66253 zirka
66254 zirkel
66255 zirkus
66256 zirpen
66261 zischen
66262 zitat
66263 zither
66264 zitieren
66265 zitrone
66266 zittern
66311 zittrig
66312 zivi
66313 zloty
66314 zobel
66315 zocken
66316 zocker
66321 zofe
66322 zoll
66323 zombie
66324 zone
66325 zoologe
66326 zoologie
66331 zoom
66332 zopf
66333 zorn
66334 zubau
66335 zuber
66336 zubrot
66341 zucchini
66342 zucht
66343 zucken
66344 zucker
66345 zuckung
66346 zudecken
66351 zudem
66352 zudrehen
66353 zuerst
66354 zufahren
66355 zufahrt
66356 zufall
66361 zufluss
66362 zufolge
66363 zufuhr
66364 zugabe
66365 zugang
66366 zugeben
66411 zugegen
66412 zugehen
66413 zuger
66414 zugesagt
66415 zugetan
66416 zugewinn
66421 zugfahrt
66422 zugig
66423 zugluft
66424 zugpaar
66425 zugriff
66426 zugrunde
66431 zugute
66432 zugweg
66433 zugzwang
66434 zuhanden
66435 zuhauf
66436 zuhause
66441 zujubeln
66442 zukauf
66443 zukehren
66444 zukommen
66445 zukunft
66446 zulage
66451 zulassen
66452 zulasten
66453 zulauf
66454 zulegen
66455 zuleiten
66456 zuletzt
66461 zuliebe
66462 zulosen
66463 zulu
66464 zumachen
66465 zumal
66466 zumeist
66511 zumutbar
66512 zumute
66513 zumutung
66514 zunahme
66515 zunder
66516 zunehmen
66521 zunft
66522 zunge
66523 zunichte
66524 zunutze
66525 zuordnen
66526 zupacken
66531 zupfen
66532 zurecht
66533 zureden
66534 zurollen
66535 zuruf
66536 zurzeit
66541 zusage
66542 zusammen
66543 zusatz
66544 zuschlag
66545 zuschuss
66546 zusehen
66551 zuseher
66552 zusenden
66553 zuspiel
66554 zustand
66555 zustrom
66556 zustupf
66561 zutage
66562 zutat
66563 zuteil
66564 zutragen
66565 zutrauen
66566 zutritt
66611 zutun
66612 zuviel
66613 zuvor
66614 zuwachs
66615 zuwege
66616 zuweisen
66621 zuwenig
66622 zuwerfen
66623 zuwider
66624 zuzug
66625 zwang
66626 zwanzig
66631 zwar
66632 zweck
66633 zwei
66634 zwerg
66635 zwickel
66636 zwicken
66641 zwicker
66642 zwiebel
66643 zwilling
66644 zwingen
66645 zwinger
66646 zwingli
66651 zwirn
66652 zwischen
66653 zwist
66654 zwitter
66655 zwittrig
66656 zyklon
66661 zyklus
66662 zyniker
66663 zynisch
66664 zyprer
66665 zypriot
66666 zyste
diceware-1.0.1/diceware/wordlists/wordlist_de_8k.txt 0000664 0000000 0000000 00000161624 14732404111 0022602 0 ustar 00root root 0000000 0000000 aachener
aalen
abart
abba
abbe
abbild
abbitte
abbruch
abdecken
abdrehen
abdruck
abebben
abend
aber
abfahren
abfahrer
abfahrt
abfall
abfangen
abfassen
abfeiern
abfeuern
abfinden
abflauen
abflug
abfluss
abfolge
abfrage
abfuhr
abgabe
abgang
abgas
abgebaut
abgeben
abgehen
abgelegt
abgesang
abgetan
abgrund
abgucken
abguss
abhaben
abhacken
abhaken
abhanden
abhang
abhauen
abheben
abhelfen
abhilfe
abholen
abholung
abidjan
abitur
abjagen
abkaufen
abkehr
abkommen
abladen
ablage
ablass
ablauf
ableben
ablegen
ableger
ableiten
ablenken
ablesbar
ablesen
abluft
abmachen
abmagern
abmahnen
abnahme
abnehmer
abnorm
abpfiff
abpumpen
abraten
abraum
abrede
abreise
abriss
abrollen
abruf
abrunden
abrupt
absage
absahnen
absatz
abscheu
abschied
abschlag
absegnen
absehen
abseits
absenz
absetzen
absicht
absolut
abspann
absprung
abspulen
abstand
abstieg
abstract
abstrakt
abstrus
absturz
absuchen
absurd
abtasten
abtei
abtragen
abtritt
abtun
abwahl
abwasch
abwasser
abweg
abwehr
abwerben
abwerten
abwesend
abwiegen
abwinken
abwurf
abzahlen
abzapfen
abziehen
abzocken
abzocker
abzug
abzweig
access
achse
acht
acid
acker
acre
acryl
acta
action
actor
adagio
adapter
adaptiv
addieren
addition
additiv
adel
ader
adieu
adjutant
adler
adlig
admiral
adonis
adressat
adresse
adrett
adult
advent
advokat
aerobic
aerosol
affe
affin
affront
afghane
after
agape
agenda
agent
aggregat
agieren
agiert
agil
agitator
agonie
agora
ahle
ahnden
ahndung
ahnen
ahnherr
ahnung
ahoi
ahorn
aids
aikido
airbag
airline
airport
akazie
akkord
akku
akne
akribie
akrobat
akronym
akte
aktie
aktion
aktiv
aktuar
aktuell
akustik
akut
akzent
aland
alane
alarm
albaner
albern
albion
albtraum
album
albus
alchemie
alemanne
alert
alfa
alge
alias
alibi
alien
alimente
alkaloid
alken
alkohol
alkoven
allah
alldem
alle
allianz
allmend
allrad
allseits
alltag
allzeit
allzu
almosen
aloe
alpe
alpha
alphorn
alpin
alsbald
alsdann
also
altan
altar
altauto
altbau
alte
altfall
altglas
altherr
altholz
altistin
altkleid
altklug
altkreis
altlast
altstadt
altstar
alufelge
amalgam
amateur
amber
ambiente
ambition
amboss
ambra
ambulant
ameise
amen
amin
ammann
amme
ammoniak
amnesie
amnestie
amok
amorph
amour
ampel
ampere
amphibie
ampulle
amsel
amten
amtiert
amtlich
amtmann
amtsarzt
amtseid
amtshof
amtsjahr
amtszeit
amulett
anabol
anaerob
anal
ananas
anarchie
anatom
anbau
anbeten
anbetung
anbinden
anblick
anbot
anbraten
anbruch
andacht
andante
andauen
andere
andermal
anders
andienen
andrang
androgyn
androhen
anecken
anekdote
anfahren
anfahrt
anfall
anfang
anfassen
anfeuern
anflehen
anflug
anfrage
angabe
angebaut
angeben
angeber
angebot
angehen
angel
angenehm
anger
angetan
angina
angler
angriff
angst
angurten
anhaben
anhaften
anhalten
anhalter
anhand
anhang
anhaus
anheben
anhebung
anheften
anheim
anheizen
anhieb
anhin
anilin
animiert
anion
anis
ankauf
anker
anketten
anklage
anklang
ankleben
ankommen
ankunft
anlage
anlass
anlauf
anlegen
anleger
anlegung
anlehnen
anleihe
anleiten
anliegen
anlieger
anlocken
anmachen
anmalen
anmessen
anmut
annahme
annalen
annehmen
annexion
anno
anode
anomalie
anonym
anorak
anpacken
anpeilen
anpfiff
anprall
anrainer
anraten
anrecht
anrede
anregen
anregung
anreise
anreiz
anrichte
anrollen
anruf
ansage
ansatz
ansaugen
anschau
anschein
anschlag
anschub
ansehen
ansehung
ansetzen
ansicht
ansparen
anspiel
ansporn
anstalt
anstand
anstatt
anstauen
anstelle
anstieg
anstrich
ansturm
ansuchen
ante
anthrax
antigen
antigon
antiheld
antik
antipode
antiqua
antlitz
antrag
antreten
antrieb
antritt
antun
antwort
anus
anwachs
anwalt
anweisen
anwenden
anwender
anwerfen
anwesen
anwurf
anzahl
anzapfen
anzeige
anziehen
anzug
apache
apart
apathie
apern
apfel
apollon
apologie
apostel
apotheke
apparat
appeal
appell
appetit
applaus
aprikose
april
apropos
apsis
aqua
araber
arabeske
arabisch
arbeit
arch
areal
arena
arglos
argon
argument
argwohn
arid
arie
arisch
arkade
arktisch
arles
armada
armatur
armband
arme
armlehne
armut
aroma
array
arrest
arsen
artefakt
arten
arterie
arthrose
artig
artikel
artist
artmann
arznei
arzt
asbest
asche
ashby
asiat
askese
asket
asozial
aspekt
asphalt
aspirant
aspirin
asset
assist
assyrer
asten
aster
asthma
astrein
astronom
asyl
atelier
atem
atheist
athener
athlet
atlas
atmen
atmung
atoll
atom
atonal
atrium
attack
attentat
attersee
attest
attila
attisch
attrappe
attribut
auch
audienz
audit
aufbau
aufdruck
aufgabe
aufgang
aufgeben
aufguss
aufholen
aufkauf
auflage
auflauf
aufleben
auflegen
aufnahme
aufprall
aufreger
aufruf
aufruhr
aufs
auftakt
auftauen
auftrag
auftritt
auftun
aufwand
aufwind
aufzucht
aufzug
auge
augur
august
auktion
aula
aura
ausatmen
ausbaden
ausbau
ausbruch
ausdruck
ausfahrt
ausfall
ausflug
ausfluss
ausfuhr
ausgabe
ausgang
ausgehen
aushang
aushilfe
ausholen
aushub
ausklang
auslage
ausland
auslauf
ausleger
auslese
ausloben
auslosen
ausloten
auspuff
ausrede
ausritt
ausruf
ausruhen
aussaat
aussage
ausstieg
auster
austoben
austritt
auswahl
ausweg
ausweis
auswuchs
auszeit
auszug
autark
autist
auto
auwald
avance
avatar
avenue
avers
avis
avocado
aware
axial
axiom
azteke
azubi
azur
babbeln
baby
bach
back
bacon
baden
badeort
badesalz
badesee
badetuch
badi
baff
bagger
baguette
bahn
bahre
baht
baier
bairisch
baisse
bajazzo
bajonett
bakken
balance
bald
balg
balken
balkon
ball
balsam
balte
balz
bambus
bammel
banal
banane
banat
band
bang
banjo
bank
bann
bantu
baptist
baracke
barbar
barbe
barbier
barcode
barde
barett
bargeld
bariton
bark
barmen
barmer
barock
baron
barracke
barrage
barre
barrios
bart
basal
basar
base
basic
basiert
basilika
basis
baske
basler
bass
bast
batik
batterie
batzen
bauamt
bauart
bauboom
bauch
bauen
bauer
baufeld
baufirma
bauform
baugrube
bauherr
bauhof
bauholz
baujahr
bauklotz
baukran
bauland
bauleute
baulich
baulos
baum
bauphase
bauplan
bauplatz
baupreis
baurat
baurecht
baureif
bauruine
bausatz
bausch
baustart
baustil
baustoff
baustopp
bausumme
bauteil
bautrupp
bauweise
bauwerk
bauwesen
bauzaun
bauzeit
bauzone
bayer
bayrisch
bazillus
beackern
beamen
beamer
beamte
beamtin
beat
beau
bebauen
bebaut
bebauung
beben
bebop
becher
becken
bedacht
bedanken
bedankt
bedarf
bedauern
bedeckt
bedeuten
bedeutet
bedienen
bedient
bedingt
bedrohen
bedruckt
beduine
beehren
beeilen
beenden
beendet
beengen
beengt
beerben
beere
beet
befahren
befall
befassen
befasst
befehl
befinden
befragen
befragt
befreit
befugen
befugt
befund
begaben
begabt
begangen
begeben
begegnen
begegnet
begehen
begehrt
begine
beginn
begnaden
begnadet
begonnen
begraben
begrenzt
begriff
behaaren
behaart
behaftet
behagen
behalten
beharren
beharrt
behauen
beheben
behebung
beheizen
beheizt
behelfen
beherzt
behind
behutsam
beichte
beide
beifall
beigabe
beige
beiheft
beil
beim
bein
beirat
beirren
beiruter
beisein
beisel
beisl
beispiel
beitrag
beiwagen
beiwerk
beiz
bejagen
bejagung
bejahen
bejahung
bekannt
beklagen
beklagte
bekloppt
bekundet
beladen
belag
belang
belasten
belastet
belaufen
beleben
belebt
belebung
beleg
beleibt
belesen
belgier
belieben
beliebig
beliebt
bellen
bellevue
belohnen
belohnt
belt
beluga
bemalen
bemalt
bemannt
bemerken
bemerkt
bemessen
benannt
benefiz
benehmen
benennen
bengale
bengel
benne
benoten
benotung
benutzt
benzin
benzol
beordern
beordert
bepacken
bequem
berappen
beraten
berater
beratung
berauben
beraubt
berber
bereden
beredt
bereich
bereisen
bereist
bereit
bereuen
bereut
berg
bericht
beringen
beringer
beritten
berliner
berner
bernisch
bersten
bertl
beruf
beruhen
beruhigt
besagen
besagt
besatz
bescheid
beschert
beschlag
beschuss
beseelt
besehen
besen
besetzen
besetzer
besiegen
besiegt
besitz
besoffen
besorgt
bessern
best
besuch
besungen
beta
beten
beteuern
beteuert
bethaus
beton
betrag
betrauen
betraut
betreff
betreten
betreuen
betrieb
betrogen
betrug
bett
betucht
betulich
beugen
beugung
beule
beute
beutler
bevor
bewachen
bewacher
bewacht
bewahren
bewahrt
bewaldet
bewegen
bewegt
bewehrt
beweis
bewenden
bewerb
bewerfen
bewirken
bewirkt
bewohnen
bewohner
bewohnt
bewuchs
bewusst
bezahlt
bezeugen
bezeugt
bezieher
bezirk
bezogen
bezug
biathlet
biathlon
bibbern
bibel
biber
bibi
biblisch
bieder
biege
biegsam
biegung
biene
bier
biest
bieten
bieter
bigband
bigott
bike
bikini
bilanz
bild
billard
bille
billig
billion
bimmeln
binde
bindung
binge
bingo
binnen
binse
bioethik
biogas
biogen
biograf
biohof
bioladen
bioland
biologe
biologin
biomasse
biotop
bipolar
birke
birnbaum
birne
bischof
bisher
bislang
bison
biss
bistro
bistum
bitte
bitumen
biwak
bizarr
blamabel
blamage
blank
blase
blass
blatt
blau
blazer
blech
blecken
blei
blende
blessur
bleu
blick
blind
blinken
blinker
blinzeln
blitz
blizzard
bloch
block
blogger
blond
blubbern
blues
bluff
blume
blumig
bluse
blut
board
bobo
boccia
bock
bodden
boden
body
bogen
boheme
bohle
bohne
bohren
bohrer
bohrung
boiler
boje
bolero
bolid
bolle
bolzen
bombe
bommel
bonbon
bond
bongen
bonjour
bonmot
bonner
bonsai
bonus
bonze
boogie
booklet
boom
boot
bora
bord
borg
borke
borste
borusse
boshaft
bosheit
bosniake
bosnier
bosnisch
bosse
botanik
bote
bott
bouillon
boulogne
bourbon
boutique
bowle
bowling
boxen
boxer
boxkampf
boxring
boxsport
boykott
bozner
brach
brack
brain
bram
branche
brand
brasil
brassen
braten
bratsche
brauch
braue
brauhaus
braun
brause
braut
brav
break
breche
brei
bremer
bremisch
bremse
bremsweg
brennen
brenner
bresche
brett
brezel
bridge
brie
brigade
brigg
brikett
brillant
brillanz
brille
bringen
brink
brisant
brisanz
brise
brite
britin
britisch
brocken
brodeln
broker
brom
bronchie
bronze
brosche
brot
browser
bruch
bruder
brummeln
brummen
brummer
brummi
brunch
brunn
brunst
brust
brut
bube
bubi
buch
buckel
bucklig
buddeln
buddha
buddhist
bude
budget
buggy
buhen
buhlen
buhmann
buhruf
bukett
bulette
bulgare
bulgarin
bulimie
bulldog
bulle
bullig
bully
bummel
bund
bunge
bunker
bunt
bure
burg
burka
burlesk
bursch
busch
busen
business
busnetz
busreise
bussard
busspur
bustour
butler
butt
butz
bypass
byte
cabaret
cabrio
cache
cadmium
caine
call
calypso
camp
canto
cape
caravan
carbo
carlton
carrier
cartoon
carver
carving
cash
cassius
casten
casting
castor
catcher
causa
celler
cellist
cello
celsius
cembalo
cent
chairman
chalet
champion
chance
change
channel
chanson
chaos
chaot
chapeau
charge
charmant
charme
chart
chassis
chat
chaussee
check
chef
chemie
chemiker
chemisch
cheyenne
chianti
chief
chiffre
chilene
chili
chillen
chinese
chip
chirurg
chlor
cholera
chopper
chor
chose
christ
chrom
chronik
chronist
chuzpe
cineast
cinema
cirka
city
claim
clean
clever
client
clinch
clique
clou
clown
cluster
coach
cockpit
cocktail
coeur
cognac
collage
college
collie
colombo
colonel
colt
combo
comedy
comic
commedia
compiler
comte
conseil
content
contest
cookie
cool
core
cottage
cotton
couch
couleur
count
coup
courage
course
cousin
couture
cover
cowboy
crack
crash
creek
crew
cricket
crime
cross
cruisen
cruiser
culpa
cupsieg
cure
curie
curling
curry
cutter
dabei
dach
dackel
dadaist
daddy
dadurch
dagegen
daheim
daher
dahin
dahlie
dakar
dakota
dalai
daliegen
damalig
damals
dame
damit
damm
dampf
damwild
danach
dancer
dancing
dandy
daneben
danger
dank
dann
dantes
daran
darauf
daraus
darben
darg
darin
darlegen
darling
darm
darnach
darob
darre
darum
darunter
dasein
daselbst
dasitzen
dass
date
datiert
dativ
dato
datscha
dattel
datum
dauer
daumen
daune
dauphin
daviscup
davon
davor
dazu
deadline
deal
debakel
debatte
debil
dechant
deck
decoder
defekt
defilee
defizit
deftig
degen
dehnbar
dehnen
dehnung
deich
dein
dekade
dekan
dekor
dekret
delfin
delikat
delikt
delle
delta
demagoge
dement
demenz
demeter
demnach
demo
demut
denkbar
denken
denker
denkmal
denn
depesche
deponie
depot
depp
derart
derb
dereinst
derer
derivat
derlei
derweil
derwisch
derzeit
desaster
deshalb
design
desktop
desolat
despot
dessauer
dessert
dessous
desto
deswegen
detail
detektei
detektor
deubel
deut
device
devise
devot
dezent
dezernat
dezibel
diabolo
diadem
diagnose
diagonal
diagramm
diakon
dialekt
dialog
dialyse
diamant
diaschau
diashow
dicht
dick
didaktik
dieb
diel
dien
diesel
diesmal
diffizil
diffus
digest
digital
diktat
diktiert
diktion
diktum
dilemma
dill
dime
dinar
diner
ding
dinkel
dinner
dino
diode
dion
dioxin
diplom
direkt
dirigat
dirigent
dirndl
dirne
disc
diskette
diskont
diskret
diskurs
diskus
display
disput
dissen
distanz
distel
distrikt
dito
diva
divers
divis
diwan
dixie
doch
dock
doge
dogge
dogma
dohle
doktor
doktrin
doku
dolce
dolch
dole
doll
dolomit
domain
domberg
domchor
domherr
domhof
domina
dominion
domino
dominus
domizil
dona
donna
donner
doof
doors
dopamin
dopen
doping
doppel
doppler
dorado
dorf
doria
dorisch
dorn
dorsch
dort
dose
dosieren
dosiert
dosis
dossier
dotieren
dotiert
dotter
doubeln
double
down
doyen
dozent
drache
drachme
draht
drall
drama
dran
drauf
dreck
dreh
drei
dreschen
drescher
dresdner
dress
driesch
drift
drill
drin
dritt
drive
droben
droge
drogist
drohen
drohne
drohung
drollig
dromedar
drossel
drost
druck
druide
drum
drunten
drunter
dschihad
dual
duathlon
dubios
duce
ducken
dudeln
duell
duett
duff
duft
duke
duktus
dulden
duldung
duma
dumm
dumpf
dumping
dune
dung
dunkel
dunst
durch
durst
dusche
dust
dutt
dutzend
duzen
dynamik
dynamit
dynamo
dynastie
eagle
ebbe
eben
eber
ebnen
ecclesia
echo
echse
echt
eckball
ecke
eckhaus
eckig
eckpunkt
eckturm
eckwert
eckzahn
ecstasy
edel
eden
edieren
ediert
edikt
edition
editor
efeu
effekt
egal
egge
egli
egoismus
egoist
ehebett
ehebruch
ehedem
ehefrau
ehejahr
ehekrise
eheleute
ehelich
ehemalig
ehemals
ehemann
ehepaar
eher
ehest
ehrbar
ehre
ehrgeiz
ehrlich
ehrung
eiablage
eibe
eiche
eichner
eidechse
eiern
eiertanz
eifeler
eifer
eifrig
eigelb
eigen
eignen
eigner
eignung
eiland
eile
eilig
eilzug
eimer
einander
einarmig
einatmen
einbahn
einband
einbau
einbruch
eindruck
einebnen
einen
einer
einfach
einfahrt
einfall
einfalt
einfuhr
eingabe
eingang
eingeben
eingriff
einhalt
einhaus
einheben
einheit
einher
einhorn
einig
einkauf
einkehr
einklang
einlage
einlass
einlauf
einleben
einmal
einnahme
einrad
einrede
eins
eintopf
eintrag
eintritt
einwand
einwurf
einzel
einzig
einzug
eisbahn
eisberg
eisen
eisern
eisfrei
eisglatt
eishalle
eisig
eiskalt
eiskanal
eislauf
eismann
eismeer
eistanz
eistee
eisvogel
eiswein
eiszeit
eitel
eiter
eitrig
eizelle
ekel
eklat
eklig
ekliptik
ekstase
ekuador
ekzem
elan
elch
elefant
elegant
eleganz
elegie
elegisch
elektrik
elektron
element
elend
eleve
elfe
elfmal
elfmeter
elite
elle
ellipse
eloge
eloquent
elster
eltern
elysee
email
embargo
emblem
embryo
emder
emeritus
emigrant
eminent
eminenz
emir
emittent
emmaus
emmel
emmental
emotion
empathie
empfang
emphase
empire
empirie
empor
emscher
emser
emsig
emulsion
ende
endkampf
endkunde
endlager
endlauf
endlich
endlos
endogen
endpunkt
endrang
endsieg
endspiel
endspurt
endstufe
endung
endzeit
endziel
endzone
energie
enge
englisch
engpass
enkel
enklave
enorm
enquete
entdeckt
ente
entfacht
entfernt
entgegen
entgelt
entheben
entladen
entlang
entlegen
entnahme
entnervt
entree
entsagen
entsorgt
entweder
entwurf
entzug
enzian
enzym
epigone
epilog
episch
episode
epitaph
epochal
epoche
epos
epsilon
equipe
erachten
erachtet
erahnen
erbarmen
erbauen
erbauer
erbaut
erbe
erbfall
erbgut
erbin
erbitten
erblast
erblich
erbosen
erbost
erbpacht
erbracht
erbrecht
erbse
erdacht
erdapfel
erdball
erdbeere
erdboden
erde
erdgas
erdig
erdkugel
erdkunde
erdloch
erdnah
erdnuss
erdreich
erdteil
erdulden
erdwall
ereifern
ereignen
ereilen
ereilt
eremit
eren
ererbt
erfangen
erfassen
erfolg
erfreuen
erfreut
ergeben
ergehen
ergiebig
ergo
ergraut
erguss
erhaben
erhalt
erheben
erhellen
erhitzt
erhoben
erhofft
erholen
erholsam
erholt
erholung
erika
erinnern
eriwan
erkannt
erkaufen
erkennen
erker
erkundet
erlahmen
erlangen
erlanger
erlangt
erlass
erlauben
erle
erliegen
erlitten
ermahnen
ermahnt
ermessen
ermutigt
ernannt
erneuen
erneut
ernst
ernte
eroberer
erobern
erobert
eros
erotik
erpel
erpicht
erpresst
erproben
erprobt
erraten
erregen
erreger
erregt
erregung
erreicht
erretten
error
errungen
ersatz
ersehen
ersehnt
ersetzen
ersparen
erspart
erspielt
erst
ersuchen
ersucht
ertappt
erteilen
erteilt
ertrag
eruieren
eruption
eruptiv
erwacht
erwarten
erwartet
erweckt
erweisen
erwerb
erwidern
erwirkt
erwischt
erwogen
erworben
erzengel
erzeugt
erzfeind
erziehen
erzielen
erzielt
erzogen
erzstift
esche
escudo
esel
eskorte
esoterik
esprit
essay
essbar
esse
essig
esswein
este
estnisch
estragon
estrich
etage
etappe
etat
eternit
ethik
ethisch
ethnie
ethnisch
ethos
etikett
etliche
etter
etui
etwa
euch
euer
eugenik
eule
eunuch
eure
euro
euter
event
evident
evidenz
ewer
ewig
exakt
examen
exegese
exempel
exfrau
exil
exklave
exkurs
exodus
exot
expansiv
expert
explizit
explorer
explosiv
exponat
export
express
exquisit
extensiv
extern
extra
extrem
exzess
fabel
fabrik
face
fach
fackel
fact
fade
fagott
fahl
fahnden
fahnder
fahndung
fahne
fahrbahn
fahrbar
fahren
fahrer
fahrgast
fahrig
fahrrad
fahrspur
fahrstil
fahrt
fahrweg
fahrwerk
fahrzeit
faible
fair
fake
fakir
fakt
falb
falke
falkner
fall
falsch
falte
faltig
faltung
familie
famos
fanal
fanblock
fanbus
fanfare
fang
fanklub
fankurve
fanseite
fanshop
fantasia
fantasie
fantast
fanzine
farbbild
farbe
farbfilm
farbfoto
farbig
farblos
farbraum
farbton
farce
farin
farm
farn
fasan
faschist
faseln
faser
fashion
fass
fast
fatal
fatum
fatwa
fauchen
faul
faun
faust
fauxpas
favela
favorit
faxe
fazit
feature
feber
februar
fechten
fechter
feder
feed
feeling
fegen
fehde
fehl
feien
feier
feig
feil
fein
feist
feixen
feld
felge
fell
fels
feminin
feminist
fenchel
fender
fenn
fenster
fenz
ferien
ferkel
fern
ferse
fertig
fesch
fessel
fest
fete
fetisch
fett
fetz
feucht
feudal
feuer
feurig
fiaker
fiasko
fibel
fichte
ficken
fidel
fieber
fiebrig
fiedler
fies
fifa
figaro
fight
figur
fiktion
fiktiv
file
filiale
filigran
filius
film
filou
filter
filz
fina
finden
finder
findig
findling
finesse
finger
fingiert
finish
fink
finne
finnin
finnisch
finster
finte
firm
first
fisch
fiskus
fitness
fitten
fittich
fixen
fixer
fixiert
fixing
fixstern
fjord
flach
flackern
fladen
flagge
flair
flak
flame
flamme
flaneur
flanke
flapsig
flasche
flash
flat
flau
flechte
fleck
fleet
flegel
flehen
fleisch
flex
flicken
flieder
fliege
fliehen
fliese
flink
flinte
flip
flirren
flirt
flitzen
flitzer
float
flocke
flockig
floh
flop
flor
floskel
flosse
flott
fluch
flug
fluid
fluor
flur
fluss
flut
flyer
fock
fohlen
fokus
folder
folge
folglich
folgsam
folie
folk
folter
fond
fonem
fonetik
font
food
foppen
fordern
forelle
forint
form
forsch
forst
fort
forum
forward
fossa
fossil
foto
foul
fourier
foyer
fracht
frack
frage
fragil
fraglich
fraglos
fraktion
fraktur
frame
franc
frank
franse
frappant
frater
fratze
frau
freak
frech
freetown
fregatte
frei
fremd
fresko
fresse
freude
freudig
freuen
freund
frevel
friaul
friede
frieren
fries
frisbee
frisch
friseur
friseuse
frist
frisur
fritte
frivol
froh
fromm
fronen
front
frosch
frost
frotzeln
frucht
frust
fuchs
fuchteln
fuge
fuhre
fuldaer
fummeln
fund
funk
furche
furcht
furie
furios
furor
furt
fusion
futsch
futter
futur
gabe
gabler
gackern
gaffer
gage
gala
galeere
galerie
galerist
galgen
galle
gallier
gallo
galopp
gambe
gamma
gams
gang
ganove
gans
gant
ganz
garage
garant
garaus
garbe
gardasee
garde
gardine
gardist
gare
garland
garn
garstig
garten
gasen
gasfeld
gasmarkt
gasmaske
gasnetz
gaspedal
gasse
gassi
gast
gaswerk
gate
gatte
gattin
gattung
gauch
gaudi
gaukeln
gaukler
gaul
gaumen
gauner
gautier
gave
gazelle
gazette
geachtet
geadelt
geartet
geballt
gebannt
gebaren
gebaut
gebein
gebell
geben
geber
gebet
gebeugt
gebiet
gebilde
gebinde
gebirge
gebiss
gebogen
geboren
geborgt
gebot
gebraten
gebrauch
gebraut
gebrech
gebucht
geburt
geck
gecovert
gedacht
gedanke
gedeck
gedehnt
gedeih
gedicht
gediegen
gedient
gedopt
gedreht
geduld
geehrt
geeignet
geeint
geerbt
geerntet
gefahr
gefallen
gefaltet
gefasst
gefecht
gefeiert
gefeit
gefeuert
gefieder
gefilde
gefilmt
geflecht
gefleckt
geflohen
gefolge
geformt
gefoult
gefragt
gefreite
gefunden
gegangen
gegeben
gegen
gegner
gegossen
gegrillt
gehabe
gehackt
gehalt
gehasst
gehauen
gehege
gehegt
geheim
geheizt
gehemmt
gehen
geher
gehetzt
geheuer
geheul
gehhilfe
gehilfe
gehirn
gehoben
geholt
gehrer
gehweg
gehzeit
geier
geige
geil
geimpft
geisel
geisha
geist
geiz
gejagt
gejohle
gekannt
gekapert
gekehrt
gekippt
geklaut
geklont
gekocht
gekonnt
geladen
gelage
gelandet
gelangen
gelangt
gelass
gelatine
gelaufe
gelb
geld
gelebt
gelee
gelege
gelegt
gelehrig
gelehrt
geleise
geleit
gelenk
gelernt
gelesen
geliebte
geliehen
gelind
gelingen
gell
geloben
gelockt
gelt
gelungen
gemach
gemahl
gemahnen
gemauert
gemein
gemetzel
gemietet
gemisch
genau
gendarm
genehm
geneigt
general
generell
genervt
genese
genesis
genesung
genetik
genfer
genial
genick
genie
genitale
genitiv
genius
genmais
genom
genormt
genosse
genossin
genozid
genre
gens
gent
genug
genuin
genus
genutzt
geograf
geologe
geologie
geopark
georgier
gepackt
gepard
geparkt
geplagt
geplatzt
geprellt
gepresst
geputzt
gerade
gerahmt
gerangel
geranie
geraten
geraubt
geraum
gerben
gerber
gerecht
gerede
gereift
gereiht
gereimt
gereizt
gerettet
gericht
gerieben
gering
gerippe
germane
gern
gerste
gerte
geruch
geruhsam
gesamt
gesandt
gesang
gescheit
geschick
geschont
geschrei
geschult
gesegnet
gesehen
gesell
gesendet
gesenkt
gesetz
gesicht
gesims
gesinde
gesittet
gesonnen
gespann
gespart
gesperrt
gespickt
gespielt
gest
gesuch
gesund
getan
getarnt
getauft
geteert
geteilt
getestet
getextet
getier
getigert
getragen
getreide
getrennt
getreten
getreu
getrost
getto
getue
geviert
gewagt
gewahr
gewalt
gewand
gewann
gewebe
geweckt
gewehr
geweih
gewellt
gewerbe
gewerk
gewesen
gewicht
gewieft
gewimmel
gewinde
gewinn
gewirr
gewiss
gewitter
gewitzt
gewogen
gewohnt
gewollt
gewonnen
geworden
geworfen
gewusel
geysir
gezackt
gezahlt
gezapft
gezeigt
gezeit
gezerre
gezeter
gezeugt
gezielt
geziert
gezogen
ghanaer
gibbon
gibbs
gicht
giebel
gier
gift
gigant
gigolo
gilde
gilge
ginger
ginko
gipfel
gips
giraffe
girl
giro
gischt
gisler
gitarre
gitter
glace
glamour
glanz
glarner
glas
glatt
glatze
glaube
gleich
gleis
gleiten
glied
glimmen
glitter
glitzer
global
globus
glocke
gloria
glorie
glosen
gloser
glossar
glosse
glotze
glucke
glukose
glut
glyzerin
gmbh
gnade
gneis
gnom
goal
gobelin
gockel
gode
gold
golem
golf
goliath
gondel
gong
goodwill
googeln
gordisch
gorilla
gospel
gosse
gote
gotik
gotisch
gott
gouache
gourmet
grab
gracht
grad
graf
gral
gram
gran
graph
gras
grat
grau
graveur
gravur
grazer
grazie
grazil
greif
greinen
greis
grell
gremium
grenze
grenzort
grieche
griechin
gries
griff
grill
grimm
grindel
grinsen
grippal
grippe
grips
grob
groll
groove
groovig
gros
grotesk
grotte
groupie
grube
gruft
grund
grunge
grunzen
gruppe
gruselig
gruseln
guayana
gucken
guerilla
guest
guide
gulag
gulasch
gulden
gully
gummi
gunkel
gunst
gurgel
gurke
gurren
gurt
guru
guss
gusto
gutartig
gutgehen
gutperle
gutsherr
gutshof
gutteil
guttun
haager
haar
habe
habgier
habhaft
habicht
habil
habitat
habitus
hacke
hader
hades
hafen
hafer
haff
hafner
haft
hagedorn
hagel
hager
haha
hahn
haifisch
haiku
hain
haken
hakim
halb
halde
hall
halm
halo
hals
halt
halunke
hamas
hamit
hammel
hammer
hampeln
hamster
hand
hanf
hang
hanse
hantel
hapern
happen
happig
happy
harakiri
harde
harem
harfe
harke
harlekin
harm
harn
harren
hart
harzer
harzig
haschen
hase
hass
hast
hatz
haube
hauch
haue
haufe
haupt
haus
haut
havarie
haxe
header
hearing
hebamme
hebe
hebung
hecheln
hecht
heck
heer
hefe
heft
hege
hehl
hehr
heide
heikel
heil
heim
heini
heirat
heiser
heister
heiter
heizen
heizer
heizung
heizwerk
heizwert
hektar
hektik
held
helfen
helfer
helium
hell
helm
hemd
hemmen
hemmer
hemmnis
hemmung
hendl
hengst
henken
henker
henne
herab
heraldik
heran
herauf
heraus
herb
herd
herein
herero
hergang
hergeben
hergehen
hering
herkunft
hermelin
hernach
herodot
heroe
heroin
heroisch
heros
herpesen
herr
hertz
herum
herunter
hervor
herz
hesse
hessin
hessisch
hetero
hetze
heuchler
heuen
heuer
heulen
heupelz
heurig
heut
hexe
hick
hieb
hier
hiesig
hieven
hiezu
high
hilfe
hilflos
himbeere
himmel
hinab
hinauf
hinaus
hindern
hindi
hindu
hinein
hinfahrt
hingabe
hingeben
hingehen
hinkel
hinken
hinkunft
hinsehen
hinsicht
hinspiel
hinten
hinter
hinunter
hinweg
hinweis
hinzu
hipp
hirn
hirsch
hirse
hirt
hissen
historie
hitliste
hitze
hitzig
hitzkopf
hobart
hobbit
hobby
hobel
hoch
hock
hoden
hofburg
hofdame
hoffen
hoffest
hofgut
hofieren
hofladen
hofmaler
hofmark
hofnarr
hofrat
hofraum
hofstaat
hoftor
hoheit
hohelied
hohl
hohn
hold
holen
holler
holpern
holprig
holter
holunder
holz
homeland
homepage
hommage
homo
honen
honig
honne
honorar
honorig
hooligan
hopfen
hopp
hopsen
hora
horchen
horde
horizont
hormon
horn
horoskop
horrend
horror
horse
hort
hose
hospital
hospiz
host
hotel
hotline
hotspot
hott
hube
hubraum
huch
huhn
hulk
human
humbug
hummel
hummer
humor
humpeln
humus
hund
hunger
hungrig
hunne
hunt
hupe
hurra
hurrikan
hurtig
husar
husch
husky
hussit
husten
huster
hybrid
hybris
hydra
hygiene
hymne
hymnus
hype
hypnose
hypobank
hypothek
iberer
ibis
icon
ideal
idee
iden
idiom
idiot
idol
idyll
igel
iglu
ignoranz
ihnen
ihrige
ikone
ilias
illegal
illuster
image
imago
imam
imbiss
imitator
imker
immanent
immens
immer
immun
impact
imperium
impetus
impfen
impfung
implizit
import
impotenz
impuls
imstande
inaktiv
inch
indem
inder
indes
index
indianer
indigen
indigo
indio
indirekt
indisch
indiz
infam
infantil
infarkt
infekt
inferno
info
infrage
infrarot
ingwer
inhaber
inhalt
inhuman
initial
initiant
inka
inland
inline
inmitten
inne
innig
innung
input
insasse
insekt
insel
inserat
inside
insigne
insofern
instabil
instand
instanz
insulin
intakt
integer
intensiv
interim
intern
interpol
intim
intrige
intro
intus
inuit
invalid
invasion
invasiv
invasor
inventar
inventur
invers
investor
inzest
inzucht
ionisch
iraker
irakisch
iraner
irdisch
ireland
irgend
iridium
irin
irisch
irmtraut
irokese
ironie
irre
irrfahrt
irrig
irrsinn
irrtum
irrung
irrweg
ische
ischl
islam
isolator
isotop
israeli
item
ivorer
jacht
jacke
jackpot
jacquet
jade
jagd
jagen
jager
jaguar
jahr
jaja
jako
jammer
janneck
januar
japaner
jargon
jass
jauche
jaulen
jause
jawoll
jawort
jazz
jeans
jeck
jedesmal
jedoch
jeep
jeher
jemals
jemand
jenaer
jenisch
jenseits
jerez
jesuit
jetlag
jeton
jetten
jetzig
jetzt
jeweilig
jeweils
jobabbau
jobben
jobber
joch
jockei
jodeln
jodler
joggen
jogger
jogging
jogurt
johanni
johlen
joint
joker
jolle
jongleur
josefin
journal
jovial
joystick
jubel
jubilar
jucken
jude
judo
jugend
jukebox
juli
jump
jung
juni
junker
junkie
junktim
juno
junta
jura
juris
juror
jurte
jury
juso
just
jute
juvenil
juwel
kabale
kabbala
kabel
kabine
kachel
kadaver
kadenz
kader
kadett
kadi
kaeser
kaff
kafkaesk
kahl
kairoer
kaiser
kajak
kakadu
kakao
kakerlak
kaktus
kalauer
kalb
kalender
kali
kalk
kalorie
kalt
kalzium
kamel
kamera
kamille
kamin
kamm
kampf
kanadier
kanal
kandare
kanne
kanon
kantate
kante
kantig
kantine
kanton
kantor
kanu
kanzel
kanzlei
kanzler
kapelle
kapern
kapital
kapitel
kapitol
kaplan
kapo
kappe
kapriole
kapsel
kaputt
kapuze
karaoke
karat
karawane
karbon
karde
karenz
karg
kariert
karies
karma
karner
karneval
karo
karpaten
karpfen
karre
karst
kart
karwoche
karzinom
kasache
kaschmir
kaserne
kasino
kaskade
kasper
kaspisch
kassa
kasse
kassier
kastanie
kaste
kasus
kata
kater
katheter
kathode
kation
katze
kauen
kauer
kauf
kaugummi
kaule
kaum
kausal
kaution
kauz
kavalier
kaviar
kebab
keck
keep
kees
kegel
kegler
kehle
kehlkopf
kehr
keifen
keil
keim
keks
kelch
kelle
kellner
kelt
kelvin
kennen
kenner
kennung
kennwort
kennzahl
kentern
keramik
kerb
kerker
kerl
kern
kerosin
kerwe
kerze
kess
ketscher
ketschup
kette
kettler
ketzer
keuchen
keule
keusch
keyboard
khan
khmer
kibbuz
kichern
kick
kiebitz
kiefer
kieler
kieme
kien
kies
kiez
kiffen
kiffer
killen
killer
kilo
kilt
kimono
kind
kingdom
kinn
kino
kiosk
kippe
kirche
kirchhof
kirgise
kirke
kirmes
kirnen
kirsche
kissen
kiste
kitsch
kitt
kitz
kiwi
klaffen
klage
klaglos
klamauk
klamm
klan
klappe
klaps
klar
klasse
klassik
klatsch
klauben
klaue
klause
klausur
klavier
kleben
kleber
klebrig
klecks
klee
klei
klemme
klepper
klerikal
kleriker
klerus
klette
klick
klient
klima
klimmen
klimpern
klinge
klinik
klinisch
klinke
klipp
klirren
klischee
kloake
klobig
klon
klopfen
klopfer
klopp
kloss
kloster
klotz
klub
kluft
klug
klump
knabe
knack
knall
knapp
knarre
knast
knatsch
knattern
knauf
knebel
knecht
kneifen
kneip
knete
knick
knie
kniff
knigge
knipsen
knipser
knirps
knistern
knittel
knobel
knochen
knolle
knopf
knopp
knorpel
knorr
knospe
knoten
knurren
knusprig
knute
koala
kobalt
kobel
koben
kober
kobold
kobra
koch
koda
kode
kodiert
koffein
koffer
kogel
kognitiv
kohl
kohorte
koje
kojote
kokain
koken
kokerei
kokett
kokon
koks
kolben
kolibri
kolik
kollaps
kolleg
kollekte
koller
kollier
kolonial
kolonie
kolonist
kolonne
kolorit
koloss
kolumne
koma
kombi
komet
komfort
komik
komisch
komitat
komitee
komma
kommen
kommer
kommode
kommunal
kommune
kompakt
kompass
komplett
komplex
komplott
kompost
komtur
konditor
kondom
konfetti
konflikt
konform
konfus
kongress
konisch
konkav
konklave
konkret
konkurs
konsens
konserve
konsole
konsul
konsum
kontakt
konter
kontext
konto
kontra
kontur
konvent
konvex
konvoi
konzept
konzern
konzert
konzil
kopf
kopie
kopilot
koppel
koppen
kopplung
kopte
koralle
koran
korb
kord
kore
kork
kormoran
korn
korona
korps
korpus
korrekt
korridor
korrupt
korse
korsisch
korso
kosak
koscher
kosen
kosmetik
kosmos
kost
kotzen
kraal
krabbe
krach
krad
kraft
kragen
krake
kralle
kram
kran
krapfen
krapp
krass
krater
kratze
kraul
kraus
kraut
krawall
krawatte
kraxeln
kreativ
kreatur
krebs
kredenzt
kredit
kredo
kreide
kreieren
kreiert
kreis
kreme
kremig
kreml
krempel
kremser
kren
kresse
kretisch
kreuz
krick
krida
krieg
krimi
krimmeln
kring
kripo
krippe
kris
kritik
kritisch
kroate
kroatin
krokus
kroll
krone
kropf
kross
krud
krug
krumm
kruste
krux
kruzifix
krypta
kubaner
kubik
kubisch
kubismus
kubus
kuchen
kucken
kuckuck
kufe
kugel
kuhberg
kuhle
kuhmilch
kulant
kulanz
kuli
kullern
kult
kumm
kumpan
kumpel
kunde
kundig
kundin
kundtun
kunkel
kunst
kupfer
kupon
kuppe
kurator
kurbad
kurbel
kurde
kurdin
kuren
kurgast
kurhaus
kurie
kurios
kurland
kurort
kurpark
kurs
kurtaxe
kurve
kurvig
kurz
kuscheln
kuschen
kusine
kuss
kustos
kutsche
kutte
kuttner
kuvert
kyrie
label
laben
labern
labil
labor
lache
lachgas
lachs
lack
lade
ladung
lady
laessig
lage
lagune
lahm
laib
laich
laie
lakai
lake
lakritz
lallen
lama
lambda
lamelle
lamento
lametta
lamm
lampe
lampion
land
lang
lanze
lapidar
lapp
lapsus
laptop
largo
larve
lasch
laser
lassen
lasso
last
lasziv
latein
latent
lateral
laterne
latex
latino
latrine
latsch
latte
latzhose
laub
lauch
laudatio
laudator
laude
lauern
lauf
lauge
laumann
laune
launig
launisch
laus
laut
lauwarm
lava
lavendel
lawine
lazarett
lead
leasen
leasing
leben
leber
lebewohl
lebhaft
leblos
lebzeit
lechzen
leck
leder
ledig
leer
legal
legat
legen
leger
legion
legitim
leguan
lehen
lehm
lehne
lehr
leib
leiche
leichnam
leicht
leid
leier
leihen
leihgabe
leim
leine
leinpfad
leinwand
leise
leistbar
leiste
leistung
leite
leitgeb
leitidee
leitung
leitwolf
leitwort
lektion
lektor
lemma
lemming
lende
lenken
lenker
lenkrad
lenkung
lenz
leopard
lepra
lerche
lernen
lernort
lesart
lesbar
lesbe
lesbisch
lese
lesung
lette
lettner
letzt
leuchte
leugnen
leugner
leumund
leut
level
levit
lexikon
leykam
liaison
libelle
liberal
libero
libido
libyer
libysch
licht
lido
lieb
lied
liefern
liege
lien
liesche
lift
liga
light
ligist
ligue
liieren
lila
lilie
limes
limit
limmat
limo
lind
lineal
linear
linge
linguist
linie
link
linse
linzer
lippe
liquid
lira
lire
lispeln
list
litanei
litauer
lite
lithium
liturgie
live
livre
lizenz
lobby
loben
loblied
lobpreis
lobrede
location
loch
locke
lockig
lockruf
lodern
lodz
loft
logbuch
loge
loggia
logieren
logik
logis
logo
lohen
lohn
loipe
lokal
longe
look
looping
looser
lorbeer
lord
lore
lori
lose
loslegen
lossagen
lost
losung
loten
lotse
lotterie
lotto
lotus
lounge
lover
loyal
luchs
luder
ludothek
luft
lugen
luke
lukrativ
lumen
lumpen
luna
lunch
lunge
lunte
lupe
lupfen
lupfer
lupus
lurch
lusaka
lust
lutschen
luxor
luxus
luzerner
luzid
luzifer
lynchen
lyra
lyrik
lyrisch
lyzeum
maar
maat
mach
macke
maculan
madam
made
madig
madjar
madonna
madras
madrider
madrigal
maestro
mafia
mafios
magazin
magd
mage
magie
magisch
magma
magnat
magnet
magnum
mahatma
mahl
mahnen
mahner
mahnmal
mahnung
mahr
maibach
maibaum
maid
maifeld
maifest
mail
mainufer
mainzer
mairie
mais
maja
major
makaber
makak
makel
makler
makro
malaria
malen
maler
malheur
malkurs
malochen
malteser
malus
malz
mama
mambo
mami
mamma
mammon
mammut
mampfen
managen
manager
mandala
mandant
mandarin
mandat
mandel
mandl
manege
manga
mange
mango
manie
manisch
manitu
manko
mann
mantel
mantra
manual
manuell
maoist
maori
mappe
maputo
marathon
marcelle
marder
marge
maribor
marille
marin
maritim
mark
marlen
marmor
marod
marotte
marquis
mars
marterl
marxist
marzipan
masche
maser
maske
maskiert
maso
massage
massai
massaker
masse
massig
massiv
mast
masure
matador
match
mate
mathe
matinee
matratze
matrix
matrose
matsch
matt
matura
matze
mauer
maul
maure
maurisch
maus
maut
maximal
maxime
maximum
maya
mayor
meckern
meder
media
medium
medizin
medley
medusa
meer
meeting
megabit
megafon
megastar
megawatt
mehl
mehr
meiden
meierei
meierhof
meile
mein
meise
meist
melange
melanom
melde
meldung
melk
mellitus
melodie
melodik
melodram
melone
melos
membran
memento
memo
menge
menhir
mennonit
mensa
mensch
mensur
mental
mentor
menu
mephisto
meridian
meritum
merkbar
merken
merker
merklich
merkmal
merkur
merle
mesched
mesmer
mesner
message
messbar
messe
messias
messing
messung
messwert
meta
meteor
meter
methadon
methan
methode
methodik
metier
metrik
metrum
mett
metze
metzger
metzler
meucheln
meute
micke
mickrig
midi
mieder
mief
miene
mies
miete
mieze
migrant
mikado
mikro
milano
milbe
milch
mild
milieu
militant
miliz
mille
million
milorad
milz
mime
mimik
mimisch
mimus
minarett
minder
mine
mini
minne
minoisch
minor
mint
minus
minute
minze
mirage
mirakel
mirza
mischehe
mischen
mischung
mise
miss
mist
mitautor
mitgift
mithilfe
mithin
mitleid
mitlesen
mitreden
mitsamt
mittag
mitte
mittig
mittler
mittun
mittwoch
mitunter
mixed
mixen
mixer
mixtur
moabit
mobben
mobbing
mobil
modal
mode
modisch
modul
modus
mofa
mogeln
mogul
mohn
mohr
mokieren
molch
mole
molke
moll
moloch
moment
monarch
monat
mond
mongole
monieren
moniert
monitor
monnet
mono
monreal
monsieur
monster
monstrum
monsun
montag
montan
monteur
month
montur
moor
moos
moped
mops
mora
morbid
mord
morgen
morgig
moritat
mormone
morphin
morphium
morsch
mortal
mosaik
moschee
moselort
mosern
moskauer
moskito
moslem
most
motel
motette
motion
motiv
moto
motte
motto
motzen
movie
mucke
muezzin
muff
mufti
mulde
mull
mulmig
multi
mumie
mumm
mumps
mund
mungo
munkeln
munter
murau
mure
murmel
murren
muschel
muse
musica
musik
musisch
muskat
muskel
muslim
muss
mustang
muster
mutant
muten
mutieren
mutiert
mutig
mutlos
mutter
mutti
mystik
mythe
mythisch
mythos
nabe
nach
nacken
nackt
nadel
nadler
nagel
nagen
nager
nagetier
nahe
nahkampf
nahost
nahrhaft
nahrung
naht
naiv
name
namhaft
nanu
napalm
napf
narbe
narkose
narr
narziss
nasal
naschen
nase
nashorn
nass
nation
nativ
natrium
natter
natur
nautilus
nautisch
nebel
neben
neblig
nebst
necken
need
neffe
negativ
nehmen
nehmer
neid
neige
neigung
nein
nekrolog
nektar
nelke
nemesis
nennen
nenner
nennung
nennwert
neon
neptun
nerv
nerz
nessel
nest
nett
network
netz
neubau
neudeck
neudruck
neue
neugier
neuheit
neujahr
neukauf
neuland
neulich
neuling
neumond
neun
neuron
neurose
neustart
neutral
neutrino
neutron
neutrum
neuwahl
neuwerk
neuzeit
news
nice
nicht
nickel
nicken
nicki
nicol
nieder
niedlich
niedrig
niemals
niemand
niere
nieseln
niesen
niet
nigger
nikotin
nilpferd
nimbus
nimmer
nippen
nippes
nirwana
nische
nisse
nisten
nister
nitrat
niveau
nixe
nobel
nobody
noch
noir
nomade
nomen
nominal
nominell
none
nonne
nonsens
nonstop
nord
noricum
norm
notar
note
notfall
nothilfe
nothing
notiert
notiz
notlage
notnagel
notruf
notwehr
notzeit
nous
nova
novelle
novize
novum
nuance
nudel
nugget
nuklear
null
numerus
nummer
nunmehr
nuntius
nurmehr
nuscheln
nuss
nutzbar
nutzen
nutzer
nutzlast
nutzlos
nutzung
nutzwert
nylon
nymphe
oase
obdach
obelisk
oben
ober
obfrau
obhut
obig
objekt
oblast
oblate
obleute
obliegen
obligat
obmann
oboe
oboist
obolus
obrist
obschon
obsiegen
obskur
obsolet
obst
obus
obwohl
ochs
ocker
odeon
oder
odyssee
oeldorf
oertel
oeuvre
ofen
offen
offert
office
offizier
offline
oftmals
ogtum
oheim
ohmsch
ohne
ohnmacht
ohrring
ohrwurm
okay
oker
okkult
oktave
oktett
oktober
okzident
oldie
oldtimer
oliv
olymp
omega
omen
omnibus
onkel
online
opal
open
oper
opfer
opiat
opium
opponent
opportun
optik
optimal
optimist
optimum
option
optisch
opulent
opulenz
opus
orakel
oral
orange
oranier
orbit
orchidee
orden
order
ordnen
ordner
ordnung
ordre
organ
orgasmus
orgel
orgie
orient
orion
orkan
orlean
orten
orthodox
ortsamt
ortsbild
ortschef
ortsende
ortsnah
ortsname
ortsrand
ortsrat
ortswehr
ortung
osloer
osmane
ossi
ostbahn
ostblock
osten
osterei
ostern
ostertag
ostfront
osthafen
ostkreuz
ostland
ostler
ostliga
ostrand
ostseite
ostteil
ostufer
ostwand
ostwind
ostzone
otter
outback
outdoor
outen
outfit
outing
outlaw
outlet
outlook
output
outside
oval
ovation
overall
ovum
oxid
ozean
ozon
paar
pace
pacht
pack
paddel
paddler
padre
paella
paffen
page
pagode
pain
pair
paket
pakt
palais
palas
palaver
palazzo
palette
pali
pallas
palme
pampa
pamphlet
panda
panel
panik
panisch
panne
panorama
pantani
panter
panzer
papa
paper
papi
pappe
pappnase
paprika
papst
papua
papyrus
parabel
parade
paradies
paradox
paragraf
paranoia
parasit
parat
pardon
paria
pariert
pariser
park
parodie
parole
paroli
part
pascal
pascha
pass
pasta
paste
pastor
patch
pate
pathos
patient
patin
patriot
patron
patsche
patt
patzen
patzer
pauke
pause
pavian
pavillon
pazifist
peak
peanuts
pech
pedal
pegasus
pegel
peilen
pein
pekinger
pelikan
pelle
peloton
pelz
penalty
pence
pendant
pendel
pendler
penibel
penis
pennen
penner
pension
pensum
pentagon
peppen
peppig
peptid
perfekt
perfid
pergola
periode
peripher
perl
perplex
perret
perron
perser
perseus
person
peruaner
pervers
pesen
peseta
peso
pest
petit
petter
petto
petze
pfad
pfaffe
pfahl
pfand
pfanne
pfarre
pfau
pfeffer
pfeife
pfeil
pfennig
pferd
pfiff
pfirsich
pflanze
pflaster
pflaume
pflege
pflicht
pflock
pflug
pforte
pfosten
pfote
pfui
pfund
pfusch
phaeton
phalanx
phantom
pharao
phase
phenol
phobie
phon
phosphor
phrase
physik
physis
pianist
piano
piazza
pichler
pick
piece
piep
pier
pieta
pigment
pikant
pike
pikiert
pikkolo
pilar
pilger
pilgrim
pille
pilot
pils
pilz
pingelig
pinguin
pinie
pink
pinnwand
pinsel
pint
pionier
pipa
pipe
piranha
pirat
pirsch
pissoir
piste
pistol
piston
pitbull
pitcher
pixel
pizza
placebo
plafond
plage
plagge
plagiat
plakat
plakette
plan
plappern
plasma
plastik
platane
plateau
platin
platt
platz
plaudern
plausch
playboy
player
playoff
plazet
pleite
plenum
plinius
plot
plump
plunder
plural
plus
pneu
pochen
pocke
podest
podium
poem
poesie
poet
pogrom
point
poitiers
pokal
poker
polar
polder
pole
police
polier
polin
polio
politik
politur
polizei
polka
pollack
pollen
poller
polnisch
polo
polster
poltern
polyfon
polygon
polymer
polynom
polyp
pomadig
pommer
pommes
pomp
pontifex
pontius
ponton
pony
pool
popband
popcorn
pope
popmusik
poppen
popper
poppig
popsong
popstar
pore
porno
port
posaune
posche
pose
posieren
posiert
position
positiv
posse
post
potent
potenz
pott
power
pracht
prager
prahlen
praktik
praline
prall
prangen
pranger
pranke
prasseln
praxis
prediger
predigt
preien
preis
prellen
prellung
prelude
premier
premium
presse
pressure
presto
preview
priel
priester
prim
print
prinz
prior
prise
prisma
pritsche
privat
privileg
prix
proband
probat
probe
problem
produkt
profan
profi
profund
projekt
prolet
proll
prolog
promi
promoten
prompt
proper
prophet
proporz
propst
prosa
prosit
prost
protein
protest
prothese
proton
prototyp
protz
proviant
provider
provinz
prozent
prozess
prunk
prusten
psalm
psyche
psychose
publik
puck
pudding
pudel
puder
puff
pulk
pulle
pulli
pulp
puls
pult
pulver
puma
pummelig
pumpe
pumpgun
pumps
pumpwerk
punch
punk
punsch
pupille
puppe
purist
purpur
purzeln
puschen
push
puste
pute
putsch
putte
putz
puzzle
pyjama
pylon
pyramide
python
quader
quadrat
quai
quaken
qual
quantum
quark
quart
quarz
quasi
quatsch
quattro
quechua
queen
quell
quengeln
quer
quick
quieken
quinta
quinte
quirlig
quitte
quittung
quiz
quorum
quote
quotient
rabat
rabauke
rabbi
rabe
rabiat
rache
rack
raclette
radar
radau
radball
rade
radfeld
radial
radikal
radio
radius
radl
radon
radprofi
radstadt
radstand
radtour
radweg
raffen
rafter
rafting
rage
ragtime
rahm
rahn
raid
raison
rake
rally
rambo
rammen
rammler
rampe
ramsch
ranch
rand
ranft
rang
rank
ranzen
ranzig
rapid
rapp
raps
rapunzel
rasant
rasanz
rasch
rasen
raser
rasiert
rasse
rassig
rassist
rast
rate
ratgeber
rathaus
rating
ratio
ratlos
ratsam
ratschen
ratsherr
ratte
ratz
raub
rauch
raue
rauf
raum
raunen
raunzen
raupe
raus
raute
rave
rayon
razzia
reader
reaktion
reaktiv
reaktor
real
rebberg
rebe
rebhuhn
reblaus
rebound
rebsorte
rechen
rechnen
rechner
recht
reck
recyceln
rede
redlich
redner
redselig
reduit
reede
reell
referat
referee
referent
referenz
reflex
reform
refrain
refugium
regal
regatta
rege
reggae
regie
regime
region
register
regler
reglos
regnen
regress
regular
regung
reha
rehbein
rehbock
rehkitz
rehling
rehwild
reibe
reibung
reich
reif
reigen
reih
reim
rein
reis
reiten
reiter
reiz
rekeln
reklame
rekord
rekrut
rektor
rekurs
relais
relation
relativ
relaxen
release
relevanz
relief
religion
relikt
reling
remake
remis
remixen
rempeln
rendite
renitent
rennbahn
rennen
renner
rennrad
renntag
renommee
rentabel
rente
rentier
rentner
replik
report
reprint
reprise
repro
reptil
republik
requiem
requisit
resch
research
reservat
reserve
resident
residenz
resolut
resort
respekt
response
ressort
rest
retorte
retour
retro
retten
retter
rettich
rettung
return
reue
reuig
reunion
reuten
revanche
revers
revier
review
revision
revisor
revival
revolte
revue
rezent
rezept
rezessiv
rheinaue
rheingau
rheintal
rhema
rhetorik
rheuma
rhizom
rhodos
rhythmus
richten
richter
richtig
riechen
riecher
ried
riege
riemen
riese
riesig
riesling
riff
rigid
rigoros
rikscha
rille
rind
ring
rinne
rinnsal
rippe
rise
risiko
riskant
riskiert
risotto
riss
rist
ritt
ritual
rituell
ritus
ritz
rivale
rivalin
river
robbe
robe
robinie
robodoc
roboter
robotik
robust
rochade
rochen
rock
rodel
roden
rodeo
rodler
rodung
roentgen
roggen
rogner
rohbau
rohheit
rohkost
rohling
rohr
rohstoff
rokoko
rollator
rollbahn
rolle
rollfeld
rolli
rollo
roman
rome
rondell
rondo
rosa
rose
rosig
rosine
rosmarin
ross
rost
rotarier
rotary
rotation
rotbuch
rotieren
rotkohl
rotlicht
rotor
rotstift
rotte
rotton
rotunde
rotwein
rotwild
rotz
rouen
rouge
roulade
roulett
route
routine
rowdy
royal
ruander
rubel
rubin
rubrik
ruch
ruck
rudel
ruder
rufen
rufer
rufmord
rufname
rugby
ruhe
ruhig
ruhm
ruhrpott
ruin
rumba
rummel
rumoren
rumpel
rumpf
rund
rune
runge
runs
runter
runzeln
rupfen
rupie
ruppig
rural
rusch
russe
russia
russin
russland
rute
rutsch
rutte
saal
saat
saba
sabbat
sabotage
saboteur
sachbuch
sache
sachlage
sachlich
sachse
sacht
sachwert
sack
sadismus
sadist
safari
safe
safran
saft
saga
sage
sahne
saison
saite
sake
sakko
sakral
sakrileg
salami
salat
salbe
saldo
saline
salm
salon
saloon
salopp
salsa
salto
salut
salve
salz
samba
same
sammeln
sammler
sammlung
sampeln
sample
samstag
samt
samurai
sanctus
sand
sanft
sang
saniert
sanktion
sansibar
sanskrit
santa
saphir
sardine
sarg
sari
sasse
satan
satin
satire
satt
saturn
satz
sauber
saudi
sauen
sauer
saufen
saugen
saum
sauna
saurier
saus
savanne
saxofon
scala
scannen
scanner
scene
schabe
schach
schade
schaf
schah
schakal
schal
scham
schande
schank
schanze
schar
schattig
schatz
schau
scheck
scheel
scheibe
scheich
scheide
schein
scheit
schelle
schelm
schelte
schema
schemel
schen
schepp
scherbe
schere
scherge
scherhag
scherz
scheu
schicht
schick
schieben
schief
schiene
schier
schiff
schiit
schild
schilf
schimmel
schimpf
schindel
schinden
schinken
schippe
schiri
schirm
schisma
schlaf
schlag
schlamm
schlank
schlapp
schlau
schlecht
schleck
schleier
schleife
schleim
schlemm
schleppe
schleuse
schlicht
schlick
schliere
schliff
schlimm
schlinge
schlips
schlitz
schloss
schlot
schlucht
schluck
schlumpf
schlund
schlupf
schluss
schmach
schmal
schmatz
schmaus
schmelz
schmerz
schmiede
schmiere
schmoren
schmuck
schmutz
schnack
schnalle
schnaps
schnatz
schnee
schneid
schneien
schnell
schnitt
schnulze
schnur
schober
schock
schoko
schola
scholle
schon
schopf
schote
schott
schragen
schramme
schrank
schranz
schreck
schrei
schrift
schrill
schrimp
schritt
schroff
schrot
schub
schufa
schuft
schuh
schulart
schulbau
schuld
schule
schulhof
schultyp
schund
schupp
schur
schuss
schutt
schutz
schwabe
schwach
schwaden
schwalbe
schwall
schwamm
schwan
schwarm
schwarz
schwatz
schwebe
schwede
schwefel
schweif
schwein
schwenk
schwer
schwitze
schwul
schwund
schwung
schwupp
schwur
score
scout
screen
script
scrollen
seal
sechs
sechzig
section
sediment
seeadler
seebad
seeburg
seefahrt
seegang
seehafen
seehund
seekarte
seekatz
seele
seelig
seemacht
seemann
seemeile
seenland
seenot
seerose
seeufer
seevogel
seewald
seeweg
seewolf
segel
segen
segler
segment
segnen
segnung
sehen
seher
sehhilfe
sehkraft
sehne
sehnlich
sehr
sehtest
seicht
seide
seidig
seiend
seife
seigneur
seil
sein
seit
sejm
sekret
sekt
sekunde
selber
selbig
selbst
selen
selig
selten
seltsam
semantik
semester
seminar
semmel
senat
send
senf
sengen
senil
senior
senke
senkung
senn
sense
sensitiv
sensor
sentenz
separat
sept
sequenz
serail
serbe
serbin
serbisch
serenade
sergeant
serie
serum
server
service
servus
sesam
sessel
sesshaft
session
setting
setzen
setzer
setzling
setzung
seuche
seufzen
seufzer
sexismus
sexshop
sextett
sexual
sexuell
sexy
shaker
shampoo
shanty
sharen
sharing
sheriff
sherpa
sherry
shirt
shit
shop
shorts
shorty
show
shuttle
sich
sicken
sickern
sieb
siech
siedeln
sieden
siedler
siedlung
sieg
sierra
siesta
siezen
sigel
sigma
signal
signet
signor
signum
sikh
silbe
silbrig
silikon
silo
sima
simmer
simpel
simplex
sims
singen
single
singsang
sinken
sinkflug
sinn
sinologe
sintflut
sinto
sinus
sioux
sippe
sirene
sirius
sirup
sitcom
site
sitte
sittich
sittlich
situativ
sitz
skala
skalpell
skandal
skat
skelett
skepsis
sketsch
skiflug
skiklub
skikurs
skilauf
skilift
skin
skiort
skipass
skipiste
skipper
skischuh
skisport
skistar
skitag
skitour
skizze
sklave
sklavin
skript
skrupel
skulptur
skurril
skye
skyline
skythe
slalom
slang
slawe
slawisch
slip
slogan
slot
slowake
slowakin
slowene
slum
smaragd
smart
smog
smoken
smoking
snack
snob
soap
sobald
soccer
society
socke
soda
sode
sodom
soeben
sofa
sofern
sofort
soft
sogar
sohle
sohn
sohr
soiree
soissons
soja
solang
solanum
solar
sold
sole
soli
soll
solo
solvent
soma
somit
sommer
sonar
sonate
sonde
sone
song
sonne
sonnig
sonntag
sonnyboy
sonor
sonst
sooft
sopran
sorbe
sorge
sorglos
sorgsam
sorte
sortiert
sosehr
soul
sound
source
soviel
sowas
soweit
sowenig
sowie
sowjet
sowohl
sozi
spagat
spagetti
spalier
spalt
spam
span
sparbuch
sparen
sparer
spargel
spark
sparplan
sparren
sparsam
sparte
sparziel
spaten
spatz
spaziert
specht
special
species
speck
speditiv
speech
speed
speer
speiche
speien
speis
spende
sperber
sperling
sperma
spermium
sperre
sperrig
sperrung
spesen
spezi
sphinx
spicken
spider
spiegel
spiel
spike
spin
spion
spirale
spirit
spital
spitz
spleen
split
spoiler
sponsern
sponsor
spontan
spor
spot
sprache
spray
sprecher
sprengel
sprengen
spreu
spring
sprint
sprit
spross
spruch
sprudel
sprung
spucke
spuk
spule
spur
sputen
sputnik
squash
staat
stab
stachel
stack
stadel
stadion
stadium
stadt
staffel
stag
stahl
stakkato
stall
stamm
stampfen
stand
stange
stanzen
stapel
stapfen
star
statik
station
statist
stativ
statt
statue
statur
status
statut
stau
steak
stechen
stecher
stecken
stecker
steg
stehen
steher
stehlen
steif
steig
steil
stein
steirer
stele
stelle
stellung
stelze
stemmen
stempel
stepp
sterben
stereo
steril
sterling
stern
steroid
stet
steuer
steurer
steward
stich
sticken
sticker
stickig
stieben
stieber
stiefel
stiege
stiel
stier
stift
stigma
stil
stimme
stimmig
stimmlos
stinken
stirn
stocher
stock
stoff
stoiker
stoisch
stola
stolle
stolpern
stolz
stop
storch
store
stork
story
stottern
stotz
strack
strafe
straff
straflos
straftat
strahl
stramm
strand
strang
straps
stratege
strauch
strebe
strebsam
strecke
streich
streife
streik
streit
streng
stress
streu
strich
strick
strike
strikt
string
strip
strittig
strobel
stroh
strolch
strom
strong
strophe
strotzen
strub
strudel
strumpf
strunk
struppig
struse
stubben
stube
stuck
student
studie
studio
studium
stufe
stuhl
stulle
stumm
stumpf
stunde
stundung
stunt
stupa
stupend
stupid
stur
stute
stutzen
stutzig
stylen
styling
subjekt
submarin
subtext
subtil
subtyp
subway
suche
suchhund
sucht
sudhaus
suff
sufi
suhlen
suite
suizid
sujet
sulfat
sultan
summa
summe
summiert
sumo
sumpf
sund
sunnit
supen
super
suppe
support
sure
surfen
surfer
surreal
surren
sushi
suspekt
swap
sweet
swimming
swing
switchen
symbol
symptom
synagoge
synapse
syndrom
synodal
synode
synonym
syntax
syrer
syrisch
system
szenario
szene
szenisch
tabak
tabelle
tableau
tablett
tabu
tacho
tadel
tafel
taff
taft
tagaus
tagebau
tagein
tagen
taggeld
tags
tagtraum
tagung
tagwerk
taifun
taiga
taille
take
takt
talar
talboden
talent
taler
taliban
talisman
talk
tallage
talmud
talsohle
tambour
tamil
tamtam
tand
tang
tank
tanne
tante
tanz
tapa
tape
tapfer
tappen
tappert
tapsig
tara
target
tarif
tarnen
tarnung
tarzan
tasche
task
tasse
tastatur
taste
tastsinn
tatar
tatkraft
tatmotiv
tatnacht
tatort
tatsache
tattag
tattoo
tatwaffe
tatze
taub
tauchen
taucher
tauen
tauer
taufe
taufpate
taugen
tauglich
taumel
taurus
tausch
tausend
taverne
taxe
taxi
taxler
taxon
team
technik
techno
teddy
teehaus
teekanne
teen
teer
teestube
tegel
teich
teig
teil
teint
tele
teller
tempel
templer
tempo
tempus
tendenz
tender
tendiert
tenn
tenor
tentakel
teppich
tequila
term
terra
terribel
terrier
terror
terz
tesla
tessiner
test
tetanus
tetra
teuer
teufe
teutone
texaner
text
theater
theatral
theiss
theke
thema
theorem
theorie
thermal
therme
thermik
these
thesis
thing
thon
thora
thriller
thron
thuner
thuram
thymian
tibeter
tick
tide
tiebreak
tief
tiepolo
tier
tifosi
tifoso
tiger
tilde
tilgen
tilgung
timbre
timen
timing
tingeln
tinktur
tinte
tion
tipi
tipp
tirade
tiroler
tisch
titan
titel
toast
tobak
tobel
toben
tochter
todernst
tofu
toilette
tokioter
tokkata
toleranz
toll
tomahawk
tomate
tombola
tomus
tonal
tonart
tonband
tonfall
tonfilm
tongrube
tonlage
tonlos
tonnage
tonne
tonspur
tool
topf
topklub
topleute
topmodel
topos
topp
topspin
topstar
topteam
topthema
torbogen
torecke
torero
torf
torhaus
torheit
torino
torkeln
torleute
torlinie
torlos
tormann
tornado
torpedo
torraub
torreich
torso
torszene
torte
tortur
torwand
torwart
tory
tosen
total
tote
totholz
toto
totsagen
touch
tour
tower
toxin
toxisch
trab
tracht
track
tradiert
trading
trafford
trafik
trafo
tragbar
trage
tragik
tragwerk
trailer
train
trakt
tram
tran
trapez
trapp
trasse
tratsch
traube
trauen
trauer
traufe
traum
traun
traurig
traut
trauung
treck
treff
treiben
treiber
treibgut
trekking
tremolo
trend
trennen
trennung
treppe
tresen
tresor
tretboot
treten
treter
treu
triade
triangel
trias
tribun
tribus
tribut
trichter
trick
trieb
triefen
trierer
triftig
trigger
trigon
trikot
triller
trimmen
trinken
trinker
trio
trip
trist
tritium
triton
tritt
triumph
trivial
trocken
trocknen
trockner
trog
troika
troll
trommel
trompete
tropen
tropf
tropisch
tropus
tross
trost
trott
trotz
trouble
trubel
truck
trudeln
trug
truhe
trumm
trumpf
trunk
trupp
trust
truthahn
trutzig
tsunami
tuareg
tuba
tube
tuch
tuckern
tuff
tugend
tulpe
tumb
tummeln
tumor
tumult
tundra
tunen
tuner
tunika
tuning
tunken
tunlich
tunnel
tunte
tupfen
tupfer
turban
turbine
turbo
turf
turiner
turkmene
turm
turn
turteln
tusch
tutor
tutti
tweed
twen
twist
twitter
tycoon
type
typhus
typisch
typograf
typus
tyrann
ufer
uhrmann
uhrturm
uhrwerk
uhrzeit
ukrainer
ukulele
ulan
ulken
ulkig
ulme
ulster
ultima
ultimo
ultra
umarmen
umarmt
umbau
umbiegen
umbruch
umbuchen
umdenken
umdeuten
umdrehen
umfaller
umfang
umfeld
umformen
umfrage
umgang
umgebaut
umgeben
umgebung
umgehen
umgehung
umgraben
umhang
umhauen
umher
umhin
umjubeln
umkehr
umkreis
umkurven
umladen
umlage
umland
umlauf
umlaut
umlegen
umrahmt
umranden
umriss
umrunden
umsatz
umschau
umsehen
umsicht
umso
umstand
umstieg
umsturz
umtausch
umtrieb
umtrunk
umweg
umwehen
umwelt
umzug
unart
unbeirrt
unbelebt
unbelegt
unbequem
unbewegt
unbilden
unbill
unblutig
uncool
underdog
undicht
undine
unding
uneben
unecht
uneinig
uneins
uneitel
unfair
unfall
unfein
unfrei
unfriede
unfug
ungar
ungeahnt
ungeduld
ungeist
ungelenk
ungemach
ungenau
ungerad
ungern
ungewiss
ungnade
ungunst
ungut
unheil
unhold
unicode
uniform
unikat
unikum
union
unisono
unit
univers
unke
unklar
unklug
unkraut
unlust
unmenge
unmensch
unmut
unnahbar
unrat
unrecht
unreif
unrein
unruh
unsanft
unsauber
unscharf
unschuld
unselig
unser
unsicher
unsinn
unsitte
unsrige
unstet
unsumme
untat
unten
unter
untiefe
untot
untreu
unwahr
unweit
unwesen
unwetter
unwille
unwillig
unwirsch
unwissen
unwohl
unwort
unzahl
unze
unzucht
update
upgrade
uralt
uran
urban
urbar
urbild
ureigen
urenkel
urform
urgieren
urheber
urig
urin
urknall
urkunde
urlaub
urne
urologe
urologie
uroma
ursache
ursprung
ursuline
urteil
urvater
urwahl
urwald
urzeit
usbeke
user
usus
utensil
utility
utopia
utopie
vage
vagina
vakant
vakanz
vakuum
valid
value
valuta
vamp
vandale
vanille
variabel
variable
variant
varianz
variiert
varus
vasall
vase
vater
vati
vegan
vehikel
veiel
vektor
velde
velo
velvet
vene
ventil
venus
veralten
veraltet
veranda
verarmen
verarmt
verb
verdankt
verdauen
verdeck
verderb
verdient
verdikt
verdruss
verdutzt
veredeln
verehren
verehrer
verehrt
verein
vereisen
vereist
verenden
verendet
verengen
verengt
vererbt
verewigt
verfall
verfehlt
verfemt
verfolgt
vergabe
vergehen
verhexen
verirren
verirrt
verjagen
verkannt
verkauf
verkehr
verklagt
verkohlt
verlag
verlass
verlaub
verlauf
verlebt
verlegt
verleih
verlesen
verliebt
verlies
verlobt
verlogen
verloren
verlosen
verlust
vermacht
vermehrt
vermerk
vermint
vermummt
verneint
vernetzt
vernunft
verpasst
verpatzt
verputz
verquer
verrat
verriss
verrucht
verruf
vers
vertagt
vertan
vertieft
vertonen
vertont
vertrag
vertrieb
vertun
verve
verwahrt
verwaist
verwandt
verwegen
verwehen
verwehrt
verweis
verwesen
verwest
verwirrt
verwoben
verzagen
verzagt
verzehr
verzicht
verziert
verzinst
verzogen
verzug
vespa
vesper
veste
vesuv
veteran
veto
vettel
vetter
viadukt
vibrato
vickers
video
viech
vieh
viel
vier
vignette
vikar
villa
vinothek
vinyl
violett
violine
viper
viral
virologe
virtuos
virulent
virus
visconte
visier
vision
visite
vista
visuell
visum
vita
vitrine
vivace
vize
vlies
voce
vogel
vogesen
vogt
vogue
vokabel
vokal
voliere
volk
voll
volt
volum
vorab
voralpen
voran
voraus
vorband
vorbau
vorbei
vorbeter
vorbild
vorbote
vorburg
vordach
vordem
vordruck
voreilig
vorerst
vorfahr
vorfall
vorfeld
vorgabe
vorgang
vorgeben
vorgehen
vorhaben
vorhalt
vorhand
vorhang
vorher
vorhin
vorhof
vorhut
vorig
vorjahr
vorladen
vorlage
vorland
vorlauf
vorlaut
vorleben
vorleser
vorlieb
vorm
vorn
vorort
vorplatz
vorrang
vorrat
vorraum
vorrede
vors
vortag
vorteil
vortrag
vortrieb
vortritt
vorwagen
vorwahl
vorwand
vorweg
vorwerk
vorwort
vorwurf
vorzeit
vorzug
votant
votiert
votum
voyeur
vulgo
vulkan
waage
wabe
wach
wackelig
wackeln
wacker
wacklig
wade
wadi
wafer
waffe
wagemut
wagen
waggon
wagnis
wagrain
wagram
wahl
wahn
wahr
waise
wake
wald
walfang
waliser
walke
walking
walkman
wallach
wallen
waller
wallone
wallung
walmdach
walnuss
walten
walz
wams
wand
wange
wank
wann
wanze
wappen
wappnen
ware
warlord
warm
warnen
warner
warnung
warp
wart
warum
warze
waschen
wasser
waten
watt
webb
webcam
weben
weber
weblink
weblog
webseite
website
wechsel
weck
wedeln
weder
weekend
wegebau
wegen
wegerle
wegern
wegfall
weggang
weggeben
weggehen
wegkreuz
weglegen
wegrand
wegzug
wehe
wehmut
wehr
wehtun
weib
weich
weide
weidmann
weigern
weihe
weil
wein
weise
weisheit
weisung
weit
weizen
welfe
welk
welle
wellig
wellness
welpe
wels
welt
wende
wendig
wendisch
wendung
wenig
wenn
werbegag
werben
werber
werbung
werden
werfen
werfer
werft
werk
wert
werwolf
wesen
weshalb
wespe
wessi
west
wett
wetzen
whig
whiskey
whisky
wicher
wichser
wicht
wicke
widder
wider
widmen
widmung
widrig
wieder
wiege
wiehern
wiener
wiese
wiesheu
wiesn
wieso
wieviel
wieweit
wiewohl
wiking
wild
wilken
wille
willig
wimmeln
wimmern
wimpel
wimper
wind
wingert
wink
winseln
winter
winzer
winzig
winzling
wipfel
wippe
wirbel
wirken
wirklich
wirksam
wirkung
wirr
wirt
wisch
wisent
wismut
wispern
wissen
wisser
wittern
witwe
witz
woanders
wobei
woche
wodka
wodurch
woge
woher
wohin
wohl
wohnbau
wohnen
wohnform
wohngeld
wohnhaft
wohnheim
wohnlage
wohnlich
wohnort
wohnraum
wohnung
wohnwert
wohnzone
wolf
wolke
wolkig
wolle
wollig
wollust
womit
wonach
wonne
woran
worauf
woraus
worin
workshop
wormser
wort
worum
wotan
wovon
wovor
wozu
wrack
wucher
wuchs
wucht
wummern
wund
wunsch
wupper
wurf
wurm
wurscht
wurst
wurz
wuselig
wuseln
wust
wyss
xenon
xylofon
yakin
yankee
yard
yeti
yoga
yogi
ypsilon
yucca
yuppie
zach
zack
zaghaft
zahl
zahm
zahn
zairisch
zander
zange
zank
zapf
zappeln
zappen
zarin
zart
zauber
zauderer
zaudern
zaum
zaun
zebra
zeche
zechner
zecke
zeder
zehe
zehn
zehren
zeichen
zeigen
zeiger
zeihen
zeile
zeit
zelle
zelt
zement
zenit
zensor
zensur
zensus
zentner
zentral
zentrum
zeppelin
zepter
zerbe
zerfall
zerfetzt
zergehen
zerlegt
zerreden
zerren
zerrung
zeta
zetern
zettel
zeug
zicke
zickig
zickzack
ziege
ziehen
zieher
ziehsohn
ziehung
ziel
ziemen
ziemer
ziemlich
zier
ziffer
zigarre
zille
zimmer
zimt
zingler
zink
zinn
zins
zionist
zipfel
zirka
zirkel
zirkus
zirpen
zischen
zisterne
zitat
zither
zitieren
zitrone
zittern
zittrig
zivi
zloty
zobel
zocken
zocker
zofe
zoll
zombie
zone
zoologe
zoom
zopf
zorn
zottelig
zubau
zuber
zubrot
zucht
zucken
zucker
zuckung
zudem
zuerst
zufahrt
zufall
zuflucht
zufluss
zufolge
zufuhr
zugabe
zugang
zugeben
zugegen
zugehen
zugelost
zuger
zugesagt
zugetan
zugig
zugkraft
zugleich
zugluft
zugpaar
zugpferd
zugriff
zugucken
zugute
zugvogel
zugweg
zugzwang
zuhanden
zuhauf
zuhause
zukauf
zukehren
zukommen
zukunft
zulage
zulangen
zulauf
zulegen
zuleiten
zuletzt
zuliebe
zulosen
zulu
zumachen
zumal
zumauern
zumeist
zumessen
zumute
zumutung
zunahme
zunder
zuneigen
zunft
zunge
zunutze
zuordnen
zupacken
zuparken
zupfen
zurecht
zureden
zurollen
zuruf
zurzeit
zusage
zusatz
zusehen
zuseher
zusenden
zuspiel
zustand
zustrom
zustupf
zutage
zutat
zuteil
zutiefst
zutragen
zutritt
zutun
zuviel
zuvor
zuwachs
zuwege
zuweilen
zuweisen
zuwenden
zuwenig
zuwerfen
zuwider
zuzug
zwang
zwanzig
zwar
zweck
zwei
zwerg
zwickel
zwicken
zwicker
zwiebel
zwilling
zwingen
zwinger
zwingli
zwirn
zwist
zwitter
zwittrig
zyklisch
zyklon
zyklus
zylinder
zyniker
zynisch
zyprer
zypresse
zypriot
zyprisch
zyste
diceware-1.0.1/diceware/wordlists/wordlist_en_adjectives.txt 0000664 0000000 0000000 00000020644 14732404111 0024407 0 ustar 00root root 0000000 0000000 ominous
sturdy
angelic
frontal
legal
murky
rougher
formal
local
bold
grouchy
grazing
bumpy
wonky
boxed
factual
sunny
trim
selfish
humble
plastic
broke
shorter
rustic
brittle
narrow
astute
icky
sullen
bemused
creative
snowy
sane
sedate
deviant
icy
spoiled
blond
concave
cyan
lucky
lively
risky
wounded
greater
limber
social
glued
painful
warm
nutty
amused
carried
amateur
meager
working
faded
stark
reborn
darkened
entire
charred
speedy
clear
kinky
impish
ageless
prewar
correct
molten
admired
uneasy
higher
tragic
inane
magenta
urban
nearby
grouped
noisy
rural
fetid
waxed
dandy
cocky
aqua
dingy
unbent
lewd
quiet
mellow
unvalued
itchy
clunky
snug
opaque
bulky
smug
helpful
velvet
violet
valid
wobbly
dodgy
rare
cocoa
selfless
complex
simple
prim
blank
obsolete
surplus
funky
chubby
daring
spongy
tinted
prepaid
geeky
unsure
broken
wimpy
obscene
monthly
brown
erased
freaky
decent
rimless
cordless
tainted
huffy
yawning
toxic
puffy
inner
smart
lesser
mute
mighty
deluxe
thatch
frosty
vulgar
darkish
fun
annoying
swollen
loco
magic
generic
tan
trendy
blind
worried
stray
pungent
fluid
mixed
soviet
ruby
rabid
silky
regular
winter
ethnic
sour
sleepy
frail
dicey
heavy
rude
asleep
loony
singing
exterior
bendy
feeble
intact
robust
foamy
pale
crazed
sloping
soaked
next
thorny
voting
squeaky
pregame
dismal
teak
rumbling
furry
hazel
quaint
older
custard
golden
paltry
phony
smooth
trivial
happier
unboxed
chalky
learned
younger
calm
jagged
hateful
still
round
final
unhappy
jumbo
obedient
germy
mangy
pickled
untamed
puny
pink
mild
mini
able
related
auburn
giddy
tapered
flabby
cruel
awake
artsy
dull
virtual
dry
useless
winking
nerdy
drastic
dimpled
slick
purple
jolly
maple
humorous
swank
ready
level
shrill
amusing
grim
crabby
canned
anxious
refried
undying
revised
spicy
refined
aquatic
foggy
chosen
grey
bespoke
flavored
baggy
foul
shocked
unlucky
yapping
insecure
daft
sleazy
unused
short
your
snarky
tweed
rosy
brief
welcome
buffed
enamel
inept
abrupt
taboo
hungry
audible
bitter
untidy
stale
strong
moldy
brass
crisp
temp
acidic
top
old
limited
neon
cushy
angled
potent
rotten
snappy
floppy
good
fatal
darned
somber
stunned
unloved
vicious
endless
wavy
louder
musty
no
distant
savage
devout
feisty
rogue
uneven
excess
main
crimson
illicit
normal
faux
quick
trite
evil
guilty
kosher
beloved
wooden
indigo
gentle
raunchy
subtle
finer
stained
wanted
informal
cute
cedar
returned
square
shady
prissy
bronze
meaty
taller
vegan
flying
cloudy
vague
snazzy
twisty
primary
timid
liquid
left
nifty
red
alright
smoky
western
okay
fine
armored
rinsing
denim
glib
routine
silver
harsh
near
useful
preachy
tedious
arctic
bluish
primal
medical
sore
buff
patchy
chief
swell
adept
ideal
yummy
gutsy
key
mocha
harmful
loyal
oblong
dense
violent
great
lousy
emerald
large
magnum
dancing
chewy
ashamed
teal
secular
curly
fertile
furtive
some
ruined
spry
pliable
beige
bony
frantic
wary
bawdy
muscled
past
jumpy
legit
glossy
fishy
corny
small
crying
beefy
pompous
tough
other
proper
nimble
vital
foolish
dainty
rough
herbal
brainy
afraid
frilly
hectic
frigid
bogus
skilled
tasty
private
slobbery
plump
shaved
fatty
initial
zippy
oldest
bad
nasty
lame
careless
flaxen
moonlit
spare
candied
crafty
hollow
eager
pointy
caustic
wronged
dinky
manmade
niche
fair
varied
melting
blazing
crass
renewed
waxy
bald
obese
big
passive
slimy
iced
ultimate
hairy
dyed
elusive
sunken
emphatic
yeasty
overt
frugal
ditzy
remote
clumsy
diabetic
ladylike
swampy
aging
fur
lined
bossy
dorky
mobile
crushed
slate
immense
easiest
pointed
rented
psycho
minty
expert
new
maroon
elfish
zany
drafty
ceramic
felt
same
hideous
marine
elastic
oozy
novel
hasty
weary
stuffy
capable
inert
default
central
sweaty
sloped
smoked
creepy
vexed
bionic
regal
cranky
steep
open
floral
movable
varsity
docile
basic
coping
meek
loose
fried
plush
fuzzy
another
creaky
white
tubular
angular
edgy
visible
curvy
neutral
low
woozy
edible
dill
yucky
camo
hopeless
polite
smoggy
wacky
crude
imposing
west
shaky
rebel
soft
mythic
sheer
flat
aft
wriggly
citric
noble
crazy
blurry
insane
spooky
touchy
unique
bare
funny
sincere
eldest
unusual
granite
prime
sooty
engaged
awful
tangible
manual
weaker
lukewarm
junky
amber
gothic
light
steamy
scabby
unkind
empty
porous
subdued
frizzy
yellow
tall
foreign
anemic
lean
cuddly
wrong
upbeat
greedy
stout
dotted
alive
profound
frozen
lavish
wax
onyx
milky
veteran
thin
classic
gruesome
personal
taxable
lasting
random
valiant
pulpy
stiff
dirty
retired
secret
lacy
online
bloody
royal
wild
found
nervous
viable
dusty
peachy
sudsy
moody
askew
sad
little
kissable
convex
grubby
broad
employed
glass
muscular
avian
direct
goofy
absent
boiling
loving
gaudy
micro
muggy
happy
nearest
strange
growing
ashy
brisk
sporty
blunt
stoic
high
mundane
newborn
longer
needy
feral
plain
front
mature
lucid
washed
husky
eerie
unseen
weepy
strict
real
hyper
orange
raw
stormy
foxy
latex
dang
tired
fragile
tactful
active
squishy
wealthy
portly
magical
curved
fasting
worn
silent
wiry
replica
tame
backlit
fragrant
nice
adapted
wet
first
whole
unarmed
suitable
sober
green
oiled
benign
only
erratic
lonely
balsa
poor
damp
spiffy
groggy
losing
black
vast
rusted
leaky
blocky
futile
decaf
prompt
ironic
sulky
giant
folded
tender
mean
powered
tacky
single
hot
moist
lush
slim
ripe
messy
aloof
blotchy
shaggy
billowy
boring
demented
usual
bloated
cheap
medium
secure
subpar
holy
trusty
steel
gory
solid
starchy
worst
better
nosy
tepid
irate
wispy
bored
sharper
damn
epic
dreary
neat
dank
crooked
urgent
stupid
mousy
nude
filthy
usable
smutty
burly
kooky
tangled
rusty
illegal
lethal
optimal
sudden
marble
mint
padded
closed
onerous
lit
uneaten
bushy
bootleg
robotic
scary
petite
late
bent
kind
radiant
ivory
alpine
joyous
batty
copper
ample
armed
extra
wise
vintage
butch
sharp
tied
glum
sticky
free
pure
stinky
super
humid
dark
grimy
senior
sneaky
wide
detached
twitchy
brawny
his
hefty
tidy
ancient
thinner
badass
fancy
barbed
native
fresh
buggy
exposed
gummy
pudgy
chrome
deaf
busy
bamboo
amazing
dear
scenic
knit
fruity
young
demur
sugary
deep
fantasy
antique
brunette
vanilla
leather
undead
torn
extinct
vivid
serious
lost
amiable
sassy
poison
slushy
mossy
hardy
hard
favored
cheesy
bizarre
lead
sacred
married
custom
static
sensual
idle
pagan
bland
wrinkly
safest
odd
lustful
breezy
hybrid
natural
maimed
rocky
frosted
fond
salty
skinny
sage
blue
sizable
spiral
mammoth
crunchy
gifted
turbo
female
live
warming
dire
woody
massive
festive
lax
upright
tight
fat
sloppy
silly
shoddy
acrid
angry
gloomy
onshore
unfair
rapid
virgin
fluffy
frisky
eroded
best
warped
gold
steady
slow
swift
postwar
rich
brutal
feudal
whacky
partial
dreaded
common
any
elegant
isolated
thick
homeless
loud
playful
bright
disco
far
jubilant
woven
dizzy
joyful
stuck
weak
fake
dumb
costly
verdant
soapy
content
unjust
healthy
agile
superb
elated
catchy
proud
dreamy
hunky
mega
chunky
undated
rotund
rad
drippy
satin
exotic
drab
surly
slinky
whiny
early
fleshy
curled
marbled
mashed
deadly
brave
botched
pastel
rubber
naked
ebony
frayed
general
dental
groovy
dazzling
devious
elite
junior
last
tangy
huge
chic
bonus
eastern
upscale
shiny
gross
jaded
perky
average
lumpy
used
skiing
warmer
nuclear
upset
ex
awkward
kinder
watery
utopian
hissy
ornate
greasy
long
baroque
worthy
bovine
weird
chaotic
lazy
covert
bottom
modest
obvious
nomadic
public
patient
handy
posh
antsy
crucial
popular
current
creamy
caring
similar
sleek
saggy
extreme
vain
weedy
fizzy
mad
tense
comfy
uptight
vile
macho
glowing
lurid
durable
cozy
fabric
fit
male
plaid
boxy
finicky
fast
stern
napping
glad
fickle
dynamic
perfect
burnt
cool
windy
tardy
thrifty
defiant
crispy
bouncy
juicy
saffron
just
wool
crummy
her
oaky
soggy
naughty
flirty
tiny
supreme
tested
azure
soupy
coarse
wicked
thirsty
tart
tapping
modern
leafy
stony
singed
minor
painted
logical
former
deeper
sterile
tin
pleasant
firm
kindly
coveted
eternal
pushy
runny
austere
stocky
rigid
flashy
tricky
upstate
scruffy
testy
absurd
cold
lilac
pebbly
oval
creased
clever
viral
hidden
modular
sultry
mushy
recent
dried
chaste
bubbly
earthy
jealous
shabby
copied
iffy
official
core
alert
crusty
shy
jovial
safe
shifty
dusky
roomy
petty
grumpy
educated
sandy
numb
vibrant
armless
retro
starlit
sly
wood
aged
enraged
flawed
indoor
fixed
metal
fussy
muddy
witty
gray
bleak
honest
grand
full
my
jelly
shallow
simpler
cosmic
scarlet
musky
donated
heroic
naive
salted
painless
trained
inky
zesty
scarce
boiled
rookie
scented
measly
quirky
exempt
sweet
pesky
spotty
easy
sublime
elderly
faster
clean
daily
wired
bouncing
organic
gaunt
swanky
mouthy
tipsy
candid
scared
homely
arcane
weekly
rowdy
impure
stable
vapid
buttery
oily
pretty
unsafe
gnarly
limp
more
diceware-1.0.1/diceware/wordlists/wordlist_en_eff.txt 0000664 0000000 0000000 00000324400 14732404111 0023023 0 ustar 00root root 0000000 0000000 11111 abacus
11112 abdomen
11113 abdominal
11114 abide
11115 abiding
11116 ability
11121 ablaze
11122 able
11123 abnormal
11124 abrasion
11125 abrasive
11126 abreast
11131 abridge
11132 abroad
11133 abruptly
11134 absence
11135 absentee
11136 absently
11141 absinthe
11142 absolute
11143 absolve
11144 abstain
11145 abstract
11146 absurd
11151 accent
11152 acclaim
11153 acclimate
11154 accompany
11155 account
11156 accuracy
11161 accurate
11162 accustom
11163 acetone
11164 achiness
11165 aching
11166 acid
11211 acorn
11212 acquaint
11213 acquire
11214 acre
11215 acrobat
11216 acronym
11221 acting
11222 action
11223 activate
11224 activator
11225 active
11226 activism
11231 activist
11232 activity
11233 actress
11234 acts
11235 acutely
11236 acuteness
11241 aeration
11242 aerobics
11243 aerosol
11244 aerospace
11245 afar
11246 affair
11251 affected
11252 affecting
11253 affection
11254 affidavit
11255 affiliate
11256 affirm
11261 affix
11262 afflicted
11263 affluent
11264 afford
11265 affront
11266 aflame
11311 afloat
11312 aflutter
11313 afoot
11314 afraid
11315 afterglow
11316 afterlife
11321 aftermath
11322 aftermost
11323 afternoon
11324 aged
11325 ageless
11326 agency
11331 agenda
11332 agent
11333 aggregate
11334 aghast
11335 agile
11336 agility
11341 aging
11342 agnostic
11343 agonize
11344 agonizing
11345 agony
11346 agreeable
11351 agreeably
11352 agreed
11353 agreeing
11354 agreement
11355 aground
11356 ahead
11361 ahoy
11362 aide
11363 aids
11364 aim
11365 ajar
11366 alabaster
11411 alarm
11412 albatross
11413 album
11414 alfalfa
11415 algebra
11416 algorithm
11421 alias
11422 alibi
11423 alienable
11424 alienate
11425 aliens
11426 alike
11431 alive
11432 alkaline
11433 alkalize
11434 almanac
11435 almighty
11436 almost
11441 aloe
11442 aloft
11443 aloha
11444 alone
11445 alongside
11446 aloof
11451 alphabet
11452 alright
11453 although
11454 altitude
11455 alto
11456 aluminum
11461 alumni
11462 always
11463 amaretto
11464 amaze
11465 amazingly
11466 amber
11511 ambiance
11512 ambiguity
11513 ambiguous
11514 ambition
11515 ambitious
11516 ambulance
11521 ambush
11522 amendable
11523 amendment
11524 amends
11525 amenity
11526 amiable
11531 amicably
11532 amid
11533 amigo
11534 amino
11535 amiss
11536 ammonia
11541 ammonium
11542 amnesty
11543 amniotic
11544 among
11545 amount
11546 amperage
11551 ample
11552 amplifier
11553 amplify
11554 amply
11555 amuck
11556 amulet
11561 amusable
11562 amused
11563 amusement
11564 amuser
11565 amusing
11566 anaconda
11611 anaerobic
11612 anagram
11613 anatomist
11614 anatomy
11615 anchor
11616 anchovy
11621 ancient
11622 android
11623 anemia
11624 anemic
11625 aneurism
11626 anew
11631 angelfish
11632 angelic
11633 anger
11634 angled
11635 angler
11636 angles
11641 angling
11642 angrily
11643 angriness
11644 anguished
11645 angular
11646 animal
11651 animate
11652 animating
11653 animation
11654 animator
11655 anime
11656 animosity
11661 ankle
11662 annex
11663 annotate
11664 announcer
11665 annoying
11666 annually
12111 annuity
12112 anointer
12113 another
12114 answering
12115 antacid
12116 antarctic
12121 anteater
12122 antelope
12123 antennae
12124 anthem
12125 anthill
12126 anthology
12131 antibody
12132 antics
12133 antidote
12134 antihero
12135 antiquely
12136 antiques
12141 antiquity
12142 antirust
12143 antitoxic
12144 antitrust
12145 antiviral
12146 antivirus
12151 antler
12152 antonym
12153 antsy
12154 anvil
12155 anybody
12156 anyhow
12161 anymore
12162 anyone
12163 anyplace
12164 anything
12165 anytime
12166 anyway
12211 anywhere
12212 aorta
12213 apache
12214 apostle
12215 appealing
12216 appear
12221 appease
12222 appeasing
12223 appendage
12224 appendix
12225 appetite
12226 appetizer
12231 applaud
12232 applause
12233 apple
12234 appliance
12235 applicant
12236 applied
12241 apply
12242 appointee
12243 appraisal
12244 appraiser
12245 apprehend
12246 approach
12251 approval
12252 approve
12253 apricot
12254 april
12255 apron
12256 aptitude
12261 aptly
12262 aqua
12263 aqueduct
12264 arbitrary
12265 arbitrate
12266 ardently
12311 area
12312 arena
12313 arguable
12314 arguably
12315 argue
12316 arise
12321 armadillo
12322 armband
12323 armchair
12324 armed
12325 armful
12326 armhole
12331 arming
12332 armless
12333 armoire
12334 armored
12335 armory
12336 armrest
12341 army
12342 aroma
12343 arose
12344 around
12345 arousal
12346 arrange
12351 array
12352 arrest
12353 arrival
12354 arrive
12355 arrogance
12356 arrogant
12361 arson
12362 art
12363 ascend
12364 ascension
12365 ascent
12366 ascertain
12411 ashamed
12412 ashen
12413 ashes
12414 ashy
12415 aside
12416 askew
12421 asleep
12422 asparagus
12423 aspect
12424 aspirate
12425 aspire
12426 aspirin
12431 astonish
12432 astound
12433 astride
12434 astrology
12435 astronaut
12436 astronomy
12441 astute
12442 atlantic
12443 atlas
12444 atom
12445 atonable
12446 atop
12451 atrium
12452 atrocious
12453 atrophy
12454 attach
12455 attain
12456 attempt
12461 attendant
12462 attendee
12463 attention
12464 attentive
12465 attest
12466 attic
12511 attire
12512 attitude
12513 attractor
12514 attribute
12515 atypical
12516 auction
12521 audacious
12522 audacity
12523 audible
12524 audibly
12525 audience
12526 audio
12531 audition
12532 augmented
12533 august
12534 authentic
12535 author
12536 autism
12541 autistic
12542 autograph
12543 automaker
12544 automated
12545 automatic
12546 autopilot
12551 available
12552 avalanche
12553 avatar
12554 avenge
12555 avenging
12556 avenue
12561 average
12562 aversion
12563 avert
12564 aviation
12565 aviator
12566 avid
12611 avoid
12612 await
12613 awaken
12614 award
12615 aware
12616 awhile
12621 awkward
12622 awning
12623 awoke
12624 awry
12625 axis
12626 babble
12631 babbling
12632 babied
12633 baboon
12634 backache
12635 backboard
12636 backboned
12641 backdrop
12642 backed
12643 backer
12644 backfield
12645 backfire
12646 backhand
12651 backing
12652 backlands
12653 backlash
12654 backless
12655 backlight
12656 backlit
12661 backlog
12662 backpack
12663 backpedal
12664 backrest
12665 backroom
12666 backshift
13111 backside
13112 backslid
13113 backspace
13114 backspin
13115 backstab
13116 backstage
13121 backtalk
13122 backtrack
13123 backup
13124 backward
13125 backwash
13126 backwater
13131 backyard
13132 bacon
13133 bacteria
13134 bacterium
13135 badass
13136 badge
13141 badland
13142 badly
13143 badness
13144 baffle
13145 baffling
13146 bagel
13151 bagful
13152 baggage
13153 bagged
13154 baggie
13155 bagginess
13156 bagging
13161 baggy
13162 bagpipe
13163 baguette
13164 baked
13165 bakery
13166 bakeshop
13211 baking
13212 balance
13213 balancing
13214 balcony
13215 balmy
13216 balsamic
13221 bamboo
13222 banana
13223 banish
13224 banister
13225 banjo
13226 bankable
13231 bankbook
13232 banked
13233 banker
13234 banking
13235 banknote
13236 bankroll
13241 banner
13242 bannister
13243 banshee
13244 banter
13245 barbecue
13246 barbed
13251 barbell
13252 barber
13253 barcode
13254 barge
13255 bargraph
13256 barista
13261 baritone
13262 barley
13263 barmaid
13264 barman
13265 barn
13266 barometer
13311 barrack
13312 barracuda
13313 barrel
13314 barrette
13315 barricade
13316 barrier
13321 barstool
13322 bartender
13323 barterer
13324 bash
13325 basically
13326 basics
13331 basil
13332 basin
13333 basis
13334 basket
13335 batboy
13336 batch
13341 bath
13342 baton
13343 bats
13344 battalion
13345 battered
13346 battering
13351 battery
13352 batting
13353 battle
13354 bauble
13355 bazooka
13356 blabber
13361 bladder
13362 blade
13363 blah
13364 blame
13365 blaming
13366 blanching
13411 blandness
13412 blank
13413 blaspheme
13414 blasphemy
13415 blast
13416 blatancy
13421 blatantly
13422 blazer
13423 blazing
13424 bleach
13425 bleak
13426 bleep
13431 blemish
13432 blend
13433 bless
13434 blighted
13435 blimp
13436 bling
13441 blinked
13442 blinker
13443 blinking
13444 blinks
13445 blip
13446 blissful
13451 blitz
13452 blizzard
13453 bloated
13454 bloating
13455 blob
13456 blog
13461 bloomers
13462 blooming
13463 blooper
13464 blot
13465 blouse
13466 blubber
13511 bluff
13512 bluish
13513 blunderer
13514 blunt
13515 blurb
13516 blurred
13521 blurry
13522 blurt
13523 blush
13524 blustery
13525 boaster
13526 boastful
13531 boasting
13532 boat
13533 bobbed
13534 bobbing
13535 bobble
13536 bobcat
13541 bobsled
13542 bobtail
13543 bodacious
13544 body
13545 bogged
13546 boggle
13551 bogus
13552 boil
13553 bok
13554 bolster
13555 bolt
13556 bonanza
13561 bonded
13562 bonding
13563 bondless
13564 boned
13565 bonehead
13566 boneless
13611 bonelike
13612 boney
13613 bonfire
13614 bonnet
13615 bonsai
13616 bonus
13621 bony
13622 boogeyman
13623 boogieman
13624 book
13625 boondocks
13626 booted
13631 booth
13632 bootie
13633 booting
13634 bootlace
13635 bootleg
13636 boots
13641 boozy
13642 borax
13643 boring
13644 borough
13645 borrower
13646 borrowing
13651 boss
13652 botanical
13653 botanist
13654 botany
13655 botch
13656 both
13661 bottle
13662 bottling
13663 bottom
13664 bounce
13665 bouncing
13666 bouncy
14111 bounding
14112 boundless
14113 bountiful
14114 bovine
14115 boxcar
14116 boxer
14121 boxing
14122 boxlike
14123 boxy
14124 breach
14125 breath
14126 breeches
14131 breeching
14132 breeder
14133 breeding
14134 breeze
14135 breezy
14136 brethren
14141 brewery
14142 brewing
14143 briar
14144 bribe
14145 brick
14146 bride
14151 bridged
14152 brigade
14153 bright
14154 brilliant
14155 brim
14156 bring
14161 brink
14162 brisket
14163 briskly
14164 briskness
14165 bristle
14166 brittle
14211 broadband
14212 broadcast
14213 broaden
14214 broadly
14215 broadness
14216 broadside
14221 broadways
14222 broiler
14223 broiling
14224 broken
14225 broker
14226 bronchial
14231 bronco
14232 bronze
14233 bronzing
14234 brook
14235 broom
14236 brought
14241 browbeat
14242 brownnose
14243 browse
14244 browsing
14245 bruising
14246 brunch
14251 brunette
14252 brunt
14253 brush
14254 brussels
14255 brute
14256 brutishly
14261 bubble
14262 bubbling
14263 bubbly
14264 buccaneer
14265 bucked
14266 bucket
14311 buckle
14312 buckshot
14313 buckskin
14314 bucktooth
14315 buckwheat
14316 buddhism
14321 buddhist
14322 budding
14323 buddy
14324 budget
14325 buffalo
14326 buffed
14331 buffer
14332 buffing
14333 buffoon
14334 buggy
14335 bulb
14336 bulge
14341 bulginess
14342 bulgur
14343 bulk
14344 bulldog
14345 bulldozer
14346 bullfight
14351 bullfrog
14352 bullhorn
14353 bullion
14354 bullish
14355 bullpen
14356 bullring
14361 bullseye
14362 bullwhip
14363 bully
14364 bunch
14365 bundle
14366 bungee
14411 bunion
14412 bunkbed
14413 bunkhouse
14414 bunkmate
14415 bunny
14416 bunt
14421 busboy
14422 bush
14423 busily
14424 busload
14425 bust
14426 busybody
14431 buzz
14432 cabana
14433 cabbage
14434 cabbie
14435 cabdriver
14436 cable
14441 caboose
14442 cache
14443 cackle
14444 cacti
14445 cactus
14446 caddie
14451 caddy
14452 cadet
14453 cadillac
14454 cadmium
14455 cage
14456 cahoots
14461 cake
14462 calamari
14463 calamity
14464 calcium
14465 calculate
14466 calculus
14511 caliber
14512 calibrate
14513 calm
14514 caloric
14515 calorie
14516 calzone
14521 camcorder
14522 cameo
14523 camera
14524 camisole
14525 camper
14526 campfire
14531 camping
14532 campsite
14533 campus
14534 canal
14535 canary
14536 cancel
14541 candied
14542 candle
14543 candy
14544 cane
14545 canine
14546 canister
14551 cannabis
14552 canned
14553 canning
14554 cannon
14555 cannot
14556 canola
14561 canon
14562 canopener
14563 canopy
14564 canteen
14565 canyon
14566 capable
14611 capably
14612 capacity
14613 cape
14614 capillary
14615 capital
14616 capitol
14621 capped
14622 capricorn
14623 capsize
14624 capsule
14625 caption
14626 captivate
14631 captive
14632 captivity
14633 capture
14634 caramel
14635 carat
14636 caravan
14641 carbon
14642 cardboard
14643 carded
14644 cardiac
14645 cardigan
14646 cardinal
14651 cardstock
14652 carefully
14653 caregiver
14654 careless
14655 caress
14656 caretaker
14661 cargo
14662 caring
14663 carless
14664 carload
14665 carmaker
14666 carnage
15111 carnation
15112 carnival
15113 carnivore
15114 carol
15115 carpenter
15116 carpentry
15121 carpool
15122 carport
15123 carried
15124 carrot
15125 carrousel
15126 carry
15131 cartel
15132 cartload
15133 carton
15134 cartoon
15135 cartridge
15136 cartwheel
15141 carve
15142 carving
15143 carwash
15144 cascade
15145 case
15146 cash
15151 casing
15152 casino
15153 casket
15154 cassette
15155 casually
15156 casualty
15161 catacomb
15162 catalog
15163 catalyst
15164 catalyze
15165 catapult
15166 cataract
15211 catatonic
15212 catcall
15213 catchable
15214 catcher
15215 catching
15216 catchy
15221 caterer
15222 catering
15223 catfight
15224 catfish
15225 cathedral
15226 cathouse
15231 catlike
15232 catnap
15233 catnip
15234 catsup
15235 cattail
15236 cattishly
15241 cattle
15242 catty
15243 catwalk
15244 caucasian
15245 caucus
15246 causal
15251 causation
15252 cause
15253 causing
15254 cauterize
15255 caution
15256 cautious
15261 cavalier
15262 cavalry
15263 caviar
15264 cavity
15265 cedar
15266 celery
15311 celestial
15312 celibacy
15313 celibate
15314 celtic
15315 cement
15316 census
15321 ceramics
15322 ceremony
15323 certainly
15324 certainty
15325 certified
15326 certify
15331 cesarean
15332 cesspool
15333 chafe
15334 chaffing
15335 chain
15336 chair
15341 chalice
15342 challenge
15343 chamber
15344 chamomile
15345 champion
15346 chance
15351 change
15352 channel
15353 chant
15354 chaos
15355 chaperone
15356 chaplain
15361 chapped
15362 chaps
15363 chapter
15364 character
15365 charbroil
15366 charcoal
15411 charger
15412 charging
15413 chariot
15414 charity
15415 charm
15416 charred
15421 charter
15422 charting
15423 chase
15424 chasing
15425 chaste
15426 chastise
15431 chastity
15432 chatroom
15433 chatter
15434 chatting
15435 chatty
15436 cheating
15441 cheddar
15442 cheek
15443 cheer
15444 cheese
15445 cheesy
15446 chef
15451 chemicals
15452 chemist
15453 chemo
15454 cherisher
15455 cherub
15456 chess
15461 chest
15462 chevron
15463 chevy
15464 chewable
15465 chewer
15466 chewing
15511 chewy
15512 chief
15513 chihuahua
15514 childcare
15515 childhood
15516 childish
15521 childless
15522 childlike
15523 chili
15524 chill
15525 chimp
15526 chip
15531 chirping
15532 chirpy
15533 chitchat
15534 chivalry
15535 chive
15536 chloride
15541 chlorine
15542 choice
15543 chokehold
15544 choking
15545 chomp
15546 chooser
15551 choosing
15552 choosy
15553 chop
15554 chosen
15555 chowder
15556 chowtime
15561 chrome
15562 chubby
15563 chuck
15564 chug
15565 chummy
15566 chump
15611 chunk
15612 churn
15613 chute
15614 cider
15615 cilantro
15616 cinch
15621 cinema
15622 cinnamon
15623 circle
15624 circling
15625 circular
15626 circulate
15631 circus
15632 citable
15633 citadel
15634 citation
15635 citizen
15636 citric
15641 citrus
15642 city
15643 civic
15644 civil
15645 clad
15646 claim
15651 clambake
15652 clammy
15653 clamor
15654 clamp
15655 clamshell
15656 clang
15661 clanking
15662 clapped
15663 clapper
15664 clapping
15665 clarify
15666 clarinet
16111 clarity
16112 clash
16113 clasp
16114 class
16115 clatter
16116 clause
16121 clavicle
16122 claw
16123 clay
16124 clean
16125 clear
16126 cleat
16131 cleaver
16132 cleft
16133 clench
16134 clergyman
16135 clerical
16136 clerk
16141 clever
16142 clicker
16143 client
16144 climate
16145 climatic
16146 cling
16151 clinic
16152 clinking
16153 clip
16154 clique
16155 cloak
16156 clobber
16161 clock
16162 clone
16163 cloning
16164 closable
16165 closure
16166 clothes
16211 clothing
16212 cloud
16213 clover
16214 clubbed
16215 clubbing
16216 clubhouse
16221 clump
16222 clumsily
16223 clumsy
16224 clunky
16225 clustered
16226 clutch
16231 clutter
16232 coach
16233 coagulant
16234 coastal
16235 coaster
16236 coasting
16241 coastland
16242 coastline
16243 coat
16244 coauthor
16245 cobalt
16246 cobbler
16251 cobweb
16252 cocoa
16253 coconut
16254 cod
16255 coeditor
16256 coerce
16261 coexist
16262 coffee
16263 cofounder
16264 cognition
16265 cognitive
16266 cogwheel
16311 coherence
16312 coherent
16313 cohesive
16314 coil
16315 coke
16316 cola
16321 cold
16322 coleslaw
16323 coliseum
16324 collage
16325 collapse
16326 collar
16331 collected
16332 collector
16333 collide
16334 collie
16335 collision
16336 colonial
16341 colonist
16342 colonize
16343 colony
16344 colossal
16345 colt
16346 coma
16351 come
16352 comfort
16353 comfy
16354 comic
16355 coming
16356 comma
16361 commence
16362 commend
16363 comment
16364 commerce
16365 commode
16366 commodity
16411 commodore
16412 common
16413 commotion
16414 commute
16415 commuting
16416 compacted
16421 compacter
16422 compactly
16423 compactor
16424 companion
16425 company
16426 compare
16431 compel
16432 compile
16433 comply
16434 component
16435 composed
16436 composer
16441 composite
16442 compost
16443 composure
16444 compound
16445 compress
16446 comprised
16451 computer
16452 computing
16453 comrade
16454 concave
16455 conceal
16456 conceded
16461 concept
16462 concerned
16463 concert
16464 conch
16465 concierge
16466 concise
16511 conclude
16512 concrete
16513 concur
16514 condense
16515 condiment
16516 condition
16521 condone
16522 conducive
16523 conductor
16524 conduit
16525 cone
16526 confess
16531 confetti
16532 confidant
16533 confident
16534 confider
16535 confiding
16536 configure
16541 confined
16542 confining
16543 confirm
16544 conflict
16545 conform
16546 confound
16551 confront
16552 confused
16553 confusing
16554 confusion
16555 congenial
16556 congested
16561 congrats
16562 congress
16563 conical
16564 conjoined
16565 conjure
16566 conjuror
16611 connected
16612 connector
16613 consensus
16614 consent
16615 console
16616 consoling
16621 consonant
16622 constable
16623 constant
16624 constrain
16625 constrict
16626 construct
16631 consult
16632 consumer
16633 consuming
16634 contact
16635 container
16636 contempt
16641 contend
16642 contented
16643 contently
16644 contents
16645 contest
16646 context
16651 contort
16652 contour
16653 contrite
16654 control
16655 contusion
16656 convene
16661 convent
16662 copartner
16663 cope
16664 copied
16665 copier
16666 copilot
21111 coping
21112 copious
21113 copper
21114 copy
21115 coral
21116 cork
21121 cornball
21122 cornbread
21123 corncob
21124 cornea
21125 corned
21126 corner
21131 cornfield
21132 cornflake
21133 cornhusk
21134 cornmeal
21135 cornstalk
21136 corny
21141 coronary
21142 coroner
21143 corporal
21144 corporate
21145 corral
21146 correct
21151 corridor
21152 corrode
21153 corroding
21154 corrosive
21155 corsage
21156 corset
21161 cortex
21162 cosigner
21163 cosmetics
21164 cosmic
21165 cosmos
21166 cosponsor
21211 cost
21212 cottage
21213 cotton
21214 couch
21215 cough
21216 could
21221 countable
21222 countdown
21223 counting
21224 countless
21225 country
21226 county
21231 courier
21232 covenant
21233 cover
21234 coveted
21235 coveting
21236 coyness
21241 cozily
21242 coziness
21243 cozy
21244 crabbing
21245 crabgrass
21246 crablike
21251 crabmeat
21252 cradle
21253 cradling
21254 crafter
21255 craftily
21256 craftsman
21261 craftwork
21262 crafty
21263 cramp
21264 cranberry
21265 crane
21266 cranial
21311 cranium
21312 crank
21313 crate
21314 crave
21315 craving
21316 crawfish
21321 crawlers
21322 crawling
21323 crayfish
21324 crayon
21325 crazed
21326 crazily
21331 craziness
21332 crazy
21333 creamed
21334 creamer
21335 creamlike
21336 crease
21341 creasing
21342 creatable
21343 create
21344 creation
21345 creative
21346 creature
21351 credible
21352 credibly
21353 credit
21354 creed
21355 creme
21356 creole
21361 crepe
21362 crept
21363 crescent
21364 crested
21365 cresting
21366 crestless
21411 crevice
21412 crewless
21413 crewman
21414 crewmate
21415 crib
21416 cricket
21421 cried
21422 crier
21423 crimp
21424 crimson
21425 cringe
21426 cringing
21431 crinkle
21432 crinkly
21433 crisped
21434 crisping
21435 crisply
21436 crispness
21441 crispy
21442 criteria
21443 critter
21444 croak
21445 crock
21446 crook
21451 croon
21452 crop
21453 cross
21454 crouch
21455 crouton
21456 crowbar
21461 crowd
21462 crown
21463 crucial
21464 crudely
21465 crudeness
21466 cruelly
21511 cruelness
21512 cruelty
21513 crumb
21514 crummiest
21515 crummy
21516 crumpet
21521 crumpled
21522 cruncher
21523 crunching
21524 crunchy
21525 crusader
21526 crushable
21531 crushed
21532 crusher
21533 crushing
21534 crust
21535 crux
21536 crying
21541 cryptic
21542 crystal
21543 cubbyhole
21544 cube
21545 cubical
21546 cubicle
21551 cucumber
21552 cuddle
21553 cuddly
21554 cufflink
21555 culinary
21556 culminate
21561 culpable
21562 culprit
21563 cultivate
21564 cultural
21565 culture
21566 cupbearer
21611 cupcake
21612 cupid
21613 cupped
21614 cupping
21615 curable
21616 curator
21621 curdle
21622 cure
21623 curfew
21624 curing
21625 curled
21626 curler
21631 curliness
21632 curling
21633 curly
21634 curry
21635 curse
21636 cursive
21641 cursor
21642 curtain
21643 curtly
21644 curtsy
21645 curvature
21646 curve
21651 curvy
21652 cushy
21653 cusp
21654 cussed
21655 custard
21656 custodian
21661 custody
21662 customary
21663 customer
21664 customize
21665 customs
21666 cut
22111 cycle
22112 cyclic
22113 cycling
22114 cyclist
22115 cylinder
22116 cymbal
22121 cytoplasm
22122 cytoplast
22123 dab
22124 dad
22125 daffodil
22126 dagger
22131 daily
22132 daintily
22133 dainty
22134 dairy
22135 daisy
22136 dallying
22141 dance
22142 dancing
22143 dandelion
22144 dander
22145 dandruff
22146 dandy
22151 danger
22152 dangle
22153 dangling
22154 daredevil
22155 dares
22156 daringly
22161 darkened
22162 darkening
22163 darkish
22164 darkness
22165 darkroom
22166 darling
22211 darn
22212 dart
22213 darwinism
22214 dash
22215 dastardly
22216 data
22221 datebook
22222 dating
22223 daughter
22224 daunting
22225 dawdler
22226 dawn
22231 daybed
22232 daybreak
22233 daycare
22234 daydream
22235 daylight
22236 daylong
22241 dayroom
22242 daytime
22243 dazzler
22244 dazzling
22245 deacon
22246 deafening
22251 deafness
22252 dealer
22253 dealing
22254 dealmaker
22255 dealt
22256 dean
22261 debatable
22262 debate
22263 debating
22264 debit
22265 debrief
22266 debtless
22311 debtor
22312 debug
22313 debunk
22314 decade
22315 decaf
22316 decal
22321 decathlon
22322 decay
22323 deceased
22324 deceit
22325 deceiver
22326 deceiving
22331 december
22332 decency
22333 decent
22334 deception
22335 deceptive
22336 decibel
22341 decidable
22342 decimal
22343 decimeter
22344 decipher
22345 deck
22346 declared
22351 decline
22352 decode
22353 decompose
22354 decorated
22355 decorator
22356 decoy
22361 decrease
22362 decree
22363 dedicate
22364 dedicator
22365 deduce
22366 deduct
22411 deed
22412 deem
22413 deepen
22414 deeply
22415 deepness
22416 deface
22421 defacing
22422 defame
22423 default
22424 defeat
22425 defection
22426 defective
22431 defendant
22432 defender
22433 defense
22434 defensive
22435 deferral
22436 deferred
22441 defiance
22442 defiant
22443 defile
22444 defiling
22445 define
22446 definite
22451 deflate
22452 deflation
22453 deflator
22454 deflected
22455 deflector
22456 defog
22461 deforest
22462 defraud
22463 defrost
22464 deftly
22465 defuse
22466 defy
22511 degraded
22512 degrading
22513 degrease
22514 degree
22515 dehydrate
22516 deity
22521 dejected
22522 delay
22523 delegate
22524 delegator
22525 delete
22526 deletion
22531 delicacy
22532 delicate
22533 delicious
22534 delighted
22535 delirious
22536 delirium
22541 deliverer
22542 delivery
22543 delouse
22544 delta
22545 deluge
22546 delusion
22551 deluxe
22552 demanding
22553 demeaning
22554 demeanor
22555 demise
22556 democracy
22561 democrat
22562 demote
22563 demotion
22564 demystify
22565 denatured
22566 deniable
22611 denial
22612 denim
22613 denote
22614 dense
22615 density
22616 dental
22621 dentist
22622 denture
22623 deny
22624 deodorant
22625 deodorize
22626 departed
22631 departure
22632 depict
22633 deplete
22634 depletion
22635 deplored
22636 deploy
22641 deport
22642 depose
22643 depraved
22644 depravity
22645 deprecate
22646 depress
22651 deprive
22652 depth
22653 deputize
22654 deputy
22655 derail
22656 deranged
22661 derby
22662 derived
22663 desecrate
22664 deserve
22665 deserving
22666 designate
23111 designed
23112 designer
23113 designing
23114 deskbound
23115 desktop
23116 deskwork
23121 desolate
23122 despair
23123 despise
23124 despite
23125 destiny
23126 destitute
23131 destruct
23132 detached
23133 detail
23134 detection
23135 detective
23136 detector
23141 detention
23142 detergent
23143 detest
23144 detonate
23145 detonator
23146 detoxify
23151 detract
23152 deuce
23153 devalue
23154 deviancy
23155 deviant
23156 deviate
23161 deviation
23162 deviator
23163 device
23164 devious
23165 devotedly
23166 devotee
23211 devotion
23212 devourer
23213 devouring
23214 devoutly
23215 dexterity
23216 dexterous
23221 diabetes
23222 diabetic
23223 diabolic
23224 diagnoses
23225 diagnosis
23226 diagram
23231 dial
23232 diameter
23233 diaper
23234 diaphragm
23235 diary
23236 dice
23241 dicing
23242 dictate
23243 dictation
23244 dictator
23245 difficult
23246 diffused
23251 diffuser
23252 diffusion
23253 diffusive
23254 dig
23255 dilation
23256 diligence
23261 diligent
23262 dill
23263 dilute
23264 dime
23265 diminish
23266 dimly
23311 dimmed
23312 dimmer
23313 dimness
23314 dimple
23315 diner
23316 dingbat
23321 dinghy
23322 dinginess
23323 dingo
23324 dingy
23325 dining
23326 dinner
23331 diocese
23332 dioxide
23333 diploma
23334 dipped
23335 dipper
23336 dipping
23341 directed
23342 direction
23343 directive
23344 directly
23345 directory
23346 direness
23351 dirtiness
23352 disabled
23353 disagree
23354 disallow
23355 disarm
23356 disarray
23361 disaster
23362 disband
23363 disbelief
23364 disburse
23365 discard
23366 discern
23411 discharge
23412 disclose
23413 discolor
23414 discount
23415 discourse
23416 discover
23421 discuss
23422 disdain
23423 disengage
23424 disfigure
23425 disgrace
23426 dish
23431 disinfect
23432 disjoin
23433 disk
23434 dislike
23435 disliking
23436 dislocate
23441 dislodge
23442 disloyal
23443 dismantle
23444 dismay
23445 dismiss
23446 dismount
23451 disobey
23452 disorder
23453 disown
23454 disparate
23455 disparity
23456 dispatch
23461 dispense
23462 dispersal
23463 dispersed
23464 disperser
23465 displace
23466 display
23511 displease
23512 disposal
23513 dispose
23514 disprove
23515 dispute
23516 disregard
23521 disrupt
23522 dissuade
23523 distance
23524 distant
23525 distaste
23526 distill
23531 distinct
23532 distort
23533 distract
23534 distress
23535 district
23536 distrust
23541 ditch
23542 ditto
23543 ditzy
23544 dividable
23545 divided
23546 dividend
23551 dividers
23552 dividing
23553 divinely
23554 diving
23555 divinity
23556 divisible
23561 divisibly
23562 division
23563 divisive
23564 divorcee
23565 dizziness
23566 dizzy
23611 doable
23612 docile
23613 dock
23614 doctrine
23615 document
23616 dodge
23621 dodgy
23622 doily
23623 doing
23624 dole
23625 dollar
23626 dollhouse
23631 dollop
23632 dolly
23633 dolphin
23634 domain
23635 domelike
23636 domestic
23641 dominion
23642 dominoes
23643 donated
23644 donation
23645 donator
23646 donor
23651 donut
23652 doodle
23653 doorbell
23654 doorframe
23655 doorknob
23656 doorman
23661 doormat
23662 doornail
23663 doorpost
23664 doorstep
23665 doorstop
23666 doorway
24111 doozy
24112 dork
24113 dormitory
24114 dorsal
24115 dosage
24116 dose
24121 dotted
24122 doubling
24123 douche
24124 dove
24125 down
24126 dowry
24131 doze
24132 drab
24133 dragging
24134 dragonfly
24135 dragonish
24136 dragster
24141 drainable
24142 drainage
24143 drained
24144 drainer
24145 drainpipe
24146 dramatic
24151 dramatize
24152 drank
24153 drapery
24154 drastic
24155 draw
24156 dreaded
24161 dreadful
24162 dreadlock
24163 dreamboat
24164 dreamily
24165 dreamland
24166 dreamless
24211 dreamlike
24212 dreamt
24213 dreamy
24214 drearily
24215 dreary
24216 drench
24221 dress
24222 drew
24223 dribble
24224 dried
24225 drier
24226 drift
24231 driller
24232 drilling
24233 drinkable
24234 drinking
24235 dripping
24236 drippy
24241 drivable
24242 driven
24243 driver
24244 driveway
24245 driving
24246 drizzle
24251 drizzly
24252 drone
24253 drool
24254 droop
24255 drop-down
24256 dropbox
24261 dropkick
24262 droplet
24263 dropout
24264 dropper
24265 drove
24266 drown
24311 drowsily
24312 drudge
24313 drum
24314 dry
24315 dubbed
24316 dubiously
24321 duchess
24322 duckbill
24323 ducking
24324 duckling
24325 ducktail
24326 ducky
24331 duct
24332 dude
24333 duffel
24334 dugout
24335 duh
24336 duke
24341 duller
24342 dullness
24343 duly
24344 dumping
24345 dumpling
24346 dumpster
24351 duo
24352 dupe
24353 duplex
24354 duplicate
24355 duplicity
24356 durable
24361 durably
24362 duration
24363 duress
24364 during
24365 dusk
24366 dust
24411 dutiful
24412 duty
24413 duvet
24414 dwarf
24415 dweeb
24416 dwelled
24421 dweller
24422 dwelling
24423 dwindle
24424 dwindling
24425 dynamic
24426 dynamite
24431 dynasty
24432 dyslexia
24433 dyslexic
24434 each
24435 eagle
24436 earache
24441 eardrum
24442 earflap
24443 earful
24444 earlobe
24445 early
24446 earmark
24451 earmuff
24452 earphone
24453 earpiece
24454 earplugs
24455 earring
24456 earshot
24461 earthen
24462 earthlike
24463 earthling
24464 earthly
24465 earthworm
24466 earthy
24511 earwig
24512 easeful
24513 easel
24514 easiest
24515 easily
24516 easiness
24521 easing
24522 eastbound
24523 eastcoast
24524 easter
24525 eastward
24526 eatable
24531 eaten
24532 eatery
24533 eating
24534 eats
24535 ebay
24536 ebony
24541 ebook
24542 ecard
24543 eccentric
24544 echo
24545 eclair
24546 eclipse
24551 ecologist
24552 ecology
24553 economic
24554 economist
24555 economy
24556 ecosphere
24561 ecosystem
24562 edge
24563 edginess
24564 edging
24565 edgy
24566 edition
24611 editor
24612 educated
24613 education
24614 educator
24615 eel
24616 effective
24621 effects
24622 efficient
24623 effort
24624 eggbeater
24625 egging
24626 eggnog
24631 eggplant
24632 eggshell
24633 egomaniac
24634 egotism
24635 egotistic
24636 either
24641 eject
24642 elaborate
24643 elastic
24644 elated
24645 elbow
24646 eldercare
24651 elderly
24652 eldest
24653 electable
24654 election
24655 elective
24656 elephant
24661 elevate
24662 elevating
24663 elevation
24664 elevator
24665 eleven
24666 elf
25111 eligible
25112 eligibly
25113 eliminate
25114 elite
25115 elitism
25116 elixir
25121 elk
25122 ellipse
25123 elliptic
25124 elm
25125 elongated
25126 elope
25131 eloquence
25132 eloquent
25133 elsewhere
25134 elude
25135 elusive
25136 elves
25141 email
25142 embargo
25143 embark
25144 embassy
25145 embattled
25146 embellish
25151 ember
25152 embezzle
25153 emblaze
25154 emblem
25155 embody
25156 embolism
25161 emboss
25162 embroider
25163 emcee
25164 emerald
25165 emergency
25166 emission
25211 emit
25212 emote
25213 emoticon
25214 emotion
25215 empathic
25216 empathy
25221 emperor
25222 emphases
25223 emphasis
25224 emphasize
25225 emphatic
25226 empirical
25231 employed
25232 employee
25233 employer
25234 emporium
25235 empower
25236 emptier
25241 emptiness
25242 empty
25243 emu
25244 enable
25245 enactment
25246 enamel
25251 enchanted
25252 enchilada
25253 encircle
25254 enclose
25255 enclosure
25256 encode
25261 encore
25262 encounter
25263 encourage
25264 encroach
25265 encrust
25266 encrypt
25311 endanger
25312 endeared
25313 endearing
25314 ended
25315 ending
25316 endless
25321 endnote
25322 endocrine
25323 endorphin
25324 endorse
25325 endowment
25326 endpoint
25331 endurable
25332 endurance
25333 enduring
25334 energetic
25335 energize
25336 energy
25341 enforced
25342 enforcer
25343 engaged
25344 engaging
25345 engine
25346 engorge
25351 engraved
25352 engraver
25353 engraving
25354 engross
25355 engulf
25356 enhance
25361 enigmatic
25362 enjoyable
25363 enjoyably
25364 enjoyer
25365 enjoying
25366 enjoyment
25411 enlarged
25412 enlarging
25413 enlighten
25414 enlisted
25415 enquirer
25416 enrage
25421 enrich
25422 enroll
25423 enslave
25424 ensnare
25425 ensure
25426 entail
25431 entangled
25432 entering
25433 entertain
25434 enticing
25435 entire
25436 entitle
25441 entity
25442 entomb
25443 entourage
25444 entrap
25445 entree
25446 entrench
25451 entrust
25452 entryway
25453 entwine
25454 enunciate
25455 envelope
25456 enviable
25461 enviably
25462 envious
25463 envision
25464 envoy
25465 envy
25466 enzyme
25511 epic
25512 epidemic
25513 epidermal
25514 epidermis
25515 epidural
25516 epilepsy
25521 epileptic
25522 epilogue
25523 epiphany
25524 episode
25525 equal
25526 equate
25531 equation
25532 equator
25533 equinox
25534 equipment
25535 equity
25536 equivocal
25541 eradicate
25542 erasable
25543 erased
25544 eraser
25545 erasure
25546 ergonomic
25551 errand
25552 errant
25553 erratic
25554 error
25555 erupt
25556 escalate
25561 escalator
25562 escapable
25563 escapade
25564 escapist
25565 escargot
25566 eskimo
25611 esophagus
25612 espionage
25613 espresso
25614 esquire
25615 essay
25616 essence
25621 essential
25622 establish
25623 estate
25624 esteemed
25625 estimate
25626 estimator
25631 estranged
25632 estrogen
25633 etching
25634 eternal
25635 eternity
25636 ethanol
25641 ether
25642 ethically
25643 ethics
25644 euphemism
25645 evacuate
25646 evacuee
25651 evade
25652 evaluate
25653 evaluator
25654 evaporate
25655 evasion
25656 evasive
25661 even
25662 everglade
25663 evergreen
25664 everybody
25665 everyday
25666 everyone
26111 evict
26112 evidence
26113 evident
26114 evil
26115 evoke
26116 evolution
26121 evolve
26122 exact
26123 exalted
26124 example
26125 excavate
26126 excavator
26131 exceeding
26132 exception
26133 excess
26134 exchange
26135 excitable
26136 exciting
26141 exclaim
26142 exclude
26143 excluding
26144 exclusion
26145 exclusive
26146 excretion
26151 excretory
26152 excursion
26153 excusable
26154 excusably
26155 excuse
26156 exemplary
26161 exemplify
26162 exemption
26163 exerciser
26164 exert
26165 exes
26166 exfoliate
26211 exhale
26212 exhaust
26213 exhume
26214 exile
26215 existing
26216 exit
26221 exodus
26222 exonerate
26223 exorcism
26224 exorcist
26225 expand
26226 expanse
26231 expansion
26232 expansive
26233 expectant
26234 expedited
26235 expediter
26236 expel
26241 expend
26242 expenses
26243 expensive
26244 expert
26245 expire
26246 expiring
26251 explain
26252 expletive
26253 explicit
26254 explode
26255 exploit
26256 explore
26261 exploring
26262 exponent
26263 exporter
26264 exposable
26265 expose
26266 exposure
26311 express
26312 expulsion
26313 exquisite
26314 extended
26315 extending
26316 extent
26321 extenuate
26322 exterior
26323 external
26324 extinct
26325 extortion
26326 extradite
26331 extras
26332 extrovert
26333 extrude
26334 extruding
26335 exuberant
26336 fable
26341 fabric
26342 fabulous
26343 facebook
26344 facecloth
26345 facedown
26346 faceless
26351 facelift
26352 faceplate
26353 faceted
26354 facial
26355 facility
26356 facing
26361 facsimile
26362 faction
26363 factoid
26364 factor
26365 factsheet
26366 factual
26411 faculty
26412 fade
26413 fading
26414 failing
26415 falcon
26416 fall
26421 false
26422 falsify
26423 fame
26424 familiar
26425 family
26426 famine
26431 famished
26432 fanatic
26433 fancied
26434 fanciness
26435 fancy
26436 fanfare
26441 fang
26442 fanning
26443 fantasize
26444 fantastic
26445 fantasy
26446 fascism
26451 fastball
26452 faster
26453 fasting
26454 fastness
26455 faucet
26456 favorable
26461 favorably
26462 favored
26463 favoring
26464 favorite
26465 fax
26466 feast
26511 federal
26512 fedora
26513 feeble
26514 feed
26515 feel
26516 feisty
26521 feline
26522 felt-tip
26523 feminine
26524 feminism
26525 feminist
26526 feminize
26531 femur
26532 fence
26533 fencing
26534 fender
26535 ferment
26536 fernlike
26541 ferocious
26542 ferocity
26543 ferret
26544 ferris
26545 ferry
26546 fervor
26551 fester
26552 festival
26553 festive
26554 festivity
26555 fetal
26556 fetch
26561 fever
26562 fiber
26563 fiction
26564 fiddle
26565 fiddling
26566 fidelity
26611 fidgeting
26612 fidgety
26613 fifteen
26614 fifth
26615 fiftieth
26616 fifty
26621 figment
26622 figure
26623 figurine
26624 filing
26625 filled
26626 filler
26631 filling
26632 film
26633 filter
26634 filth
26635 filtrate
26636 finale
26641 finalist
26642 finalize
26643 finally
26644 finance
26645 financial
26646 finch
26651 fineness
26652 finer
26653 finicky
26654 finished
26655 finisher
26656 finishing
26661 finite
26662 finless
26663 finlike
26664 fiscally
26665 fit
26666 five
31111 flaccid
31112 flagman
31113 flagpole
31114 flagship
31115 flagstick
31116 flagstone
31121 flail
31122 flakily
31123 flaky
31124 flame
31125 flammable
31126 flanked
31131 flanking
31132 flannels
31133 flap
31134 flaring
31135 flashback
31136 flashbulb
31141 flashcard
31142 flashily
31143 flashing
31144 flashy
31145 flask
31146 flatbed
31151 flatfoot
31152 flatly
31153 flatness
31154 flatten
31155 flattered
31156 flatterer
31161 flattery
31162 flattop
31163 flatware
31164 flatworm
31165 flavored
31166 flavorful
31211 flavoring
31212 flaxseed
31213 fled
31214 fleshed
31215 fleshy
31216 flick
31221 flier
31222 flight
31223 flinch
31224 fling
31225 flint
31226 flip
31231 flirt
31232 float
31233 flock
31234 flogging
31235 flop
31236 floral
31241 florist
31242 floss
31243 flounder
31244 flyable
31245 flyaway
31246 flyer
31251 flying
31252 flyover
31253 flypaper
31254 foam
31255 foe
31256 fog
31261 foil
31262 folic
31263 folk
31264 follicle
31265 follow
31266 fondling
31311 fondly
31312 fondness
31313 fondue
31314 font
31315 food
31316 fool
31321 footage
31322 football
31323 footbath
31324 footboard
31325 footer
31326 footgear
31331 foothill
31332 foothold
31333 footing
31334 footless
31335 footman
31336 footnote
31341 footpad
31342 footpath
31343 footprint
31344 footrest
31345 footsie
31346 footsore
31351 footwear
31352 footwork
31353 fossil
31354 foster
31355 founder
31356 founding
31361 fountain
31362 fox
31363 foyer
31364 fraction
31365 fracture
31366 fragile
31411 fragility
31412 fragment
31413 fragrance
31414 fragrant
31415 frail
31416 frame
31421 framing
31422 frantic
31423 fraternal
31424 frayed
31425 fraying
31426 frays
31431 freckled
31432 freckles
31433 freebase
31434 freebee
31435 freebie
31436 freedom
31441 freefall
31442 freehand
31443 freeing
31444 freeload
31445 freely
31446 freemason
31451 freeness
31452 freestyle
31453 freeware
31454 freeway
31455 freewill
31456 freezable
31461 freezing
31462 freight
31463 french
31464 frenzied
31465 frenzy
31466 frequency
31511 frequent
31512 fresh
31513 fretful
31514 fretted
31515 friction
31516 friday
31521 fridge
31522 fried
31523 friend
31524 frighten
31525 frightful
31526 frigidity
31531 frigidly
31532 frill
31533 fringe
31534 frisbee
31535 frisk
31536 fritter
31541 frivolous
31542 frolic
31543 from
31544 front
31545 frostbite
31546 frosted
31551 frostily
31552 frosting
31553 frostlike
31554 frosty
31555 froth
31556 frown
31561 frozen
31562 fructose
31563 frugality
31564 frugally
31565 fruit
31566 frustrate
31611 frying
31612 gab
31613 gaffe
31614 gag
31615 gainfully
31616 gaining
31621 gains
31622 gala
31623 gallantly
31624 galleria
31625 gallery
31626 galley
31631 gallon
31632 gallows
31633 gallstone
31634 galore
31635 galvanize
31636 gambling
31641 game
31642 gaming
31643 gamma
31644 gander
31645 gangly
31646 gangrene
31651 gangway
31652 gap
31653 garage
31654 garbage
31655 garden
31656 gargle
31661 garland
31662 garlic
31663 garment
31664 garnet
31665 garnish
31666 garter
32111 gas
32112 gatherer
32113 gathering
32114 gating
32115 gauging
32116 gauntlet
32121 gauze
32122 gave
32123 gawk
32124 gazing
32125 gear
32126 gecko
32131 geek
32132 geiger
32133 gem
32134 gender
32135 generic
32136 generous
32141 genetics
32142 genre
32143 gentile
32144 gentleman
32145 gently
32146 gents
32151 geography
32152 geologic
32153 geologist
32154 geology
32155 geometric
32156 geometry
32161 geranium
32162 gerbil
32163 geriatric
32164 germicide
32165 germinate
32166 germless
32211 germproof
32212 gestate
32213 gestation
32214 gesture
32215 getaway
32216 getting
32221 getup
32222 giant
32223 gibberish
32224 giblet
32225 giddily
32226 giddiness
32231 giddy
32232 gift
32233 gigabyte
32234 gigahertz
32235 gigantic
32236 giggle
32241 giggling
32242 giggly
32243 gigolo
32244 gilled
32245 gills
32246 gimmick
32251 girdle
32252 giveaway
32253 given
32254 giver
32255 giving
32256 gizmo
32261 gizzard
32262 glacial
32263 glacier
32264 glade
32265 gladiator
32266 gladly
32311 glamorous
32312 glamour
32313 glance
32314 glancing
32315 glandular
32316 glare
32321 glaring
32322 glass
32323 glaucoma
32324 glazing
32325 gleaming
32326 gleeful
32331 glider
32332 gliding
32333 glimmer
32334 glimpse
32335 glisten
32336 glitch
32341 glitter
32342 glitzy
32343 gloater
32344 gloating
32345 gloomily
32346 gloomy
32351 glorified
32352 glorifier
32353 glorify
32354 glorious
32355 glory
32356 gloss
32361 glove
32362 glowing
32363 glowworm
32364 glucose
32365 glue
32366 gluten
32411 glutinous
32412 glutton
32413 gnarly
32414 gnat
32415 goal
32416 goatskin
32421 goes
32422 goggles
32423 going
32424 goldfish
32425 goldmine
32426 goldsmith
32431 golf
32432 goliath
32433 gonad
32434 gondola
32435 gone
32436 gong
32441 good
32442 gooey
32443 goofball
32444 goofiness
32445 goofy
32446 google
32451 goon
32452 gopher
32453 gore
32454 gorged
32455 gorgeous
32456 gory
32461 gosling
32462 gossip
32463 gothic
32464 gotten
32465 gout
32466 gown
32511 grab
32512 graceful
32513 graceless
32514 gracious
32515 gradation
32516 graded
32521 grader
32522 gradient
32523 grading
32524 gradually
32525 graduate
32526 graffiti
32531 grafted
32532 grafting
32533 grain
32534 granddad
32535 grandkid
32536 grandly
32541 grandma
32542 grandpa
32543 grandson
32544 granite
32545 granny
32546 granola
32551 grant
32552 granular
32553 grape
32554 graph
32555 grapple
32556 grappling
32561 grasp
32562 grass
32563 gratified
32564 gratify
32565 grating
32566 gratitude
32611 gratuity
32612 gravel
32613 graveness
32614 graves
32615 graveyard
32616 gravitate
32621 gravity
32622 gravy
32623 gray
32624 grazing
32625 greasily
32626 greedily
32631 greedless
32632 greedy
32633 green
32634 greeter
32635 greeting
32636 grew
32641 greyhound
32642 grid
32643 grief
32644 grievance
32645 grieving
32646 grievous
32651 grill
32652 grimace
32653 grimacing
32654 grime
32655 griminess
32656 grimy
32661 grinch
32662 grinning
32663 grip
32664 gristle
32665 grit
32666 groggily
33111 groggy
33112 groin
33113 groom
33114 groove
33115 grooving
33116 groovy
33121 grope
33122 ground
33123 grouped
33124 grout
33125 grove
33126 grower
33131 growing
33132 growl
33133 grub
33134 grudge
33135 grudging
33136 grueling
33141 gruffly
33142 grumble
33143 grumbling
33144 grumbly
33145 grumpily
33146 grunge
33151 grunt
33152 guacamole
33153 guidable
33154 guidance
33155 guide
33156 guiding
33161 guileless
33162 guise
33163 gulf
33164 gullible
33165 gully
33166 gulp
33211 gumball
33212 gumdrop
33213 gumminess
33214 gumming
33215 gummy
33216 gurgle
33221 gurgling
33222 guru
33223 gush
33224 gusto
33225 gusty
33226 gutless
33231 guts
33232 gutter
33233 guy
33234 guzzler
33235 gyration
33236 habitable
33241 habitant
33242 habitat
33243 habitual
33244 hacked
33245 hacker
33246 hacking
33251 hacksaw
33252 had
33253 haggler
33254 haiku
33255 half
33256 halogen
33261 halt
33262 halved
33263 halves
33264 hamburger
33265 hamlet
33266 hammock
33311 hamper
33312 hamster
33313 hamstring
33314 handbag
33315 handball
33316 handbook
33321 handbrake
33322 handcart
33323 handclap
33324 handclasp
33325 handcraft
33326 handcuff
33331 handed
33332 handful
33333 handgrip
33334 handgun
33335 handheld
33336 handiness
33341 handiwork
33342 handlebar
33343 handled
33344 handler
33345 handling
33346 handmade
33351 handoff
33352 handpick
33353 handprint
33354 handrail
33355 handsaw
33356 handset
33361 handsfree
33362 handshake
33363 handstand
33364 handwash
33365 handwork
33366 handwoven
33411 handwrite
33412 handyman
33413 hangnail
33414 hangout
33415 hangover
33416 hangup
33421 hankering
33422 hankie
33423 hanky
33424 haphazard
33425 happening
33426 happier
33431 happiest
33432 happily
33433 happiness
33434 happy
33435 harbor
33436 hardcopy
33441 hardcore
33442 hardcover
33443 harddisk
33444 hardened
33445 hardener
33446 hardening
33451 hardhat
33452 hardhead
33453 hardiness
33454 hardly
33455 hardness
33456 hardship
33461 hardware
33462 hardwired
33463 hardwood
33464 hardy
33465 harmful
33466 harmless
33511 harmonica
33512 harmonics
33513 harmonize
33514 harmony
33515 harness
33516 harpist
33521 harsh
33522 harvest
33523 hash
33524 hassle
33525 haste
33526 hastily
33531 hastiness
33532 hasty
33533 hatbox
33534 hatchback
33535 hatchery
33536 hatchet
33541 hatching
33542 hatchling
33543 hate
33544 hatless
33545 hatred
33546 haunt
33551 haven
33552 hazard
33553 hazelnut
33554 hazily
33555 haziness
33556 hazing
33561 hazy
33562 headache
33563 headband
33564 headboard
33565 headcount
33566 headdress
33611 headed
33612 header
33613 headfirst
33614 headgear
33615 heading
33616 headlamp
33621 headless
33622 headlock
33623 headphone
33624 headpiece
33625 headrest
33626 headroom
33631 headscarf
33632 headset
33633 headsman
33634 headstand
33635 headstone
33636 headway
33641 headwear
33642 heap
33643 heat
33644 heave
33645 heavily
33646 heaviness
33651 heaving
33652 hedge
33653 hedging
33654 heftiness
33655 hefty
33656 helium
33661 helmet
33662 helper
33663 helpful
33664 helping
33665 helpless
33666 helpline
34111 hemlock
34112 hemstitch
34113 hence
34114 henchman
34115 henna
34116 herald
34121 herbal
34122 herbicide
34123 herbs
34124 heritage
34125 hermit
34126 heroics
34131 heroism
34132 herring
34133 herself
34134 hertz
34135 hesitancy
34136 hesitant
34141 hesitate
34142 hexagon
34143 hexagram
34144 hubcap
34145 huddle
34146 huddling
34151 huff
34152 hug
34153 hula
34154 hulk
34155 hull
34156 human
34161 humble
34162 humbling
34163 humbly
34164 humid
34165 humiliate
34166 humility
34211 humming
34212 hummus
34213 humongous
34214 humorist
34215 humorless
34216 humorous
34221 humpback
34222 humped
34223 humvee
34224 hunchback
34225 hundredth
34226 hunger
34231 hungrily
34232 hungry
34233 hunk
34234 hunter
34235 hunting
34236 huntress
34241 huntsman
34242 hurdle
34243 hurled
34244 hurler
34245 hurling
34246 hurray
34251 hurricane
34252 hurried
34253 hurry
34254 hurt
34255 husband
34256 hush
34261 husked
34262 huskiness
34263 hut
34264 hybrid
34265 hydrant
34266 hydrated
34311 hydration
34312 hydrogen
34313 hydroxide
34314 hyperlink
34315 hypertext
34316 hyphen
34321 hypnoses
34322 hypnosis
34323 hypnotic
34324 hypnotism
34325 hypnotist
34326 hypnotize
34331 hypocrisy
34332 hypocrite
34333 ibuprofen
34334 ice
34335 iciness
34336 icing
34341 icky
34342 icon
34343 icy
34344 idealism
34345 idealist
34346 idealize
34351 ideally
34352 idealness
34353 identical
34354 identify
34355 identity
34356 ideology
34361 idiocy
34362 idiom
34363 idly
34364 igloo
34365 ignition
34366 ignore
34411 iguana
34412 illicitly
34413 illusion
34414 illusive
34415 image
34416 imaginary
34421 imagines
34422 imaging
34423 imbecile
34424 imitate
34425 imitation
34426 immature
34431 immerse
34432 immersion
34433 imminent
34434 immobile
34435 immodest
34436 immorally
34441 immortal
34442 immovable
34443 immovably
34444 immunity
34445 immunize
34446 impaired
34451 impale
34452 impart
34453 impatient
34454 impeach
34455 impeding
34456 impending
34461 imperfect
34462 imperial
34463 impish
34464 implant
34465 implement
34466 implicate
34511 implicit
34512 implode
34513 implosion
34514 implosive
34515 imply
34516 impolite
34521 important
34522 importer
34523 impose
34524 imposing
34525 impotence
34526 impotency
34531 impotent
34532 impound
34533 imprecise
34534 imprint
34535 imprison
34536 impromptu
34541 improper
34542 improve
34543 improving
34544 improvise
34545 imprudent
34546 impulse
34551 impulsive
34552 impure
34553 impurity
34554 iodine
34555 iodize
34556 ion
34561 ipad
34562 iphone
34563 ipod
34564 irate
34565 irk
34566 iron
34611 irregular
34612 irrigate
34613 irritable
34614 irritably
34615 irritant
34616 irritate
34621 islamic
34622 islamist
34623 isolated
34624 isolating
34625 isolation
34626 isotope
34631 issue
34632 issuing
34633 italicize
34634 italics
34635 item
34636 itinerary
34641 itunes
34642 ivory
34643 ivy
34644 jab
34645 jackal
34646 jacket
34651 jackknife
34652 jackpot
34653 jailbird
34654 jailbreak
34655 jailer
34656 jailhouse
34661 jalapeno
34662 jam
34663 janitor
34664 january
34665 jargon
34666 jarring
35111 jasmine
35112 jaundice
35113 jaunt
35114 java
35115 jawed
35116 jawless
35121 jawline
35122 jaws
35123 jaybird
35124 jaywalker
35125 jazz
35126 jeep
35131 jeeringly
35132 jellied
35133 jelly
35134 jersey
35135 jester
35136 jet
35141 jiffy
35142 jigsaw
35143 jimmy
35144 jingle
35145 jingling
35146 jinx
35151 jitters
35152 jittery
35153 job
35154 jockey
35155 jockstrap
35156 jogger
35161 jogging
35162 john
35163 joining
35164 jokester
35165 jokingly
35166 jolliness
35211 jolly
35212 jolt
35213 jot
35214 jovial
35215 joyfully
35216 joylessly
35221 joyous
35222 joyride
35223 joystick
35224 jubilance
35225 jubilant
35226 judge
35231 judgingly
35232 judicial
35233 judiciary
35234 judo
35235 juggle
35236 juggling
35241 jugular
35242 juice
35243 juiciness
35244 juicy
35245 jujitsu
35246 jukebox
35251 july
35252 jumble
35253 jumbo
35254 jump
35255 junction
35256 juncture
35261 june
35262 junior
35263 juniper
35264 junkie
35265 junkman
35266 junkyard
35311 jurist
35312 juror
35313 jury
35314 justice
35315 justifier
35316 justify
35321 justly
35322 justness
35323 juvenile
35324 kabob
35325 kangaroo
35326 karaoke
35331 karate
35332 karma
35333 kebab
35334 keenly
35335 keenness
35336 keep
35341 keg
35342 kelp
35343 kennel
35344 kept
35345 kerchief
35346 kerosene
35351 kettle
35352 kick
35353 kiln
35354 kilobyte
35355 kilogram
35356 kilometer
35361 kilowatt
35362 kilt
35363 kimono
35364 kindle
35365 kindling
35366 kindly
35411 kindness
35412 kindred
35413 kinetic
35414 kinfolk
35415 king
35416 kinship
35421 kinsman
35422 kinswoman
35423 kissable
35424 kisser
35425 kissing
35426 kitchen
35431 kite
35432 kitten
35433 kitty
35434 kiwi
35435 kleenex
35436 knapsack
35441 knee
35442 knelt
35443 knickers
35444 knoll
35445 koala
35446 kooky
35451 kosher
35452 krypton
35453 kudos
35454 kung
35455 labored
35456 laborer
35461 laboring
35462 laborious
35463 labrador
35464 ladder
35465 ladies
35466 ladle
35511 ladybug
35512 ladylike
35513 lagged
35514 lagging
35515 lagoon
35516 lair
35521 lake
35522 lance
35523 landed
35524 landfall
35525 landfill
35526 landing
35531 landlady
35532 landless
35533 landline
35534 landlord
35535 landmark
35536 landmass
35541 landmine
35542 landowner
35543 landscape
35544 landside
35545 landslide
35546 language
35551 lankiness
35552 lanky
35553 lantern
35554 lapdog
35555 lapel
35556 lapped
35561 lapping
35562 laptop
35563 lard
35564 large
35565 lark
35566 lash
35611 lasso
35612 last
35613 latch
35614 late
35615 lather
35616 latitude
35621 latrine
35622 latter
35623 latticed
35624 launch
35625 launder
35626 laundry
35631 laurel
35632 lavender
35633 lavish
35634 laxative
35635 lazily
35636 laziness
35641 lazy
35642 lecturer
35643 left
35644 legacy
35645 legal
35646 legend
35651 legged
35652 leggings
35653 legible
35654 legibly
35655 legislate
35656 lego
35661 legroom
35662 legume
35663 legwarmer
35664 legwork
35665 lemon
35666 lend
36111 length
36112 lens
36113 lent
36114 leotard
36115 lesser
36116 letdown
36121 lethargic
36122 lethargy
36123 letter
36124 lettuce
36125 level
36126 leverage
36131 levers
36132 levitate
36133 levitator
36134 liability
36135 liable
36136 liberty
36141 librarian
36142 library
36143 licking
36144 licorice
36145 lid
36146 life
36151 lifter
36152 lifting
36153 liftoff
36154 ligament
36155 likely
36156 likeness
36161 likewise
36162 liking
36163 lilac
36164 lilly
36165 lily
36166 limb
36211 limeade
36212 limelight
36213 limes
36214 limit
36215 limping
36216 limpness
36221 line
36222 lingo
36223 linguini
36224 linguist
36225 lining
36226 linked
36231 linoleum
36232 linseed
36233 lint
36234 lion
36235 lip
36236 liquefy
36241 liqueur
36242 liquid
36243 lisp
36244 list
36245 litigate
36246 litigator
36251 litmus
36252 litter
36253 little
36254 livable
36255 lived
36256 lively
36261 liver
36262 livestock
36263 lividly
36264 living
36265 lizard
36266 lubricant
36311 lubricate
36312 lucid
36313 luckily
36314 luckiness
36315 luckless
36316 lucrative
36321 ludicrous
36322 lugged
36323 lukewarm
36324 lullaby
36325 lumber
36326 luminance
36331 luminous
36332 lumpiness
36333 lumping
36334 lumpish
36335 lunacy
36336 lunar
36341 lunchbox
36342 luncheon
36343 lunchroom
36344 lunchtime
36345 lung
36346 lurch
36351 lure
36352 luridness
36353 lurk
36354 lushly
36355 lushness
36356 luster
36361 lustfully
36362 lustily
36363 lustiness
36364 lustrous
36365 lusty
36366 luxurious
36411 luxury
36412 lying
36413 lyrically
36414 lyricism
36415 lyricist
36416 lyrics
36421 macarena
36422 macaroni
36423 macaw
36424 mace
36425 machine
36426 machinist
36431 magazine
36432 magenta
36433 maggot
36434 magical
36435 magician
36436 magma
36441 magnesium
36442 magnetic
36443 magnetism
36444 magnetize
36445 magnifier
36446 magnify
36451 magnitude
36452 magnolia
36453 mahogany
36454 maimed
36455 majestic
36456 majesty
36461 majorette
36462 majority
36463 makeover
36464 maker
36465 makeshift
36466 making
36511 malformed
36512 malt
36513 mama
36514 mammal
36515 mammary
36516 mammogram
36521 manager
36522 managing
36523 manatee
36524 mandarin
36525 mandate
36526 mandatory
36531 mandolin
36532 manger
36533 mangle
36534 mango
36535 mangy
36536 manhandle
36541 manhole
36542 manhood
36543 manhunt
36544 manicotti
36545 manicure
36546 manifesto
36551 manila
36552 mankind
36553 manlike
36554 manliness
36555 manly
36556 manmade
36561 manned
36562 mannish
36563 manor
36564 manpower
36565 mantis
36566 mantra
36611 manual
36612 many
36613 map
36614 marathon
36615 marauding
36616 marbled
36621 marbles
36622 marbling
36623 march
36624 mardi
36625 margarine
36626 margarita
36631 margin
36632 marigold
36633 marina
36634 marine
36635 marital
36636 maritime
36641 marlin
36642 marmalade
36643 maroon
36644 married
36645 marrow
36646 marry
36651 marshland
36652 marshy
36653 marsupial
36654 marvelous
36655 marxism
36656 mascot
36661 masculine
36662 mashed
36663 mashing
36664 massager
36665 masses
36666 massive
41111 mastiff
41112 matador
41113 matchbook
41114 matchbox
41115 matcher
41116 matching
41121 matchless
41122 material
41123 maternal
41124 maternity
41125 math
41126 mating
41131 matriarch
41132 matrimony
41133 matrix
41134 matron
41135 matted
41136 matter
41141 maturely
41142 maturing
41143 maturity
41144 mauve
41145 maverick
41146 maximize
41151 maximum
41152 maybe
41153 mayday
41154 mayflower
41155 moaner
41156 moaning
41161 mobile
41162 mobility
41163 mobilize
41164 mobster
41165 mocha
41166 mocker
41211 mockup
41212 modified
41213 modify
41214 modular
41215 modulator
41216 module
41221 moisten
41222 moistness
41223 moisture
41224 molar
41225 molasses
41226 mold
41231 molecular
41232 molecule
41233 molehill
41234 mollusk
41235 mom
41236 monastery
41241 monday
41242 monetary
41243 monetize
41244 moneybags
41245 moneyless
41246 moneywise
41251 mongoose
41252 mongrel
41253 monitor
41254 monkhood
41255 monogamy
41256 monogram
41261 monologue
41262 monopoly
41263 monorail
41264 monotone
41265 monotype
41266 monoxide
41311 monsieur
41312 monsoon
41313 monstrous
41314 monthly
41315 monument
41316 moocher
41321 moodiness
41322 moody
41323 mooing
41324 moonbeam
41325 mooned
41326 moonlight
41331 moonlike
41332 moonlit
41333 moonrise
41334 moonscape
41335 moonshine
41336 moonstone
41341 moonwalk
41342 mop
41343 morale
41344 morality
41345 morally
41346 morbidity
41351 morbidly
41352 morphine
41353 morphing
41354 morse
41355 mortality
41356 mortally
41361 mortician
41362 mortified
41363 mortify
41364 mortuary
41365 mosaic
41366 mossy
41411 most
41412 mothball
41413 mothproof
41414 motion
41415 motivate
41416 motivator
41421 motive
41422 motocross
41423 motor
41424 motto
41425 mountable
41426 mountain
41431 mounted
41432 mounting
41433 mourner
41434 mournful
41435 mouse
41436 mousiness
41441 moustache
41442 mousy
41443 mouth
41444 movable
41445 move
41446 movie
41451 moving
41452 mower
41453 mowing
41454 much
41455 muck
41456 mud
41461 mug
41462 mulberry
41463 mulch
41464 mule
41465 mulled
41466 mullets
41511 multiple
41512 multiply
41513 multitask
41514 multitude
41515 mumble
41516 mumbling
41521 mumbo
41522 mummified
41523 mummify
41524 mummy
41525 mumps
41526 munchkin
41531 mundane
41532 municipal
41533 muppet
41534 mural
41535 murkiness
41536 murky
41541 murmuring
41542 muscular
41543 museum
41544 mushily
41545 mushiness
41546 mushroom
41551 mushy
41552 music
41553 musket
41554 muskiness
41555 musky
41556 mustang
41561 mustard
41562 muster
41563 mustiness
41564 musty
41565 mutable
41566 mutate
41611 mutation
41612 mute
41613 mutilated
41614 mutilator
41615 mutiny
41616 mutt
41621 mutual
41622 muzzle
41623 myself
41624 myspace
41625 mystified
41626 mystify
41631 myth
41632 nacho
41633 nag
41634 nail
41635 name
41636 naming
41641 nanny
41642 nanometer
41643 nape
41644 napkin
41645 napped
41646 napping
41651 nappy
41652 narrow
41653 nastily
41654 nastiness
41655 national
41656 native
41661 nativity
41662 natural
41663 nature
41664 naturist
41665 nautical
41666 navigate
42111 navigator
42112 navy
42113 nearby
42114 nearest
42115 nearly
42116 nearness
42121 neatly
42122 neatness
42123 nebula
42124 nebulizer
42125 nectar
42126 negate
42131 negation
42132 negative
42133 neglector
42134 negligee
42135 negligent
42136 negotiate
42141 nemeses
42142 nemesis
42143 neon
42144 nephew
42145 nerd
42146 nervous
42151 nervy
42152 nest
42153 net
42154 neurology
42155 neuron
42156 neurosis
42161 neurotic
42162 neuter
42163 neutron
42164 never
42165 next
42166 nibble
42211 nickname
42212 nicotine
42213 niece
42214 nifty
42215 nimble
42216 nimbly
42221 nineteen
42222 ninetieth
42223 ninja
42224 nintendo
42225 ninth
42226 nuclear
42231 nuclei
42232 nucleus
42233 nugget
42234 nullify
42235 number
42236 numbing
42241 numbly
42242 numbness
42243 numeral
42244 numerate
42245 numerator
42246 numeric
42251 numerous
42252 nuptials
42253 nursery
42254 nursing
42255 nurture
42256 nutcase
42261 nutlike
42262 nutmeg
42263 nutrient
42264 nutshell
42265 nuttiness
42266 nutty
42311 nuzzle
42312 nylon
42313 oaf
42314 oak
42315 oasis
42316 oat
42321 obedience
42322 obedient
42323 obituary
42324 object
42325 obligate
42326 obliged
42331 oblivion
42332 oblivious
42333 oblong
42334 obnoxious
42335 oboe
42336 obscure
42341 obscurity
42342 observant
42343 observer
42344 observing
42345 obsessed
42346 obsession
42351 obsessive
42352 obsolete
42353 obstacle
42354 obstinate
42355 obstruct
42356 obtain
42361 obtrusive
42362 obtuse
42363 obvious
42364 occultist
42365 occupancy
42366 occupant
42411 occupier
42412 occupy
42413 ocean
42414 ocelot
42415 octagon
42416 octane
42421 october
42422 octopus
42423 ogle
42424 oil
42425 oink
42426 ointment
42431 okay
42432 old
42433 olive
42434 olympics
42435 omega
42436 omen
42441 ominous
42442 omission
42443 omit
42444 omnivore
42445 onboard
42446 oncoming
42451 ongoing
42452 onion
42453 online
42454 onlooker
42455 only
42456 onscreen
42461 onset
42462 onshore
42463 onslaught
42464 onstage
42465 onto
42466 onward
42511 onyx
42512 oops
42513 ooze
42514 oozy
42515 opacity
42516 opal
42521 open
42522 operable
42523 operate
42524 operating
42525 operation
42526 operative
42531 operator
42532 opium
42533 opossum
42534 opponent
42535 oppose
42536 opposing
42541 opposite
42542 oppressed
42543 oppressor
42544 opt
42545 opulently
42546 osmosis
42551 other
42552 otter
42553 ouch
42554 ought
42555 ounce
42556 outage
42561 outback
42562 outbid
42563 outboard
42564 outbound
42565 outbreak
42566 outburst
42611 outcast
42612 outclass
42613 outcome
42614 outdated
42615 outdoors
42616 outer
42621 outfield
42622 outfit
42623 outflank
42624 outgoing
42625 outgrow
42626 outhouse
42631 outing
42632 outlast
42633 outlet
42634 outline
42635 outlook
42636 outlying
42641 outmatch
42642 outmost
42643 outnumber
42644 outplayed
42645 outpost
42646 outpour
42651 output
42652 outrage
42653 outrank
42654 outreach
42655 outright
42656 outscore
42661 outsell
42662 outshine
42663 outshoot
42664 outsider
42665 outskirts
42666 outsmart
43111 outsource
43112 outspoken
43113 outtakes
43114 outthink
43115 outward
43116 outweigh
43121 outwit
43122 oval
43123 ovary
43124 oven
43125 overact
43126 overall
43131 overarch
43132 overbid
43133 overbill
43134 overbite
43135 overblown
43136 overboard
43141 overbook
43142 overbuilt
43143 overcast
43144 overcoat
43145 overcome
43146 overcook
43151 overcrowd
43152 overdraft
43153 overdrawn
43154 overdress
43155 overdrive
43156 overdue
43161 overeager
43162 overeater
43163 overexert
43164 overfed
43165 overfeed
43166 overfill
43211 overflow
43212 overfull
43213 overgrown
43214 overhand
43215 overhang
43216 overhaul
43221 overhead
43222 overhear
43223 overheat
43224 overhung
43225 overjoyed
43226 overkill
43231 overlabor
43232 overlaid
43233 overlap
43234 overlay
43235 overload
43236 overlook
43241 overlord
43242 overlying
43243 overnight
43244 overpass
43245 overpay
43246 overplant
43251 overplay
43252 overpower
43253 overprice
43254 overrate
43255 overreach
43256 overreact
43261 override
43262 overripe
43263 overrule
43264 overrun
43265 overshoot
43266 overshot
43311 oversight
43312 oversized
43313 oversleep
43314 oversold
43315 overspend
43316 overstate
43321 overstay
43322 overstep
43323 overstock
43324 overstuff
43325 oversweet
43326 overtake
43331 overthrow
43332 overtime
43333 overtly
43334 overtone
43335 overture
43336 overturn
43341 overuse
43342 overvalue
43343 overview
43344 overwrite
43345 owl
43346 oxford
43351 oxidant
43352 oxidation
43353 oxidize
43354 oxidizing
43355 oxygen
43356 oxymoron
43361 oyster
43362 ozone
43363 paced
43364 pacemaker
43365 pacific
43366 pacifier
43411 pacifism
43412 pacifist
43413 pacify
43414 padded
43415 padding
43416 paddle
43421 paddling
43422 padlock
43423 pagan
43424 pager
43425 paging
43426 pajamas
43431 palace
43432 palatable
43433 palm
43434 palpable
43435 palpitate
43436 paltry
43441 pampered
43442 pamperer
43443 pampers
43444 pamphlet
43445 panama
43446 pancake
43451 pancreas
43452 panda
43453 pandemic
43454 pang
43455 panhandle
43456 panic
43461 panning
43462 panorama
43463 panoramic
43464 panther
43465 pantomime
43466 pantry
43511 pants
43512 pantyhose
43513 paparazzi
43514 papaya
43515 paper
43516 paprika
43521 papyrus
43522 parabola
43523 parachute
43524 parade
43525 paradox
43526 paragraph
43531 parakeet
43532 paralegal
43533 paralyses
43534 paralysis
43535 paralyze
43536 paramedic
43541 parameter
43542 paramount
43543 parasail
43544 parasite
43545 parasitic
43546 parcel
43551 parched
43552 parchment
43553 pardon
43554 parish
43555 parka
43556 parking
43561 parkway
43562 parlor
43563 parmesan
43564 parole
43565 parrot
43566 parsley
43611 parsnip
43612 partake
43613 parted
43614 parting
43615 partition
43616 partly
43621 partner
43622 partridge
43623 party
43624 passable
43625 passably
43626 passage
43631 passcode
43632 passenger
43633 passerby
43634 passing
43635 passion
43636 passive
43641 passivism
43642 passover
43643 passport
43644 password
43645 pasta
43646 pasted
43651 pastel
43652 pastime
43653 pastor
43654 pastrami
43655 pasture
43656 pasty
43661 patchwork
43662 patchy
43663 paternal
43664 paternity
43665 path
43666 patience
44111 patient
44112 patio
44113 patriarch
44114 patriot
44115 patrol
44116 patronage
44121 patronize
44122 pauper
44123 pavement
44124 paver
44125 pavestone
44126 pavilion
44131 paving
44132 pawing
44133 payable
44134 payback
44135 paycheck
44136 payday
44141 payee
44142 payer
44143 paying
44144 payment
44145 payphone
44146 payroll
44151 pebble
44152 pebbly
44153 pecan
44154 pectin
44155 peculiar
44156 peddling
44161 pediatric
44162 pedicure
44163 pedigree
44164 pedometer
44165 pegboard
44166 pelican
44211 pellet
44212 pelt
44213 pelvis
44214 penalize
44215 penalty
44216 pencil
44221 pendant
44222 pending
44223 penholder
44224 penknife
44225 pennant
44226 penniless
44231 penny
44232 penpal
44233 pension
44234 pentagon
44235 pentagram
44236 pep
44241 perceive
44242 percent
44243 perch
44244 percolate
44245 perennial
44246 perfected
44251 perfectly
44252 perfume
44253 periscope
44254 perish
44255 perjurer
44256 perjury
44261 perkiness
44262 perky
44263 perm
44264 peroxide
44265 perpetual
44266 perplexed
44311 persecute
44312 persevere
44313 persuaded
44314 persuader
44315 pesky
44316 peso
44321 pessimism
44322 pessimist
44323 pester
44324 pesticide
44325 petal
44326 petite
44331 petition
44332 petri
44333 petroleum
44334 petted
44335 petticoat
44336 pettiness
44341 petty
44342 petunia
44343 phantom
44344 phobia
44345 phoenix
44346 phonebook
44351 phoney
44352 phonics
44353 phoniness
44354 phony
44355 phosphate
44356 photo
44361 phrase
44362 phrasing
44363 placard
44364 placate
44365 placidly
44366 plank
44411 planner
44412 plant
44413 plasma
44414 plaster
44415 plastic
44416 plated
44421 platform
44422 plating
44423 platinum
44424 platonic
44425 platter
44426 platypus
44431 plausible
44432 plausibly
44433 playable
44434 playback
44435 player
44436 playful
44441 playgroup
44442 playhouse
44443 playing
44444 playlist
44445 playmaker
44446 playmate
44451 playoff
44452 playpen
44453 playroom
44454 playset
44455 plaything
44456 playtime
44461 plaza
44462 pleading
44463 pleat
44464 pledge
44465 plentiful
44466 plenty
44511 plethora
44512 plexiglas
44513 pliable
44514 plod
44515 plop
44516 plot
44521 plow
44522 ploy
44523 pluck
44524 plug
44525 plunder
44526 plunging
44531 plural
44532 plus
44533 plutonium
44534 plywood
44535 poach
44536 pod
44541 poem
44542 poet
44543 pogo
44544 pointed
44545 pointer
44546 pointing
44551 pointless
44552 pointy
44553 poise
44554 poison
44555 poker
44556 poking
44561 polar
44562 police
44563 policy
44564 polio
44565 polish
44566 politely
44611 polka
44612 polo
44613 polyester
44614 polygon
44615 polygraph
44616 polymer
44621 poncho
44622 pond
44623 pony
44624 popcorn
44625 pope
44626 poplar
44631 popper
44632 poppy
44633 popsicle
44634 populace
44635 popular
44636 populate
44641 porcupine
44642 pork
44643 porous
44644 porridge
44645 portable
44646 portal
44651 portfolio
44652 porthole
44653 portion
44654 portly
44655 portside
44656 poser
44661 posh
44662 posing
44663 possible
44664 possibly
44665 possum
44666 postage
45111 postal
45112 postbox
45113 postcard
45114 posted
45115 poster
45116 posting
45121 postnasal
45122 posture
45123 postwar
45124 pouch
45125 pounce
45126 pouncing
45131 pound
45132 pouring
45133 pout
45134 powdered
45135 powdering
45136 powdery
45141 power
45142 powwow
45143 pox
45144 praising
45145 prance
45146 prancing
45151 pranker
45152 prankish
45153 prankster
45154 prayer
45155 praying
45156 preacher
45161 preaching
45162 preachy
45163 preamble
45164 precinct
45165 precise
45166 precision
45211 precook
45212 precut
45213 predator
45214 predefine
45215 predict
45216 preface
45221 prefix
45222 preflight
45223 preformed
45224 pregame
45225 pregnancy
45226 pregnant
45231 preheated
45232 prelaunch
45233 prelaw
45234 prelude
45235 premiere
45236 premises
45241 premium
45242 prenatal
45243 preoccupy
45244 preorder
45245 prepaid
45246 prepay
45251 preplan
45252 preppy
45253 preschool
45254 prescribe
45255 preseason
45256 preset
45261 preshow
45262 president
45263 presoak
45264 press
45265 presume
45266 presuming
45311 preteen
45312 pretended
45313 pretender
45314 pretense
45315 pretext
45316 pretty
45321 pretzel
45322 prevail
45323 prevalent
45324 prevent
45325 preview
45326 previous
45331 prewar
45332 prewashed
45333 prideful
45334 pried
45335 primal
45336 primarily
45341 primary
45342 primate
45343 primer
45344 primp
45345 princess
45346 print
45351 prior
45352 prism
45353 prison
45354 prissy
45355 pristine
45356 privacy
45361 private
45362 privatize
45363 prize
45364 proactive
45365 probable
45366 probably
45411 probation
45412 probe
45413 probing
45414 probiotic
45415 problem
45416 procedure
45421 process
45422 proclaim
45423 procreate
45424 procurer
45425 prodigal
45426 prodigy
45431 produce
45432 product
45433 profane
45434 profanity
45435 professed
45436 professor
45441 profile
45442 profound
45443 profusely
45444 progeny
45445 prognosis
45446 program
45451 progress
45452 projector
45453 prologue
45454 prolonged
45455 promenade
45456 prominent
45461 promoter
45462 promotion
45463 prompter
45464 promptly
45465 prone
45466 prong
45511 pronounce
45512 pronto
45513 proofing
45514 proofread
45515 proofs
45516 propeller
45521 properly
45522 property
45523 proponent
45524 proposal
45525 propose
45526 props
45531 prorate
45532 protector
45533 protegee
45534 proton
45535 prototype
45536 protozoan
45541 protract
45542 protrude
45543 proud
45544 provable
45545 proved
45546 proven
45551 provided
45552 provider
45553 providing
45554 province
45555 proving
45556 provoke
45561 provoking
45562 provolone
45563 prowess
45564 prowler
45565 prowling
45566 proximity
45611 proxy
45612 prozac
45613 prude
45614 prudishly
45615 prune
45616 pruning
45621 pry
45622 psychic
45623 public
45624 publisher
45625 pucker
45626 pueblo
45631 pug
45632 pull
45633 pulmonary
45634 pulp
45635 pulsate
45636 pulse
45641 pulverize
45642 puma
45643 pumice
45644 pummel
45645 punch
45646 punctual
45651 punctuate
45652 punctured
45653 pungent
45654 punisher
45655 punk
45656 pupil
45661 puppet
45662 puppy
45663 purchase
45664 pureblood
45665 purebred
45666 purely
46111 pureness
46112 purgatory
46113 purge
46114 purging
46115 purifier
46116 purify
46121 purist
46122 puritan
46123 purity
46124 purple
46125 purplish
46126 purposely
46131 purr
46132 purse
46133 pursuable
46134 pursuant
46135 pursuit
46136 purveyor
46141 pushcart
46142 pushchair
46143 pusher
46144 pushiness
46145 pushing
46146 pushover
46151 pushpin
46152 pushup
46153 pushy
46154 putdown
46155 putt
46156 puzzle
46161 puzzling
46162 pyramid
46163 pyromania
46164 python
46165 quack
46166 quadrant
46211 quail
46212 quaintly
46213 quake
46214 quaking
46215 qualified
46216 qualifier
46221 qualify
46222 quality
46223 qualm
46224 quantum
46225 quarrel
46226 quarry
46231 quartered
46232 quarterly
46233 quarters
46234 quartet
46235 quench
46236 query
46241 quicken
46242 quickly
46243 quickness
46244 quicksand
46245 quickstep
46246 quiet
46251 quill
46252 quilt
46253 quintet
46254 quintuple
46255 quirk
46256 quit
46261 quiver
46262 quizzical
46263 quotable
46264 quotation
46265 quote
46266 rabid
46311 race
46312 racing
46313 racism
46314 rack
46315 racoon
46316 radar
46321 radial
46322 radiance
46323 radiantly
46324 radiated
46325 radiation
46326 radiator
46331 radio
46332 radish
46333 raffle
46334 raft
46335 rage
46336 ragged
46341 raging
46342 ragweed
46343 raider
46344 railcar
46345 railing
46346 railroad
46351 railway
46352 raisin
46353 rake
46354 raking
46355 rally
46356 ramble
46361 rambling
46362 ramp
46363 ramrod
46364 ranch
46365 rancidity
46366 random
46411 ranged
46412 ranger
46413 ranging
46414 ranked
46415 ranking
46416 ransack
46421 ranting
46422 rants
46423 rare
46424 rarity
46425 rascal
46426 rash
46431 rasping
46432 ravage
46433 raven
46434 ravine
46435 raving
46436 ravioli
46441 ravishing
46442 reabsorb
46443 reach
46444 reacquire
46445 reaction
46446 reactive
46451 reactor
46452 reaffirm
46453 ream
46454 reanalyze
46455 reappear
46456 reapply
46461 reappoint
46462 reapprove
46463 rearrange
46464 rearview
46465 reason
46466 reassign
46511 reassure
46512 reattach
46513 reawake
46514 rebalance
46515 rebate
46516 rebel
46521 rebirth
46522 reboot
46523 reborn
46524 rebound
46525 rebuff
46526 rebuild
46531 rebuilt
46532 reburial
46533 rebuttal
46534 recall
46535 recant
46536 recapture
46541 recast
46542 recede
46543 recent
46544 recess
46545 recharger
46546 recipient
46551 recital
46552 recite
46553 reckless
46554 reclaim
46555 recliner
46556 reclining
46561 recluse
46562 reclusive
46563 recognize
46564 recoil
46565 recollect
46566 recolor
46611 reconcile
46612 reconfirm
46613 reconvene
46614 recopy
46615 record
46616 recount
46621 recoup
46622 recovery
46623 recreate
46624 rectal
46625 rectangle
46626 rectified
46631 rectify
46632 recycled
46633 recycler
46634 recycling
46635 reemerge
46636 reenact
46641 reenter
46642 reentry
46643 reexamine
46644 referable
46645 referee
46646 reference
46651 refill
46652 refinance
46653 refined
46654 refinery
46655 refining
46656 refinish
46661 reflected
46662 reflector
46663 reflex
46664 reflux
46665 refocus
46666 refold
51111 reforest
51112 reformat
51113 reformed
51114 reformer
51115 reformist
51116 refract
51121 refrain
51122 refreeze
51123 refresh
51124 refried
51125 refueling
51126 refund
51131 refurbish
51132 refurnish
51133 refusal
51134 refuse
51135 refusing
51136 refutable
51141 refute
51142 regain
51143 regalia
51144 regally
51145 reggae
51146 regime
51151 region
51152 register
51153 registrar
51154 registry
51155 regress
51156 regretful
51161 regroup
51162 regular
51163 regulate
51164 regulator
51165 rehab
51166 reheat
51211 rehire
51212 rehydrate
51213 reimburse
51214 reissue
51215 reiterate
51216 rejoice
51221 rejoicing
51222 rejoin
51223 rekindle
51224 relapse
51225 relapsing
51226 relatable
51231 related
51232 relation
51233 relative
51234 relax
51235 relay
51236 relearn
51241 release
51242 relenting
51243 reliable
51244 reliably
51245 reliance
51246 reliant
51251 relic
51252 relieve
51253 relieving
51254 relight
51255 relish
51256 relive
51261 reload
51262 relocate
51263 relock
51264 reluctant
51265 rely
51266 remake
51311 remark
51312 remarry
51313 rematch
51314 remedial
51315 remedy
51316 remember
51321 reminder
51322 remindful
51323 remission
51324 remix
51325 remnant
51326 remodeler
51331 remold
51332 remorse
51333 remote
51334 removable
51335 removal
51336 removed
51341 remover
51342 removing
51343 rename
51344 renderer
51345 rendering
51346 rendition
51351 renegade
51352 renewable
51353 renewably
51354 renewal
51355 renewed
51356 renounce
51361 renovate
51362 renovator
51363 rentable
51364 rental
51365 rented
51366 renter
51411 reoccupy
51412 reoccur
51413 reopen
51414 reorder
51415 repackage
51416 repacking
51421 repaint
51422 repair
51423 repave
51424 repaying
51425 repayment
51426 repeal
51431 repeated
51432 repeater
51433 repent
51434 rephrase
51435 replace
51436 replay
51441 replica
51442 reply
51443 reporter
51444 repose
51445 repossess
51446 repost
51451 repressed
51452 reprimand
51453 reprint
51454 reprise
51455 reproach
51456 reprocess
51461 reproduce
51462 reprogram
51463 reps
51464 reptile
51465 reptilian
51466 repugnant
51511 repulsion
51512 repulsive
51513 repurpose
51514 reputable
51515 reputably
51516 request
51521 require
51522 requisite
51523 reroute
51524 rerun
51525 resale
51526 resample
51531 rescuer
51532 reseal
51533 research
51534 reselect
51535 reseller
51536 resemble
51541 resend
51542 resent
51543 reset
51544 reshape
51545 reshoot
51546 reshuffle
51551 residence
51552 residency
51553 resident
51554 residual
51555 residue
51556 resigned
51561 resilient
51562 resistant
51563 resisting
51564 resize
51565 resolute
51566 resolved
51611 resonant
51612 resonate
51613 resort
51614 resource
51615 respect
51616 resubmit
51621 result
51622 resume
51623 resupply
51624 resurface
51625 resurrect
51626 retail
51631 retainer
51632 retaining
51633 retake
51634 retaliate
51635 retention
51636 rethink
51641 retinal
51642 retired
51643 retiree
51644 retiring
51645 retold
51646 retool
51651 retorted
51652 retouch
51653 retrace
51654 retract
51655 retrain
51656 retread
51661 retreat
51662 retrial
51663 retrieval
51664 retriever
51665 retry
51666 return
52111 retying
52112 retype
52113 reunion
52114 reunite
52115 reusable
52116 reuse
52121 reveal
52122 reveler
52123 revenge
52124 revenue
52125 reverb
52126 revered
52131 reverence
52132 reverend
52133 reversal
52134 reverse
52135 reversing
52136 reversion
52141 revert
52142 revisable
52143 revise
52144 revision
52145 revisit
52146 revivable
52151 revival
52152 reviver
52153 reviving
52154 revocable
52155 revoke
52156 revolt
52161 revolver
52162 revolving
52163 reward
52164 rewash
52165 rewind
52166 rewire
52211 reword
52212 rework
52213 rewrap
52214 rewrite
52215 rhyme
52216 ribbon
52221 ribcage
52222 rice
52223 riches
52224 richly
52225 richness
52226 rickety
52231 ricotta
52232 riddance
52233 ridden
52234 ride
52235 riding
52236 rifling
52241 rift
52242 rigging
52243 rigid
52244 rigor
52245 rimless
52246 rimmed
52251 rind
52252 rink
52253 rinse
52254 rinsing
52255 riot
52256 ripcord
52261 ripeness
52262 ripening
52263 ripping
52264 ripple
52265 rippling
52266 riptide
52311 rise
52312 rising
52313 risk
52314 risotto
52315 ritalin
52316 ritzy
52321 rival
52322 riverbank
52323 riverbed
52324 riverboat
52325 riverside
52326 riveter
52331 riveting
52332 roamer
52333 roaming
52334 roast
52335 robbing
52336 robe
52341 robin
52342 robotics
52343 robust
52344 rockband
52345 rocker
52346 rocket
52351 rockfish
52352 rockiness
52353 rocking
52354 rocklike
52355 rockslide
52356 rockstar
52361 rocky
52362 rogue
52363 roman
52364 romp
52365 rope
52366 roping
52411 roster
52412 rosy
52413 rotten
52414 rotting
52415 rotunda
52416 roulette
52421 rounding
52422 roundish
52423 roundness
52424 roundup
52425 roundworm
52426 routine
52431 routing
52432 rover
52433 roving
52434 royal
52435 rubbed
52436 rubber
52441 rubbing
52442 rubble
52443 rubdown
52444 ruby
52445 ruckus
52446 rudder
52451 rug
52452 ruined
52453 rule
52454 rumble
52455 rumbling
52456 rummage
52461 rumor
52462 runaround
52463 rundown
52464 runner
52465 running
52466 runny
52511 runt
52512 runway
52513 rupture
52514 rural
52515 ruse
52516 rush
52521 rust
52522 rut
52523 sabbath
52524 sabotage
52525 sacrament
52526 sacred
52531 sacrifice
52532 sadden
52533 saddlebag
52534 saddled
52535 saddling
52536 sadly
52541 sadness
52542 safari
52543 safeguard
52544 safehouse
52545 safely
52546 safeness
52551 saffron
52552 saga
52553 sage
52554 sagging
52555 saggy
52556 said
52561 saint
52562 sake
52563 salad
52564 salami
52565 salaried
52566 salary
52611 saline
52612 salon
52613 saloon
52614 salsa
52615 salt
52616 salutary
52621 salute
52622 salvage
52623 salvaging
52624 salvation
52625 same
52626 sample
52631 sampling
52632 sanction
52633 sanctity
52634 sanctuary
52635 sandal
52636 sandbag
52641 sandbank
52642 sandbar
52643 sandblast
52644 sandbox
52645 sanded
52646 sandfish
52651 sanding
52652 sandlot
52653 sandpaper
52654 sandpit
52655 sandstone
52656 sandstorm
52661 sandworm
52662 sandy
52663 sanitary
52664 sanitizer
52665 sank
52666 santa
53111 sapling
53112 sappiness
53113 sappy
53114 sarcasm
53115 sarcastic
53116 sardine
53121 sash
53122 sasquatch
53123 sassy
53124 satchel
53125 satiable
53126 satin
53131 satirical
53132 satisfied
53133 satisfy
53134 saturate
53135 saturday
53136 sauciness
53141 saucy
53142 sauna
53143 savage
53144 savanna
53145 saved
53146 savings
53151 savior
53152 savor
53153 saxophone
53154 say
53155 scabbed
53156 scabby
53161 scalded
53162 scalding
53163 scale
53164 scaling
53165 scallion
53166 scallop
53211 scalping
53212 scam
53213 scandal
53214 scanner
53215 scanning
53216 scant
53221 scapegoat
53222 scarce
53223 scarcity
53224 scarecrow
53225 scared
53226 scarf
53231 scarily
53232 scariness
53233 scarring
53234 scary
53235 scavenger
53236 scenic
53241 schedule
53242 schematic
53243 scheme
53244 scheming
53245 schilling
53246 schnapps
53251 scholar
53252 science
53253 scientist
53254 scion
53255 scoff
53256 scolding
53261 scone
53262 scoop
53263 scooter
53264 scope
53265 scorch
53266 scorebook
53311 scorecard
53312 scored
53313 scoreless
53314 scorer
53315 scoring
53316 scorn
53321 scorpion
53322 scotch
53323 scoundrel
53324 scoured
53325 scouring
53326 scouting
53331 scouts
53332 scowling
53333 scrabble
53334 scraggly
53335 scrambled
53336 scrambler
53341 scrap
53342 scratch
53343 scrawny
53344 screen
53345 scribble
53346 scribe
53351 scribing
53352 scrimmage
53353 script
53354 scroll
53355 scrooge
53356 scrounger
53361 scrubbed
53362 scrubber
53363 scruffy
53364 scrunch
53365 scrutiny
53366 scuba
53411 scuff
53412 sculptor
53413 sculpture
53414 scurvy
53415 scuttle
53416 secluded
53421 secluding
53422 seclusion
53423 second
53424 secrecy
53425 secret
53426 sectional
53431 sector
53432 secular
53433 securely
53434 security
53435 sedan
53436 sedate
53441 sedation
53442 sedative
53443 sediment
53444 seduce
53445 seducing
53446 segment
53451 seismic
53452 seizing
53453 seldom
53454 selected
53455 selection
53456 selective
53461 selector
53462 self
53463 seltzer
53464 semantic
53465 semester
53466 semicolon
53511 semifinal
53512 seminar
53513 semisoft
53514 semisweet
53515 senate
53516 senator
53521 send
53522 senior
53523 senorita
53524 sensation
53525 sensitive
53526 sensitize
53531 sensually
53532 sensuous
53533 sepia
53534 september
53535 septic
53536 septum
53541 sequel
53542 sequence
53543 sequester
53544 series
53545 sermon
53546 serotonin
53551 serpent
53552 serrated
53553 serve
53554 service
53555 serving
53556 sesame
53561 sessions
53562 setback
53563 setting
53564 settle
53565 settling
53566 setup
53611 sevenfold
53612 seventeen
53613 seventh
53614 seventy
53615 severity
53616 shabby
53621 shack
53622 shaded
53623 shadily
53624 shadiness
53625 shading
53626 shadow
53631 shady
53632 shaft
53633 shakable
53634 shakily
53635 shakiness
53636 shaking
53641 shaky
53642 shale
53643 shallot
53644 shallow
53645 shame
53646 shampoo
53651 shamrock
53652 shank
53653 shanty
53654 shape
53655 shaping
53656 share
53661 sharpener
53662 sharper
53663 sharpie
53664 sharply
53665 sharpness
53666 shawl
54111 sheath
54112 shed
54113 sheep
54114 sheet
54115 shelf
54116 shell
54121 shelter
54122 shelve
54123 shelving
54124 sherry
54125 shield
54126 shifter
54131 shifting
54132 shiftless
54133 shifty
54134 shimmer
54135 shimmy
54136 shindig
54141 shine
54142 shingle
54143 shininess
54144 shining
54145 shiny
54146 ship
54151 shirt
54152 shivering
54153 shock
54154 shone
54155 shoplift
54156 shopper
54161 shopping
54162 shoptalk
54163 shore
54164 shortage
54165 shortcake
54166 shortcut
54211 shorten
54212 shorter
54213 shorthand
54214 shortlist
54215 shortly
54216 shortness
54221 shorts
54222 shortwave
54223 shorty
54224 shout
54225 shove
54226 showbiz
54231 showcase
54232 showdown
54233 shower
54234 showgirl
54235 showing
54236 showman
54241 shown
54242 showoff
54243 showpiece
54244 showplace
54245 showroom
54246 showy
54251 shrank
54252 shrapnel
54253 shredder
54254 shredding
54255 shrewdly
54256 shriek
54261 shrill
54262 shrimp
54263 shrine
54264 shrink
54265 shrivel
54266 shrouded
54311 shrubbery
54312 shrubs
54313 shrug
54314 shrunk
54315 shucking
54316 shudder
54321 shuffle
54322 shuffling
54323 shun
54324 shush
54325 shut
54326 shy
54331 siamese
54332 siberian
54333 sibling
54334 siding
54335 sierra
54336 siesta
54341 sift
54342 sighing
54343 silenced
54344 silencer
54345 silent
54346 silica
54351 silicon
54352 silk
54353 silliness
54354 silly
54355 silo
54356 silt
54361 silver
54362 similarly
54363 simile
54364 simmering
54365 simple
54366 simplify
54411 simply
54412 sincere
54413 sincerity
54414 singer
54415 singing
54416 single
54421 singular
54422 sinister
54423 sinless
54424 sinner
54425 sinuous
54426 sip
54431 siren
54432 sister
54433 sitcom
54434 sitter
54435 sitting
54436 situated
54441 situation
54442 sixfold
54443 sixteen
54444 sixth
54445 sixties
54446 sixtieth
54451 sixtyfold
54452 sizable
54453 sizably
54454 size
54455 sizing
54456 sizzle
54461 sizzling
54462 skater
54463 skating
54464 skedaddle
54465 skeletal
54466 skeleton
54511 skeptic
54512 sketch
54513 skewed
54514 skewer
54515 skid
54516 skied
54521 skier
54522 skies
54523 skiing
54524 skilled
54525 skillet
54526 skillful
54531 skimmed
54532 skimmer
54533 skimming
54534 skimpily
54535 skincare
54536 skinhead
54541 skinless
54542 skinning
54543 skinny
54544 skintight
54545 skipper
54546 skipping
54551 skirmish
54552 skirt
54553 skittle
54554 skydiver
54555 skylight
54556 skyline
54561 skype
54562 skyrocket
54563 skyward
54564 slab
54565 slacked
54566 slacker
54611 slacking
54612 slackness
54613 slacks
54614 slain
54615 slam
54616 slander
54621 slang
54622 slapping
54623 slapstick
54624 slashed
54625 slashing
54626 slate
54631 slather
54632 slaw
54633 sled
54634 sleek
54635 sleep
54636 sleet
54641 sleeve
54642 slept
54643 sliceable
54644 sliced
54645 slicer
54646 slicing
54651 slick
54652 slider
54653 slideshow
54654 sliding
54655 slighted
54656 slighting
54661 slightly
54662 slimness
54663 slimy
54664 slinging
54665 slingshot
54666 slinky
55111 slip
55112 slit
55113 sliver
55114 slobbery
55115 slogan
55116 sloped
55121 sloping
55122 sloppily
55123 sloppy
55124 slot
55125 slouching
55126 slouchy
55131 sludge
55132 slug
55133 slum
55134 slurp
55135 slush
55136 sly
55141 small
55142 smartly
55143 smartness
55144 smasher
55145 smashing
55146 smashup
55151 smell
55152 smelting
55153 smile
55154 smilingly
55155 smirk
55156 smite
55161 smith
55162 smitten
55163 smock
55164 smog
55165 smoked
55166 smokeless
55211 smokiness
55212 smoking
55213 smoky
55214 smolder
55215 smooth
55216 smother
55221 smudge
55222 smudgy
55223 smuggler
55224 smuggling
55225 smugly
55226 smugness
55231 snack
55232 snagged
55233 snaking
55234 snap
55235 snare
55236 snarl
55241 snazzy
55242 sneak
55243 sneer
55244 sneeze
55245 sneezing
55246 snide
55251 sniff
55252 snippet
55253 snipping
55254 snitch
55255 snooper
55256 snooze
55261 snore
55262 snoring
55263 snorkel
55264 snort
55265 snout
55266 snowbird
55311 snowboard
55312 snowbound
55313 snowcap
55314 snowdrift
55315 snowdrop
55316 snowfall
55321 snowfield
55322 snowflake
55323 snowiness
55324 snowless
55325 snowman
55326 snowplow
55331 snowshoe
55332 snowstorm
55333 snowsuit
55334 snowy
55335 snub
55336 snuff
55341 snuggle
55342 snugly
55343 snugness
55344 speak
55345 spearfish
55346 spearhead
55351 spearman
55352 spearmint
55353 species
55354 specimen
55355 specked
55356 speckled
55361 specks
55362 spectacle
55363 spectator
55364 spectrum
55365 speculate
55366 speech
55411 speed
55412 spellbind
55413 speller
55414 spelling
55415 spendable
55416 spender
55421 spending
55422 spent
55423 spew
55424 sphere
55425 spherical
55426 sphinx
55431 spider
55432 spied
55433 spiffy
55434 spill
55435 spilt
55436 spinach
55441 spinal
55442 spindle
55443 spinner
55444 spinning
55445 spinout
55446 spinster
55451 spiny
55452 spiral
55453 spirited
55454 spiritism
55455 spirits
55456 spiritual
55461 splashed
55462 splashing
55463 splashy
55464 splatter
55465 spleen
55466 splendid
55511 splendor
55512 splice
55513 splicing
55514 splinter
55515 splotchy
55516 splurge
55521 spoilage
55522 spoiled
55523 spoiler
55524 spoiling
55525 spoils
55526 spoken
55531 spokesman
55532 sponge
55533 spongy
55534 sponsor
55535 spoof
55536 spookily
55541 spooky
55542 spool
55543 spoon
55544 spore
55545 sporting
55546 sports
55551 sporty
55552 spotless
55553 spotlight
55554 spotted
55555 spotter
55556 spotting
55561 spotty
55562 spousal
55563 spouse
55564 spout
55565 sprain
55566 sprang
55611 sprawl
55612 spray
55613 spree
55614 sprig
55615 spring
55616 sprinkled
55621 sprinkler
55622 sprint
55623 sprite
55624 sprout
55625 spruce
55626 sprung
55631 spry
55632 spud
55633 spur
55634 sputter
55635 spyglass
55636 squabble
55641 squad
55642 squall
55643 squander
55644 squash
55645 squatted
55646 squatter
55651 squatting
55652 squeak
55653 squealer
55654 squealing
55655 squeamish
55656 squeegee
55661 squeeze
55662 squeezing
55663 squid
55664 squiggle
55665 squiggly
55666 squint
56111 squire
56112 squirt
56113 squishier
56114 squishy
56115 stability
56116 stabilize
56121 stable
56122 stack
56123 stadium
56124 staff
56125 stage
56126 staging
56131 stagnant
56132 stagnate
56133 stainable
56134 stained
56135 staining
56136 stainless
56141 stalemate
56142 staleness
56143 stalling
56144 stallion
56145 stamina
56146 stammer
56151 stamp
56152 stand
56153 stank
56154 staple
56155 stapling
56156 starboard
56161 starch
56162 stardom
56163 stardust
56164 starfish
56165 stargazer
56166 staring
56211 stark
56212 starless
56213 starlet
56214 starlight
56215 starlit
56216 starring
56221 starry
56222 starship
56223 starter
56224 starting
56225 startle
56226 startling
56231 startup
56232 starved
56233 starving
56234 stash
56235 state
56236 static
56241 statistic
56242 statue
56243 stature
56244 status
56245 statute
56246 statutory
56251 staunch
56252 stays
56253 steadfast
56254 steadier
56255 steadily
56256 steadying
56261 steam
56262 steed
56263 steep
56264 steerable
56265 steering
56266 steersman
56311 stegosaur
56312 stellar
56313 stem
56314 stench
56315 stencil
56316 step
56321 stereo
56322 sterile
56323 sterility
56324 sterilize
56325 sterling
56326 sternness
56331 sternum
56332 stew
56333 stick
56334 stiffen
56335 stiffly
56336 stiffness
56341 stifle
56342 stifling
56343 stillness
56344 stilt
56345 stimulant
56346 stimulate
56351 stimuli
56352 stimulus
56353 stinger
56354 stingily
56355 stinging
56356 stingray
56361 stingy
56362 stinking
56363 stinky
56364 stipend
56365 stipulate
56366 stir
56411 stitch
56412 stock
56413 stoic
56414 stoke
56415 stole
56416 stomp
56421 stonewall
56422 stoneware
56423 stonework
56424 stoning
56425 stony
56426 stood
56431 stooge
56432 stool
56433 stoop
56434 stoplight
56435 stoppable
56436 stoppage
56441 stopped
56442 stopper
56443 stopping
56444 stopwatch
56445 storable
56446 storage
56451 storeroom
56452 storewide
56453 storm
56454 stout
56455 stove
56456 stowaway
56461 stowing
56462 straddle
56463 straggler
56464 strained
56465 strainer
56466 straining
56511 strangely
56512 stranger
56513 strangle
56514 strategic
56515 strategy
56516 stratus
56521 straw
56522 stray
56523 streak
56524 stream
56525 street
56526 strength
56531 strenuous
56532 strep
56533 stress
56534 stretch
56535 strewn
56536 stricken
56541 strict
56542 stride
56543 strife
56544 strike
56545 striking
56546 strive
56551 striving
56552 strobe
56553 strode
56554 stroller
56555 strongbox
56556 strongly
56561 strongman
56562 struck
56563 structure
56564 strudel
56565 struggle
56566 strum
56611 strung
56612 strut
56613 stubbed
56614 stubble
56615 stubbly
56616 stubborn
56621 stucco
56622 stuck
56623 student
56624 studied
56625 studio
56626 study
56631 stuffed
56632 stuffing
56633 stuffy
56634 stumble
56635 stumbling
56636 stump
56641 stung
56642 stunned
56643 stunner
56644 stunning
56645 stunt
56646 stupor
56651 sturdily
56652 sturdy
56653 styling
56654 stylishly
56655 stylist
56656 stylized
56661 stylus
56662 suave
56663 subarctic
56664 subatomic
56665 subdivide
56666 subdued
61111 subduing
61112 subfloor
61113 subgroup
61114 subheader
61115 subject
61116 sublease
61121 sublet
61122 sublevel
61123 sublime
61124 submarine
61125 submerge
61126 submersed
61131 submitter
61132 subpanel
61133 subpar
61134 subplot
61135 subprime
61136 subscribe
61141 subscript
61142 subsector
61143 subside
61144 subsiding
61145 subsidize
61146 subsidy
61151 subsoil
61152 subsonic
61153 substance
61154 subsystem
61155 subtext
61156 subtitle
61161 subtly
61162 subtotal
61163 subtract
61164 subtype
61165 suburb
61166 subway
61211 subwoofer
61212 subzero
61213 succulent
61214 such
61215 suction
61216 sudden
61221 sudoku
61222 suds
61223 sufferer
61224 suffering
61225 suffice
61226 suffix
61231 suffocate
61232 suffrage
61233 sugar
61234 suggest
61235 suing
61236 suitable
61241 suitably
61242 suitcase
61243 suitor
61244 sulfate
61245 sulfide
61246 sulfite
61251 sulfur
61252 sulk
61253 sullen
61254 sulphate
61255 sulphuric
61256 sultry
61261 superbowl
61262 superglue
61263 superhero
61264 superior
61265 superjet
61266 superman
61311 supermom
61312 supernova
61313 supervise
61314 supper
61315 supplier
61316 supply
61321 support
61322 supremacy
61323 supreme
61324 surcharge
61325 surely
61326 sureness
61331 surface
61332 surfacing
61333 surfboard
61334 surfer
61335 surgery
61336 surgical
61341 surging
61342 surname
61343 surpass
61344 surplus
61345 surprise
61346 surreal
61351 surrender
61352 surrogate
61353 surround
61354 survey
61355 survival
61356 survive
61361 surviving
61362 survivor
61363 sushi
61364 suspect
61365 suspend
61366 suspense
61411 sustained
61412 sustainer
61413 swab
61414 swaddling
61415 swagger
61416 swampland
61421 swan
61422 swapping
61423 swarm
61424 sway
61425 swear
61426 sweat
61431 sweep
61432 swell
61433 swept
61434 swerve
61435 swifter
61436 swiftly
61441 swiftness
61442 swimmable
61443 swimmer
61444 swimming
61445 swimsuit
61446 swimwear
61451 swinger
61452 swinging
61453 swipe
61454 swirl
61455 switch
61456 swivel
61461 swizzle
61462 swooned
61463 swoop
61464 swoosh
61465 swore
61466 sworn
61511 swung
61512 sycamore
61513 sympathy
61514 symphonic
61515 symphony
61516 symptom
61521 synapse
61522 syndrome
61523 synergy
61524 synopses
61525 synopsis
61526 synthesis
61531 synthetic
61532 syrup
61533 system
61534 t-shirt
61535 tabasco
61536 tabby
61541 tableful
61542 tables
61543 tablet
61544 tableware
61545 tabloid
61546 tackiness
61551 tacking
61552 tackle
61553 tackling
61554 tacky
61555 taco
61556 tactful
61561 tactical
61562 tactics
61563 tactile
61564 tactless
61565 tadpole
61566 taekwondo
61611 tag
61612 tainted
61613 take
61614 taking
61615 talcum
61616 talisman
61621 tall
61622 talon
61623 tamale
61624 tameness
61625 tamer
61626 tamper
61631 tank
61632 tanned
61633 tannery
61634 tanning
61635 tantrum
61636 tapeless
61641 tapered
61642 tapering
61643 tapestry
61644 tapioca
61645 tapping
61646 taps
61651 tarantula
61652 target
61653 tarmac
61654 tarnish
61655 tarot
61656 tartar
61661 tartly
61662 tartness
61663 task
61664 tassel
61665 taste
61666 tastiness
62111 tasting
62112 tasty
62113 tattered
62114 tattle
62115 tattling
62116 tattoo
62121 taunt
62122 tavern
62123 thank
62124 that
62125 thaw
62126 theater
62131 theatrics
62132 thee
62133 theft
62134 theme
62135 theology
62136 theorize
62141 thermal
62142 thermos
62143 thesaurus
62144 these
62145 thesis
62146 thespian
62151 thicken
62152 thicket
62153 thickness
62154 thieving
62155 thievish
62156 thigh
62161 thimble
62162 thing
62163 think
62164 thinly
62165 thinner
62166 thinness
62211 thinning
62212 thirstily
62213 thirsting
62214 thirsty
62215 thirteen
62216 thirty
62221 thong
62222 thorn
62223 those
62224 thousand
62225 thrash
62226 thread
62231 threaten
62232 threefold
62233 thrift
62234 thrill
62235 thrive
62236 thriving
62241 throat
62242 throbbing
62243 throng
62244 throttle
62245 throwaway
62246 throwback
62251 thrower
62252 throwing
62253 thud
62254 thumb
62255 thumping
62256 thursday
62261 thus
62262 thwarting
62263 thyself
62264 tiara
62265 tibia
62266 tidal
62311 tidbit
62312 tidiness
62313 tidings
62314 tidy
62315 tiger
62316 tighten
62321 tightly
62322 tightness
62323 tightrope
62324 tightwad
62325 tigress
62326 tile
62331 tiling
62332 till
62333 tilt
62334 timid
62335 timing
62336 timothy
62341 tinderbox
62342 tinfoil
62343 tingle
62344 tingling
62345 tingly
62346 tinker
62351 tinkling
62352 tinsel
62353 tinsmith
62354 tint
62355 tinwork
62356 tiny
62361 tipoff
62362 tipped
62363 tipper
62364 tipping
62365 tiptoeing
62366 tiptop
62411 tiring
62412 tissue
62413 trace
62414 tracing
62415 track
62416 traction
62421 tractor
62422 trade
62423 trading
62424 tradition
62425 traffic
62426 tragedy
62431 trailing
62432 trailside
62433 train
62434 traitor
62435 trance
62436 tranquil
62441 transfer
62442 transform
62443 translate
62444 transpire
62445 transport
62446 transpose
62451 trapdoor
62452 trapeze
62453 trapezoid
62454 trapped
62455 trapper
62456 trapping
62461 traps
62462 trash
62463 travel
62464 traverse
62465 travesty
62466 tray
62511 treachery
62512 treading
62513 treadmill
62514 treason
62515 treat
62516 treble
62521 tree
62522 trekker
62523 tremble
62524 trembling
62525 tremor
62526 trench
62531 trend
62532 trespass
62533 triage
62534 trial
62535 triangle
62536 tribesman
62541 tribunal
62542 tribune
62543 tributary
62544 tribute
62545 triceps
62546 trickery
62551 trickily
62552 tricking
62553 trickle
62554 trickster
62555 tricky
62556 tricolor
62561 tricycle
62562 trident
62563 tried
62564 trifle
62565 trifocals
62566 trillion
62611 trilogy
62612 trimester
62613 trimmer
62614 trimming
62615 trimness
62616 trinity
62621 trio
62622 tripod
62623 tripping
62624 triumph
62625 trivial
62626 trodden
62631 trolling
62632 trombone
62633 trophy
62634 tropical
62635 tropics
62636 trouble
62641 troubling
62642 trough
62643 trousers
62644 trout
62645 trowel
62646 truce
62651 truck
62652 truffle
62653 trump
62654 trunks
62655 trustable
62656 trustee
62661 trustful
62662 trusting
62663 trustless
62664 truth
62665 try
62666 tubby
63111 tubeless
63112 tubular
63113 tucking
63114 tuesday
63115 tug
63116 tuition
63121 tulip
63122 tumble
63123 tumbling
63124 tummy
63125 turban
63126 turbine
63131 turbofan
63132 turbojet
63133 turbulent
63134 turf
63135 turkey
63136 turmoil
63141 turret
63142 turtle
63143 tusk
63144 tutor
63145 tutu
63146 tux
63151 tweak
63152 tweed
63153 tweet
63154 tweezers
63155 twelve
63156 twentieth
63161 twenty
63162 twerp
63163 twice
63164 twiddle
63165 twiddling
63166 twig
63211 twilight
63212 twine
63213 twins
63214 twirl
63215 twistable
63216 twisted
63221 twister
63222 twisting
63223 twisty
63224 twitch
63225 twitter
63226 tycoon
63231 tying
63232 tyke
63233 udder
63234 ultimate
63235 ultimatum
63236 ultra
63241 umbilical
63242 umbrella
63243 umpire
63244 unabashed
63245 unable
63246 unadorned
63251 unadvised
63252 unafraid
63253 unaired
63254 unaligned
63255 unaltered
63256 unarmored
63261 unashamed
63262 unaudited
63263 unawake
63264 unaware
63265 unbaked
63266 unbalance
63311 unbeaten
63312 unbend
63313 unbent
63314 unbiased
63315 unbitten
63316 unblended
63321 unblessed
63322 unblock
63323 unbolted
63324 unbounded
63325 unboxed
63326 unbraided
63331 unbridle
63332 unbroken
63333 unbuckled
63334 unbundle
63335 unburned
63336 unbutton
63341 uncanny
63342 uncapped
63343 uncaring
63344 uncertain
63345 unchain
63346 unchanged
63351 uncharted
63352 uncheck
63353 uncivil
63354 unclad
63355 unclaimed
63356 unclamped
63361 unclasp
63362 uncle
63363 unclip
63364 uncloak
63365 unclog
63366 unclothed
63411 uncoated
63412 uncoiled
63413 uncolored
63414 uncombed
63415 uncommon
63416 uncooked
63421 uncork
63422 uncorrupt
63423 uncounted
63424 uncouple
63425 uncouth
63426 uncover
63431 uncross
63432 uncrown
63433 uncrushed
63434 uncured
63435 uncurious
63436 uncurled
63441 uncut
63442 undamaged
63443 undated
63444 undaunted
63445 undead
63446 undecided
63451 undefined
63452 underage
63453 underarm
63454 undercoat
63455 undercook
63456 undercut
63461 underdog
63462 underdone
63463 underfed
63464 underfeed
63465 underfoot
63466 undergo
63511 undergrad
63512 underhand
63513 underline
63514 underling
63515 undermine
63516 undermost
63521 underpaid
63522 underpass
63523 underpay
63524 underrate
63525 undertake
63526 undertone
63531 undertook
63532 undertow
63533 underuse
63534 underwear
63535 underwent
63536 underwire
63541 undesired
63542 undiluted
63543 undivided
63544 undocked
63545 undoing
63546 undone
63551 undrafted
63552 undress
63553 undrilled
63554 undusted
63555 undying
63556 unearned
63561 unearth
63562 unease
63563 uneasily
63564 uneasy
63565 uneatable
63566 uneaten
63611 unedited
63612 unelected
63613 unending
63614 unengaged
63615 unenvied
63616 unequal
63621 unethical
63622 uneven
63623 unexpired
63624 unexposed
63625 unfailing
63626 unfair
63631 unfasten
63632 unfazed
63633 unfeeling
63634 unfiled
63635 unfilled
63636 unfitted
63641 unfitting
63642 unfixable
63643 unfixed
63644 unflawed
63645 unfocused
63646 unfold
63651 unfounded
63652 unframed
63653 unfreeze
63654 unfrosted
63655 unfrozen
63656 unfunded
63661 unglazed
63662 ungloved
63663 unglue
63664 ungodly
63665 ungraded
63666 ungreased
64111 unguarded
64112 unguided
64113 unhappily
64114 unhappy
64115 unharmed
64116 unhealthy
64121 unheard
64122 unhearing
64123 unheated
64124 unhelpful
64125 unhidden
64126 unhinge
64131 unhitched
64132 unholy
64133 unhook
64134 unicorn
64135 unicycle
64136 unified
64141 unifier
64142 uniformed
64143 uniformly
64144 unify
64145 unimpeded
64146 uninjured
64151 uninstall
64152 uninsured
64153 uninvited
64154 union
64155 uniquely
64156 unisexual
64161 unison
64162 unissued
64163 unit
64164 universal
64165 universe
64166 unjustly
64211 unkempt
64212 unkind
64213 unknotted
64214 unknowing
64215 unknown
64216 unlaced
64221 unlatch
64222 unlawful
64223 unleaded
64224 unlearned
64225 unleash
64226 unless
64231 unleveled
64232 unlighted
64233 unlikable
64234 unlimited
64235 unlined
64236 unlinked
64241 unlisted
64242 unlit
64243 unlivable
64244 unloaded
64245 unloader
64246 unlocked
64251 unlocking
64252 unlovable
64253 unloved
64254 unlovely
64255 unloving
64256 unluckily
64261 unlucky
64262 unmade
64263 unmanaged
64264 unmanned
64265 unmapped
64266 unmarked
64311 unmasked
64312 unmasking
64313 unmatched
64314 unmindful
64315 unmixable
64316 unmixed
64321 unmolded
64322 unmoral
64323 unmovable
64324 unmoved
64325 unmoving
64326 unnamable
64331 unnamed
64332 unnatural
64333 unneeded
64334 unnerve
64335 unnerving
64336 unnoticed
64341 unopened
64342 unopposed
64343 unpack
64344 unpadded
64345 unpaid
64346 unpainted
64351 unpaired
64352 unpaved
64353 unpeeled
64354 unpicked
64355 unpiloted
64356 unpinned
64361 unplanned
64362 unplanted
64363 unpleased
64364 unpledged
64365 unplowed
64366 unplug
64411 unpopular
64412 unproven
64413 unquote
64414 unranked
64415 unrated
64416 unraveled
64421 unreached
64422 unread
64423 unreal
64424 unreeling
64425 unrefined
64426 unrelated
64431 unrented
64432 unrest
64433 unretired
64434 unrevised
64435 unrigged
64436 unripe
64441 unrivaled
64442 unroasted
64443 unrobed
64444 unroll
64445 unruffled
64446 unruly
64451 unrushed
64452 unsaddle
64453 unsafe
64454 unsaid
64455 unsalted
64456 unsaved
64461 unsavory
64462 unscathed
64463 unscented
64464 unscrew
64465 unsealed
64466 unseated
64511 unsecured
64512 unseeing
64513 unseemly
64514 unseen
64515 unselect
64516 unselfish
64521 unsent
64522 unsettled
64523 unshackle
64524 unshaken
64525 unshaved
64526 unshaven
64531 unsheathe
64532 unshipped
64533 unsightly
64534 unsigned
64535 unskilled
64536 unsliced
64541 unsmooth
64542 unsnap
64543 unsocial
64544 unsoiled
64545 unsold
64546 unsolved
64551 unsorted
64552 unspoiled
64553 unspoken
64554 unstable
64555 unstaffed
64556 unstamped
64561 unsteady
64562 unsterile
64563 unstirred
64564 unstitch
64565 unstopped
64566 unstuck
64611 unstuffed
64612 unstylish
64613 unsubtle
64614 unsubtly
64615 unsuited
64616 unsure
64621 unsworn
64622 untagged
64623 untainted
64624 untaken
64625 untamed
64626 untangled
64631 untapped
64632 untaxed
64633 unthawed
64634 unthread
64635 untidy
64636 untie
64641 until
64642 untimed
64643 untimely
64644 untitled
64645 untoasted
64646 untold
64651 untouched
64652 untracked
64653 untrained
64654 untreated
64655 untried
64656 untrimmed
64661 untrue
64662 untruth
64663 unturned
64664 untwist
64665 untying
64666 unusable
65111 unused
65112 unusual
65113 unvalued
65114 unvaried
65115 unvarying
65116 unveiled
65121 unveiling
65122 unvented
65123 unviable
65124 unvisited
65125 unvocal
65126 unwanted
65131 unwarlike
65132 unwary
65133 unwashed
65134 unwatched
65135 unweave
65136 unwed
65141 unwelcome
65142 unwell
65143 unwieldy
65144 unwilling
65145 unwind
65146 unwired
65151 unwitting
65152 unwomanly
65153 unworldly
65154 unworn
65155 unworried
65156 unworthy
65161 unwound
65162 unwoven
65163 unwrapped
65164 unwritten
65165 unzip
65166 upbeat
65211 upchuck
65212 upcoming
65213 upcountry
65214 update
65215 upfront
65216 upgrade
65221 upheaval
65222 upheld
65223 uphill
65224 uphold
65225 uplifted
65226 uplifting
65231 upload
65232 upon
65233 upper
65234 upright
65235 uprising
65236 upriver
65241 uproar
65242 uproot
65243 upscale
65244 upside
65245 upstage
65246 upstairs
65251 upstart
65252 upstate
65253 upstream
65254 upstroke
65255 upswing
65256 uptake
65261 uptight
65262 uptown
65263 upturned
65264 upward
65265 upwind
65266 uranium
65311 urban
65312 urchin
65313 urethane
65314 urgency
65315 urgent
65316 urging
65321 urologist
65322 urology
65323 usable
65324 usage
65325 useable
65326 used
65331 uselessly
65332 user
65333 usher
65334 usual
65335 utensil
65336 utility
65341 utilize
65342 utmost
65343 utopia
65344 utter
65345 vacancy
65346 vacant
65351 vacate
65352 vacation
65353 vagabond
65354 vagrancy
65355 vagrantly
65356 vaguely
65361 vagueness
65362 valiant
65363 valid
65364 valium
65365 valley
65366 valuables
65411 value
65412 vanilla
65413 vanish
65414 vanity
65415 vanquish
65416 vantage
65421 vaporizer
65422 variable
65423 variably
65424 varied
65425 variety
65426 various
65431 varmint
65432 varnish
65433 varsity
65434 varying
65435 vascular
65436 vaseline
65441 vastly
65442 vastness
65443 veal
65444 vegan
65445 veggie
65446 vehicular
65451 velcro
65452 velocity
65453 velvet
65454 vendetta
65455 vending
65456 vendor
65461 veneering
65462 vengeful
65463 venomous
65464 ventricle
65465 venture
65466 venue
65511 venus
65512 verbalize
65513 verbally
65514 verbose
65515 verdict
65516 verify
65521 verse
65522 version
65523 versus
65524 vertebrae
65525 vertical
65526 vertigo
65531 very
65532 vessel
65533 vest
65534 veteran
65535 veto
65536 vexingly
65541 viability
65542 viable
65543 vibes
65544 vice
65545 vicinity
65546 victory
65551 video
65552 viewable
65553 viewer
65554 viewing
65555 viewless
65556 viewpoint
65561 vigorous
65562 village
65563 villain
65564 vindicate
65565 vineyard
65566 vintage
65611 violate
65612 violation
65613 violator
65614 violet
65615 violin
65616 viper
65621 viral
65622 virtual
65623 virtuous
65624 virus
65625 visa
65626 viscosity
65631 viscous
65632 viselike
65633 visible
65634 visibly
65635 vision
65636 visiting
65641 visitor
65642 visor
65643 vista
65644 vitality
65645 vitalize
65646 vitally
65651 vitamins
65652 vivacious
65653 vividly
65654 vividness
65655 vixen
65656 vocalist
65661 vocalize
65662 vocally
65663 vocation
65664 voice
65665 voicing
65666 void
66111 volatile
66112 volley
66113 voltage
66114 volumes
66115 voter
66116 voting
66121 voucher
66122 vowed
66123 vowel
66124 voyage
66125 wackiness
66126 wad
66131 wafer
66132 waffle
66133 waged
66134 wager
66135 wages
66136 waggle
66141 wagon
66142 wake
66143 waking
66144 walk
66145 walmart
66146 walnut
66151 walrus
66152 waltz
66153 wand
66154 wannabe
66155 wanted
66156 wanting
66161 wasabi
66162 washable
66163 washbasin
66164 washboard
66165 washbowl
66166 washcloth
66211 washday
66212 washed
66213 washer
66214 washhouse
66215 washing
66216 washout
66221 washroom
66222 washstand
66223 washtub
66224 wasp
66225 wasting
66226 watch
66231 water
66232 waviness
66233 waving
66234 wavy
66235 whacking
66236 whacky
66241 wham
66242 wharf
66243 wheat
66244 whenever
66245 whiff
66246 whimsical
66251 whinny
66252 whiny
66253 whisking
66254 whoever
66255 whole
66256 whomever
66261 whoopee
66262 whooping
66263 whoops
66264 why
66265 wick
66266 widely
66311 widen
66312 widget
66313 widow
66314 width
66315 wieldable
66316 wielder
66321 wife
66322 wifi
66323 wikipedia
66324 wildcard
66325 wildcat
66326 wilder
66331 wildfire
66332 wildfowl
66333 wildland
66334 wildlife
66335 wildly
66336 wildness
66341 willed
66342 willfully
66343 willing
66344 willow
66345 willpower
66346 wilt
66351 wimp
66352 wince
66353 wincing
66354 wind
66355 wing
66356 winking
66361 winner
66362 winnings
66363 winter
66364 wipe
66365 wired
66366 wireless
66411 wiring
66412 wiry
66413 wisdom
66414 wise
66415 wish
66416 wisplike
66421 wispy
66422 wistful
66423 wizard
66424 wobble
66425 wobbling
66426 wobbly
66431 wok
66432 wolf
66433 wolverine
66434 womanhood
66435 womankind
66436 womanless
66441 womanlike
66442 womanly
66443 womb
66444 woof
66445 wooing
66446 wool
66451 woozy
66452 word
66453 work
66454 worried
66455 worrier
66456 worrisome
66461 worry
66462 worsening
66463 worshiper
66464 worst
66465 wound
66466 woven
66511 wow
66512 wrangle
66513 wrath
66514 wreath
66515 wreckage
66516 wrecker
66521 wrecking
66522 wrench
66523 wriggle
66524 wriggly
66525 wrinkle
66526 wrinkly
66531 wrist
66532 writing
66533 written
66534 wrongdoer
66535 wronged
66536 wrongful
66541 wrongly
66542 wrongness
66543 wrought
66544 xbox
66545 xerox
66546 yahoo
66551 yam
66552 yanking
66553 yapping
66554 yard
66555 yarn
66556 yeah
66561 yearbook
66562 yearling
66563 yearly
66564 yearning
66565 yeast
66566 yelling
66611 yelp
66612 yen
66613 yesterday
66614 yiddish
66615 yield
66616 yin
66621 yippee
66622 yo-yo
66623 yodel
66624 yoga
66625 yogurt
66626 yonder
66631 yoyo
66632 yummy
66633 zap
66634 zealous
66635 zebra
66636 zen
66641 zeppelin
66642 zero
66643 zestfully
66644 zesty
66645 zigzagged
66646 zipfile
66651 zipping
66652 zippy
66653 zips
66654 zit
66655 zodiac
66656 zombie
66661 zone
66662 zoning
66663 zookeeper
66664 zoologist
66665 zoology
66666 zoom
diceware-1.0.1/diceware/wordlists/wordlist_en_nouns.txt 0000664 0000000 0000000 00000147307 14732404111 0023436 0 ustar 00root root 0000000 0000000 scowls
zest
regime
heist
films
bling
lent
hassle
collar
flock
mountain
river
caveman
row
spyglass
visions
jelly
cymbal
pedestrian
joke
nets
money
songbird
scuba
toddy
litter
ginger
gyms
paws
kits
human
mandolin
molt
lyric
clot
plural
racism
senator
museums
goose
rams
artwork
thongs
reveler
dweeb
scale
distress
looms
burial
native
trio
spirits
refuse
worrier
rave
mercy
prong
plethora
mojo
captives
edicts
creamer
grips
devices
hobo
dips
irony
dominion
kilo
manicure
sequel
locust
yew
pills
penalty
veggie
airbag
charge
lance
safe
regalia
kindling
gent
cloud
volley
democrats
marks
flutes
fracture
crepe
fork
jails
union
seltzer
bores
coats
motel
fairies
uncle
garage
expense
role
context
form
brush
puma
thief
snare
pixy
pageant
hedge
colonies
bishops
vessel
glimpses
peanuts
ordeal
cakes
miles
dogmas
slang
pranks
sibling
laxative
gnat
dip
fuel
cone
edit
imprint
musk
derby
crush
ticks
abstinence
statues
fidelity
rein
swans
poodle
cads
skunks
togas
gutters
comics
apology
lobbies
bundle
helpline
cook
hunter
idol
loader
blow
relative
feminism
sword
rugs
corner
gumball
sail
caps
rarity
putt
class
squads
tourist
mourners
goblets
scooter
shark
tuition
card
wallet
luge
alcohol
swing
studio
arson
player
convent
jogging
disc
hide
babes
bridges
switch
thunder
spearman
bonuses
daddy
sorcery
cookbook
net
selector
pelican
hubcap
umps
ticket
blizzard
escape
phonics
handball
dupe
ink
prongs
lamps
rocks
snap
inlay
hatbox
quakes
scalp
spare
canister
echo
award
pitcher
robots
fringe
dregs
wines
gust
joey
conduct
gyration
night
cab
bees
entries
bagel
ivory
squire
hairdo
energy
talent
agency
elder
bonfires
bacon
dues
plantation
joust
charter
occasion
icing
salad
walk
clamp
diaper
scull
hosts
spuds
stall
mines
wives
cortex
heroes
clasps
lane
paint
snobs
farms
sweep
tunnel
cups
bear
fangs
cruelty
moans
proof
swats
owners
wasabi
riots
cheese
photon
militia
gurus
sparks
chisel
borough
scream
effort
trifles
edge
metro
rats
mediums
novice
internet
missile
manhood
petal
spoilage
bread
oil
curry
sills
bit
gun
festival
scrooge
quality
escort
dub
dares
slot
bangs
rite
socket
candle
fairy
harpy
anthems
damages
hound
leaf
serf
splice
profit
fingers
gout
flaxseed
lust
feast
surprise
trolls
zodiacs
scoundrel
activists
deity
sloth
bottles
limo
hamlet
flash
comet
salon
garbage
entree
picnics
cursor
fabrics
kidney
dancers
pellet
scopes
gulp
doggy
porch
lute
junction
chill
ammo
letters
codes
snake
disease
sympathy
mishap
sprains
ripple
crusaders
baby
facility
courier
finale
writing
fragrance
fees
mocker
earwig
tantrum
hacking
flatware
vicinity
minks
pram
session
earful
shunt
grudge
straw
playtime
girth
straps
exhaust
pushover
can
bits
terror
metal
chariot
men
terms
trombone
bias
concepts
quake
purl
insults
tipper
manger
keyboard
pope
coeds
lobes
oafs
reader
views
orders
empress
activist
jungles
severity
brail
doctrine
tractor
rodeo
shelves
rod
toga
lips
bend
sums
darkrooms
grunge
bite
carving
gang
heel
rotors
couples
lanes
dissenter
groups
balconies
clods
monogram
beard
genres
backhoe
plums
alumni
schedule
taper
whim
riff
stories
peer
chop
statutes
posers
slacks
burro
urns
adversary
cage
blocks
figs
acts
well
light
reseller
weight
ratios
heathen
whisk
plan
babe
prose
puff
jokers
colonel
puppet
guise
retainer
subplot
rodent
underdog
diva
pugs
glut
fighter
aprons
dare
clones
gravy
sender
gate
muff
snowsuit
devourer
gallon
affair
nuke
oboe
mirrors
timothy
ricotta
spool
pear
locket
fact
village
laptop
mower
hair
revolver
brawls
ankle
dots
hour
grill
chin
recovery
result
helms
stags
starlet
fallacy
wisps
opiate
flowers
thrones
bout
farmland
contacts
trickery
footwear
cat
briefs
frill
link
pedal
flyover
path
stews
paradox
reactor
version
push
salts
quilt
output
pikes
affairs
conscript
lock
landfill
superman
apache
fraction
pupils
gloss
wafer
nurse
air
habitat
repeater
mars
deals
play
fob
mothball
chefs
victor
bingo
footsie
passcode
tragedy
botanists
tasks
friar
ramps
glory
stripe
wolves
muscle
penguin
upside
factoid
rubble
pancreas
festivals
triumph
refining
fence
threat
antlers
tint
giant
father
flirts
gear
syrup
pandas
hurler
theft
daze
haggler
adhesive
stretch
removal
harp
isle
gratuity
fink
families
sandbank
tapioca
onus
boats
laces
incense
sizzle
rain
pith
winter
flakes
glee
smashup
tides
poles
skeet
petals
reward
pothole
brig
renderer
fritter
thistle
gasoline
lynx
jury
spout
hoax
roars
stain
razor
power
bio
moments
creel
spud
tears
luster
uptake
domains
balloon
subs
pueblo
moan
retiree
ring
wing
symptom
ceiling
warranty
strolls
grimace
trilogy
tool
images
disco
ump
nirvana
bet
phantom
hags
axle
serving
plow
reach
gym
pelt
caves
duet
pouch
homage
senate
roger
solvent
sardine
boot
elective
hulks
shelter
gophers
resource
baboon
flooding
trend
album
beetle
spindle
coma
flora
scripts
oils
scar
shimmy
torso
population
sandworm
malt
honeybee
pauper
pears
letdown
tavern
squall
crane
nooks
lake
shelving
gulls
naming
cameras
mesa
character
strobe
number
gore
indexes
heat
cougar
placard
tribute
murmurs
junta
cake
ad
reason
diapers
jellies
squabble
contours
rogue
stereo
twerp
slog
swag
duchess
waif
error
customs
curb
crusts
wounds
gardens
wrecker
volcano
bandanna
feasts
punishment
needs
sedation
dance
hinge
handle
advisor
bargain
flipper
car
toolbox
stub
barista
lair
almond
panda
courses
cokes
playlist
domino
pauses
lox
gaskets
discovery
welds
fervor
crypts
vote
ships
fame
volume
audio
fear
browser
hail
streams
nod
punch
novices
breeches
shrieks
dribble
brakes
progeny
softy
baseball
march
hardhat
rims
meadow
falls
word
gusts
dude
pip
marmot
magic
velocity
mitt
outage
handgun
relic
chapter
steaks
pawns
upheaval
towns
famine
crashes
chai
squiggle
headlock
quiver
clasp
oath
wiz
malts
vans
gambling
barbarian
decibels
handset
naturist
florist
larks
barges
bonds
bomber
bowls
robotics
enemy
ports
steak
polls
randy
omelet
solids
lodges
pixel
loads
oyster
crimps
theist
wails
heroics
genre
herb
pork
reproach
bevel
seashore
rematch
lama
adage
tidbit
innovation
home
twang
breast
vagrant
pagan
nudge
hoops
ribbon
ancestry
hacker
disgrace
jot
olive
trends
lead
seas
fishhook
sale
costume
sill
tong
nosh
monument
wings
market
sternum
freeware
roster
luncheon
bliss
fire
cube
pizzas
ears
vegan
belch
brie
pruning
carts
wad
beavers
hardener
axles
totem
chain
try
vice
ravine
goblet
bid
spelt
wit
ghost
chowder
cries
glimpse
mystery
curbs
brake
faults
dealers
turkey
sanctuary
eyelid
tanks
members
mailbox
yelps
forge
firs
sight
senators
tenant
province
debts
edges
leg
mailroom
breed
mildew
treaty
jays
puffin
duplex
herring
cardinal
mole
promoter
woodland
meatball
shower
yeti
disk
cartoons
byte
peaches
mirth
ode
gift
gallery
cot
ointment
jogs
bran
vicar
fats
lids
squeak
band
tick
oracle
hats
van
turmoil
chums
frown
cysts
dumpling
vendors
sorority
junkies
panic
moods
amputee
vitality
deaths
myths
dusk
slave
wasps
eggplant
equation
issues
tummy
focus
gland
hopes
audience
suction
luck
mummy
smirk
oaf
splendor
tutu
pendant
estrogen
dummy
rung
pant
makeup
chemist
journey
boxer
hood
stripes
marbling
earphone
theories
walnuts
eggshell
loop
vents
platypus
bob
rider
encore
operas
doodle
ferry
shim
apricot
prints
stoops
estimate
snort
rakes
grains
outpour
petunia
smack
rubber
force
concept
brisket
atheist
quota
bundles
chow
furniture
passes
mast
calcium
chip
jalapeno
empire
grout
stools
feet
gosling
rituals
cadets
extent
roll
keys
frames
smog
violin
cumin
studs
floor
lockers
recon
city
iguana
tours
thong
daughter
alpaca
crop
jammer
plumbing
blast
cottages
limeade
lizard
leash
soaps
scraps
networks
mane
grandson
detox
cow
dock
admiral
limit
jock
archery
dollars
colors
swimwear
tarps
risk
bolt
inbox
bee
glades
beaks
tablet
foes
ransom
deacon
tour
delay
impacts
paste
mountains
dragon
wrist
stench
grills
toggle
noise
tripods
wish
chef
thinker
chunks
trash
spell
safety
credential
flake
donation
bonnets
designer
egret
scratch
worker
outdoors
suns
jetty
llama
mimosa
flypaper
patina
trunk
tabasco
distance
blimp
ridge
prophecy
yip
scan
actresses
boys
digit
suitcase
cranes
sixties
toucan
landlady
basket
kiln
zombies
grandfather
rye
lawns
kitty
slipper
robes
hands
flair
drain
pansy
archive
dikes
mascara
hooves
crow
footers
cult
impulse
ingot
pottery
desk
bong
rhino
clarinets
fires
vows
bubble
manhole
cut
ski
chick
produce
belly
chainsaw
eel
glider
copies
dugout
total
panther
hurdle
scarcity
decree
kinsman
goldfish
peg
expo
cog
bin
cooks
wills
ego
delta
ounce
militant
chemists
voters
pig
webs
niece
cape
clinics
nip
prisoner
yoke
traumas
pillow
matter
microphone
loans
tripod
reject
slush
crawlers
fluids
protector
braid
climate
preset
wail
staple
reels
node
taunt
jurist
galley
mirror
artifact
newton
diamonds
skirmish
digs
zone
gash
urgency
vices
oaths
flood
purses
buffer
ladle
aces
lava
clove
piano
caption
tedium
janitors
shed
almanac
postbox
meerkat
sandpit
plate
grenade
cello
hose
colas
hit
office
mooch
squatter
pistol
rake
cyclists
hazards
anteater
job
peck
medal
pianist
bozo
jaw
pad
temple
stooge
stop
snipers
purist
respect
sombrero
cops
trimmer
reed
krypton
objective
overcoat
balcony
tribes
humps
ruse
womb
venture
ignition
rehab
cramp
gloves
anthills
lawyer
gatherer
bird
refinery
crafter
tic
ponies
mall
magician
trickle
escapade
falcons
drops
galleria
daggers
sable
tacks
podium
pinch
crusader
spoke
addict
lilac
bulges
screwdriver
panty
unifier
horse
chord
snafu
pumice
yak
shotgun
teacup
workers
bases
sear
llamas
rolls
liquor
cranks
splices
kinship
surgery
coaches
scrap
brim
yam
ledge
poetry
country
sodas
speeds
sensors
script
ovary
curling
opacity
rules
rum
nutcase
groans
stoppage
ankles
oak
culprit
pucker
earl
bunker
divot
kazoo
balls
rockfish
roof
healer
infidel
burns
mechanism
example
dander
grief
tuxedo
claim
undead
felt
steed
tonic
casket
sari
fan
peace
fantasy
kerchief
justice
crags
engine
cardigan
pattern
lentil
duration
motive
figure
retread
mortuary
pooch
plumber
coast
pennant
loon
works
medicine
types
notices
nanny
algae
stamina
carbs
chum
feedback
octaves
buttons
crock
mayo
anatomy
sinners
desires
nunnery
hoe
linguini
plaza
teabag
marlin
tools
parody
doubts
decline
rears
defect
hurdles
aquarium
tamale
monitor
runway
yells
rewards
view
sandals
sewer
ovaries
detours
dam
auction
trances
porthole
inactivity
lavender
lens
shows
thigh
peon
poison
misinformation
filth
zeros
warrior
lilt
prefix
bulge
charcoal
sleds
moat
arena
prods
quarters
file
preacher
riptide
kettles
resort
fuses
couple
sting
daffodil
coworker
bells
pickle
hardware
crouton
lore
blitz
debate
elitism
armpit
omens
neuron
accident
delirium
scab
roach
mazes
pushpin
sprite
shore
slurp
souls
voter
heights
stroller
probes
basins
elves
ending
defeats
pension
forces
strip
ruts
quarks
auto
bruises
subset
dialog
passerby
altar
exporter
skid
golf
leeches
futons
crown
splinter
cavalry
hay
blooper
prisms
opponent
chirp
prawns
maze
lands
husbands
camps
glasses
camera
dress
fez
zap
privacy
ping
showcase
kale
cent
beets
preamble
urn
granny
cache
raises
hulk
fields
griddle
gerbil
rumor
waves
tenor
wreck
deputies
magazine
parkas
flattery
ox
chests
blanket
alehouse
ravines
princess
necks
women
raisins
advice
swarms
samba
daytime
renewal
jolts
veto
shorts
promos
emperor
intro
belt
scribe
basil
avatar
lamb
agencies
bog
wasp
grinch
sax
ward
quadrant
tomahawk
sip
string
knocks
cover
destiny
hydrant
bologna
cobras
dorks
stallion
hangover
molds
sheep
scum
lairs
maize
thrower
boutique
nicotine
goal
cigars
oracles
castle
boa
ladders
corn
brows
sum
viaduct
apostle
observer
slugs
groin
grip
purifier
neck
reentry
nebula
wombs
tech
cartons
party
lunacy
earmark
smoke
haven
bone
comments
disposal
chimp
minx
slab
bulls
neutron
purse
order
setting
threats
skiff
monotype
psychic
zeal
longbow
computer
surplus
drafts
filters
maverick
lion
atlas
pump
clique
register
scrubber
measles
tests
trusts
jungle
sniper
rugby
salvage
composers
capsules
part
look
theism
bug
oblivion
splash
owl
employer
flasks
skewers
clogs
support
pegs
tee
urge
sis
hive
rifle
lung
week
fuzz
badge
mowers
grubs
genie
provider
antacids
colts
garnet
taxis
comets
tarp
wok
comma
waiter
gourd
clues
clients
yowls
bookmark
cask
crease
cuddle
forks
torch
wedding
magpie
librarian
sheets
toad
crimes
demon
thrush
bean
area
falcon
crevice
eras
handwork
atrium
odors
shrapnel
soup
girdle
stat
rate
cash
ding
mutation
bins
pout
gangway
violence
want
casts
caviar
tarmac
substance
steam
brute
whiskey
gasket
vitamin
helmets
flub
felons
tinkle
appetite
liquid
lashes
forms
liar
remnant
cider
tires
spools
section
accusation
curls
dome
tether
throne
virtues
tomes
agenda
foxes
prison
pamphlet
biped
cinder
turtle
clicker
foxhole
fusion
brunch
amulet
suspect
charger
yurts
pie
movers
events
oboes
cicada
hotel
galaxies
peat
muss
criteria
dish
boxes
revival
varsity
fridge
cougars
bind
armful
science
canteen
gizzard
crutch
ethanol
handoff
gallons
sprawl
exits
hilt
crystals
cosmos
logs
corral
parka
researcher
cousin
nephew
voice
escapist
earring
does
taboos
trail
forgery
snowplow
soap
memory
fobs
players
self
attic
rump
earwax
puritan
jocks
scorpion
duckling
starch
heaters
glob
crosses
scare
leader
youth
hearts
jailers
tropics
digits
kitchen
hives
kook
molar
custard
spleen
pushup
paddle
carafe
dike
tarts
dowry
insult
paprika
doom
sides
attorney
sips
climb
kitchens
battle
banners
bank
lien
crack
notes
baggage
whisper
tactics
identity
polygon
cord
leaps
slabs
record
logos
names
swamp
brims
tub
slug
overtone
vow
hickory
epiphany
equinox
giants
meme
dye
bags
joint
salons
plows
bill
satire
tiaras
gypsy
face
nouns
mists
spin
iris
siding
pasture
beaver
clothing
contest
jarl
roundup
demeanor
icons
twigs
post
jitters
speller
sanctity
gale
custody
flings
prams
porridge
steps
grids
rook
looter
pastime
reams
curtsy
bra
tease
flow
birth
skits
pagers
pebbles
walnut
check
mobster
yodel
jars
visit
rubbers
elevator
contract
candy
thunderbolt
swig
savior
railcar
senders
edibles
bead
thimble
readers
motion
sulfide
kelp
rebels
stains
pits
visas
dweller
pedigree
jokes
outpost
thugs
serpents
spares
sprites
skull
brigade
leotard
scrabble
experts
humor
freebie
ladybug
commerce
dismay
seat
document
acting
flags
cough
hip
crust
leap
cornhusk
coupons
timber
sonata
punks
vet
offer
wrester
servers
garland
twine
unit
messes
favors
salary
niche
singer
blogs
purr
squash
journal
freak
papa
pasta
ceremony
mauls
model
hanger
scam
gulps
stanza
dagger
sensor
plunder
bikes
agate
frock
curves
corgi
creek
cufflink
toast
nations
dads
thrills
kitten
swath
tombs
pecks
crick
beam
quicksand
washer
cues
deeds
grunts
lettuce
firms
locks
compounds
cycling
flukes
consoles
abdomens
aliment
platform
squeal
beast
loves
guild
gelatin
slates
fig
rice
stalks
loan
squirt
hangar
cruises
jowls
knack
club
decency
linens
periods
criminal
harmony
threads
creed
fists
board
minefield
sulfur
stew
wetsuit
recliner
yield
alerts
cobs
drizzle
group
runs
words
jaguars
magazines
bride
realm
stair
losses
water
torque
synopsis
springs
skirt
divinity
ore
seeds
tree
toss
peel
skinhead
fish
envelopes
cans
paw
studies
deskwork
anise
starfish
problem
expedition
introvert
spots
honor
lodge
shots
space
boy
bellies
honey
friends
reflux
kink
tapestry
gems
span
growls
cereal
show
irritant
packs
rental
veils
postcard
roads
infantry
bongo
shacks
efforts
imps
locale
roadway
chat
label
legwork
mound
legroom
rotor
times
immunity
roast
wells
dinners
banjos
twitch
vacation
stick
moonwalk
passport
smudges
venues
chap
synergy
morals
ride
tutors
tar
bandage
morale
cosigner
boars
craving
delicacy
cables
branch
radar
sublevel
planet
dirk
grade
bag
serve
remedies
kayaks
thrust
rebates
spas
beauty
skies
abs
heroism
creeks
arsonist
arrival
swimsuit
cousins
viewer
pads
labs
launch
purge
twister
fiddles
pile
moocher
south
tribe
junk
verbs
spotter
villages
name
shock
breasts
cob
dune
bans
fronds
worm
anchors
deceit
bleach
moderator
arch
axes
coasts
dictator
tin
jersey
kinfolk
dayroom
outbreak
felon
cycle
soloist
mosaic
ends
mushroom
runner
pepper
boots
headwind
bicep
mister
berms
outtakes
ladles
stalk
dams
ram
briar
burp
belts
mafia
noose
brooms
frogs
servant
tail
matchbox
chart
worms
gut
shill
opal
gazebo
watch
snout
step
doubling
jarhead
dreams
jargon
biscuit
critic
zebras
forges
chemical
angel
cuts
links
razors
anteaters
mints
procurer
fans
champions
hub
shank
angler
taxation
rebirth
creeps
grocer
wax
nerds
fake
man
conflicts
teen
thermos
oceans
beach
brink
presto
barley
vodka
history
bore
laugh
dill
slobs
cockpit
donor
shin
hexagons
bluff
mug
granola
hermits
crusade
norm
game
escargot
sharpie
powers
turner
echoes
cleavage
lid
ribs
corsage
latitude
upstairs
manes
tricycle
daisy
sofas
reviver
leak
storage
impulses
plays
bud
department
pretext
mat
rep
pact
fryer
hammock
bull
jests
way
spokes
titbit
dwelling
crab
cobra
hobbies
puns
spur
docks
rudder
jog
twins
historic
trench
managers
camels
fiddle
noises
cocoon
zeppelin
sulfite
omnivore
jukebox
rockets
fluke
newt
cinch
scanner
siesta
blur
parcels
clam
farmers
blemishes
wage
daybed
brawn
tacking
parmesan
hut
mugs
tines
chains
decoy
scope
hue
quark
samples
tables
prune
judo
lesson
fajita
schools
school
blade
antler
tip
ship
thud
karma
sushi
turban
pebble
flanks
qualm
advocate
ghoul
void
artisan
pea
villain
hull
lasers
writer
pastrami
sugar
diet
equipment
sprout
snore
room
columns
septum
stuffing
grit
earth
ninjas
passage
tot
headsman
recap
duels
subsidy
particle
renegade
doorknob
rim
lyrics
combo
modes
wheel
place
dimple
bubbles
ball
blame
tweak
vandal
portion
mules
visors
dash
huntsman
shuttle
bullet
sect
hounds
refill
season
assassin
spoof
jumpers
hobby
tidings
faction
pride
sabers
feed
sequence
din
act
jar
flux
audits
pupil
con
banister
hardship
speed
profile
jaguar
flare
populace
educator
spear
friction
fee
deceiver
ruses
grub
passenger
menace
toys
idols
dentists
overbite
monkey
fights
reply
drive
secretary
dragster
frolic
blood
macro
paramour
teacher
server
haunch
sizes
tangle
scales
refund
druids
rank
bankers
circuses
pushes
payday
foal
shackle
kilowatt
shroud
piglets
trough
squabs
sabotage
deluge
fungus
cluck
battery
impact
gondola
halls
pock
decks
climbs
barbs
marine
length
tug
treason
vibe
tram
riches
habit
carnivals
records
grants
master
boulder
badger
assistant
urology
condor
radio
kerosene
mood
prunes
whims
pacifier
veal
plugs
cursors
virus
birds
cola
notification
precinct
chaos
mayday
perks
morphine
tightwad
reefs
mutants
orchard
scams
bombers
knots
camp
compilation
dockyard
lawyers
sails
shrouds
couch
category
methods
nutshell
wart
array
drugs
bunk
shakes
phases
punk
teeth
flower
travels
relics
peter
mourner
toe
handclap
valuables
sheath
soybean
stud
trait
whisks
hunt
shopper
quintet
coke
talc
antidotes
tulip
cotton
jaybird
dandruff
sarcasm
hatchet
summer
freeway
valves
ark
snail
marmots
knight
antelope
winnings
protest
reeds
lottery
inch
sheen
pants
dot
throats
kites
toes
moss
minutes
curfew
coward
lobby
lumber
tone
papyrus
closet
vixen
salute
nibble
muffin
cue
tab
rides
cancer
waist
docs
gangrene
spore
stint
daisies
spark
strips
mates
gamer
user
orbits
excess
examples
bunch
shredder
math
snakes
subway
region
salsa
sufferer
hedgehog
displays
pity
shard
visa
bunkers
powwow
door
rivet
giblet
robe
team
hem
slips
crime
mascots
kayaker
pubs
rest
anaconda
levers
prey
dev
format
cellmate
rower
popes
fizz
enzyme
overlord
lakes
bidet
moths
prologue
commander
jeep
condo
sandwich
welts
epoxy
lotto
dudes
rot
twig
cross
cockatoo
dolt
blender
spam
buoy
start
nag
thumps
unease
hawks
sketch
enemies
strobes
halos
bond
rooky
earpiece
queen
aroma
cradles
twilight
togs
defenses
library
pews
armpits
sand
spite
smears
vehicle
segment
sandbar
flop
manual
geese
learner
lab
knives
lining
sites
squirts
referee
teepee
league
stir
road
bane
stray
tiling
crops
artist
whiz
sauce
sorts
blush
outcast
gander
traps
peaks
shortcut
cable
unions
prisons
margins
monarch
fall
pools
menus
port
marbles
martyr
barbers
lily
outing
cashews
chops
seam
rust
lager
styles
love
varnish
tide
lions
boil
vaults
booth
hackers
lime
hat
sinew
zombie
dogs
attics
ripples
laurel
judge
looters
curl
clerks
spire
dart
bumps
sultan
cynic
steer
stores
lady
ales
noun
fib
sacrifice
sumo
posse
doe
reboot
rotunda
anklet
airline
ale
fang
promo
handrail
landmass
tent
gloater
priority
rerun
trance
time
fly
lungs
greed
poppy
pans
nerve
eon
monoxide
range
dividers
rigging
clothes
storm
bung
decades
dibs
reflex
shrink
tones
pong
hulls
kick
gateway
gallows
newspaper
reptile
deer
grandpa
eyelids
clicks
madam
badges
mob
shield
brawl
livers
jazz
flotilla
turtles
notch
goop
king
yarn
punctuation
chaplain
broom
larva
process
nylon
shifter
cacti
berries
polish
furnace
farmer
soy
factory
landlord
miss
fleet
snitch
soils
suds
reel
valley
ghouls
vitamins
ranges
walls
pencil
jest
booty
symbols
earplugs
contour
catnip
guide
tendon
daydream
vagrancy
lobster
knife
perjurer
movie
dividend
bakers
eggroll
drums
fawn
shawl
sidewalk
shawls
captions
crepes
splatter
cottage
cadet
photo
tory
strength
spectacle
gymnast
mange
ties
tiger
vines
shout
buns
reformer
icon
book
cords
shovel
awls
zebra
chair
vets
prawn
stance
permit
clown
sow
folds
host
bonfire
twirls
stilts
suits
claps
dole
vector
ripcord
mask
hacks
tray
potion
kiosks
cynics
titanium
shadows
organ
grin
page
cell
source
footnote
mites
gunsmith
endings
fanatic
flamingo
refusal
adherent
visitor
tap
yokes
tendency
consumer
robin
competitor
survivor
government
ace
base
silkworm
spike
synopses
mama
clip
stay
eve
jawline
scouts
detour
guns
credit
creels
chaps
month
appendix
stilt
nobody
sweats
craze
emerald
peacock
dragons
pointer
upgrade
emotion
scoops
line
morning
bedpans
feat
clay
blouse
bait
overflow
specimen
criticism
cocaine
jape
moth
victory
pomp
drill
diamond
talk
rings
tubes
fedora
episodes
state
skittles
theme
thrusts
rule
editors
embolism
coils
hemlock
omen
camisole
jackal
hornets
dynasty
kings
things
divorcee
dresses
hazard
arbor
pound
flute
countries
couriers
glass
spiders
overture
jaunt
shoal
thrift
elbow
replay
shrinks
matron
tomb
onlooker
anvils
repose
troops
garden
aisles
anxiety
roses
orcs
cud
knock
fail
bench
period
rodents
coconut
hazelnut
pug
stubble
poems
skater
winery
laser
girls
mahogany
distaste
flight
snags
stocks
awards
lever
function
picks
year
corks
shamrock
ditch
smells
landmine
jabs
beams
dolly
pokers
equity
delegates
brandy
crumbs
arborist
vertigo
pundit
scimitar
doves
encampment
curio
jeers
fathers
archives
duffel
glue
haiku
holes
watches
vision
buffet
kibble
petri
tans
coves
index
oppressor
pitch
cheer
taco
negotiator
packet
volumes
troupe
cur
throws
dogma
vise
railway
flights
search
scrutiny
paladin
circlet
virtue
interest
pot
animator
stature
trifle
rails
medium
aisle
vista
stamps
winners
stalls
dishes
ligament
bassoon
contests
squab
brat
statue
store
jigsaw
knobs
bagels
fuss
security
chairs
glimmer
aunt
demand
stunts
spores
baton
deed
life
spits
access
queens
pirate
vein
picnic
knapsack
recount
bids
stitch
study
melodies
smelt
sherry
senior
placemat
cruncher
mover
footer
watt
sailor
plots
patio
upswing
stimuli
vortex
ethics
bogs
pretense
feuds
macaw
click
vest
back
treats
eggnog
finger
orzo
kiosk
quills
cruise
deviancy
romp
planner
evidence
odor
coral
snowbird
blasts
yogis
pack
overseer
list
aviator
barn
centaur
cashew
roar
forum
growl
snorts
spaces
charms
module
perm
ravens
ads
hatchery
hoaxes
bro
mural
footing
winks
pursuit
teargas
blare
racing
inns
whisky
judges
hook
surface
tourism
jeans
lipstick
cluster
lover
nymph
importer
droplet
goddess
sneeze
uniform
answers
eclair
rags
swirl
weapon
hitch
seaweed
whales
ladder
gourds
phase
machete
seagull
corporal
machine
member
mulch
monsieur
fools
vowel
control
beak
people
shrew
elk
scarves
subfloor
flatfoot
remark
tracer
snag
bowling
plates
parent
clover
sources
crowd
unrest
clump
angles
embassy
joggers
pacifism
turbines
codex
mesh
silt
excuses
ranks
designs
filter
crabmeat
earlobe
rind
twinge
parabola
tails
verse
fossil
vibes
email
explorer
bow
buck
matcher
quarrel
caulk
quiz
payment
figurine
kicker
crate
outlet
hash
sludge
den
clink
pew
tactic
bricks
beards
joyride
radiator
nose
liter
snack
parades
oxymoron
aspirin
pit
eclairs
swarm
runt
hassles
snarl
acorn
mail
huts
knowledge
gala
champagne
defiance
screw
malware
metals
geology
drum
fences
tinsel
growth
turbans
feminist
landing
armrest
palms
addicts
proton
helper
brands
vanes
teamwork
horn
giggle
houses
laps
odes
piglet
essay
buckle
throng
erasure
bonbons
molars
swings
consumers
rise
barbecue
ancestor
vogue
supplier
moons
footwork
ground
overhang
harness
papers
serfs
liberty
markers
pretzel
memo
greeting
sweater
clod
win
jogger
war
molecule
vantage
hugs
spatula
joker
division
mint
sector
mind
welder
pancake
trader
kisser
hatred
toll
client
flip
raft
cogs
muskets
soda
driveway
veneer
hart
employment
axiom
barber
twist
loss
mead
faculty
ruble
paranoia
snowshoe
census
gloom
dodo
tank
plywood
creak
spoils
outs
bodies
motivation
pollen
lights
jug
taboo
smith
poncho
jobs
rancher
cast
fungi
awning
trick
soot
lawn
heron
spinster
charity
tact
foothill
oars
turbofan
piles
blinker
mist
padding
preface
limits
hamlets
oysters
enforcer
chocolates
sedan
yodels
wink
retrial
trot
reliance
archers
shortage
jeer
choice
winner
jerk
dens
birthday
meats
buses
weaver
article
chores
shirt
smash
dog
peril
author
town
nudes
concrete
fumble
cherry
cyclist
showman
harem
bribe
dances
yowl
agates
hybrid
ruler
dancer
nap
kids
rope
silk
silencer
cells
motives
lace
mumps
prompter
lagoons
newbie
cores
loaves
entity
valet
ploy
parakeet
weeds
monarchy
sheaths
scorer
nags
apron
squib
follicle
headlamp
puddle
bugs
mantra
slop
liars
fur
wielder
serves
yogi
clavicle
budget
monorail
will
sandbox
riddle
frog
masses
wand
creases
lances
motors
mule
matrix
bills
drapery
ravioli
bays
thought
bolo
hinges
brads
hug
debates
rubs
percent
sinks
cannon
tramps
shame
refunds
fudge
launcher
maturity
humus
gluten
stairs
drips
sausage
grime
wren
circus
density
outrage
rudders
guy
lemon
taxes
oxen
bands
license
guitars
till
trainer
doll
fair
orphans
parish
harps
sardines
parade
samurai
bass
overtime
antacid
fissure
cleft
marrow
gene
vulture
chest
pulp
graduate
nutmeg
mimic
systems
vase
wins
crayon
patience
bike
burgers
gem
prowess
crutches
hole
squeegee
parrot
founder
bulletin
igloo
anchovy
perk
eternity
tugboat
chive
trial
latte
rinses
doorbell
undertow
nerves
thrill
suntan
voodoo
deities
beaches
stork
scroll
symphony
lagoon
duvet
bikers
critter
bleep
exes
imbecile
folk
reins
koala
majesty
scowl
pixels
sole
museum
lapse
fastball
spires
planks
nukes
set
attire
dosage
waste
graphics
angels
counting
gardener
sap
fiend
parlor
prices
umpire
sage
grower
offices
jackets
calendars
tiers
eraser
outlook
zipper
mamba
care
expert
bucket
rips
tampons
cheeses
girdles
guff
ear
hobbit
latches
scuff
timer
carp
arcade
shop
pins
vole
puck
sculptor
jumble
barrier
sister
bladders
upstroke
task
price
harpist
lark
pyramid
tampon
truth
boils
savage
wares
purveyor
moon
fleets
flagman
tribunal
preplan
flea
strudel
tape
pair
bards
jokester
hours
bonbon
cleavers
spider
pun
case
polo
dales
roles
cannons
default
boasts
puzzles
seniors
headway
tarot
smell
grits
warden
vests
mischief
issue
shindig
prep
mic
orca
gender
stranger
poets
film
type
clack
abyss
jumps
segments
fate
senses
utensil
weeks
maid
marigold
molasses
research
chapters
cleric
table
caramel
outfit
knee
deck
denim
giraffe
daycare
sprig
czar
letter
caravan
junkyard
tribune
organs
knoll
duo
sermon
windshield
nodes
cribs
sycamore
paints
freewill
vises
sons
relays
bun
erosion
latch
sprints
hippie
rockstar
moped
subtype
wardrobe
leases
cart
lunchbox
calzone
hangars
courts
adult
kilobyte
bible
land
deviant
banshee
fern
story
death
angle
villa
outlaw
liver
aorta
cowls
assistance
beans
moose
invites
chemicals
mesas
palm
abdomen
sigh
volts
bed
canisters
boon
moonbeam
culprits
combs
everyone
flocks
gesture
footage
stingray
lamp
press
scarf
mammary
janitor
demands
robber
stove
tannery
caddie
pies
swords
snares
chives
grid
course
football
nails
talcum
loot
haste
dawn
heater
teapots
afterlife
glance
crates
demons
migrant
discounts
audiences
beepers
eardrum
lumberjack
spouts
whip
pounds
concerts
dunce
cavern
coins
jerky
mold
sweat
curtain
halo
lizards
popcorn
dispute
cup
wife
eclipse
ecology
elms
swab
calories
gifts
flounder
crayons
mount
tallow
canoe
voucher
phobias
ores
optics
bums
arks
sitter
glitter
blips
helm
diners
propane
teapot
warning
rampage
plastic
shrine
venom
turmeric
servo
epilepsy
landside
diagrams
estate
jacket
scallion
slip
mile
cracker
mayhem
talons
bistro
nights
sheet
earache
revision
washout
yacht
inputs
arms
carnage
regret
quotes
roughage
buyers
citation
trays
boards
ebook
velvet
soups
breach
butler
semester
bipod
herbs
skincare
clock
heft
carton
exorcist
firm
rabbit
mutts
dust
defense
essence
runts
broiler
target
jade
storms
pleasure
blades
wards
cubes
pickles
beggar
alarm
bedroom
delusion
yogurt
foothold
gopher
kilt
hint
tier
strand
eye
dowel
brokers
fanfare
luxury
hedges
alien
dorm
culture
chalk
army
bloke
tops
rooms
rubdown
jams
verdict
mine
spade
lotus
tax
freckles
apple
revolts
clutter
glop
desktop
pictures
rays
tickle
nerd
header
dose
boom
county
nemesis
tune
sects
lovers
navies
sleeve
style
patrol
antennae
pizza
comrades
brook
lobe
wildland
trainee
cricket
covers
scans
meter
skates
bales
whips
sorcerer
settler
tear
assembly
repairs
loaf
piers
pets
foot
finals
curtains
stinger
cowl
tack
maids
fruit
armor
trumpet
annoyance
age
plans
flame
ware
leaks
opera
sundae
lives
skins
homeowner
rumps
hiker
payphone
weekend
dean
date
licks
herds
nature
critics
canary
stashes
polka
stoop
streets
lords
holidays
width
pill
spine
pusher
fragment
layer
dynamite
liqueurs
root
thump
envelope
zoology
sirens
smocks
tramp
guys
awl
goals
serpent
pox
skills
chargers
olives
massager
clots
despair
throttle
gears
hunch
cowbird
biker
key
imp
gigabyte
rivers
trucker
knights
henchman
pipe
stipend
rival
tricks
hamper
clank
violins
lease
bronco
supermom
continent
blimps
tennis
shrub
hare
bonanza
jackals
eagles
hula
leads
traitor
doorman
colonist
aid
train
reporter
patriot
venue
traffic
isotope
activities
score
coach
wool
turnip
cologne
bros
headache
raps
suet
slit
nursery
dislike
defender
stash
payroll
spoons
cupid
doctors
muscles
obituary
binder
mutt
absentee
clan
spades
outback
crowds
uprising
trousers
places
winch
doors
handcuff
seed
barb
crouch
utility
mush
proxy
track
tooth
strains
dollar
actress
ozone
chump
smiles
autumn
burrow
baskets
fugitive
yeast
vale
shingle
hope
avocado
flap
aircraft
hornet
foods
facts
sprouts
forts
beer
clipart
atriums
coot
paths
driver
smuggler
dope
font
carnival
volt
cycles
glazing
news
revolt
star
gradient
cowards
headset
hits
release
moms
keno
quip
sunset
trees
copiers
cliques
tuft
sexes
iota
poser
traction
shallot
rhythm
housing
goggles
devils
daylight
squares
sesame
pager
wads
policy
deal
inks
juice
coaster
resin
deli
muskrat
flavor
cyst
startup
pacemaker
arcades
foam
trinity
wheels
wash
knickers
juicer
overhaul
claw
auctions
bar
berry
thicket
swill
applause
foe
rose
nicks
nieces
disks
linen
orbs
pouches
licorice
wildcard
mankind
ruins
nest
pecans
diffuser
poll
burger
streaks
moves
lies
sorceress
dwarf
trapdoor
unicorns
dump
sauces
pats
outsider
drunkard
sob
barge
sores
shrines
few
marker
cupcake
robins
totems
flam
eyebrow
replies
vineyard
revenge
rifling
elephant
purpose
dice
thorns
prank
quilts
mess
motorway
yawn
goldmine
platinum
colt
gown
banks
probe
dream
equator
skill
consultant
idiocy
onward
waffle
bobcats
griffon
greeter
margin
mage
celery
octane
mime
faces
bistros
phrases
palaces
ibex
tales
map
jetpack
actions
nests
baritones
swat
makeover
smut
run
students
wine
wonk
debtor
oxidant
sled
gauze
brunt
ashes
warlock
wigs
vampire
subtitle
gongs
pipeline
trouble
groan
swamps
weather
heirloom
valve
hero
fiber
stunner
lemur
cuffs
talisman
cures
cork
touch
jail
shift
phones
nachos
gravity
juggler
spinout
manhunt
spears
seats
choir
chamber
cultures
years
handyman
idealist
tassel
pilgrim
oar
android
mop
lift
height
rail
rouge
tux
pavement
prudes
pesos
animal
radios
moonrise
hump
riveter
uranium
okra
geek
decibel
turret
guitar
weasel
myth
boudoir
subtotal
borders
chore
tents
crew
bus
inn
files
ivy
grape
parties
grace
grounds
swipe
tutor
peanut
pages
decor
litters
waltz
desks
slaw
spat
question
crests
lot
inches
leverage
motor
friend
raccoon
jay
stencil
kin
crag
canals
voltage
thesis
help
keel
coconuts
spices
sheds
trip
knolls
reverend
gripe
refrain
logic
illness
mass
claims
strides
dunes
wands
flaw
reunion
topics
gizmo
shriek
island
denizen
gruel
overrun
donator
strike
junkie
rascal
homes
dials
entryway
curses
alley
robot
perms
ovum
spoon
remarks
crypt
oats
pint
repair
vapors
outhouse
lice
shape
joy
riot
beau
log
limes
bile
pest
visitors
saga
lapdog
chimps
cots
plants
login
poultry
moats
valium
composer
tigers
agent
shrimp
pegboard
raisin
saints
options
posts
exchange
tapes
asp
doorstep
shove
buffoon
ideology
sickle
protons
honks
split
throat
wisp
theory
drams
pores
commando
surname
website
husk
loft
tycoon
albums
bath
juvenile
kangaroo
stabs
shells
artery
areas
resident
seminar
silicon
analyzer
napkin
elf
fool
splints
walrus
digest
harems
wraith
legume
skewer
outcome
operator
carol
fondling
trapper
airport
moaner
concert
inchworm
quarry
clout
mutiny
peeks
handsaw
authors
fowl
wiper
hunk
break
slaps
tinker
traces
ramrod
jowl
capsule
bunny
sack
cabs
carrot
saber
silos
manager
spelling
spread
ferret
ramen
captain
shale
bang
god
duke
wrench
hogs
covenant
contents
synapse
calf
captive
nit
world
monks
bikinis
geeks
genitals
printer
poker
mayor
nuptials
tube
thorn
spinner
marinas
dew
mice
comment
stock
lethargy
screws
tunes
hikes
lunch
lard
cereals
flan
rasp
mockup
wiretap
yearling
gimmick
spirit
bicycle
huddle
chipmunk
astrology
mongrel
effect
charisma
democrat
top
heaps
thug
cliff
castles
wages
holiday
aqueduct
athlete
beagle
coroner
arrays
element
laptops
plaster
kegs
teat
sleet
orcas
embargo
horns
stems
emporium
cloth
mammals
objects
fetish
rescuer
commute
calipers
animals
canyon
hops
broker
sham
bale
panorama
drinks
rocket
sweets
cars
lag
hunks
ritual
cure
fumes
jinx
bonnet
knob
taproot
cows
headgear
rebuttal
squid
mutant
pail
ogres
welt
bulbs
brushes
ploys
nacho
risks
plenty
gas
cabins
photons
scones
symbol
tyrants
degrees
rifts
acrobats
halogen
wharf
goats
stylus
bushes
trampoline
shave
lentils
quid
sticks
scalps
suburb
dentist
strainer
macaroni
occupier
proverb
hoods
hotels
specks
virgins
shaft
column
jive
aunts
rods
egos
quail
console
mum
jumper
slogan
movies
dent
sapling
brochure
quest
tenure
bakeries
era
stucco
poet
trucks
opposite
biology
champ
turns
anthem
expenses
diameter
labor
cranium
baking
hymn
hyena
tubas
bets
plat
twitter
casinos
salads
owner
chimes
brew
pang
congress
ropes
pleat
implant
druid
counties
snips
teriyaki
crooks
bottle
playroom
decal
neighbor
kidnaper
stardom
orange
herd
shrubs
craft
orgies
arrow
family
meteors
method
perfume
egotism
steroid
flaps
request
rush
starter
refresh
murmur
discount
chicken
murals
tots
cherub
dropout
thrall
pups
router
block
employee
dial
dodos
insect
color
strokes
monk
brood
comic
gowns
unloader
hell
balms
token
narrator
armband
starship
islands
voyage
libraries
ginseng
muses
termite
remover
cartoon
ribcage
credits
ingots
labels
lie
oregano
teens
darkroom
byway
jailer
stream
poise
pentagon
pipes
sanctum
vats
nugget
nativity
reburial
loom
hybrids
fins
crumpet
troughs
blossom
blog
item
language
breath
ash
campers
gavel
bumpers
skipper
corners
dram
fin
grating
guts
clouds
panes
garb
gains
vagabond
plume
critters
kite
gauntlet
counter
drawl
weirdo
lounge
snow
app
townhome
bagpipes
cats
admirer
guru
tart
cuff
kimono
elastic
anglers
thespian
trout
guzzler
generator
vocalist
agents
smithy
zip
text
foyer
peak
rusk
theology
lapels
nectar
mobs
query
blaze
avatars
vial
paycheck
property
food
romance
weld
usher
stacks
raider
bail
conduit
penknife
archer
bark
headroom
delegate
slant
slits
berm
swim
pillbox
plea
kilts
beat
vat
infant
shrug
alarms
formula
riddance
eggs
sense
oligarch
barrels
skeleton
booze
grange
evasion
galaxy
gaff
ranches
espresso
mulberry
wants
bluffs
vacancy
fleas
rocker
slacker
camel
yell
worry
farmhouse
meshes
odds
tongs
urchin
punt
bomb
noodles
inside
lecture
nudity
planes
squat
goods
gumdrop
jasmine
oranges
parsnip
drug
bites
awnings
swagger
snouts
supper
lemurs
pines
charts
prize
footlocker
jab
sprigs
grain
eater
denture
bison
details
climates
ladies
arenas
channel
truce
mustard
crumb
nomad
reaction
rift
untruth
coin
damage
gumbo
faith
fortress
lemons
roots
whey
streak
glaucoma
kiwi
mimes
nudist
broth
scalpel
oases
slats
mutes
troop
slicer
obscenity
twit
stoves
tingle
suitor
sundress
marble
cactus
wiring
tad
noel
hairs
stamp
needle
survival
endnote
funnel
organism
spans
meeting
test
clog
adults
sash
economy
screens
occupant
seals
juniper
omission
limbs
hashes
cement
royalty
marathon
goblin
spruce
tags
fife
scorn
globes
heir
gnats
octagon
redo
miracle
trident
bust
laborer
cove
flannels
stage
scallop
cigar
stroll
creator
facelift
photos
shoe
nation
grader
trauma
grins
watermelon
trustee
freight
genetics
sinkers
widow
chicks
tote
granddad
shorty
antenna
farce
treasury
coca
kimonos
hermit
wind
prayer
heads
rut
strays
battles
hoody
lodging
mansion
password
demotion
monster
pelvis
suite
python
filler
trillion
rioter
glucose
race
goblins
scars
wonder
epidural
exam
leashes
pacifist
relish
parcel
setback
ducts
producer
staff
garter
gamble
norms
goof
title
cards
bows
bloat
workload
slider
secrecy
park
demise
church
rear
exec
mayors
muzzle
tomcat
teaspoon
calamity
onion
costs
medics
crevices
pane
oops
snaps
rigor
beasts
graphs
states
remix
cornea
wafers
goatee
doc
services
legumes
apes
bandits
sentry
quips
coating
cabana
spring
haul
seafood
muck
saves
anthrax
globe
treasure
cafe
domain
clerk
climber
pixie
prodigy
caddy
apostles
mumbling
leech
implants
princes
tacos
conflict
whale
minimum
boas
mandate
shack
goat
frame
halves
barriers
opus
sty
dates
finance
embers
code
diagram
poem
harbor
playoff
mermaid
desire
nocks
mounds
ushers
poplar
sport
rumors
aphid
husks
animation
riddles
wanted
deadbolt
tiara
bowl
dyslexia
basin
brats
dazzler
tunic
preview
guest
utopia
side
trunks
duel
rates
bay
tempo
swigs
cubicles
taps
branches
zinc
rock
detail
snooper
temper
stem
drainer
speech
hills
fort
spender
negligee
lass
seer
exiles
lyre
tome
vanity
meters
toffee
ogre
errors
sports
copier
scholar
joules
material
hotdog
widows
tale
wizard
duds
crayfish
humanist
swine
pore
dimples
chant
video
spectrum
pots
bunches
keep
action
maker
ice
stone
giggles
wealth
brow
hoop
son
tentacle
loons
spins
nemo
quarts
poster
recipe
hemp
exponent
platter
stump
lures
safes
zones
collars
coots
crabs
fetus
hen
varmint
botanist
meat
brains
pirates
wig
use
glands
acorns
strap
tweezers
baseballs
mommy
agendas
sass
replica
pests
tilde
milk
sunlight
crunch
vastness
relapse
jackpot
fund
call
nut
cargo
stylist
status
checks
scout
blister
lanterns
typist
object
sponge
children
truffle
topic
gecko
epilogue
lump
flaws
divots
funds
mixture
impurity
attendees
plot
slurs
excerpt
cults
showroom
yoyo
hyphens
showoff
acids
roost
slide
doorstop
antidote
skin
fury
qualms
gunk
nemeses
fluid
cowboy
corridor
twists
goo
laundry
swirls
glutton
binders
brain
savages
viola
stumps
sub
pagoda
microbe
sneer
morsel
drainage
seal
argument
butcher
seams
avenues
mixes
lure
pliers
arsenal
disputes
ape
drunks
tailor
deployment
railing
tinfoil
diner
voices
pedicure
feud
mascot
brothers
cap
hunger
distrust
ferocity
parsley
machines
mark
spinach
cod
nucleus
work
message
quart
art
racks
safari
osmosis
geranium
sprain
grams
toxin
coal
bridge
might
taxi
steroids
frond
maul
peas
variety
poses
vine
drip
clumps
rivulet
hints
update
choices
creation
creature
earwigs
melon
panel
troll
waters
bouts
prop
outfield
hacksaw
irons
sailors
colander
cub
sandal
fad
skis
peppers
sobs
calls
banner
bongs
armories
cents
favor
capitol
share
liftoff
pesto
earmuff
canon
shampoo
casualty
apostate
tissues
strain
miner
futon
casino
unicorn
upstart
spy
showdown
gap
marshes
flak
crest
iron
shot
optimist
pajamas
feather
knuckles
renter
raptor
revenue
nana
service
pocket
spook
pantry
boundary
putty
spree
armoire
moisture
donkey
skunk
rant
dinner
poacher
cupcakes
sponsor
exercise
darts
teas
quests
mace
bribes
defeat
squeeze
doorpost
predator
combat
barns
cabbage
benches
herald
blizzards
prism
mill
obstacle
grass
answer
hoes
siren
treat
traverse
pockets
vane
snorkel
elites
lack
crud
fishbowl
mollusk
screen
syndrome
diary
grades
nick
forest
germs
helmet
tweets
sulfate
feline
ban
jet
spikes
draft
cavity
clowns
buckets
guidance
navy
amulets
hubs
corridors
setup
database
getaway
folks
expanse
grant
detergent
zoo
pick
months
miners
morality
truck
mote
raise
lullaby
slime
giveaway
heists
breeze
toy
trace
goofball
gait
phone
fray
marches
jam
site
knees
find
sales
values
painter
overlap
bard
roasts
strings
odometer
tiles
candles
stars
badgers
series
duck
huff
axe
git
quill
harbors
eagle
garters
inlet
cleaver
coder
fraud
pearl
sandbag
fountain
guides
blip
demo
jacks
retreat
stripper
depot
vials
mite
device
flashes
cilantro
canopy
cherubs
hasp
curds
tomboy
pilot
phoenix
mouths
hologram
lecturer
citizen
student
cloaks
factor
opossum
clap
sign
anvil
honk
verb
signal
bruin
clef
queue
bats
screams
hall
vapor
marina
stimulus
jesters
rover
brewery
otters
flask
wire
smasher
dame
joints
muse
palace
steeple
enquirer
fiat
maggot
outburst
plateau
dowels
stands
titans
wheat
taste
uses
audit
iodine
garment
ducks
linseed
latrine
groove
confetti
rebate
stones
smile
yard
gristle
corncob
whoop
veteran
duty
tomato
patient
manors
reversal
graph
latex
hamster
optic
crews
lye
ponds
input
germ
boardroom
swinger
unicycle
jerks
point
fight
brick
dory
convents
shirts
debut
finch
peels
zoos
feeling
prince
pods
stanzas
vocation
polenta
updates
lap
weed
swaps
tarn
elm
hexagram
chips
otter
value
femur
canal
bib
breeds
heap
ramp
veil
pan
rubies
havens
fructose
patch
fiction
ruckus
drives
spot
witches
joist
saloon
bruise
stride
datebook
creep
axon
parking
insects
gadgets
doormat
snowfall
backups
parkway
disorder
cheeks
cruiser
shelf
nephews
cloves
cartload
java
shoptalk
mana
familiar
boast
spill
burrito
sitcom
soccer
humans
rinds
hypnosis
wires
mowing
ribbons
creatures
bauble
refuge
gremlin
tackle
peach
karaoke
cream
groom
subgroup
splint
dingo
pleats
monsoon
woes
putdown
medic
debt
leeks
husband
igloos
hype
lord
chords
shapes
display
sun
trophy
police
arches
naps
fibs
squad
alcoves
troy
turf
bikini
calendar
ways
body
parks
sin
bat
election
fillet
autos
comb
pita
smock
stings
deputy
puffs
games
habits
premises
banker
opium
prelude
guard
skit
ratio
shire
bobcat
subtext
pelts
sampling
babies
jockey
ham
laws
jewelry
slum
fables
ranger
doornail
gavels
grave
glare
spawn
chants
modem
daybreak
street
rage
leggings
biopsy
note
boiler
negation
jailbird
earthquake
choirs
kisses
bunks
suit
pike
dime
crook
noses
songs
earthworm
salsas
plating
rig
cartel
hexagon
border
stress
buzzword
sprint
catacomb
signs
elders
dojo
props
nail
suffix
fleece
media
burglary
box
diets
lads
warmth
cuckoo
cradle
ocelot
beds
walker
flies
skulls
onset
wane
snoop
cones
bulb
hankie
tars
evacuee
routine
eatery
heart
helium
portal
mud
perjury
stink
rag
glitch
junkman
nurses
copy
warlord
outcomes
recluse
peons
mantis
visor
diver
yams
drones
enamel
flogging
lifter
gals
duff
glamour
levies
dipper
rebar
fest
theater
patrols
delays
yoga
wager
jack
network
emphasis
clinic
canyons
buffers
virgin
quartet
lots
skeptic
invite
sulk
pole
harvest
pacts
newts
cane
being
maggots
girl
warp
society
gobs
orb
registry
crewman
faxes
bugle
postage
bandit
freaks
wildcat
perimeter
wishes
radish
suffrage
brad
stand
mother
melody
slice
toil
watts
trios
itch
batons
subject
hazing
tyrant
pub
wildfire
tremor
recess
bungee
dabs
lists
cufflinks
ocean
dashes
trowel
talks
fads
meteor
baguette
saws
beret
heading
liquids
axel
witch
pony
pay
motto
image
dud
actor
proposal
kennel
orbit
gangs
tongue
director
address
quirk
bishop
tow
lurch
shafts
units
cutlass
horses
latrines
trump
maniac
energies
diabetes
teams
vipers
scurvy
dad
fencing
needles
cascade
zippers
surfer
dumpster
meals
haze
snuff
baker
sphere
lulls
gnu
buffalos
pagans
graves
squires
births
aphids
cookie
orgasm
claws
scents
pin
baths
gliders
aluminum
field
brutes
tundra
vestibule
spouse
nude
ante
universe
tubs
monopoly
thumb
travel
almonds
frosting
relation
races
lather
bully
strife
howls
scheme
mages
proofs
gong
engraver
noodle
lyricism
arts
disaster
thirst
hubcaps
sugars
admin
grading
pod
program
errand
spice
crystal
shake
tire
stardust
future
hardhead
uncles
fright
fluff
sea
dilation
sedative
books
haircut
abacus
kettle
captains
wall
mugshot
district
specialist
umpires
web
milkmaid
litmus
jewel
playset
maneuver
lapel
spheres
dignity
sod
orc
gerbils
rigs
entry
sphinx
dimes
handler
takes
toads
guards
receiver
hawk
buds
ovens
pianos
hoof
boss
shards
mantle
froth
appetizer
hyphen
yearbook
drains
slash
deflator
wars
cobweb
nutrient
law
overlay
clutch
sacks
showbiz
sangria
prizes
overpass
cities
pho
load
tv
physician
surveyor
uproar
riverbed
achievement
lotion
fare
mare
genders
basement
extras
pains
headband
sediment
vigil
sock
catalog
closets
bazooka
pedals
gully
beet
feathers
recital
tuba
sharks
footprint
offers
fakes
barons
court
spec
illusion
spa
zit
throw
antipasto
parts
natives
buyer
anthill
grog
bucks
salami
burps
fault
suspense
blinkers
bathtub
wiki
memento
crank
primer
haunts
facilities
backs
pigs
cave
hurray
roulette
reggae
knot
effects
hackle
stroke
snacks
flatworm
surge
gamers
possum
slap
stops
curve
groves
patron
furs
manor
purchase
totals
helpers
gossip
ration
rites
pawn
basis
wino
mucus
orator
yards
fox
rogues
buckles
pardon
cairn
grudges
wipes
content
oat
bulk
matches
legs
seabird
rafts
arbors
charities
socks
nips
snails
hearth
grooves
attendant
mission
tern
medallion
paper
hooks
notice
max
wisdom
thighs
flagpole
drool
fevers
wimps
lefty
foil
chambers
plane
wood
eddy
savanna
starts
hams
posture
event
beef
ohms
floss
outages
mounts
epidemic
bola
leek
colony
majority
wraps
maw
aviators
thanks
today
silo
burr
doctor
cassette
flu
clarinet
stopper
exams
platoon
stake
pangs
centaurs
mouth
reminder
jugular
quote
tadpole
buzz
juror
nettle
crescent
ideas
heckler
batch
parasite
partner
batches
bandana
hand
lotions
brand
pumpkin
magnolia
pal
developer
handles
jingle
meet
landline
nuts
parole
stowaway
gin
cavities
banking
chard
clips
bookcase
gates
convict
scamp
huntress
cases
sets
crafts
grease
bourbon
guests
alfalfa
shuffle
mobility
forager
guilds
catapult
exploit
gaps
avenue
raffle
graffiti
parasail
historian
frat
hens
cleat
habitant
gator
railroad
headrest
stool
passion
hill
nub
analyst
inlets
quirks
frocks
rickshaw
brine
perp
cubicle
crux
wave
warps
wombats
burn
rodeos
aria
acrobat
curator
excuse
frost
drapes
rink
stages
bell
octets
imposter
yurt
ruck
curd
syntax
sinner
dolls
flames
pinky
wannabe
yawns
sprees
bolts
fencer
canoes
puzzle
smear
worlds
package
controls
tyke
hoot
spills
hike
beeper
pulses
fiends
canteens
crib
raven
pup
pens
trivia
pen
tons
marimba
stunt
aliens
pine
mastiff
dingbat
firewall
walks
shiv
cylinder
emus
magma
pain
polkas
maximum
slump
schoolboy
banjo
ranch
comedy
wreckage
heritage
legacy
satchel
silica
sponges
tipoff
rack
brothel
buddy
citizens
playmate
shares
capes
tattoo
outline
lull
house
clickers
tang
prowler
music
drone
ref
witchcraft
pier
attendee
campus
tine
afro
grouch
pose
armchair
blazes
cuticle
rhyme
trinket
info
steward
rearview
grunt
rinse
lint
woods
upload
musical
silks
senorita
souvenir
sonar
grandma
sucker
simile
emoticon
squealer
trials
bakery
spoiler
seminars
google
seashell
checkbook
arrows
eyes
jester
pacific
cheers
baristas
flab
throngs
cheek
species
episode
carrots
pips
diploma
dents
yelp
clash
marines
idealism
disdain
soul
emblem
ferns
blouses
ruin
dispatch
backpack
savings
blight
delusions
weapons
outreach
turbojet
mango
rap
baboons
boat
rinks
meal
points
soil
hitches
hockey
meow
wildlife
clang
handful
martini
masts
modules
forearm
ralph
batteries
punisher
tile
braids
ease
dirt
cheddar
winds
nettles
shell
travesty
fuse
match
democracy
craw
bars
stratus
mats
manuals
protester
lofts
gaze
hummus
tea
cusp
pucks
coupon
towel
panama
flecks
exorcism
rat
sashes
nibs
figment
wait
flint
phobia
dealer
companies
wrath
morons
pectin
ants
instalment
pampers
blend
proxies
leaves
surf
pet
sinker
egg
monogamy
locker
clams
inventory
sliver
karate
italics
miso
dangers
mode
oasis
frenzy
kiss
edition
traits
freedom
cages
flavors
decade
mustang
rookie
cowboys
mate
tower
devotee
days
alcove
bookstore
lyricist
waitress
pellets
icepack
handbook
wits
sables
musket
chime
cafes
peso
oaks
clans
pond
mills
elite
sneak
avocados
wedge
tirade
doorway
stupor
bears
denials
crybaby
coil
reps
slur
cubs
pairs
idea
bump
guardian
croc
studios
mops
dairy
rune
sound
decimal
elbows
spray
gum
copilot
kayak
dropper
grove
technician
rifles
jujitsu
winters
caravans
scent
upkeep
potato
flag
tabloid
divers
districts
oddity
lasso
moment
smirks
opals
glow
cheetah
devil
roaches
sandfish
sling
dominoes
cherries
thumbs
draw
triceps
sessions
gal
mistake
rupture
recoil
gat
flares
patios
humility
users
overview
victim
static
build
flour
lout
tofu
priest
feds
nape
customer
deletion
sequels
trips
clone
payback
coat
footrest
trap
remedy
bibs
turn
founding
joystick
celebrity
saint
slots
crusher
skier
crash
visits
exit
markets
airplane
boar
sodium
reverb
loops
print
lobsters
nook
quotas
design
fist
gizmos
prom
comrade
dwarves
denial
healers
widget
ex
nods
interns
hues
song
wombat
napalm
ellipse
emu
torches
sample
commuter
duct
misses
rainstorm
lantern
cornmeal
plum
glaze
androids
clubs
pandemic
contact
burials
ballet
crows
endpoint
numbers
petition
slack
hippo
pranker
adages
wolf
hack
drama
treatment
gasp
trek
product
tabs
ketchup
glues
hairpin
armory
need
goatskin
capitols
pop
hoses
coleslaw
yolk
rants
detector
mouse
busts
jawbone
beads
ninja
notepad
wreath
spurs
cattle
baron
ghosts
dustpan
schemes
matador
survey
trapeze
nickname
prayers
hips
maps
snip
thing
strands
sundial
hydrogen
skimmer
raids
heels
caboose
sleigh
chaff
supply
jump
howl
mix
smudge
trades
flesh
corset
slaves
dawdler
fax
owls
titan
purebred
earflap
canvas
hicks
ruby
musician
staples
champion
grad
elixir
statute
magnet
hoard
beeswax
gadget
fonts
acid
washroom
sarong
carb
pause
scrolls
floods
gran
rally
bombs
drink
snippet
editor
manatee
finisher
kid
barrel
glacier
waiver
kinks
danger
runes
lumps
fares
mothers
infants
conch
hydrants
vermin
tunnels
gyro
handcart
bacteria
octopus
butter
padlock
clamps
headwear
duress
blemish
playpen
timing
engines
idioms
baubles
viper
handgrip
tweet
octave
wick
bumper
sniff
skillet
tusks
washtub
riders
birch
skydiver
texts
patches
clue
saw
cost
cucumber
clerics
anime
loins
fondue
activity
coop
videos
gnomes
regions
stoner
lad
skate
legend
gravel
moles
havoc
blurb
premium
belches
lip
landmark
remorse
depth
scone
scotch
voles
minute
stack
warts
singers
lunatic
drudge
hijacker
pavilion
forehead
dryad
cravings
webcam
ebooks
masks
cliffs
orphan
pool
glowworm
intern
chariots
menu
shadow
wagon
download
tusk
numeral
braces
napkins
dive
toilet
bones
tibia
pancakes
gutter
marinade
farm
potions
cracks
animators
ragweed
linguist
thread
footgear
plug
creeds
asteroid
humorist
slope
apples
apricots
oxygen
handling
jewels
vendor
scene
scads
buffalo
radiance
trust
willow
camper
swivel
hop
final
wound
core
charlatan
podcast
reef
tips
glove
magnets
footpath
bladder
bot
plant
jurors
circle
faucet
fog
burg
violator
dove
dolphin
rungs
penny
hog
tulips
perch
hangout
size
clocks
gulf
lunches
shops
stag
cramps
window
data
decoys
day
stadium
deviator
cinema
gnome
items
kit
ton
wipe
shanty
plasma
fears
noon
struggle
truism
jolt
pastor
deferral
cause
slants
skyline
spies
papaya
bum
onions
juncture
pops
mom
marsh
tells
finalist
tissue
fold
sands
snowball
soak
garnish
vault
glances
jets
bevy
armies
end
grandkid
storks
arc
fender
gob
clashes
tights
slowpoke
progress
exposure
cheater
crowbar
information
coasters
teenager
biplane
north
square
health
tuna
chasm
violets
charters
exterior
cloak
talker
rip
fabric
curler
compound
dairies
powder
sauna
blob
slums
sisters
backup
rent
moor
wrinkle
risotto
stuff
wrists
pledge
windows
cartels
pints
garlic
sky
antiques
tort
pecan
curse
malls
kilns
gasps
shade
manpower
filing
rattle
typo
bush
actors
fable
coffee
scabs
comedies
trains
drills
collage
fiasco
vent
errands
alpacas
flax
salmon
vigor
cinemas
mammal
swimmer
mandarin
munchkin
boost
roux
phrase
option
gentleman
child
ant
contracts
devotion
oxford
phrasing
pulse
relay
dough
drought
jaws
writ
glade
cabin
cop
chaw
tag
vendetta
balm
classes
canopies
motes
rents
button
circles
arm
head
pleas
steamboat
biz
primate
prude
hanky
granite
tugs
etching
ream
cleats
geometry
emission
purity
hick
shoes
usage
gel
pass
kilogram
binoculars
mullets
snooze
doughboy
polymer
genes
term
lines
rib
oldie
chalice
nubs
memes
degree
empathy
trade
zodiac
altars
spells
scoop
canes
umbrella
spiral
anchor
pearls
snowman
swan
pupa
puppy
logo
cringe
axis
fever
plank
wizards
hunters
banana
bunt
woman
peroxide
oven
sofa
broncos
reasons
crimp
residue
sink
decals
feta
wimp
limb
minds
soaks
chute
fir
pillar
gram
spines
salt
hex
mania
chit
ewe
tie
gauge
compost
talon
hutch
charm
fauna
graders
dollop
company
roosts
praise
scammer
yetis
pace
delivery
cameo
chunk
donors
ditches
strategy
keg
tartar
locusts
liqueur
brace
rug
beings
looks
blubber
gif
turbine
pumps
pyre
blobs
gill
tiff
thuds
hides
stable
domes
spacebar
gull
tango
finish
mongoose
system
citadel
scandal
astronaut
drop
veins
diceware-1.0.1/diceware/wordlists/wordlist_en_securedrop.asc 0000664 0000000 0000000 00000137140 14732404111 0024370 0 ustar 00root root 0000000 0000000 -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
0
1
10
100
1000
100th
101
101st
10th
11
111
1111
11th
12
123
1234
12th
13
13th
14
1492
14th
15
1500
15th
16
1600
16th
17
1700
1776
17th
18
1800
1812
18th
19
1900
1910
1920
1925
1930
1935
1940
1945
1950
1955
1960
1965
1970
1975
1980
1985
1990
1991
1992
1993
1994
1995
1996
1997
19th
1st
2
20
200
2000
2001
2020
20th
21
21st
22
222
2222
22nd
23
234
2345
23rd
24
2468
24th
25
25th
26
26th
27
27th
28
28th
29
29th
2nd
3
30
300
3000
30th
31
31st
32
32nd
33
333
3333
33rd
34
345
3456
34th
35
35th
36
36th
37
37th
38
38th
39
39th
3rd
4
40
400
4000
40th
41
41st
42
42nd
43
4321
43rd
44
444
4444
44th
45
456
4567
45th
46
46th
47
47th
48
48th
49
49th
4th
5
50
500
5000
50th
51
51st
52
52nd
53
53rd
54
54th
55
555
5555
55th
56
567
5678
56th
57
57th
58
58th
59
59th
5th
6
60
600
6000
60th
61
61st
62
62nd
63
63rd
64
65
65th
66
666
6666
66th
67
678
6789
67th
68
68th
69
69th
6th
7
70
700
7000
70th
71
71st
72
72nd
73
73rd
74
74th
75
75th
76
76th
77
777
7777
77th
78
789
78th
79
79th
7th
8
80
800
8000
80th
81
81st
82
82nd
83
83rd
84
84th
85
85th
86
86th
87
87th
88
888
8888
88th
89
89th
8th
9
90
900
9000
90th
91
91st
92
92nd
93
93rd
94
94th
95
95th
96
96th
97
97th
98
9876
98th
99
999
9999
99th
9th
aaron
aback
abacus
abalone
abandon
abase
abash
abate
abbey
abbott
abby
abduct
abdul
abed
abel
abhor
abide
abject
ablaze
able
abner
aboard
abode
abort
about
above
abraham
absent
absorb
absurd
abuse
abyss
academy
acadia
accent
accept
accra
accrue
accuse
ace
aces
acetic
ached
aches
achy
acid
acidic
acids
acme
acne
acorn
acquit
acre
acres
acrid
acrobat
act
acted
action
active
actor
actress
acts
acuity
acute
adage
adages
adagio
adam
adams
adapt
add
added
adder
addict
addle
address
adds
adele
adept
adieu
adios
adjust
adler
admiral
admit
adobe
adolf
adonis
adopt
adore
adorn
adrian
ads
adult
advent
adverb
advert
advise
aegis
aerial
aerosol
aesop
afar
affair
affine
affix
afghan
afire
afoot
afraid
africa
afro
aft
after
again
agatha
agave
age
aged
agenda
agent
ages
agile
aging
aglow
agnes
agnew
ago
agony
agree
ahead
ahoy
aid
aide
aided
aides
aiken
ail
aim
aimed
aims
air
airline
airport
airway
aisle
ajar
ajax
akin
alabama
aladdin
alamo
alan
alarm
alas
alaska
albert
albino
album
alchemy
alcohol
alden
alder
ale
alec
aleck
aleph
alert
alex
alexa
alfonso
alfred
alfredo
algae
algebra
alia
alias
alibi
alice
alicia
alien
alight
align
alike
alimony
alive
alkali
all
allan
allay
allen
alley
allied
allow
alloy
allure
ally
allyn
alma
almanac
almond
almost
alms
aloe
aloft
aloha
alone
along
alonzo
aloof
aloud
alpha
alpine
alps
also
altar
alter
alto
alum
alumni
alvarez
alvin
always
amadeus
amanda
amass
amaze
amazon
amber
ambient
amble
ambush
amen
amend
america
amid
amigo
amino
amish
amiss
amity
ammo
ammonia
amnesia
amok
among
amour
amp
ample
amply
amps
amulet
amuse
amy
anagram
analog
analogy
analyze
anatomy
anchor
and
andes
andre
andrea
andrew
android
andy
anew
angel
angela
angelo
anger
angie
angle
angles
anglo
angola
angry
angst
angus
animal
anise
anita
ankle
ankles
ann
anna
anne
annex
annie
annoy
annual
annul
anomaly
answer
ant
antares
ante
antenna
anti
antic
anton
antonio
ants
anvil
any
anyhow
anyway
aorta
apache
apart
apathy
ape
apes
apex
aphid
aplomb
apnea
apollo
appeal
appear
append
apple
apply
apricot
april
apron
apropos
apt
aqua
arab
arbor
arc
arcade
arch
archer
archive
arcs
arctic
ardent
are
area
areas
arena
ares
argo
argon
argue
argus
aria
arid
ariel
arise
arizona
ark
arkansas
arlene
arm
armada
armani
armed
armor
armors
arms
army
arnold
aroma
aromas
arose
array
arrear
arrive
arrow
arsenal
arson
art
artery
arthur
artie
artisan
artist
arts
aruba
aryan
ascend
ash
ashen
ashes
ashley
asia
asian
aside
ask
asked
askew
asks
asleep
aspect
aspen
aspire
aspirin
asses
asset
assist
assure
aster
asthma
astral
asylum
ate
athena
athens
athlete
atlanta
atlas
atoll
atom
atomic
atoms
atone
atop
attic
attire
aubrey
audio
audit
audrey
auger
august
aunt
aunts
aura
aural
aurora
austin
austria
auto
autumn
avail
avalon
avatar
avenue
average
avert
avery
avian
aviate
avid
avoid
avon
avow
await
awake
award
aware
awash
away
awe
awful
awl
awoke
awry
axe
axels
axes
axial
axiom
axis
axle
axon
ayers
aztec
azure
babe
babel
babes
baboon
baby
bach
back
backup
bacon
bad
bade
badge
badger
badly
baffle
bag
bagel
baggage
baggy
bags
bahama
bail
bait
bake
baker
bakes
balance
bald
baldy
bale
bali
balk
balkan
balky
ball
ballad
balled
ballet
balloon
ballot
balls
balm
balms
balmy
balsa
bambi
bambino
bamboo
ban
banal
banana
band
bandit
bands
bandy
bane
bang
bangs
banish
banjo
bank
banks
bar
barb
barbara
barber
barbs
barcode
bard
bare
barf
barfly
bargain
barge
bark
barks
barley
barn
baron
barony
barrel
barry
bars
bart
barter
base
basel
bash
basic
basil
basin
basis
bask
basket
bass
basso
baste
bat
batch
bate
bater
bates
bath
bathe
baths
baton
bats
battery
bauble
baud
bauer
bavaria
bawd
bawdy
bawl
baxter
bay
bayed
bayonet
bayou
bays
bazaar
bazooka
beach
beacon
bead
beads
beady
beak
beam
beams
bean
beans
bear
beard
bears
beast
beat
beatles
beats
beauty
beaver
bebop
becalm
beck
becker
becky
bed
beds
bee
beech
beef
beefy
been
beep
beeps
beer
beers
bees
beet
beets
befall
befit
before
beg
began
beget
beggar
begin
begs
begun
behave
behind
beige
being
beirut
belch
belfry
belgium
belie
belief
bell
bella
belle
bellow
bells
belly
belong
below
belt
belts
bemoan
ben
bench
bend
bender
bends
benefit
benign
benny
bent
bereft
beret
berg
berlin
bermuda
bern
bernard
berra
berry
bert
berth
bess
best
bet
beta
beth
bethel
betray
bets
betsy
betty
between
bevel
beware
beyond
bezel
bianca
bias
bib
bible
bicep
biceps
bicycle
bid
bide
bids
big
bigot
bike
biker
bikini
bile
bilge
bilk
bill
billow
bills
billy
bimbo
bin
binary
bind
bing
binge
bingo
biology
biota
biped
birch
bird
birdie
birds
birth
biscuit
bishop
bismark
bison
bisque
bit
bite
bites
bits
bitten
black
blade
blair
blake
blame
bland
blank
blare
blast
blaze
bleak
bleat
bled
bleed
blend
bless
blew
blimp
blind
blink
blip
blips
bliss
blithe
blitz
bloat
blob
blobs
block
bloke
blond
blood
bloom
blot
blotch
blots
blow
blown
blows
blue
blues
bluff
blunt
blur
blurs
blurt
blush
blythe
boa
boar
board
boast
boat
boats
bob
bobby
bobcat
bobs
bock
bode
body
bog
bogart
bogey
bogs
bogus
bohemia
boil
boils
boise
bold
bolo
bolt
bolts
bomb
bombay
bombs
bon
bonanza
bond
bone
bones
bongo
bonjour
bonobo
bonus
bony
boo
booby
boogie
book
books
boom
boon
boost
boot
booth
booths
boots
booty
booze
bop
borax
border
bore
bored
bores
boric
boris
born
borne
boron
bosch
bosom
boson
boss
bossy
boston
botanic
botch
both
bottle
bough
boulder
bouncy
bound
bounds
bourn
bout
bovine
bow
bowed
bowel
bowie
bowl
bowls
bows
box
boxed
boxer
boxes
boxing
boxy
boy
boyish
boyle
boys
bozo
bra
brace
brad
brady
brag
brags
braid
brain
brainy
brake
bran
brand
brandt
brandy
brant
brash
brass
brassy
brat
brats
braun
brave
bravo
brawl
brawn
brazil
bread
break
breath
bred
breed
breeze
bremen
brenda
breve
brew
brian
briar
bribe
brice
brick
bride
bridge
brief
brig
brigade
brim
brine
bring
brink
briny
brisk
british
broad
brock
broil
broke
broken
bronco
bronx
bronze
brood
brook
broom
brother
brown
brows
browse
bruce
bruin
brunch
bruno
brunt
brush
brutal
brute
bryan
bryant
bryce
buck
bucket
bucks
bud
buddha
buddy
budge
budget
buds
buenos
buff
buffalo
bug
buggy
bugle
bugs
build
built
bulb
bulbs
bulge
bulk
bulky
bull
bulls
bully
bum
bump
bumps
bumpy
bums
bun
bunch
bunco
bundle
bunk
bunker
bunny
buns
bunt
bunts
bunyan
buoy
burch
bureau
burger
buried
burly
burma
burn
burns
burnt
burp
burps
burro
burst
burton
bury
bus
bush
bushel
bushy
bust
busy
but
butane
butch
butte
butter
button
butyl
buxom
buy
buyer
buys
buzz
buzzer
buzzy
bye
bylaw
byline
bypass
byron
byte
bytes
cab
cabal
cabana
cabaret
cabin
cabinet
cable
cacao
cache
cackle
cacti
cactus
caddy
cadet
cadre
cafe
cage
caged
cages
cagey
cairn
cairo
cajun
cake
cakes
caleb
calf
calibre
calico
california
call
calls
callus
calm
calms
calorie
calve
calvin
calypso
cam
camber
came
camel
camelot
cameo
camera
camilla
camp
camps
campus
can
canada
canal
canary
cancer
candid
candle
candy
cane
caned
cannon
cannot
canny
canoe
canon
canopy
cans
cantina
cantor
canvas
canyon
cap
cape
caped
caper
capital
capri
capsule
captain
car
carat
caravan
carbon
card
cardinal
care
career
cares
caress
caret
cargo
carl
carla
carlo
carlos
carmen
carmine
carol
carolina
carp
carpet
carrie
carrot
carry
cars
carson
cart
cartel
carter
cartoon
carve
case
cases
casey
cash
cashew
casino
casio
cask
casket
cast
caste
castle
castro
cat
catalog
catch
cathy
catnip
cats
catty
caulk
cause
cave
cavern
caves
caviar
cavort
caw
cease
cecil
cedar
cede
celery
cell
cello
celtic
cement
census
cent
centaur
center
central
cents
century
ceramic
ceres
cern
ceylon
chad
chafe
chaff
chai
chain
chair
chalk
chamber
champ
chance
change
channel
chant
chaos
chap
chapel
chapter
char
chard
chariot
charles
charlie
charm
chart
charter
chase
chasm
chaste
chat
chats
cheap
cheat
check
cheek
cheeky
cheer
cheese
chef
chemist
cherry
cherub
chess
chest
chevy
chew
chews
chewy
chic
chicago
chick
chicken
chicks
chide
chief
child
chile
chili
chill
chilly
chime
chimp
chin
china
chink
chip
chips
chirp
chisel
chit
chive
chloe
chock
choice
choir
choke
chomp
choose
chop
chopin
chops
choral
chord
chore
chose
chosen
chow
chris
chrome
chuck
chug
chum
chump
chunk
churn
chute
ciao
cicada
cider
cigar
cilia
cinch
cindy
cinema
cipher
circa
circle
circuit
circus
cite
citizen
citrus
city
civic
civil
clad
claim
clam
clammy
clamp
clan
clang
clank
clap
claps
clara
clarinet
clarion
clark
clash
clasp
class
classic
claudia
claus
clause
claw
claws
clay
clean
clear
cleat
clef
cleft
clerk
clever
cliche
click
client
cliff
climax
climb
cling
clinic
clink
clip
clive
cloak
clock
clod
clog
clomp
clone
close
closet
clot
cloth
cloud
clout
clover
clown
cloy
club
clubs
cluck
clue
clues
clump
clumsy
clung
coach
coal
coast
coat
coats
coax
cob
cobalt
cobble
cobra
cockle
cockpit
cocky
coco
cocoa
coconut
cod
coda
coddle
code
coded
codes
cody
coed
cog
cogent
cogs
coif
coil
coils
coin
coins
coke
cola
colby
cold
cole
collect
colon
colonel
colony
color
colorado
colt
columbia
columbus
coma
comb
combat
combine
combo
come
comedy
comet
comfy
comic
comma
command
common
compact
company
complex
comply
comrade
con
conan
concert
conch
concord
condo
condor
conduct
cone
coney
confide
congo
conic
connect
conner
conrad
consul
contact
context
contour
control
convert
convex
convey
convoy
conway
cony
cook
cooky
cool
cooley
coon
coop
cooper
coors
coos
cop
cope
copes
copper
cops
copy
coral
cord
cordon
cordova
cords
core
cork
corn
corner
cornet
corny
corona
correct
cortex
corvus
cosmic
cosmos
cost
costs
costume
cosy
cot
cotton
couch
cough
could
count
coup
coupe
couple
coupon
courage
course
court
cousin
cove
cover
covet
cow
cowboy
cowl
cows
cox
coy
coyote
cozy
crab
crack
craft
crag
craig
cram
cramp
crane
crank
crap
craps
crash
crass
crate
crater
craw
crawl
crayon
craze
crazy
creak
cream
credit
credo
creed
creek
creep
creole
crepe
crept
cress
crest
crete
crew
crib
cricket
cried
crime
crimp
crimson
crisis
crisp
critic
croak
crock
crocus
croft
crone
crook
croon
crop
crops
cross
crouch
crow
crowd
crown
crows
crud
crude
cruel
crumb
crump
crunch
crush
crust
crux
cruz
cry
crypt
crypts
crystal
cub
cuba
cuban
cube
cubic
cubist
cubs
cuddle
cue
cues
cuff
cull
cult
cults
culture
cumin
cup
cupful
cupid
cups
cur
curb
curd
cure
cured
curfew
curie
curl
curls
current
curry
curse
curt
curtain
curve
cusp
cuss
cut
cute
cutlet
cuts
cyan
cycle
cyclone
cyclops
cymbal
cynic
cyril
cyrus
cyst
czar
czech
dab
dad
dada
daddy
daffy
daft
dagger
dahlia
daily
dairy
dais
daisy
dakar
dakota
dale
daley
dallas
dally
daly
dam
damage
dame
damn
damon
damp
damsel
dan
dance
dandy
dane
dang
danger
daniel
dank
danny
dante
dare
dared
dares
dark
darken
darn
darry
dart
darts
darwin
dash
data
date
dates
datum
daub
daunt
dave
david
davis
dawn
dawson
day
days
daze
dazed
dazes
deacon
dead
deaf
deal
deals
dealt
dean
dear
death
debase
debbie
debby
debit
debra
debris
debt
debts
debug
debut
decade
decal
decay
december
decibel
decide
decimal
deck
declare
decor
decoy
decree
decry
deed
deeds
deem
deep
deer
defect
defend
defer
define
deform
deft
defy
degree
deify
deign
deity
delaware
delay
delete
delhi
deli
delia
deliver
dell
delphi
delta
delve
demand
demark
demo
demon
demur
den
denial
denim
denmark
denny
dense
density
dent
denton
dents
denver
deny
depend
deposit
depot
dept
depth
depute
deputy
derby
desert
design
desire
desist
desk
desks
detach
detail
detect
deter
detox
detroit
deuce
deus
develop
devil
devoid
devon
dew
dewey
dexter
diablo
diagram
dial
dialog
dials
diamond
diana
diane
diaper
diary
dibble
dibs
dice
did
die
died
diego
diem
dies
diesel
diet
diets
diety
dig
digit
digital
digs
dike
dilate
dilemma
dill
dim
dime
dimes
dimly
dims
din
dine
diner
ding
dingo
dingy
dinner
diode
dip
diploma
dips
dirac
dire
direct
dirge
dirk
dirt
dirty
disc
disco
dish
disk
disney
dispute
distant
disuse
ditch
ditto
ditty
diva
divan
dive
dives
divide
dixie
dixon
dizzy
doc
dock
docket
doctor
dodge
doe
does
dog
dogma
dogs
doily
doing
dolby
dolce
dole
doll
dollar
dolly
dolphin
dolt
domain
dome
domed
domino
don
donald
done
donna
donor
donut
doom
door
dope
dopey
dora
doric
doris
dorm
dormant
dose
dot
dote
dots
double
doubt
doug
dough
dour
douse
dove
dover
doves
dow
dowel
down
downs
dowry
doyle
doze
dozen
drab
draco
draft
drag
dragon
drain
drake
drama
drank
drape
drastic
draw
drawl
drawn
dread
dream
dreamy
dreg
dregs
dress
dressy
drew
dried
drier
dries
drift
drill
drink
drip
drips
drive
driver
droid
droll
drone
drool
droop
drop
drops
drove
drown
drug
drugs
druid
drum
drums
drunk
dry
dryad
dual
dub
dublin
duck
ducks
duct
dud
dude
due
duel
dueler
dues
duet
duff
duffy
dug
duke
dull
duly
dumb
dumbo
dummy
dump
dumps
dumpy
dunce
dune
dung
dunham
dunk
dunlop
duo
dupe
during
dusk
dusky
dust
dusty
dutch
duty
dwarf
dwell
dwelt
dwight
dwyer
dye
dyed
dying
dylan
dynamic
dynamo
dynasty
dyne
each
eager
eagle
ear
earl
early
earn
earns
ears
earth
ease
easel
easing
east
eastern
easy
eat
eaten
eater
eats
eave
eaves
ebb
ebony
echo
eclipse
ecology
economy
eddie
eddy
eden
edgar
edge
edges
edgy
edible
edict
edify
edison
edit
edith
edition
editor
edits
educate
edward
edwin
eel
eerie
efface
effect
effie
egan
egg
eggroll
eggs
ego
egress
egret
egypt
eight
eject
elastic
elate
elbow
elder
eldon
elect
electra
elegant
elegy
element
elena
eleven
elf
elfin
elide
elite
eliza
elk
elks
ella
ellen
ellipse
ellis
elm
elmer
elms
elope
elroy
else
elsie
elton
elude
elves
elvis
email
embalm
embargo
embark
embed
ember
emerald
emery
emil
emily
emit
emits
emma
emmy
emory
emote
emotion
empire
employ
empty
emu
enact
enamel
end
ended
ending
endive
ends
enema
enemy
energy
engine
england
english
engulf
enid
enigma
enjoy
enmity
ennui
enrico
ensue
enter
entrap
entry
envoy
envy
eon
eons
epic
epics
episode
epoch
epoxy
epsom
equal
equals
equator
equip
era
erase
erato
ere
erect
erg
ergo
eric
erica
erie
erin
ernest
ernie
ernst
erode
eros
erosion
err
errand
error
erupt
erwin
escape
escort
eskimo
essay
essex
ester
etch
eternal
ethan
ethel
ether
ethic
ethnic
ethos
ethyl
eucre
euler
eureka
euro
europe
eva
evade
evans
eve
even
evening
event
ever
everest
every
evict
evident
evil
evoke
evolve
ewe
exact
exalt
exam
example
exams
excel
except
excess
exert
exhibit
exile
exist
exit
exits
exodus
exotic
expand
expel
explain
explore
expo
export
express
extant
extend
extent
extol
extra
extreme
exude
exult
exxon
eye
eyed
eyes
ezra
fable
fabric
face
faces
facet
facile
fact
factor
factory
facts
fad
fade
fads
fail
faint
fair
fairs
fairy
faith
fake
faker
falcon
fall
false
fame
family
famous
fan
fancy
fang
fangs
fanout
fans
fantasy
far
farce
fare
fargo
farm
farmer
farms
fashion
fast
fat
fatal
fate
father
fats
fatty
fault
faun
fauna
faust
faux
fawn
fax
faze
fear
fears
feast
feat
feather
february
fed
fee
feeble
feed
feeds
feel
feels
fees
feet
feign
feint
felice
felix
fell
felt
femur
fence
fend
fermi
fern
ferrari
ferric
ferry
fertile
fest
fetal
fetch
fetid
fetus
feud
feudal
fever
few
fez
fiasco
fiat
fib
fiber
fickle
fiction
fidel
fief
field
fiend
fiery
fiesta
fifth
fifty
fig
fight
figs
figure
fiji
filch
file
filed
files
filet
fill
filler
filly
film
films
filmy
filter
filth
fin
final
finale
finance
finch
find
finder
fine
fined
finer
finger
finish
finite
fink
finland
fiona
fir
fire
firm
first
fish
fisher
fishy
fist
fit
fits
five
fix
fixed
fizz
fjord
flab
flack
flag
flail
flair
flak
flake
flaky
flame
flank
flap
flare
flash
flask
flat
flavor
flaw
flax
flay
flea
fleck
fled
flee
fleet
fleming
flesh
flew
flex
flick
flier
flies
flight
flinch
fling
flint
flip
flipper
flirt
flit
float
flock
flog
flood
floor
flop
floppy
flora
floral
florida
flour
flout
flow
flower
flown
floyd
flu
flub
fluff
fluid
fluke
flung
flush
flute
flux
fly
flyer
flynn
foal
foam
foamy
fob
focal
foci
focus
fodder
foe
foes
fog
foggy
foil
fold
folio
folk
folly
fond
font
food
fool
foot
fop
for
foray
forbid
force
ford
forest
forever
forge
forget
forgot
fork
form
formal
format
forms
formula
fort
forte
forth
fortune
forty
forum
forward
fossil
foul
found
four
fovea
fowl
fox
foxes
foxtrot
foxy
foyer
fractal
fragile
frail
frame
fran
franc
franca
france
francis
frank
fraud
fray
freak
fred
freddie
free
freed
freedom
freer
freeze
freezer
french
frenzy
freon
fresh
fret
freud
friar
friday
fried
friend
fries
fright
frill
frilly
frisbee
frisky
fritz
frock
frog
frogs
from
frond
front
frost
froth
frown
froze
frozen
fruit
fry
fuchsia
fudge
fuel
fugue
fuji
full
fully
fumble
fume
fumes
fun
fund
funds
fungal
fungi
fungus
funk
funky
funny
fur
furry
furs
fury
fuse
fuss
fussy
future
fuzz
fuzzy
gab
gable
gabriel
gadget
gaffe
gag
gage
gags
gain
gait
gal
gala
galaxy
gale
galileo
gall
gallery
gallop
game
games
gamma
gamut
gander
gang
gangs
gap
gape
gapes
gaps
garage
garb
garbage
garbo
garcia
garden
gargle
garish
garlic
garner
garth
gas
gash
gasp
gasps
gassy
gate
gates
gator
gauche
gaudy
gauge
gaul
gaunt
gauss
gauze
gave
gavel
gavin
gawk
gawky
gaze
gazed
gazes
gear
gears
gecko
geese
gel
gelatin
geld
gem
gemini
gems
gene
general
genes
genesis
genetic
geneva
genie
genius
genoa
genre
gent
gentle
gentry
genuine
genus
geo
george
georgia
gerbil
germ
german
germany
germs
get
gets
getty
ghana
ghent
ghetto
ghi
ghost
ghoul
ghouls
giant
gibson
giddy
gift
gifts
gig
gila
gilbert
gild
giles
gill
gills
gilt
gimbal
gimpy
gin
gina
ginger
giraffe
gird
girl
girls
girth
gist
give
given
gives
gizmo
glacier
glad
gladdy
glade
glamor
glance
gland
glare
glass
glaze
gleam
glean
glee
glen
glib
glide
glint
gloat
glob
global
globe
glom
gloom
gloria
glory
gloss
glove
glow
glows
glucose
glue
glued
gluey
gluing
glum
glut
glyph
gnarl
gnarly
gnash
gnat
gnaw
gnaws
gnome
gnu
goa
goad
goal
goals
goat
goats
goblet
goblin
god
godly
gods
goes
goggle
gogo
going
gold
golem
golf
goliath
golly
gomez
gondola
gone
gong
goo
good
goods
gooey
goof
goofy
goon
goose
gopher
gordon
gore
gorge
gorilla
gory
gosh
gospel
gossip
got
gouda
gouge
gourd
gout
gown
gowns
grab
grabs
grace
grad
grade
grady
graft
grail
grain
gram
grams
grand
granite
grant
grape
graph
graphs
grasp
grass
grate
grave
gravel
gravity
gravy
gray
graze
great
greece
greed
greedy
greek
green
greet
greg
gregory
gremlin
greta
grew
grey
grid
grief
grieve
griffin
grill
grim
grime
grimy
grin
grind
grins
grip
gripe
gripes
grips
grit
groan
groat
grog
groin
groom
groove
grope
gross
ground
group
grout
grove
grovel
grow
growl
grown
grows
grub
grubs
gruff
grunt
guam
guano
guard
guava
guess
guest
guide
guild
guile
guilt
guinea
guise
guitar
gulag
gulf
gull
gulls
gully
gulp
gum
gumbo
gummy
gun
gunk
gunky
guns
guppy
gurgle
guru
gus
gush
gust
gustav
gusts
gusty
gut
guts
gutsy
guy
guyana
guys
gwen
gym
gyp
gypsum
gypsy
gyro
habit
habitat
hack
had
hades
hadron
hag
hague
haiku
hail
hair
hairs
hairy
haiti
hal
hale
haley
half
hall
halls
halo
halt
halts
halve
ham
hamlet
hammer
hams
hand
handle
hands
handy
hang
hanger
hank
hanna
hanoi
hans
hansel
hap
happy
harbor
hard
hardly
hardy
hare
harem
hark
harlem
harley
harm
harmony
harms
harold
harp
harps
harpy
harris
harry
harsh
harvard
harvest
harvey
has
hash
haste
hasty
hat
hatch
hate
hater
hates
hatred
hats
haul
hauls
haunt
haunts
havana
have
haven
havoc
haw
hawaii
hawk
hawks
hay
hayes
hazard
haze
hazel
hazy
head
heads
heady
heal
heals
healy
heap
heaps
hear
heard
hears
heart
heat
heath
heats
heave
heaven
heavy
hebrew
heck
heckle
hectic
hedge
heed
heel
heels
heft
hefty
height
heir
heirs
held
helen
helena
helga
helium
helix
hell
hello
helm
help
hem
hemp
hems
hen
hence
henry
hens
her
hera
herb
herbal
herbert
herbs
herd
here
herman
hero
heroic
heron
herons
hers
hertz
hew
hewn
hex
hexagon
hexed
hey
hid
hide
hides
high
higher
hijack
hike
hikes
hill
hills
hilly
hilt
hilton
him
hind
hindi
hindu
hinge
hint
hints
hip
hippie
hippo
hippy
hips
hire
hired
hires
his
history
hit
hitch
hits
hive
hives
hoard
hoax
hob
hobbit
hobby
hobo
hoc
hock
hockey
hodge
hodges
hoe
hog
hogan
hogs
hoist
hold
holds
holdup
hole
holes
holiday
hollow
holly
holt
holy
home
honda
hondo
hone
honest
honesty
honey
hong
honk
honor
hood
hoof
hook
hooks
hookup
hoop
hoot
hop
hope
hopes
hops
horde
horizon
horn
horny
horse
horus
hose
host
hostel
hot
hotbox
hotel
hotrod
hound
hour
house
houston
hovel
hover
how
howdy
howl
howls
hoyle
hub
hubbub
hubby
huber
hubs
huck
hue
hued
hues
huey
huff
hug
huge
hugo
hugs
hula
hulk
hull
hum
human
humid
humor
hump
humps
hums
humus
hun
hunch
hundred
hung
hunk
hunt
hunter
hunts
hurl
huron
hurrah
hurry
hurt
husband
hush
husk
husky
hut
hutch
hyde
hydra
hydro
hyena
hymen
hymn
hymnal
hype
hyper
hypo
iambic
ian
ibex
ibis
ibiza
ice
iceberg
iced
icicle
icing
icky
icon
icons
icy
ida
idaho
idea
ideal
ideals
ideas
idiom
idiot
idle
idly
idol
idols
idyll
iffy
igloo
ignite
igor
ike
iliad
ill
image
imagine
imbibe
imbue
imitate
immune
immure
imp
impact
impel
imply
import
impress
imps
inane
inapt
inca
incest
inch
include
incur
index
india
indiana
indies
indigo
inept
inert
infamy
infant
infect
infer
infix
info
infra
ingot
ingrid
inhale
initial
ink
inky
inlay
inlet
inn
inner
inns
input
insect
inset
inside
instant
instead
insult
intel
intend
inter
into
intro
invent
invest
invite
invoke
ion
ionic
ions
iota
iowa
iran
iraq
iraqi
irate
ire
irene
iris
irish
irk
irked
iron
ironic
irons
irony
isaac
isabel
isis
islam
island
isle
isotope
israel
issue
italian
italy
itch
itchy
item
items
iud
ivan
ivory
ivy
jab
jack
jackal
jacket
jackson
jacob
jade
jaded
jaguar
jail
jaime
jake
jam
jamaica
jamb
james
jan
jane
january
janus
japan
jar
jargon
jars
jasmine
jason
jaunt
java
jaw
jaws
jay
jazz
jazzy
jean
jeans
jedi
jeep
jeer
jeers
jeff
jello
jelly
jenny
jerk
jerks
jerky
jerome
jerry
jersey
jess
jesse
jessica
jest
jester
jesus
jet
jets
jew
jewel
jewish
jibe
jiffy
jig
jiggle
jigs
jill
jilt
jim
jimmy
jinx
jive
joan
job
jobs
jock
jockey
jody
joe
joel
joey
jog
jogs
john
join
joins
joint
joke
joker
jokes
jolly
jolt
jon
jonas
jones
jordan
jorge
jose
josef
joseph
josh
joshua
jostle
jot
jots
joule
journal
joust
jove
jowl
jowls
jowly
joy
joyce
juan
judas
jude
judge
judo
judy
jug
juggle
jugs
juice
juicy
juju
juke
jukes
julep
jules
julia
julie
juliet
julio
julius
july
jumbo
jump
jumps
jumpy
june
jungle
junior
junk
junky
juno
junta
jupiter
juror
jury
just
justice
jut
jute
kabul
kafka
kale
kane
kansas
kant
kappa
kaput
karate
karen
karl
karma
karol
karp
kate
kathy
katie
katz
kava
kayak
kazoo
keats
keel
keen
keep
keeps
keg
kegs
keith
keller
kelly
kelp
kemp
ken
kennel
kentucky
kenya
kepler
kept
kermit
kerry
kettle
kevin
key
keyed
keys
khaki
khan
khmer
kick
kicks
kid
kidney
kids
kiev
kill
kills
kiln
kilo
kilt
kilts
kim
kimono
kin
kind
kinds
kinetic
king
kingdom
kings
kink
kinky
kiosk
kirby
kirk
kiss
kit
kitchen
kite
kites
kitty
kiva
kivu
kiwi
klaus
klaxon
klutz
knack
knave
knead
knee
kneel
knees
knelt
knew
knick
knife
knight
knit
knits
knob
knobs
knock
knoll
knot
knots
know
known
knows
knox
koala
kodak
kong
kook
kooks
kooky
korea
kraft
kraut
krebs
kudos
kurd
kurt
kyle
kyoto
lab
label
labor
labs
lace
laces
lack
lacks
lactic
lacuna
lacy
lad
ladder
laden
ladle
lads
lady
lag
lager
lagoon
lagos
lags
laid
lain
lair
laity
lake
lakes
lam
lamar
lamb
lambs
lame
lamp
lamps
lance
land
lands
lane
lang
lanky
laos
lap
lapel
laps
lapse
laptop
lard
large
lark
larks
larry
lars
larsen
larva
larynx
laser
lash
lass
lasso
last
latch
late
later
latest
latex
lathe
latin
laud
laugh
launch
laura
lava
law
lawn
lawns
laws
lax
lay
layer
lays
layup
lazarus
laze
lazy
lea
leach
lead
leads
leaf
leafy
leak
leaks
leaky
lean
leap
leaps
leapt
lear
learn
leary
lease
leash
least
leave
lecture
led
ledge
lee
leech
leeds
leek
leer
leers
leery
leeway
left
lefty
leg
legacy
legal
legend
legion
legs
leland
lemma
lemon
lend
lends
length
lenin
lenny
lenore
lens
lent
leo
leon
leona
leonid
leopard
leper
leroy
less
lesson
lest
let
lets
letter
lev
levee
level
lever
levi
levis
levy
lewd
lewis
lexical
lexicon
liar
liars
libel
liberal
libido
libra
library
libya
lice
license
lick
licks
lid
lids
lie
lied
lien
lies
lieu
life
lift
lifts
light
like
liked
liken
likes
lilac
lilly
lilt
lily
lima
limb
limbo
limbs
lime
limit
limp
limps
lin
lincoln
lind
linda
linden
line
linear
linen
lines
lingo
link
lint
linus
lion
lip
lipid
lips
liquid
lira
lisa
lisbon
lisp
list
listen
lists
lit
liter
lithe
lithium
little
live
liven
liver
livid
living
liz
lizzie
llama
lloyd
load
loaf
loan
loaner
lob
lobby
lobe
lobs
lobster
local
locate
loch
lock
locks
locus
lode
lodge
loft
lofty
log
logan
loge
logic
logical
logo
logs
loin
loins
loire
lois
loiter
loki
lola
lomb
lome
london
lone
lonely
loner
long
longer
longs
look
looks
loom
loon
loony
loop
loose
loot
lope
lopez
lops
lord
lore
lorenzo
lose
loser
loses
loss
lossy
lost
lot
lots
lotto
lotus
lou
loud
louis
louise
louisiana
louse
lousy
lout
love
loved
lover
low
lower
lowry
loy
loyal
lucas
luce
lucia
lucid
luck
lucky
lucy
ludwig
lug
luge
luger
lugs
luis
luke
lull
lumbar
lumen
lump
lumps
lumpy
luna
lunar
lunch
lung
lunge
lungs
lurch
lure
lurid
luring
lurk
lurks
lush
lust
lusty
lute
luxury
lydia
lye
lying
lymph
lynch
lynx
lyon
lyre
lyric
macaw
mace
mach
machine
macho
mack
macro
mad
madam
made
madly
madman
madonna
madrid
mae
maestro
mafia
magenta
magi
magic
magma
magnet
magnum
magoo
magpie
maid
maids
mail
mailbox
maim
maims
main
maine
maize
major
make
malady
male
mali
malice
malign
mall
malls
malt
malta
mama
mambo
mammal
mammoth
man
mana
manager
mandolin
mane
mange
mango
mania
manic
manila
manly
manna
manor
manse
mantle
manual
many
maori
map
maple
maps
mar
maraud
marble
march
marco
marcy
mares
marge
margin
margo
maria
marie
marimba
marin
marina
marine
mariner
mario
marion
mark
market
marks
marlin
marlon
marrow
marry
mars
marsh
mart
martin
martyr
marvin
marx
mary
maryland
mash
mask
masks
mason
mass
mast
master
masts
mat
match
mate
mated
mateo
mates
math
matrix
mats
matt
matte
mature
matzo
maul
mauls
mauve
mavis
maw
max
maxim
maxima
maximum
maxwell
may
maya
maybe
mayday
mayer
mayhem
mayo
mayor
maze
mazes
mead
meadow
meal
meals
mealy
mean
meaning
means
meant
meat
meaty
mecca
medal
media
medic
medical
medics
medium
medley
medusa
meek
meet
meets
meg
mega
mel
meld
melee
mellow
melody
melon
melt
melts
member
memo
memoir
memory
memos
memphis
men
mend
mendez
mendoza
mends
menlo
mental
mentor
menu
meow
merck
mercury
mercy
mere
merge
merit
merits
merlin
merry
mesa
mescal
mesh
meson
mess
message
messy
met
metal
meteor
meter
method
metro
mew
mexico
meyer
meyers
mezzo
miami
mice
michael
micro
mid
midas
middle
midge
midst
miff
mig
might
miguel
mike
milan
mild
mildew
mile
miles
milk
milky
mill
miller
millet
million
mills
milo
milt
mime
mimes
mimi
mimic
mimosa
mince
mind
minds
mine
mined
miner
mineral
minerva
mines
mini
minimal
minimum
mink
minnesota
minnow
minor
minsk
mint
mints
minty
minus
minute
mira
miracle
mirage
miranda
mire
mired
mirror
mirth
miser
misery
miss
mission
missy
mist
mistake
mister
mists
misty
mit
mite
mites
mitts
mix
mixed
mixer
mixes
mixture
mixup
moan
moans
moat
moats
mob
mobil
mobile
mobs
moby
mock
mocks
modal
mode
model
modem
modern
modest
modish
modular
moe
mogul
moist
mojo
molar
mold
molds
mole
moles
molly
molt
molten
mom
moment
mommy
mona
monaco
monad
monarch
monday
mondo
money
monic
monica
monitor
monk
monkey
mono
monster
montana
month
monty
moo
mooch
mood
moods
moody
moon
moons
moose
moot
mop
mope
mopes
mops
moral
morale
morbid
more
morgan
morn
morning
moron
morph
morris
morse
morsel
mort
mortal
mosaic
moser
moses
moss
mossy
most
mot
mote
motel
moth
mother
moths
motif
motor
motto
mould
mound
mount
mourn
mouse
mousy
mouth
move
moved
moves
movie
mow
mowed
mower
mows
moxie
mozart
much
muck
mucus
mud
muddy
muff
muffin
mug
muggy
mugs
muir
mulch
mule
mules
mull
multi
mumble
mumps
munch
mung
munson
muon
mural
muriel
murk
murky
muse
muses
museum
mush
mushy
music
musical
musk
musky
muslim
muss
mussel
must
mustang
musty
mute
muted
mutt
myers
mylar
myopia
myra
myron
myrrh
myself
mystery
mystic
myth
myths
nab
nabs
nadia
nadir
nag
nagoya
nags
nail
nails
naked
name
named
names
nancy
naomi
nap
nape
napkin
naps
nary
nasal
nash
nasty
natal
natasha
nate
native
natty
natural
nature
nausea
naval
nave
navel
navy
nay
neal
near
nearby
neat
nebraska
nebula
neck
necks
nectar
ned
need
needle
needs
needy
negate
neigh
neil
nell
nelsen
nelson
neon
nepal
neptune
nerd
nero
nerve
ness
nest
nests
net
nets
network
neuron
neutral
neutron
neva
nevada
never
new
newly
news
newt
newton
next
nexus
nib
nibs
nice
nicer
nicety
niche
nick
nickel
niece
nifty
niger
nigh
night
nil
nile
nimbus
nina
nine
ninja
ninth
nip
nirvana
nissan
nit
nitric
nitro
nitty
nitwit
nix
nixon
noah
nob
nobel
noble
nobody
nod
nodal
node
nods
noel
noise
noisy
nolan
noll
nomad
nominal
nonce
none
nook
noon
noose
nop
nope
nor
nora
norm
norma
normal
north
norway
nose
noses
nosy
not
notch
note
noted
notes
nothing
notre
noun
nouns
nova
novak
novel
november
now
nowhere
nuance
nubia
nuclear
nuclei
nucleus
nude
nudge
nuke
null
numb
number
numeric
nun
nuns
nurse
nut
nutmeg
nuts
nutty
nylon
nymph
oaf
oak
oaken
oakley
oar
oars
oases
oasis
oat
oath
oats
oberon
obese
obey
obeys
obit
object
objet
oboe
obscure
observe
ocarina
occur
ocean
oct
octal
octave
octavia
octet
october
octopus
odd
oddity
odds
ode
odin
odium
odor
odors
off
offal
offend
offer
office
oft
often
ogden
ogle
ogled
ogles
ogre
ohio
ohm
oil
oiled
oils
oily
oink
okay
okays
okinawa
oklahoma
okra
olaf
olav
old
olden
older
oldy
olga
olive
oliver
olivia
olympic
omaha
oman
omega
omen
omens
omicron
omit
omits
once
one
onion
only
onset
onto
onus
onward
onyx
ooze
oozed
opal
opals
opec
open
openly
opens
opera
opinion
opium
optic
optimal
optimum
option
opus
oral
orange
orate
orb
orbit
orbital
orbs
orca
orchid
ordain
order
ore
oregano
oregon
organ
organic
orgy
orient
origami
origin
orion
orlando
ornery
orphan
osaka
oscar
osier
oslo
othello
other
otis
otter
otto
ouch
ought
ounce
our
ours
oust
out
outdo
outer
outlaw
outside
ouzo
ova
oval
ovals
ovary
ovate
oven
ovens
over
overt
ovid
owe
owed
owens
owes
owing
owl
owls
own
owned
owner
owners
owns
oxen
oxeye
oxford
oxide
oxnard
oxygen
ozark
ozone
pablo
pabst
pace
paces
pacific
pack
package
packet
packs
pact
pad
paddy
padre
pads
pagan
page
pages
pagoda
paid
pail
pain
pains
paint
pair
pal
palace
paladin
pale
pall
palm
palma
palms
pals
palsy
pam
pamela
pan
panama
pancake
panda
pandora
pane
panel
pang
panic
pans
pansy
pant
panther
pants
panty
papa
papal
paper
pappy
paprika
papua
par
paradox
parch
pardon
parent
pareto
pariah
paris
park
parker
parking
parks
parlor
parody
parole
parrot
parry
parse
parsley
part
partner
parts
party
pascal
pass
passage
passive
past
pasta
paste
pastel
pasty
pat
patch
patent
path
paths
patient
patio
patriot
patrol
pats
patsy
pattern
patton
patty
paul
paula
pauli
paulo
pause
pave
paved
paves
paw
pawed
pawn
pawns
paws
pax
pay
payday
paz
pea
peace
peach
peak
peaks
peaky
peal
pear
pearl
pears
peas
peat
pebble
pecan
peck
pecks
pedal
pedro
pee
peed
peek
peel
peep
peer
peeve
peg
pegasus
peggy
pegs
pelican
pelt
pen
penal
pence
pencil
pend
penguin
penny
pens
pent
peony
people
pep
pepper
peppy
pepsi
percent
perch
percy
perez
perfect
perform
perfume
peril
period
perk
perks
perky
perm
permit
perry
persia
person
perth
peru
peruse
pest
pests
pet
petal
pete
peter
petit
petri
pets
petty
pew
phage
phantom
phase
phenol
phi
phil
phoenix
phone
phony
photo
phrase
phyla
physic
piano
pica
picasso
piccolo
pick
picks
pickup
picky
picnic
picture
pie
piece
pier
pierce
pierre
piers
pies
piety
pig
pigeon
pigment
pigs
pigsty
pike
pile
piles
pilgrim
pill
pills
pilot
pimp
pimple
pin
pinball
pinch
pine
pines
ping
pinion
pink
pins
pint
pinto
pinup
pioneer
pious
pip
pipe
piper
pique
pirate
piston
pit
pita
pitch
pith
pithy
pitney
pits
pity
pius
pivot
pixel
pixie
pizza
place
plague
plaid
plain
plan
plane
planet
plank
plant
plasm
plasma
plastic
plat
plate
plato
play
playa
plays
plaza
plea
plead
pleas
pleat
pledge
pliny
plod
plods
plop
plot
plots
plow
plows
ploy
ploys
pluck
plug
plugs
plum
plumb
plume
plump
plums
plunk
plus
plush
plushy
pluto
ply
poach
pocket
pod
podge
podium
pods
poe
poem
poems
poet
poetic
poetry
pogo
poi
point
poise
poison
poke
poked
poker
pokes
polar
polaris
pole
poles
police
polio
politic
polk
polka
poll
polls
polo
polygon
pomona
pomp
poncho
pond
ponds
pong
pony
pooch
pooh
pool
pools
poop
poor
pop
popcorn
pope
poppy
pops
popular
porch
pore
pores
pork
porous
port
portal
portia
porto
ports
pose
posed
poses
posey
posh
posit
posse
post
postage
poster
posts
pot
potato
pots
potter
pouch
pound
pour
pours
pout
pouts
pow
powder
power
pox
prague
pram
prank
prawn
pray
prays
precise
preen
prefer
prefix
prelude
premium
prep
prepare
present
press
presto
pretend
pretty
prey
priam
price
prick
pride
prig
prim
prime
primp
prince
print
printer
prior
prism
prissy
private
privy
prize
pro
probe
problem
process
prod
prodigy
prods
product
profile
program
project
prom
promise
promo
prone
prong
proof
prop
propel
proper
props
propyl
prose
prosper
protect
protest
proton
proud
prove
provide
prow
prowl
proxy
prude
prune
prunes
pry
psalm
psych
pub
public
pubs
puck
pucker
puddle
puddly
pudgy
puerto
puff
puffin
puffs
puffy
pug
puke
pull
pulls
pulp
pulsar
pulse
puma
pump
pumps
pun
punch
punic
punish
punk
punks
punky
puns
punt
punts
puny
pup
pupil
puppy
pure
purge
purify
purple
purse
pus
push
pushy
put
puts
putty
puzzle
pygmy
pyramid
pyre
pyrex
pyrite
python
qatar
quack
quad
quaff
quail
quake
quality
qualm
quark
quarry
quart
quarter
quash
quasi
quay
queasy
quebec
queen
queer
quell
query
quest
queue
quick
quid
quiet
quill
quilt
quilts
quint
quip
quips
quirk
quit
quite
quits
quiver
quiz
quota
quote
rabbi
rabbit
rabid
race
raced
races
rachel
rack
racy
radar
radial
radical
radii
radio
radish
radium
radius
radon
rafael
raft
rafts
rag
rage
raged
rags
raid
raids
rail
rails
rain
rainbow
rains
rainy
raise
raisin
raj
raja
rake
raked
rakes
rally
ralph
ram
raman
rambo
ramirez
ramp
rams
ramsey
ran
ranch
random
rang
range
ranger
rangy
rank
ranks
rant
rants
rap
rapid
raps
rapt
rare
rascal
rash
rasp
rat
rate
rated
rates
rating
ratio
rats
rattle
rave
raved
raven
ravioli
raw
ray
raymond
rays
raze
razor
reach
read
reads
ready
reagan
real
realm
ream
reap
rear
reave
rebel
rebut
recap
recipe
recital
reck
record
recur
recycle
red
redeem
redo
reduce
reed
reeds
reef
reek
reeks
reel
reels
reese
reeve
refer
reflex
reform
regal
regard
regina
region
regis
regular
rehab
reich
reid
reign
rein
reins
reject
relax
relay
relic
rely
reman
remark
remedy
remit
remix
remora
remote
remus
rend
renew
reno
renown
rent
rents
rep
repair
repay
repeat
repel
repent
reply
report
reps
reptile
request
rerun
reset
resin
resort
respect
respond
rest
rests
result
resume
retch
return
reuse
reveal
revel
reverse
revet
review
revved
reward
rewove
rex
rheum
rhine
rhino
rho
rhode
rhyme
rib
ribbon
ribs
ricardo
rice
rich
richard
richmond
rick
rico
rid
ride
rider
ridge
rifle
rift
rig
riga
rigel
right
rigid
rigs
riley
rill
rim
rims
rind
ring
ringo
rings
rink
rinse
rio
riot
riots
rip
ripe
ripen
ripley
rips
rise
risen
risk
risky
rite
ritual
ritz
rival
river
rivet
riviera
roach
road
roads
roam
roar
roast
rob
robe
robert
robin
robot
robs
rock
rocket
rocks
rocky
rod
rode
rodent
rodeo
rods
roe
roger
rogue
roil
role
roll
rolls
roman
rome
romeo
romp
ron
ronald
rondo
rood
roof
rook
rookie
room
rooms
roomy
roost
root
roots
rope
rosa
rose
rosen
rosetta
ross
rosy
rot
rote
roth
rotor
rots
rouge
rough
round
rouse
rout
route
rove
rover
row
rowdy
rows
roy
royal
royce
rub
rubber
rube
ruben
rubric
rubs
ruby
ruddy
rude
rudolf
rudy
rue
rufus
rug
rugged
rugs
ruin
ruins
rule
ruler
rules
rum
rumen
rummy
rumor
rump
rumpus
run
rune
runes
rung
runs
runt
runty
runway
rupee
rural
ruse
rush
russ
russia
russian
russo
rust
rusts
rusty
rut
ruth
ruts
rutty
ryan
rye
saber
sabine
sable
sabrina
sack
sacks
sacred
sad
sadden
saddle
sadly
safari
safe
safer
safes
sag
saga
sagas
sage
sags
sahara
said
sail
sailor
sails
saint
sake
salad
salami
salary
sale
salem
sales
saline
salk
sally
salmon
salon
salsa
salt
salts
salty
salute
salve
salvo
sam
samba
same
sammy
samoa
sample
samuel
sanchez
sand
sandal
sandra
sands
sandy
sane
sang
sanity
sank
santa
santana
sap
sappy
saps
sarah
sardine
sari
sase
sash
sat
satan
satin
saturday
saturn
satyr
sauce
saucy
saudi
saul
sauna
savage
save
saved
saves
savory
savoy
savvy
saw
saws
sawyer
sax
saxon
say
says
scab
scala
scald
scale
scalp
scam
scamp
scan
scans
scar
scare
scarf
scarlet
scars
scary
scat
scene
scent
scholar
school
scion
scoff
scold
scoop
scoot
scope
scorch
score
scorn
scorpio
scott
scour
scout
scow
scowl
scram
scrap
scrape
scratch
screen
screw
scrip
script
scrod
scroll
scrub
scuba
scud
scuff
scull
scum
scurry
sea
seal
seals
seam
seams
sean
sear
seas
season
seat
seats
seattle
second
secret
sect
section
sector
sects
secure
sedan
seduce
see
seed
seeds
seedy
seek
seeks
seem
seems
seen
seep
seer
seers
sees
seethe
segment
seize
select
self
selfish
sell
sells
semi
seminar
senator
send
sends
seneca
senior
sense
sensor
sent
sentry
seoul
sepia
september
sequel
sequin
serf
serial
serif
serpent
serum
serve
service
servo
sesame
set
seth
sets
setup
seven
sever
severe
sew
sewed
sewer
sewn
sews
sex
sexy
shack
shade
shadow
shady
shaft
shag
shaggy
shah
shake
shaken
shaky
shale
shall
shallow
sham
shame
shampoo
shank
shannon
shape
shard
shards
share
shark
sharon
sharp
shave
shaw
shawl
she
shear
sheath
shed
sheds
sheen
sheep
sheer
sheet
sheik
shelf
shell
shelter
sheriff
sherman
shift
shifty
shill
shim
shin
shine
shins
shiny
ship
ships
shire
shirk
shirt
shiv
shoal
shock
shoe
shoes
shone
shook
shoot
shoots
shop
shops
shore
short
shot
shots
shout
shove
show
shown
shows
showy
shrank
shred
shrew
shriek
shrike
shrink
shrub
shrug
shuck
shun
shunt
shut
shuts
shy
shyly
siam
sick
side
siege
siena
sienna
sierra
siesta
sieve
sift
sifts
sigh
sight
sigma
sign
signal
signs
silence
silicon
silk
silks
silky
sill
silly
silo
silt
silty
silver
similar
simon
simons
simple
sin
sinai
sinatra
since
sincere
sine
sinew
sing
singe
single
sings
sink
sinks
sins
sinus
sioux
sip
sips
sir
sire
siren
sis
sister
sit
site
sites
sits
six
sixth
sixty
size
sizes
skate
skew
ski
skid
skids
skied
skiers
skies
skiff
skiffs
skiing
skill
skim
skimp
skimpy
skims
skin
skip
skips
skirt
skis
skit
skits
skulk
skull
skunk
sky
slab
slabs
slack
slag
slain
slalom
slam
slams
slang
slant
slap
slaps
slash
slat
slate
slater
slave
slaw
slay
sled
sleds
sleek
sleep
sleet
slept
slew
slice
slick
slid
slide
slim
slime
slimy
sling
slip
slips
slit
sliver
sloan
slob
slog
slogan
sloop
slop
slope
sloppy
slops
slosh
slot
sloth
slots
slow
slows
slug
slugs
sluice
slum
slump
slums
slung
slur
slurp
slurs
sly
slyly
smack
small
smart
smash
smear
smell
smelt
smile
smirk
smith
smithy
smock
smog
smoggy
smoke
smoky
smooth
smudgy
smug
smut
snack
snafu
snag
snail
snails
snake
snap
snaps
snare
snark
snarl
snatch
sneak
sneer
sniff
snip
snipe
snob
snobs
snook
snoop
snore
snort
snot
snout
snow
snows
snowy
snub
snubs
snuff
snug
soak
soaks
soap
soapy
soar
soars
sob
sober
sobs
social
society
sock
socks
sod
soda
sofa
soft
soften
soggy
soil
soils
sol
solar
sold
sole
solemn
solid
solo
solomon
solve
soma
somber
some
son
sonar
sonata
song
songs
sonic
sonny
sonora
sons
sony
soon
soot
sooth
sop
soprano
sore
sorry
sort
sorts
sot
sough
soul
sound
soup
soupy
sour
source
sousa
south
soviet
sow
sown
sows
soy
soyuz
spa
space
spade
spain
spam
span
spank
spans
spar
spare
spark
sparks
sparta
spas
spasm
spat
spawn
spay
speak
spear
special
speck
sped
speech
speed
spell
spend
spent
sperm
spew
sphere
sphinx
spice
spicy
spider
spies
spike
spill
spilt
spin
spine
spins
spiral
spire
spires
spirit
spit
spite
spits
spitz
splat
splay
spline
split
spock
spoil
spoke
sponge
sponsor
spoof
spook
spooky
spool
spoon
spore
sport
spot
spots
spout
sprain
sprang
spray
sprays
spree
sprig
spring
spruce
spry
spud
spun
spunk
spur
spurn
spurs
spurt
spy
squad
square
squat
squaw
squid
squint
squirm
stab
stabs
stack
stacy
stadium
staff
stag
stage
staid
stain
stains
stair
stake
stale
stalk
stall
stamp
stan
stance
stand
stank
stanza
staph
star
stare
stark
stars
start
stash
stat
state
static
stats
statue
status
stave
stay
stays
stead
steady
steak
steal
steam
steed
steel
steen
steep
steer
stein
stella
stem
stems
step
steps
stereo
sterile
stern
steve
stew
stick
sticky
stiff
stigma
stile
still
sting
stingy
stink
stint
stir
stirs
stock
stoic
stoke
stole
stomp
stone
stony
stood
stool
stoop
stop
stops
store
storey
stork
storm
stormy
story
stout
stove
stow
strafe
strange
strap
straw
stray
street
stretch
strewn
strike
strip
stroll
strong
strum
strut
stuart
stub
stuck
stud
student
studio
study
stuff
stuffy
stump
stun
stung
stunk
stuns
stunt
style
styx
suave
sub
subject
subs
subtle
subtly
subway
such
suck
sucks
sud
sudan
suds
sue
sued
suede
sues
suez
sugar
suit
suite
suits
sulfur
sulk
sulks
sulky
sully
sultan
sultry
sum
sumac
summer
summon
sumo
sums
sun
sunday
sung
sunk
sunny
suns
sunset
sunup
sup
super
supper
support
supra
supreme
supt
sure
surf
surge
survive
sus
susan
sushi
susie
suzuki
suzy
swag
swam
swami
swamp
swampy
swan
swanky
swans
swap
swarm
swart
swat
swath
sway
sways
swear
sweat
sweaty
swede
sweden
sweep
sweet
swell
swept
swift
swig
swim
swims
swine
swing
swipe
swirl
swish
swiss
switch
swoop
sword
swore
sworn
swum
swung
sybil
sykes
sylvan
symbol
syria
syrup
system
tab
table
tablet
taboo
tabs
tacit
tack
tacky
taco
tacoma
tact
tactic
tad
taffy
taft
tag
tags
tahiti
tahoe
taiga
tail
tailor
tails
taint
take
taken
takes
talc
tale
talent
tales
talk
talks
tall
tallow
tally
talon
tam
tame
tamer
tampa
tamper
tan
tang
tango
tangy
tank
tanks
tans
tanya
tao
tap
tape
taped
taper
tapes
tapir
taps
tar
tara
tardy
target
tariff
tarp
tarry
tart
tarts
tarzan
task
taste
tasty
tattle
tattoo
tau
taunt
taurus
taut
tavern
tawny
tax
taxi
tea
teach
teacher
teacup
teak
teal
team
teams
tear
tease
teat
teats
tech
ted
teddy
tee
teem
teen
teens
teensy
tees
teet
teeth
teflon
telecom
telex
tell
tells
temper
temple
tempo
tempt
ten
tend
tends
tenet
tennis
tenon
tenor
tens
tense
tensor
tent
tenth
tents
tepee
tepid
term
terms
tern
terry
terse
test
tests
testy
texan
texas
text
textile
thai
than
thank
that
thatch
thaw
thaws
the
theft
their
them
theme
then
theory
there
thermos
these
theta
they
thick
thief
thigh
thin
thing
think
thins
third
thirsty
this
thomas
thong
thor
thorn
thorny
threat
three
threw
throb
throes
throw
throws
thrum
thud
thug
thumb
thump
thursday
thwart
thyme
tiara
tiber
tibet
tibia
tic
tick
ticket
ticks
tics
tidal
tidbit
tide
tidy
tie
tied
tier
ties
tiger
tight
tilde
tile
tiled
tiles
till
tilt
tilth
tim
time
times
timid
tin
tina
tine
tinge
tinny
tint
tiny
tip
tipoff
tips
tipsy
tire
tired
tires
tit
titan
titanic
tithe
title
titus
toad
toads
toast
tobacco
toby
today
toe
toes
tofu
tog
toga
togo
togs
toil
toilet
toils
token
tokyo
told
toll
tolls
tom
tomato
tomb
tombs
tome
tommy
ton
tonal
tone
tong
tonga
toni
tonic
tonight
tonk
tons
tonsil
tony
too
took
tool
tools
toot
tooth
top
topaz
topic
topple
tops
topsy
torah
torch
tori
torn
tornado
toronto
torpedo
torso
tort
torus
tory
toss
tot
total
tote
totem
tots
touch
tough
tour
tourist
tours
tout
tow
towel
tower
town
tows
toxic
toxin
toy
toyota
toys
trace
track
tract
tractor
tracy
trade
traffic
tragedy
trail
train
trait
tram
tramp
trance
transit
trap
trapeze
traps
trash
travel
trawl
tray
trays
tread
treat
treble
tree
trees
trek
trench
trend
tress
triad
trial
triangle
tribal
tribe
tribune
trick
tricky
trident
tried
tries
trill
trilogy
trim
trims
trinity
trio
trip
tripe
tripod
trips
trite
triton
trivial
trod
troll
trombone
troop
tropic
trot
trots
trout
troy
truce
truck
trudge
trudy
true
truly
trumpet
trunk
truss
trust
truth
try
tsar
tub
tuba
tube
tubes
tubs
tuck
tudor
tues
tuesday
tuft
tufts
tug
tugs
tulane
tulip
tulsa
tumble
tuna
tunas
tune
tuned
tunic
tunis
tunnel
tuple
turbine
turbo
turf
turin
turk
turkey
turn
turtle
turvy
tush
tusk
tusks
tussle
tutor
tutu
tux
twain
tweak
tweed
twice
twig
twigs
twill
twin
twine
twins
twirl
twist
twisty
twit
two
twos
tyburn
tycoon
tying
tyke
tyler
type
typed
types
typic
typo
tyson
uganda
ugly
ulcer
ultra
umber
umbra
umpire
unary
uncle
uncut
under
undo
undue
unfit
unhand
unhook
unicorn
uniform
unify
union
unique
unit
unite
united
units
unity
unix
unsafe
untie
until
unto
unwed
update
upend
uphill
uphold
upon
upper
uproar
upset
uptake
upton
uranium
urban
urea
urge
urged
urgent
urges
urine
urn
ursula
usage
use
used
useful
user
uses
usher
usual
usurp
utah
utile
utmost
utopia
utter
uvula
vacuum
vague
vail
vain
vale
valery
valet
valeur
valid
valor
value
valve
vamp
vampire
van
vane
vanilla
vans
vapor
variant
vary
vase
vases
vast
vat
vatican
vats
vault
veal
vector
veer
veers
vega
veggie
veil
vein
veins
velcro
veldt
vellum
velvet
venal
vendor
vends
venial
venice
venom
vent
vents
ventura
venus
vera
verb
verbs
verge
verify
verity
vermont
vern
verne
verona
verse
version
vertigo
verve
very
vessel
vest
vests
vet
veteran
veto
vets
vex
vexed
vexes
via
vial
vials
vibes
vibrate
vicar
vice
vices
vichy
vicky
victor
victory
video
vie
vienna
view
vigil
vigor
viking
vile
villa
village
vincent
vine
vines
vinyl
viola
violet
violin
viper
virgil
virginia
virgo
virtual
virus
visa
visible
vision
visit
visitor
visor
vista
visual
vital
vitamin
viva
vivid
vixen
vocal
vodka
vogue
voice
void
volcano
volga
volt
voltage
volts
volume
volvo
vomit
voodoo
vortex
vote
vouch
vow
vowel
vows
voyage
voyager
vulcan
vulture
vying
wack
wacky
wad
wade
wades
wadison
wafer
waffle
wag
wage
wager
wages
waggle
wagon
wags
waif
wail
wails
waist
wait
waiter
waive
wake
waken
waldo
wale
walk
wall
walls
wally
walrus
walsh
walt
walter
walton
waltz
wan
wand
wane
wang
want
wants
war
warble
ward
warden
ware
warm
warmth
warn
warning
warns
warp
warren
wars
wart
warts
warty
wary
was
wash
washington
washy
wasp
wasps
wast
waste
watch
water
watt
watts
wave
waved
waver
waves
wavy
wax
waxen
waxy
way
wayne
ways
weak
weal
wealth
wean
wear
wears
weary
weather
weave
web
weber
webs
webster
wed
wedding
wedge
wednesday
weds
weed
weedy
week
weekend
weeks
weep
weeps
weigh
weir
weird
welch
welcome
weld
well
wells
welsh
welt
wendy
went
wept
were
west
western
wet
wets
whack
whale
wham
wharf
what
wheat
wheel
wheels
whelp
when
where
whew
which
whig
while
whim
whine
whinny
whip
whips
whir
whirl
whisk
whiskey
whit
white
whiz
who
whole
whom
whoop
whoosh
whop
whose
why
wick
wide
widen
wider
widow
width
wield
wife
wig
wigs
wild
wile
wiley
wilkes
will
william
wills
willy
wilma
wilt
wily
wimp
wimpy
win
wince
winch
wind
window
windup
windy
wine
wines
wing
wings
wink
winks
winner
winnie
wins
winter
wipe
wire
wires
wiry
wisconsin
wisdom
wise
wiser
wish
wisp
wispy
wit
witch
with
withy
wits
witty
wive
wizard
woe
woes
wok
woke
wolf
wolve
woman
womb
women
won
wonder
wong
woo
wood
woods
woody
woof
wool
woozy
word
words
wordy
wore
work
world
worm
worms
wormy
worn
worry
worse
worst
worth
would
wound
wove
woven
wow
wrack
wraith
wrap
wrath
wreak
wreck
wren
wring
wrist
writ
write
writhe
wrong
wrote
wry
wyatt
wyeth
wylie
wyman
wyner
wynn
wyoming
xenon
xerox
xylem
yacht
yak
yale
yalta
yam
yamaha
yams
yang
yank
yankee
yanks
yap
yard
yards
yarn
yates
yaw
yawn
yawns
yeah
year
yearn
yeast
yeasty
yeats
yell
yellow
yelp
yemen
yen
yep
yes
yet
yew
yews
yield
yin
yip
yips
yodel
yoga
yogi
yogurt
yoke
yokel
yolk
yore
york
you
young
your
yours
youth
yowls
yoyo
yucca
yuck
yuki
yukon
yule
yves
zaire
zap
zaps
zeal
zealot
zebra
zen
zenith
zero
zeroes
zest
zesty
zeta
zeus
ziggy
zigzag
zilch
zinc
zing
zinger
zion
zip
zipper
zips
ziti
zodiac
zoe
zone
zoned
zoo
zoom
zooms
zoos
zowie
zulu
zurich
-----BEGIN PGP SIGNATURE-----
iQIcBAEBCgAGBQJXD+b+AAoJEBnaL1iNKMz0jtMQAJpGlFqjAXBrr8kds76HfvDz
hHHAu9JN0HYC5cb+/aVCoFmB397O8N/jXtpIcCb4P2cxKv7UlHibSakhXT0yn8O5
Ec65Ke0bh0wo1Ppk8Myg8CWEmy4ppKgSMTQ3GW4SOWqV5fOxGdfLGc8KQ1S+vYoj
E6OeNSvTpYKEOWMt9vPMHHaE4bBYVIuEwHMWuxzHJRYP70dO2v0FBhmbmqV/ma1P
KQDgrN5lS6GlTIXrUJBjaQjsk/zutq9B+HAbh1gR/J6EUCPquzkSpjZwgowylxXX
FnI59pBk9ONRVnTWUPkilKLtu17bg/HlxCW6qM10nEfwd4LkBRBjNFxD4nGpC43S
IlA4a1cL12m5/6x9ab/l1dkJ4LQoDGh9ZsIOsE9oebIUO6Lxq4jUJ3dwdPCVaMmn
gwZHnPbfOl+3xI2517roZcwYb0VCPARZ7c9Tb62p0U8qDmZc8587ydXXQQ01Z6U6
gmpvQUyYEgcMeP0XHuDhPHoARhx/kew0MX1IfWAkJGI0n3OR2IqpKqfnHeKT0Slk
in4WRswz8CMG8GDoON74ikpmocpljskk0CoYNgXhGmfU0DpSxya6v2fhOGyAbQYp
kKKzIj1/ANiqnCGsXSBmP7M/iP8MaTRDsFehc0gu34fk/ZgAROKceyKMnhKiPrat
qLIZT7YlIFTHJsIZsNBY
=fcYA
-----END PGP SIGNATURE-----
diceware-1.0.1/diceware/wordlists/wordlist_es.txt 0000664 0000000 0000000 00000163700 14732404111 0022214 0 ustar 00root root 0000000 0000000 abadesa
abajo
abanico
abaratar
abarcaba
abarcar
abasto
abate
abatida
abatir
abdomen
abdul
abeja
abelardo
abierta
abierto
abismal
abismo
abocado
abogada
abogados
abogan
abolir
abonar
abonos
abordan
abortar
aborto
abran
abrazaba
abrazada
abrazo
abren
abridor
abriendo
abriera
abrieron
abrigo
abril
abrimos
abrirla
abrirle
abrirse
abro
abrupto
absorber
absorta
absorto
abstuvo
absurda
absurdo
abuela
abuelita
abuelito
abuelo
abulia
aburre
aburrida
aburrido
aburto
abusado
abusiva
abusivo
acabada
acabaron
acabase
acaben
acabo
acacia
academia
acallar
acaso
acatar
acceda
acceden
acceder
acceso
acciones
acebes
acebo
acechan
acecho
aceite
aceituna
acelera
acelga
acento
acepten
acepto
acera
acerca
acerco
acero
acertada
acertado
acertar
acervo
acevedo
achaca
achaque
acicate
acidez
acierta
acierto
aclarado
aclare
acogen
acogida
acogido
acomodo
aconsejo
acopio
acordado
acordar
acorde
acortar
acotado
acotar
acritud
actas
actitud
activado
activan
activar
activas
activo
actor
actos
actriz
actuado
actuara
actuaron
acuario
acudan
acuden
acudido
acudir
acuerde
acuerdo
acuesta
acuosa
acuoso
acusa
acuse
adagio
adam
adan
adaptar
adapte
adelaida
adelina
ademanes
adentros
adeptos
aderezo
adeuda
adherida
adhieren
adicto
adiposo
adivino
adjetivo
adjunta
adjunto
admiraba
admirada
admiran
admirar
admiro
admita
admiten
admitir
admito
adobe
adobo
adolece
adolfo
adonde
adopten
adoraba
adorada
adorado
adorar
adornan
adornar
adorno
adoro
adosado
adquirir
adrede
adriana
adriano
aduana
aduce
adujo
adulta
adulto
adusto
advertir
aeronave
afable
afamado
afanes
afecten
afectos
afeitar
aferrado
afganos
afiches
afilado
afinar
afines
afirmo
aflojar
afloran
aflorar
aforo
afrenta
afrontar
afueras
agacha
agallas
agapito
agarran
agarre
agencia
agenda
agente
agitada
agitar
agobiado
agobio
agosto
agradar
agrado
agravada
agravar
agregaba
agregue
agreste
agria
agrio
agrupan
aguada
aguado
aguante
aguanto
agudas
agudeza
agudiza
agudo
aguiar
aguilar
aguilas
aguja
agujero
agustina
ahogaba
ahogada
ahogo
ahondar
ahora
ahorita
ahorro
ahumada
ahumado
aida
aimar
airada
airado
airbus
aires
airosa
airoso
aislado
aislar
aitor
ajedrez
ajena
ajeno
ajetreo
ajos
ajuar
ajuria
ajustaba
ajustan
ajuste
alabado
alabar
alacena
alain
alambre
alameda
alan
alarde
alargar
alarmada
alarmas
alaska
alava
alavesa
albania
albar
alberca
alberdi
alberti
albina
albino
albores
alboroto
alcaide
alcanzo
alcaraz
alce
alcista
alcoba
alcocer
alcohol
aldana
aldaya
aldea
aldo
alegar
alegre
alegro
alejado
alejaron
alejo
alelo
alemania
alentar
alergia
alero
alertar
alertas
alesio
aleta
aleteo
alfabeto
alfalfa
alfares
alfaro
alfonso
alfredo
algas
alguien
alguna
alguno
aliada
aliado
aliarse
alias
alicante
alicia
alienta
aliento
alimento
alina
alinear
aliviada
aliviar
alivio
allanar
allende
almada
almagro
almas
almeja
almendra
almohada
almorzar
almuerzo
almunia
alojan
alojar
alonso
alpes
alpino
alquiler
altar
altas
altavoz
altea
altere
alteza
altillo
altitud
altiva
altivez
altivo
alto
altura
alubia
aluden
aludida
aludir
alumna
alumno
alvaro
alvear
alzaban
alzada
alzado
alzaga
alzando
alzaron
alzarse
alzas
amaba
amables
amada
amadeo
amador
amados
amago
amalia
amamos
amancio
amanda
amando
amantes
amapola
amargas
amargos
amargura
amarrar
amarras
amarre
amasar
amasijo
amateur
amazonas
amazonia
ambages
ambas
amberes
ambiguos
ambos
amelia
amiga
amigo
amistad
amistosa
amistoso
amnesia
amores
amos
amparar
amparo
amplia
amplio
amplitud
ampolla
anabela
analice
anca
ancha
anchoa
anchos
anchura
anciana
anciano
anclada
anclaje
andaban
andado
andamos
andando
andante
andar
andas
andenes
andes
andinas
andinos
andorra
andrade
andrea
anduve
anduvo
anemia
anexo
angela
angeles
angelina
angelito
angina
angola
angosta
angosto
anguita
angulo
anhelo
anida
anillos
animaba
animado
animal
animo
anita
annan
anoeta
anotaba
anotar
ansa
anselmo
ansiada
ansiado
ansias
antena
antesala
antifaz
antiguo
antillas
antojaba
antojo
antonia
antorcha
antro
anual
anuario
anuencia
anulada
anulado
anular
anuncie
anuncios
anzuelo
aorta
apagaba
apagarse
aparato
aparcar
aparenta
aparente
aparte
apegado
apego
apelar
apenas
apetece
apio
aplacar
aplazar
aplomo
apnea
apodado
apodo
apogeo
apolo
aporten
aportes
apoyaban
apoyarse
apoyen
apoyos
aprecian
aprecio
apremio
aprendan
aprender
apresta
apretar
aprietan
aprisa
aprista
apta
apto
apuesto
apuntes
apurado
apurar
apure
apuro
aquejan
aquello
aquiles
aquino
arabe
arabia
arado
aragua
arana
arancha
aranda
arango
aranjuez
aras
arauca
araujo
araya
arbitro
arcadas
arcadio
arcaica
arcaico
arcas
arce
archivar
arcilla
arcos
ardanza
arden
arder
ardor
ardua
arduo
areas
areces
arellano
arenales
arenas
arenga
arenoso
ares
aretes
arganda
argelia
argote
ariadna
arias
arica
aridez
ariel
aries
ariete
arista
ariza
arizona
armada
armado
armando
armario
armas
armenia
armero
arnaldo
arnau
arnoldo
aroma
aros
arpa
arquero
arrabal
arraigo
arrasar
arregui
arrese
arriba
arribo
arrieta
arroces
arrojo
arroyo
arroz
arrugado
arrugar
arruinar
arsenio
arteaga
articulo
artigas
artista
arturo
arvejas
asada
asado
asalto
asar
asas
ascender
ascenso
asco
ascuas
asedio
asegurar
aseguro
asenjo
asensio
asentir
aseo
asepsia
aserto
asfalto
asia
asidero
asiduos
asiente
asientos
asignan
asilo
asistan
asistir
asma
asno
asocian
asomado
asomo
asonada
aspas
aspectos
aspirar
aspiro
astas
astilla
astorga
astral
astros
astucia
astuta
astuto
asuman
asumen
asumiera
asumir
asumo
asunto
asustan
asustar
atacada
atacado
atacaron
atada
atado
atajar
atajo
atalaya
ataque
atasco
atenas
atender
atenea
ateneo
atentan
atentar
atento
atenuar
ateo
atestado
atienda
atienza
atisbar
atisbo
atlanta
atlas
atleta
atraco
atraen
atraer
atrajo
atrapar
atraso
atreva
atreven
atreves
atrevo
atril
atrio
atroces
atrofia
atroz
atuendo
audaces
audacia
audaz
audible
auger
augura
augusta
augusto
aula
aumento
aunado
aunar
aunque
aura
aurea
aurelia
aurelio
aureola
aurora
ausente
austera
austero
austria
autismo
autista
autora
autores
avalada
avalado
avalar
avales
avance
avaro
avelino
avena
avenue
aviaco
aviador
avidez
avila
aviones
avisado
avisarle
aviso
avispa
axial
axila
axiomas
ayala
ayer
ayudaban
ayudada
ayudados
ayudando
ayudara
ayudas
ayuden
ayudo
ayunas
ayuno
azafata
azares
azarosa
azcona
azogue
azores
azota
azotea
azotes
azteca
azucena
azufre
azulada
azulado
azulejo
azules
baba
bacalao
bache
bacon
bacteria
baden
baena
baeza
bagaje
bagdad
bagre
bahamas
bailaban
bailado
bailando
baile
bajaban
bajada
bajado
bajamos
bajando
bajara
bajaron
bajarse
bajas
bajen
bajista
bajito
bajo
balada
balanceo
balances
balanza
balas
balazo
balbina
balbino
balboa
balcones
balde
baldosa
ballet
balones
balsa
baluarte
banal
banana
banano
bancada
bancas
banco
banda
bandeja
bandera
bandido
bando
bangkok
banquero
barajan
barajas
baranda
barata
barato
barbara
barbarie
barbas
barbero
barbudo
barca
barco
barda
bardem
bares
barinas
barman
barna
barniz
baroja
barral
barras
barreda
barreto
barrido
barriga
barril
barrio
barroso
barrote
barullo
basaba
basada
basado
basan
basarse
base
basilea
basilio
bastaba
bastado
baste
basto
basura
batalla
batasuna
batata
baten
bateo
bates
batida
batidora
batidos
batiendo
batir
batista
batman
batuta
bautismo
bautizo
baviera
bazar
bazas
bazo
beata
beatles
beato
beatriz
beba
beben
beber
bebeto
bebida
bebido
bebiendo
bebieron
bebo
becario
becas
becerra
becerro
beduino
bego
beige
beijing
beirut
beisbol
bejarano
belfast
belga
belgrado
belice
bella
belleza
bello
bendiga
bendita
bendito
bengala
benigna
benigno
benito
benjamin
benuza
berlin
bermejo
bernarda
bernardo
bernini
berta
berzin
besaba
besado
besando
besarla
beso
bestia
beto
bibi
biblia
bicho
bici
bidasoa
bienal
bigote
bikini
bilardo
bilbao
bilis
billar
billete
billones
binario
bingo
bini
binomio
biomasa
biombo
biopsia
biosfera
bipolar
biralbo
birmania
bisbal
bits
bizcocho
blanca
blanco
blancura
blanda
blando
blasco
blindada
blindado
bloc
blog
bloquean
bloquear
bloqueo
bloques
blues
blusa
boada
boba
bobo
bocado
bocanada
bocas
boceto
bocina
boda
bodega
bodes
bogart
bohemia
bohemio
boicot
boina
boitel
bola
bolero
boleta
boleto
boliche
bolita
bolivia
bollo
bolonia
bolos
bolsa
bolsillo
bolsita
bolso
bombas
bombay
bombeo
bombero
bombilla
bombones
bonanza
bonet
bonilla
bonita
bonito
bono
bonus
boquete
boquilla
bordar
borde
bordo
borges
boricua
borja
borrar
borrasca
borrego
borrero
borrosa
borroso
bosnia
bosnios
bosque
bostezo
boston
botar
botas
botella
botes
botijo
botines
botones
bovina
bovino
bowie
boxeador
boxeo
boxes
braga
bragueta
branca
brando
brandy
brasa
brasero
brasilia
braulio
braun
brava
bravo
bravura
brazo
brecha
brega
bremen
brenda
breton
brevedad
breves
brigada
brillo
brinco
brindaba
brindado
brindis
briones
brisa
brito
brocha
broche
broma
bromear
bronca
bronce
bronco
bronx
brotan
brotar
brote
bruces
bruja
brujo
bruma
bruno
brusca
brusco
bruselas
brutal
brutas
bruto
bucal
bucarest
buceador
bucear
buceo
buche
bucle
budapest
budismo
budista
buena
bueno
bueren
buero
buey
bufanda
bufete
buffet
buitre
bula
bulbo
bulevar
bulgaria
bulimia
bulla
bulnes
bulto
buque
burbuja
burda
burdel
burdeos
burdo
burgos
buril
burlaba
burlado
burlando
burlarse
burlas
burlona
burra
burro
burundi
buscada
buscado
buscara
buscas
busco
buses
busquen
busto
butaca
butano
buyo
buzo
cabales
caballo
cabaret
cabello
caben
caber
cabeza
cabida
cabina
cable
cabo
cabral
cabras
cabrera
cabrito
cacao
cacerola
cacharro
cacique
cactus
cada
cadena
cadera
cadete
caduco
caen
caerse
cafetera
cafiero
caigan
caigo
caimito
cairo
cajas
cajero
cajita
cajones
calado
calcio
calcular
calda
caldera
caldero
caldo
calentar
calero
caleta
calibre
calidez
califa
calixto
calizas
callaba
callada
callan
callas
calle
callo
calmado
calmar
calor
calpe
calumnia
calurosa
caluroso
calva
calvicie
calvino
calvo
calzada
calzado
camada
camargo
cambiado
cambien
cambio
camboya
camello
camerino
cameron
camet
camila
camilla
camilo
caminar
camino
camiones
camisa
campillo
camping
campsa
campus
canales
canasta
canasto
cancelar
cancha
candado
candau
candia
candil
candor
canela
cangas
cangrejo
canje
cannes
canoa
canon
canosa
canoso
cansaba
cansada
cansado
canseco
cantada
cantado
cantando
cantara
cantata
cantera
cantero
cantidad
cantina
canto
caoba
caos
capaces
capas
capataz
capaz
capello
capilla
capital
capitana
capitulo
capone
capos
capote
capricho
captan
captar
captores
captura
capucha
carabina
caracas
carajo
caramba
caras
carazo
carballo
carbono
carburo
carcasa
cardenal
cardona
cardoso
cardozo
carecen
carecer
careo
careta
carey
cargaban
cargarse
cargas
cargo
caribe
caridad
caries
carioca
carisma
carita
cariz
carla
carles
carlos
carlota
carmela
carmelo
carmen
carmina
carmona
carnaval
carnero
carnes
carnet
carola
caronte
carora
caros
carpa
carpio
carrera
carrero
carreta
carrete
carrillo
carrito
carrizo
carros
carroza
carruaje
carrusel
cartago
cartas
cartero
cartilla
cartones
cartucho
cartuja
casaba
casaca
casada
casado
casamos
casares
casarme
casaron
casarse
casarte
casas
cascabel
cascada
casco
casera
casero
caseta
casetes
casilda
casilla
casino
casita
casona
casos
casta
castillo
castizo
casto
castro
casual
catalejo
catarro
catedral
catia
catorce
catre
cauca
cauce
caucho
causal
causas
cause
cautela
cautiva
cautivo
cauto
cavallo
cavar
caverna
cavero
caviar
cavidad
cayendo
cayera
cayeron
cayo
cazar
cazas
cazo
cazuela
cebada
cebolla
ceca
cecilia
cecilio
ceda
ceden
ceder
cedido
cedro
cefaleas
cegado
ceguera
ceiba
cejas
celador
celda
celebrar
celeste
celia
celosa
celoso
celtas
celular
cemento
cenado
cenamos
cenando
cenar
cenas
cenit
ceniza
censo
censura
centauro
centavo
centenar
centeno
center
centran
centre
centro
cepal
cepas
cepillo
cepo
cepsa
cercado
cercas
cerco
cerda
cerdo
cereal
cerebral
cerebro
cereza
cerezo
cerilla
cernuda
cero
cerpa
cerrada
cerrara
cerrojo
cerros
certera
certero
certeza
cervera
cerveza
cervical
cesaba
cesado
cesan
cesaron
cese
cestas
cesto
cetro
ceuta
cevallos
chabola
chacao
chacho
chaco
chad
chakra
chaleco
chalet
chances
chang
chano
chao
chapas
chapuza
charca
charco
charito
charlar
charlas
charol
charro
chase
chasis
chato
chau
chavela
chaves
checa
checo
chef
chela
chelo
chema
chendo
chequeo
cheques
chicago
chicas
chicha
chiche
chicho
chicle
chico
chileno
chiles
chillar
chimenea
china
chino
chipre
chips
chirinos
chirrido
chisme
chispa
chiste
chita
chivos
choclo
chofer
chola
chon
chopin
choque
chorizo
chorrito
chorro
choza
chucho
chueca
chulo
chupar
churro
chusma
cianuro
cicatriz
ciclismo
ciclista
ciclo
ciega
ciego
cielo
cientos
ciernes
cierran
cierren
cierres
cierro
cierta
cierto
cierva
ciervo
cifrado
cifras
cigarro
cilindro
cimas
cinco
cinema
cines
cinismo
cinta
cinto
cintura
circo
circuito
cirilo
cirios
ciro
ciruela
cirujano
ciscar
cisco
cisne
citaba
citada
citado
citamos
citando
citarse
citas
cite
ciudad
civil
civismo
clamaba
clamor
clan
clara
clarita
claro
clase
claude
claudia
claudio
clavada
clavar
clavero
claves
clavo
clero
click
cliente
clima
cloaca
clodio
cloro
cloruro
clubes
clubs
cobalto
cobarde
cobija
cobijo
cobo
cobrado
cobre
cobro
cocer
cochero
coches
cochino
cocida
cocido
cocinar
cocinas
cocinera
cocopa
cocos
cocteau
coctel
codazo
codo
cofre
cogen
coger
cogida
cogido
cogote
cohecho
cohetes
cohorte
coja
cojera
cojines
cojones
colaba
colada
colador
colapso
colarse
colasa
colcha
colecta
colegas
coleta
colgando
colgante
colgar
coliflor
colilla
colima
colina
coliseo
collado
college
colmada
colmado
colmar
colmenar
colmo
coloma
colombo
colones
colono
coloque
colores
colorido
colosio
coloso
colpisa
cols
columna
comadre
comando
comarcal
comas
comedia
comemos
comento
comerse
cometa
cometen
cometer
comida
comido
comienzo
comilla
comimos
comino
comitiva
como
comparsa
comparto
compases
complot
compota
compras
compuso
comte
comuna
comunes
conato
conceda
concha
concisa
concluir
concluya
concorde
condal
condesa
condujo
conejos
conexos
congoja
conjuro
conmigo
conocen
conoces
conos
conozco
conque
conrado
consigo
constar
contara
conteo
contigo
contuvo
convenga
convenir
convino
copa
copiado
copiar
copias
copiosa
copita
copla
copo
coqueta
coraje
coral
coraza
corbata
corcho
cordal
cordura
corinto
cornada
cornejo
corneta
cornisa
corona
coros
corpus
correas
corregir
corren
correo
correr
corrige
corros
corso
cortarle
cortaron
cortas
cortejo
corten
cortical
cortijo
corto
cosa
cosechar
coser
cosita
cosme
cosmos
coso
costaba
costales
costas
costear
costes
costosa
costra
costura
cota
cotejo
cotizan
cotizar
coto
coyote
craneal
creaban
creada
creadora
creados
creamos
creando
crearon
crearse
creas
crecen
crecer
creces
crecido
credo
creemos
creerle
creerlo
creerme
creerse
crees
crema
creo
crespo
cresta
creta
cretino
creyera
crezcan
criadas
criados
crianza
criar
crimen
criolla
cripta
crisis
crisol
cristo
croacia
croatas
croquis
cruces
crucis
cruda
crudeza
crudo
crueles
cruenta
cruise
crujido
crujir
cuadras
cuadros
cuajada
cuajado
cuajar
cuajo
cuando
cuantas
cuantos
cuartas
cuartos
cuarzo
cuasi
cubanas
cubanos
cubas
cubero
cubismo
cubista
cubitos
cubos
cubran
cubren
cuco
cuecen
cuela
cuelgan
cuellos
cuencas
cuenco
cuentan
cuentas
cuenten
cuentes
cuentos
cuerdas
cuernos
cueros
cuerpos
cuervos
cuestan
cuestas
cueste
cueto
cuevas
cueza
cugat
cuicas
cuidaba
cuidada
cuide
cuido
culata
cullell
culo
culpar
culpas
culta
cultos
cumbres
cumplan
cumplen
cumplo
cuna
cuneta
cuotas
cupones
cupos
curada
curados
curarse
curas
curativo
cure
curia
curiosas
curiosos
curro
curry
cursado
cursan
cursar
cursor
cursos
curtido
curtis
curvas
curvo
cusco
cutis
cuyas
cuyos
cuzco
cynthia
daban
dadas
dade
dados
daga
dagomar
daimler
dakar
dalai
dale
dalia
dalila
dallas
dalmau
dalton
damasco
damasia
dame
damos
dando
dandy
danesa
daneses
daniela
danilo
dans
dante
danubio
danzar
danzas
dardos
daremos
darla
darles
darlo
darme
darnos
darse
darte
datan
date
datos
dave
davidson
davis
daza
dean
debacle
debajo
deban
debaten
debates
debatir
debemos
deben
deberes
deberse
debes
debidas
debidos
debiste
debo
debussy
debutar
decanos
decenas
decencia
deceso
decidan
deciden
decides
decido
decimal
decimos
decirlo
decirme
deciros
decirse
decirte
declare
declive
decorar
decoro
decrece
dedico
dedos
deduce
deduje
dedujo
defienda
defina
definen
deforme
dehesa
dejaban
dejadas
dejadez
dejados
dejamos
dejando
dejaran
dejarlas
dejarme
dejaron
dejarse
dejarte
dejase
dejaste
dejemos
dejen
dejes
dejo
delegar
deleite
delfina
delhi
delia
delibes
delitos
della
delors
dels
delta
demente
demoler
demorado
demorar
demoras
dengue
denis
dennis
denotan
densas
densos
dentro
denver
depara
dependa
deponer
deprisa
depurada
depurar
derbi
derby
derechos
derek
derivan
derogar
derrame
derribo
desaire
desamor
desarme
desatar
descargo
descaro
desde
deseados
deseara
deseas
deseen
desfase
desfiles
desgana
desgano
deshizo
desidia
designe
deslizan
desmayo
despeje
despensa
despues
destete
desuso
detenga
detengo
detesto
detroit
detuve
detuvo
deudas
deudos
deus
devenir
deviene
devorar
devota
devotos
diablos
diadema
dialogar
diana
diarias
diarios
dias
diaz
dibujada
dibujar
dibujos
dicen
dices
dichas
dichosa
dictaba
dictar
dicte
didier
diego
dientes
dieran
dieron
diesel
diesen
diestra
dietas
diez
diferido
difunta
difuntos
difusas
difusos
digamos
digan
digas
digerir
dignas
dignos
digo
dijeran
dijeron
dijese
dijimos
dijiste
dijo
dilatada
dilatar
dilemas
diluida
diluido
diluir
diluvio
diluye
dimas
dime
dimite
dimitir
dimos
dinamo
dineros
diners
dintel
diodor
dionisio
diosas
dioses
diques
directos
diremos
dirijan
dirijo
dirimir
discos
disipar
disnea
disney
dispuse
dispuso
distal
diurnas
diva
diversas
divinas
divinos
divisar
divisas
dizque
doblaba
doblado
doblaje
doblando
doblar
dobles
doblete
doblez
docenas
docencia
dodgers
dogmas
doler
dolida
dolido
dolly
dolores
domador
domine
donado
donaldo
donantes
donar
donato
dones
donoso
dopaje
doping
doquier
doradas
dorados
dorar
dore
doria
doris
dormidas
dormidos
dormimos
dormirme
dormirse
dorso
dosis
dossier
dotadas
dotados
dotar
dotes
douglas
dragones
dramas
dream
drenaje
drive
drogas
dualidad
dualismo
duarte
duato
ducados
duchas
dudaba
dudado
dudamos
dudando
dudarlo
dudas
dude
dudosas
dudosos
duela
duelen
duelos
duendes
duerma
duermen
duermo
duero
duhalde
dulces
dulzura
dumas
dunas
duncan
dupla
duplicar
dupont
duquesa
duraba
durado
durango
durante
duraron
duras
dureza
duros
duvet
ebrios
ebro
echaban
echada
echado
echamos
echando
echara
echarle
echarlo
echarme
echaron
echarse
echo
eclipses
economia
ecuador
ecus
edades
edema
ederra
edicto
edificar
ediles
edipo
edison
editadas
editar
edith
editora
editores
edmundo
edouard
eduardo
educada
educados
educar
eeuu
efectos
eficaces
efigie
egeo
egipcias
egipcios
egipto
egresos
eguren
eibar
eiffel
ejecute
ejemplos
ejercen
ejercer
ejercido
ejerzan
ejes
ejidos
elabore
eladio
elba
elche
electos
elegir
elena
elenco
elevados
eleve
elgazu
eligen
eligio
elijan
elimine
eliot
elipse
elipsis
eliseo
elites
elixir
ellas
elliot
ellis
ellos
elogiar
elogios
elorza
eloy
elsa
eltsin
elude
eludir
elvira
elvis
email
emanaba
emanan
embates
embudo
emerger
emigrar
emilio
emir
emita
emiten
emotiva
empacho
empaque
empates
empeorar
empero
empiecen
empiezas
empiezo
emplee
empleos
empuje
emular
enaguas
enana
enanos
encajan
encajar
encajes
encarar
encima
encinas
encinta
enciso
encoge
encono
endeble
enea
enebro
enero
enersis
enfado
enfermar
enfocar
enfriar
engels
engloba
engorde
engrosar
enigmas
enjuto
enlaces
enlazan
enlazar
enmedio
enojada
enojado
enojo
enormes
enredos
enrico
ensanche
ensayar
ensayos
enseres
entel
enterada
enteral
enteran
enteras
enteros
entes
entonar
entornos
entradas
entrado
entraron
entrase
entregas
entrego
entro
enunciar
envasado
envases
enviara
enviarlo
envidio
envite
envolver
enzimas
enzo
epoca
epopeya
equidad
equino
equipos
equis
eramos
eran
erario
erasmo
ercilla
erectus
eres
erguida
erguido
erica
erige
erigido
ermita
ermua
ernesto
eros
errado
errante
errar
errores
esas
esbelta
esbelto
esbozar
esbozo
escalada
escalar
escalas
escamas
escape
escasas
escasez
escasos
escenas
escobar
escocia
escogen
escoger
escoja
escorial
escorpio
escort
escote
escozor
escribes
escribo
escucho
escudos
escueto
escupe
escupir
escurre
esferas
esfinge
esgrima
esgrime
eslogan
eslora
esmero
esos
espadas
esparza
espasa
espasmos
espejos
esperas
esperen
espero
espesas
espese
espesor
espesos
espesura
espiaba
espiar
espigas
espinal
espinas
espinet
esponja
esporas
esposado
esposas
esposos
espot
espuma
esquela
esquemas
esquivo
estaban
estabas
establo
estacas
estados
estafas
estamos
estando
estarlo
estarse
estas
estatus
esteban
estella
estemos
estepa
esteve
esther
estigma
estilos
estiman
estime
estimo
estirar
estirpe
estonia
estoque
estorbo
estoril
estos
estoy
estrada
estrado
estragos
estuche
estufa
estupor
estuve
estuvo
etanol
etapas
etarras
eternas
eternos
etica
etnias
euforia
eugenia
eugenio
eulalia
eulalio
euler
eulogio
europa
euros
eusebio
euskal
euskera
eusko
evacuar
evaluar
evans
evelia
eventos
eventus
everest
evitaba
evitado
eviten
evocaba
evocar
exactas
exactos
exaltar
examen
exceda
exceder
excelsa
excepto
excesos
excitar
excluir
excusas
exentas
exentos
exhiben
exhibir
exigua
exiguo
exijan
exijo
exilio
exime
existan
existido
existir
existo
expande
experta
explico
expreso
express
expuso
extinta
extinto
extraen
extraer
extrajo
extras
extremos
ezeiza
ezequiel
ezkerra
fabiola
fabra
fabril
facetas
facturas
facundo
faenas
fagoaga
fair
fajardo
fajas
fajo
falacia
falange
falaz
faldas
fallaba
fallado
fallan
fallaron
fallas
fallida
fallos
falo
falsas
falsos
faltado
faltara
faltas
falten
faltos
fama
famosas
famosos
fango
fanny
fans
faraday
faraiso
farc
fardos
farolas
faroles
faroni
faros
fases
fastos
fatales
fatigas
fauces
fauna
fausto
favores
fealdad
feas
febrero
febres
febriles
fecal
fechada
fechado
fechas
fecsa
fecunda
fecundo
fedra
fein
fela
felices
felinos
felipe
felisa
feliu
felix
fellini
felsom
femoral
fenosa
feos
feriado
ferial
ferias
fermina
fernando
feroces
ferran
ferrari
ferraz
ferrero
ferrol
ferry
fervor
festa
festina
fetales
fetiche
fetos
feudo
fiables
fianzas
fiarse
fiasco
fiat
fibras
fichado
fichar
fichas
fidalgo
fideos
fiebres
field
fieles
fieltro
fieras
fiereza
fiero
fierro
fiestas
fifa
figaro
figo
figs
figuran
figurar
figuras
figure
fijaba
fijadas
fijados
fijando
fijaron
fijarse
fijas
fijeza
fijos
filas
filesa
filetes
filmada
filmado
filmar
filmes
films
filo
filtrar
filtros
finales
finalice
finas
fincas
fines
finge
fingida
fingido
fingir
finita
finito
finos
finura
firmaba
firmara
firmaron
firmas
firmes
firmeza
first
fischer
fisco
fisher
fisuras
fito
flacas
flacos
flagelo
flancos
flandes
flashes
flaubert
flautas
flavio
flechas
flecos
fleming
flojas
flojos
flores
florida
florido
floro
flotaban
flotar
flotas
flote
floyd
fluida
fluidez
fluidos
fluir
flujos
fluyen
fmln
fobias
focal
focos
fogade
fogatas
fogones
fogoso
fogueo
foix
folios
follaje
follar
folletos
fomento
fonda
fondos
fonseca
fonso
fontana
food
forales
forbes
ford
foreign
forjado
forjar
formara
formas
formen
formosa
fornido
foros
forrado
forro
fortuny
forum
forzar
forzoso
fosas
fosfato
foso
foster
fotones
fotos
four
foxley
fragata
fragor
fragua
frailes
francas
francia
francos
franela
franjas
franz
frascos
frases
fraudes
fray
freddy
free
fregar
freire
frenada
frenado
frenar
frenos
frentes
frepaso
fresas
frescas
frescor
frescos
frescura
fresno
freud
frialdad
fricka
frida
frieda
friso
fritas
fritos
fritz
fromm
fronda
frotaba
frotar
frou
fruchel
frutas
frutos
fsln
fuegos
fuelle
fuentes
fueran
fueras
fueren
fueron
fueros
fuertes
fuerzas
fuesen
fugaces
fugado
fugarse
fugas
fuimos
fuiste
fulano
fulgor
full
fumaba
fumando
fumar
fumero
fundan
fundaron
fundas
funden
fundo
funesta
funesto
furia
furor
fusilar
fusiles
fusta
fuster
futuras
futuros
gaal
gabino
gables
gaby
gacel
gaceta
gacha
gadafi
gaditano
gafas
gafe
gago
gaita
gaite
gajos
galante
galarza
galas
galaxias
galeano
galeb
galega
galego
galenos
galeote
galeras
gales
galiano
galicia
galilea
galileo
galindo
gallegas
gallery
gallos
galones
galope
galos
gamarra
gamas
gambas
gamboa
gametos
gamma
ganaban
ganadas
ganados
ganamos
ganando
ganara
ganarle
ganarme
ganaron
ganarse
ganas
ganchos
gandhi
ganen
gano
ganso
gante
garaje
garay
garbo
garcia
gardel
garden
gardner
garita
garnica
garras
garrido
garriga
garros
garrote
gary
garza
gasas
gaseoso
gases
gaspart
gasset
gastaba
gastos
gatas
gates
gatillo
gatos
gatt
gaucho
gauguin
gaulle
gauss
gaviria
gaya
gays
gaza
gemas
gemelas
gemelos
gemidos
gemir
gemma
genaro
generen
generis
genes
genios
genoma
gentes
georges
georgia
gerald
gerardo
gerhard
germain
germana
germanos
germen
gerona
gestas
gestos
gestual
getafe
ghali
ghana
giacomo
gianni
gibson
gilberto
gilles
gimeno
gimnasia
gina
ginebra
giner
ginty
giorgio
giovanni
giraban
girado
giralda
giraldo
girando
girar
girasol
gire
girl
girona
giros
giscard
gisela
gitana
gitanos
glacial
gladys
glamour
glasgow
glenn
globos
glorias
glosa
glucosa
gluten
gobierne
goce
godos
godoy
goethe
gogh
golazo
golden
goldman
goleada
goles
goleta
golfo
goliat
golpes
gomas
gomera
gonzales
gonzalo
good
gordas
gordito
gordon
gordos
gordura
gore
gorgo
gorilas
gorras
gorro
gortari
gotas
goteo
goteras
gotitas
gould
govern
goya
goyo
gozaban
gozado
gozando
gozar
gozosa
gozoso
grace
gracias
gradas
grados
graf
graham
gral
gramos
gramsci
granadas
granate
grandes
granel
granero
granito
granizo
granjas
granma
granos
grant
grapo
grasas
grasos
gratis
gratos
grau
graves
gray
grecia
greco
gredos
greene
gregory
gremios
greta
grey
griegas
griegos
grietas
griffith
grifos
grillos
gringos
gripe
grises
gritado
gritando
gritos
grosera
grosero
grosor
grosso
group
grove
gruesas
gruesos
grumos
grupales
grupos
gruta
guagua
guaira
guajira
guantes
guapas
guapos
guardas
guarde
guardo
guarida
guatel
guayaba
guayana
guayas
guerras
guerrera
guevara
guiaba
guiada
guiados
guiar
guido
guinda
guinea
guiones
guisos
gula
gusanos
gustaban
gustado
gustan
gustara
gustas
gustavo
gusten
gustoso
habana
habanos
habas
haberes
haberme
habernos
haberse
haberte
habidas
habidos
habitar
hablada
hablarse
hablase
hablen
hables
hablo
hacedor
hacemos
hacerlas
hacerme
hacerse
hacerte
haces
hachas
hachuel
hacia
haciendo
hadas
haendel
hagamos
hagan
hagas
hagi
hago
halagos
hale
hallaban
hallan
hallen
halley
hallo
halo
hamacas
hamas
hambre
hamlet
hampa
hanna
hans
happy
harapos
hardy
haremos
harinas
harlem
harold
harry
harta
hartmann
hartos
harvard
harvey
hassan
hasta
hato
hawai
hawks
hayamos
hayan
hayas
haydn
hayedos
hazlo
hazme
head
health
heat
heavy
heberto
hebras
hebrea
hebreos
heces
hechas
hechizo
hechos
hedor
hegel
heinz
heladas
helados
helena
hellen
helms
helmut
helsinki
hembras
hemos
henares
hendaya
heno
henrique
henry
hepburn
heraldo
heras
herbert
heredar
heredia
herejes
heridas
heridos
herir
hermann
hermes
hermida
hermoza
hernani
hernia
herodes
herpes
herranz
herrera
herria
hervidas
hervido
hervir
hervor
herzog
hesse
hialeah
hice
hiciese
hicimos
hiciste
hidalgo
hiedra
hielos
hierbas
hiere
hierros
hierva
hierve
high
higiene
higinio
higos
hijas
hijita
hijito
hijos
hilario
hilda
hileras
hillary
hills
hilos
hilton
himnos
hinchas
hingis
hirieron
hitler
hitos
hits
hizo
hobbes
hocico
hockey
hoffman
hogares
hojas
hojear
hojitas
holanda
holding
holgada
holgura
holmes
hombres
hombros
homero
hondas
hondos
hongos
honores
honoris
honrada
honrar
hopkins
horacio
horaria
horas
horca
horda
hornear
hornos
horrendo
hortera
hosco
hostal
hostias
hoteles
hotmail
house
houston
howard
howe
hoya
hoyos
html
http
huarte
hubble
hubert
hubieran
hubiere
hubo
hudson
hueca
huecos
huelen
huelgas
huellas
huelva
huertas
huertos
huesca
huesos
huestes
huevos
hughes
hugo
huida
huipil
huir
humanas
humanos
humberto
humedad
humores
humos
humus
hunden
hundida
hurgar
hurtado
hurto
husein
hussein
husserl
huston
hutus
huxley
huyendo
huyeron
huygens
hyde
iban
ibarra
ibas
ibercorp
iberia
ibex
ibid
ibiza
ibrahim
iceberg
iconos
idas
ideado
ideales
ideario
ideas
idem
idilio
idiomas
ignacio
ignorar
ignoro
igor
igualada
igualar
iguales
ileana
ileso
imagen
imagino
imanes
imanol
imaz
imbert
imitaba
imitar
impago
impasse
impidan
impiden
importe
imprenta
imprimen
impronta
impropia
impunes
impuso
imputan
imss
incapaz
incas
incesto
incidir
incierta
inciso
incitar
inclino
incluso
incumbe
incurre
indagar
indemne
indiana
indias
indice
indico
indigno
indios
indique
inducen
inducir
indujo
indulto
ineficaz
inem
inercia
inerme
inertes
infame
infamia
infancia
infanta
infeliz
inferir
infiel
infiere
influir
informes
ingentes
ingenua
ingenuo
ingerir
ingesta
ingrata
ingrato
ingresos
ingrid
inhiben
inhibir
inhumana
inhumano
iniciar
inicien
inicios
injusta
injusto
inmensas
inmersa
inmunes
innatas
innato
inning
innovar
inocuo
inodoro
insalud
inseguro
inserto
insigne
insinuar
insista
insistir
insisto
insomne
insomnio
instale
insulza
insumos
intensa
intensos
intentos
interino
interna
internet
interno
interpol
intriga
intruso
intuir
intuye
inundado
inusual
invaden
invadida
invadir
invento
invertir
inviable
invicto
invito
invocar
iones
iquique
irak
iraq
iras
iremos
irene
iriarte
irina
iris
irlanda
irma
irme
irnos
irpf
irradia
irreal
irritada
irritado
irrumpe
irse
irte
irureta
irving
isaac
isadora
isbn
iscam
isidoro
isidro
isis
islandia
islas
islotes
ismael
isolda
israel
istmo
italo
iturbe
ivan
ivcher
ives
ivonne
jabato
jabones
jaca
jacinta
jacinto
jackie
jackson
jacobo
jacques
jadeo
jaguar
jaime
jaimito
jairo
jalapa
jalea
jaleo
jalisco
jamaica
james
jamones
janeiro
janet
jano
janti
jaque
jarabe
jarama
jarpa
jarras
jasha
jasmin
jason
jaspe
jaulas
jaume
java
javier
jazz
jeanne
jeans
jeep
jefes
jenaro
jenny
jensen
jeque
jeremy
jerga
jeringa
jerome
jerry
jersey
jesse
jessica
jesus
jeta
jiang
jimena
jimmy
jinetes
jirones
joan
joao
joaquim
jockey
jodas
joder
jodido
joel
jofresa
joglars
johnny
johnson
joint
jomeini
jonathan
jones
jonet
jordi
jornada
josafat
joseba
josechu
josefa
joselito
josema
jospin
josu
jota
journal
jovial
joyas
joyce
joyero
juana
juancho
juanita
juanito
juanjo
jubileo
judas
judea
judith
judy
jueces
juegan
juegos
jueguen
juerga
jueves
jueza
jugaban
jugadas
jugados
jugamos
jugando
jugara
jugaron
jugarse
jugosa
jugoso
juguetes
juicios
jujuy
julen
jules
juliana
juliano
julieta
julio
julita
juncos
jungla
juniors
juntaron
juntas
juntos
jurada
jurados
jurar
juro
justas
justino
justos
juvenal
juzgaba
juzgada
juzgados
juzgan
juzgar
juzgue
kabila
kabul
kafka
kaiser
kane
kansas
kant
kaposi
karajan
kardoux
karen
karl
karma
karpov
kasparov
kassar
kate
kcal
keaton
keith
kelly
kelme
kenia
kennedy
kenneth
kenny
kent
kepler
kerry
kevin
khan
kiev
kiko
kilos
kimera
king
kitsch
klaus
klein
klerk
koch
kodak
koeman
kohl
kong
kosovo
krauss
kremlin
krieger
kubrick
kuhn
kurdos
kurt
kuwait
kyle
labios
laboran
labores
labrada
lacalle
lacan
lacayos
lacio
lacra
lactosa
laden
laderas
ladinos
lados
ladrar
ladridos
ladrones
lady
lagos
lagunas
laica
laicos
lakers
lalo
lamas
lambert
lana
lances
lancet
lanchas
landa
lander
lanka
lanzas
laos
laplace
lapsos
lara
laredo
lares
largas
largos
laringe
larios
larrea
larry
larvas
lasarte
lasca
lastra
lastre
latas
latencia
latidos
latinas
latinos
latir
latorre
latour
laudo
laudrup
laura
laurent
laurita
lauro
lausana
lautaro
lavaba
lavabos
lavadas
lavadero
lavados
lavalle
lavamos
lavanda
lavando
lavarse
lavilla
lavinia
lazio
lazos
lcap
leales
leandro
leasing
lebed
leblanc
lechera
lechero
leches
lechos
lechuga
lechuza
lectora
lecturas
lecuona
ledesma
ledezma
ledo
leemos
leen
leerla
leerlos
leerse
lees
legado
legajos
legales
legazpi
lego
legrand
leguas
leguina
leibniz
leigh
leipzig
leiston
leiva
lejanas
lejanos
lejos
lemas
lemos
lena
lenguas
lennon
lentas
lentes
lentitud
lentos
leoncio
leonel
leonesa
leonor
lepanto
lepra
leproso
lerma
leroy
lesa
leslie
lesmes
letales
letargo
leticia
letona
letras
levante
levanto
levedad
leves
levita
levy
lewis
leyendas
leyendo
leyera
leyeron
leyes
leyland
leyva
lezama
libere
libertad
libia
libido
libio
librada
librado
libran
libras
libres
libreta
libreto
librito
libros
licario
licencia
liceo
liceu
licores
licuar
liderar
liderato
lides
liebres
lienzos
life
ligadas
ligados
ligar
ligas
ligeras
ligeros
light
liguero
lija
likud
lila
liliana
lily
limar
limbo
limita
limite
limonada
limones
limpias
limpios
linajes
linares
linaza
lince
lincoln
lindas
lindos
liniers
lino
linterna
linux
lionel
liquidar
liras
liria
lirios
lirismo
lisardo
lisas
lisboa
lisos
listas
listos
litio
lito
litri
litros
little
lituania
liviana
living
livio
liza
llagas
llamadas
llamas
llamen
llames
llamo
llanos
llantas
llantos
llaves
llegaban
llegadas
llegase
llego
lleguen
lleida
llenado
llenando
llenas
llene
llenos
lleras
llevadas
llevarse
llevase
lleven
lleves
llevo
lliure
llopis
llorado
llorar
llorca
llorens
llores
llorona
llorosa
llosa
llover
llovido
llovizna
lloyd
lluch
llueva
llueve
lluis
lluvias
loable
lobato
lobby
lobos
locales
locas
locke
locos
locuaz
locuras
locus
locutor
lodo
logan
logia
logos
lograra
logren
logros
logse
lola
lolita
lolo
lomas
lombriz
lomos
lona
lonchas
london
londres
lonja
look
lopez
lora
lorca
lord
lorena
lorente
lorenza
lorenzo
lores
loreto
lorito
loros
losada
losas
lotes
loto
lotus
louise
lourdes
louvre
love
loyola
lozada
lozano
lozoya
luarca
lucas
lucena
lucero
luces
luchas
lucho
luciano
lucidez
lucido
lucifer
lucila
lucio
lucirse
lucita
lucky
lucro
lucy
ludo
ludwig
luego
luengo
lugares
lugones
luigi
luisa
luiz
lujosas
lujosos
lujuria
lula
lumbar
lumbre
lunares
lunas
lunes
lupa
lupe
lupita
luque
lustres
lustros
lutero
luto
luzman
lynch
lyon
mabel
macabra
macabro
macbeth
macchi
macetas
machado
machos
machu
maciza
macizos
macri
macro
madame
madeja
maderas
maderos
madison
madonna
madrazo
madres
madrina
madurar
maduras
madurez
maduros
maestre
maestro
maffei
mafias
mafiosos
magazine
maggie
magia
magic
magma
magnesio
magnitud
magno
magnus
magos
magra
magreb
magro
mahler
mahoma
maica
maicena
maillot
mairena
maite
maja
majestad
major
malaria
malasia
malcolm
maldad
malditas
malena
maletas
malezas
malicia
maligna
maligno
malinche
mallas
mallorca
malos
malraux
malta
maltrato
malvada
mamaria
mamas
mambo
mamita
manada
manager
managua
manchas
mandatos
mandeb
mandela
manden
mandos
maneje
manejos
manel
maneras
manfred
mangas
mangos
manila
manitas
mann
manojo
manolete
manolita
manolo
manos
manresa
mansos
mantas
manteca
mantos
mantuve
mantuvo
manuela
manzano
mapas
mapfre
mapuches
maracas
maracay
maradona
marasmo
marcas
marcela
marcelo
marchas
marconi
marcos
marcuse
mardom
mareado
mareas
mareos
mares
marey
marfil
margen
margot
mariana
mariano
maribel
maridos
mariela
marilyn
marinas
marines
marinos
marisa
marisol
marlene
marlins
marlon
marlowe
marquina
marras
marrero
marrones
marshall
marta
martes
martha
martina
martini
martos
maruja
marvin
marx
marzo
masajes
masas
masaya
masivas
masivos
masones
massera
massieu
massimo
masters
masticar
mataban
matando
mataran
matarla
matarle
matarme
mataron
matarse
matas
match
maten
mateos
materno
mates
mateu
matices
matilde
matisse
matizar
matones
matos
matriz
matrona
matta
matutes
maud
maura
maurice
mauro
maxilar
maxwell
mayas
mayer
mayoral
mayores
mayorga
mayra
mayte
mazas
mazda
mazo
mcenroe
mclaren
mear
meca
mecenas
mecha
mechero
meco
mediada
medianas
mediar
medias
medical
medidas
medidos
medina
medios
medirse
meditar
medrano
medusa
mega
meghan
meijide
mejorada
mejoras
mejoren
mejores
melania
melanie
melchor
melena
melero
melgar
melilla
mellado
mellizos
melo
melusa
memorial
mena
mendel
mendes
mendoza
menem
meneses
meninas
menorca
menores
menotti
mensajes
mentes
mentido
mentir
mentor
menuda
menudos
meollo
meras
mercier
merecen
merecer
mereces
merezca
merezco
merienda
merino
merleau
merlo
merluza
merma
meros
mesas
mesero
meses
mesetas
mesilla
mesitas
mesonero
mesones
mestre
mesura
metales
metano
metas
meten
meterle
meterlo
meterme
meternos
meterse
metes
metidas
metidos
metiera
metimos
meto
metros
mets
mexico
meyer
meza
mezclas
miami
micaela
micelio
michael
mickey
mico
miden
midiendo
miedos
miel
mienten
mientes
miento
mierda
migajas
migas
mijail
mijo
mikel
milan
mildred
miles
milicias
millas
miller
millet
milton
mimado
mimbre
mimos
minado
minar
minas
minelli
mineras
mineros
minerva
mingote
minsa
minutos
miope
miquel
miraban
miradas
mirador
miramar
miramos
miranda
mirando
mirara
mirarla
mirarle
mirarlos
mirarme
miraron
mirarse
miras
miren
mires
mireya
miriam
mirian
mirilla
mirones
misael
misas
misicuni
misiles
misivas
mismas
mismos
mistral
mitades
mitigar
mitin
mitos
mitre
miura
mixtas
mixtos
mobutu
mochila
mockus
mocos
modales
modas
modelar
modelos
modem
moderada
moderado
moderar
modernos
modestia
modesto
modisto
modorra
modos
modular
modus
mohamed
moho
moira
moix
mojadas
mojados
mojar
mola
moldes
moler
moleste
molida
molido
molina
moliner
molinos
molins
momias
monagas
monarcas
moncada
moncayo
moncho
moncloa
monde
monedas
moneo
monet
monge
monica
monjas
monjes
monos
monreal
monroe
monroy
montaba
montadas
montados
montejo
montera
montero
montiel
montoro
montos
montoya
montura
moqueta
moradas
morados
moraldo
morales
moras
morbosa
morboso
mordaza
morder
mordida
mordido
moreau
morelia
morelos
morena
morenos
morera
morfina
morgan
morgue
morimos
morirme
morirse
morosos
morral
morro
morse
mortaja
morteros
morton
moscada
moscas
moscoso
mosquera
mossos
mostar
mostaza
mosto
mostrar
mota
motel
motines
motivan
motivos
motoras
motores
motors
motos
motrices
motriz
mouse
movemos
moverme
moverse
movidas
movidos
moviera
movieron
moyano
mozart
mozas
mozos
mrta
mubarak
muchas
muchos
mucosas
mudado
mudarse
mudas
mudos
muebles
muecas
muelas
muelen
muelles
mueran
muerde
mueren
mueres
muermo
muero
muertas
muertes
muertos
muevas
mueven
muevo
mugre
mujeres
mujica
mulas
mulata
mulatos
muletas
muller
mulo
multas
mundano
mundos
munich
murales
murdoch
muriel
muriera
murillo
murmurar
muros
murphy
murray
musas
museos
museum
musgo
muslos
muster
mutantes
mutismo
mutuas
mutuos
muza
myers
myriam
nacen
nacer
nacha
nacho
nacidas
nacidos
naciera
nadal
nadando
nadar
nadia
nadie
nado
nafta
naipes
nalgas
namibia
nana
nancy
nani
napster
naranja
naranjo
narciso
narcos
narices
nariz
narrada
narran
narrar
nasales
natalia
nativas
nativos
nato
natura
nature
nausica
navajas
navales
navarra
navas
navegar
naves
naviera
nazaret
nazario
nazca
necaxa
necedad
necesito
necio
nefasto
negaban
negada
negado
negamos
negando
negara
negarle
negarlo
negaron
negarse
negras
negrete
negrita
negrito
negros
negrura
neil
neira
nelly
nelson
nemesio
nena
nene
nepal
neptuno
neri
neruda
netas
netos
network
neumann
neural
neutros
nevadas
nevado
nevera
newman
newton
nexos
nicanor
nichos
nick
nicolau
nicole
nidos
nieblas
niegan
niego
niegue
nieta
nietos
nieva
nieves
nigeria
night
nilo
nina
ninfas
ninguna
ninguno
nino
nipona
nirvana
nissan
nitidez
nitya
niveles
nixon
niza
nobel
nobles
nobleza
noboa
noches
nocivas
nocivos
nodos
nodriza
noel
nogales
noguera
nombraba
nombrada
nombran
nombres
nora
noreste
noria
noriega
norman
normas
noroeste
norte
norton
noruega
nostra
notaba
notado
notamos
notando
notara
notarial
notaron
notarse
notas
note
notimex
noto
notre
novatos
novelas
novena
noveno
noventa
novias
novicia
novicio
novios
novoa
nubes
nublado
nubosos
nuca
nudos
nueces
nuera
nuevas
nueve
nuevos
nuez
nulas
nulidad
nulos
nunca
nuncio
nupcial
nupcias
nuria
nutren
nutrida
nutrido
nutrir
nylon
oakland
oasis
oaxaca
obando
obedecer
obelisco
obesa
obesos
obiang
obiols
obispos
objetar
objetos
oblicua
oblicuo
obliga
obligue
obrador
obran
obrar
obras
obreras
obreros
obscena
obsceno
observe
observo
obtuve
obtuvo
obviar
obvias
obvios
ocampo
ocaso
ocde
ocean
ochenta
ochoa
ociosa
ociosos
ocres
octava
octavia
octavio
octavos
octubre
oculares
ocultas
ocultos
ocupados
ocupara
ocupen
ocupo
ocurran
ocurrir
odiaba
odiado
odian
odiar
odiosa
odioso
odisea
oeste
ofelia
ofender
ofensas
ofertas
office
oficios
ofrecen
ofrezco
ohio
oigan
oigo
ojeada
ojeda
ojeras
ojillos
ojitos
ojos
okey
oklahoma
olano
olas
oleadas
oleaje
oler
olfato
olga
oliendo
olimpo
olivera
olivia
olivier
olivos
ollas
ollero
olmedo
olmos
olonia
olores
oloroso
olot
olviden
olvides
olvidos
omar
ombligo
omega
omiso
omitir
onassis
once
ondas
onetti
ongd
ongs
online
onofre
onzas
opaca
opacos
opel
open
opep
operada
operando
opereta
opinaba
opinan
opino
opio
opium
opone
oporto
oprime
optado
optan
optaron
opuestos
opuso
oradores
orales
orange
orar
orbe
ordaz
ordenes
ordeno
orejas
orense
orestes
orfeo
organo
orgasmo
orgullo
oria
oriente
origen
orillas
orinar
orines
orinoco
orioles
oriundo
orlando
orleans
oros
orozco
orson
ortega
ortiz
ortodoxa
oruro
orwell
osado
osasuna
osborne
oscar
oscilar
oscuras
oscuros
osiris
oslo
osorio
osorno
osos
ospina
ostras
osuna
osvaldo
oswaldo
otan
otero
otorgue
otras
otrora
otros
otto
ourense
ovalada
ovalle
ovarios
ovejas
ovidio
oviedo
ovillo
ovino
ovnis
owen
oxford
oxidado
oyendo
oyentes
oyera
oyeron
oyes
ozono
pablito
pablos
pacheco
pacho
pachuca
paco
pactada
pactado
pactar
pactos
padecen
padecer
padilla
padres
padua
paella
paesa
pagaban
pagadas
pagados
pagamos
pagana
pagando
paganos
pagara
pagarlo
pagaron
pagarse
pagas
page
pagos
paguen
pajara
pajares
paje
palacete
paladar
palas
palau
palcos
palermo
paleta
paliar
palidez
palio
palito
palizas
palmar
palmas
palmira
palmo
palomar
palomas
palomo
palos
palpar
palta
pamela
pami
pampas
panacea
pancho
panda
pandora
paneles
panes
paniagua
panizo
pantalla
pantani
pantera
pantoja
panza
paola
paolo
papadoc
papal
papas
papaya
papeles
papilla
paquita
paquito
paraban
paradas
parador
parados
paraguas
parajes
paramos
pararon
pararse
parca
parches
parco
parda
pardos
parecen
pareces
paredes
parejas
parejos
pares
pareto
parezcan
parezco
parga
paria
paridad
parido
pariente
parir
parker
parking
parma
parodia
paros
parques
parra
parta
parten
partes
partir
partos
pasaban
pasadas
pasados
pasajes
pasamos
pasando
pasaran
pasarla
pasarle
pasarlo
pasarme
pasaron
pasarse
pasase
pascal
pasco
pascual
paseado
pasemos
pasen
paseos
pases
pasivas
pasivos
pasmosa
pasos
pasqual
pastas
pasteur
pastos
patadas
patas
patatas
paterno
patines
patios
patitas
patos
patrias
patrick
patty
patxi
paulina
paulino
paulo
paulus
pausado
pausas
pautas
pavel
pavlov
pavos
payasos
pazos
pcus
pdvsa
peajes
pearson
pecados
pecar
pecas
peces
pechos
pechuga
pedaleo
pedales
pedante
pedazos
pedida
pedidos
pedimos
pedirme
pedirte
pedos
pedraza
pedrito
pedrosa
pegaba
pegadas
pegados
pegando
pegarle
pegaron
pegarse
pegaso
peggy
pego
pegue
peina
peine
peladas
pelados
pelaje
pelamos
pelar
pelas
pelayo
peleado
peleando
pelear
peleas
pellejo
pelos
pelotas
pelucas
peluche
peludo
pelvis
penales
penas
pendejos
penelas
penia
penoso
pensamos
pensara
pensaron
pentium
peones
people
peores
pepa
pepe
pepinos
pepitas
pepito
pepsi
perales
peralta
peras
peraza
percance
percha
perciba
percibo
perdamos
perderlo
perdidos
perdimos
perdiz
perdomo
perdono
perecer
pereda
pereira
perejil
pereza
pericia
perico
perilla
periplo
peritos
perlas
permito
perote
perras
perrito
perros
persas
pesaban
pesadas
pesadez
pesados
pesan
pesares
pesas
pescar
pesebre
pesetas
pesos
pessoa
pestes
petate
petit
peto
petra
peugeot
pezones
piadoso
piaget
pianos
piazza
pibes
picadas
picados
picasso
pichones
picos
picota
pidal
pidan
piden
pides
pidiera
pido
piedad
piedras
pieles
piensan
piensas
piensen
pienses
piensos
pierce
pierdan
pierdas
pierden
pierdes
pierdo
piernas
piero
pierre
pierrot
pies
pietro
piezas
pijama
pilares
pilas
pilatos
pileta
pillado
pillaje
pilotos
pinamar
pinares
pinceles
pinchar
pinche
pineda
pingajo
pinilla
pinocho
pinos
pintaba
pintadas
pintar
pintas
pintora
pinus
pinzas
pinzona
piojos
pionera
pipas
piquer
piratas
pirri
pirueta
pirulo
pisaba
pisadas
pisado
pisando
pisar
piscis
pisco
pisos
pistas
pita
pitcheo
pitcher
pitillo
pitones
pitos
piura
pivote
pizarra
pizarro
pizca
pizza
placas
placebo
plagada
plagado
plagas
plagio
planas
planck
planeaba
planeada
planear
planes
planos
plantar
plantas
plantee
planteo
plasmar
platense
platino
platos
playas
plazas
plazos
plegado
pleitos
plenas
plenos
plexo
pliegos
plinio
plomo
plra
plumaje
plumas
plumazo
plus
plutonio
poblar
pobres
pobreza
pocas
pocillo
pocos
podamos
podemos
poderes
poderse
podido
podio
poemas
poetas
poetisa
polaca
polacos
polanco
polares
polen
polidori
pollos
polonia
polos
polvos
pomada
pombo
pomelo
pomo
pompas
pompeya
pompidou
ponce
ponches
poncho
poncio
ponemos
ponerme
ponernos
ponerse
ponerte
pones
pongan
pongas
pongo
pons
popa
popo
popular
poquito
porche
porcino
porno
porotos
porque
porras
porros
porsche
portar
portazo
portera
portillo
portland
posadas
posado
posarse
posean
poseen
poseer
poseo
poso
posted
postes
postigos
postor
postres
postural
potable
potasio
potros
potter
pour
poveda
poza
pozos
pozuelo
prada
prados
praga
prato
prats
praxis
precie
predecir
predice
predijo
predios
prefecto
preferir
prefiera
premiar
premier
premios
premura
prendas
prender
prensa
prepare
preparo
presas
presos
presse
prestada
presten
prestige
preston
prever
previas
previos
price
prieto
primado
primas
primos
priora
prisas
prisma
privar
prix
proa
probaba
probable
probando
procesar
procure
procuro
produce
producir
producto
produjo
proezas
profano
prohibe
prolija
prolijo
promesas
prometo
promotor
promover
promueva
promueve
pronta
pronto
propagar
propano
propias
propios
propuse
propuso
prosa
proteasa
protegen
proteja
protesta
protones
proust
proveen
proveer
provenir
proviene
provista
provisto
provoca
proyecto
prsc
prueban
pruebas
pruebe
prurito
prusia
pseudo
psique
psoe
psuc
ptas
pubertad
pubis
publica
publico
pubs
puccini
pucha
pude
pudiera
pudimos
pudiste
pudor
pueblan
pueblos
puedan
puedas
pueden
puedes
puedo
puentes
puercos
pueril
puerros
puertas
puertos
puestas
puestos
pugnas
puig
pujante
pujanza
pujol
pulcro
pulgada
pulgar
pulgas
pulido
pulir
pulmones
pulpa
pulpo
pulsar
pulsos
pululan
pumas
punk
puno
puntada
puntaje
puntas
puntos
punzada
pupilas
pupilos
pupitre
puras
pureza
puros
puse
pusiera
pusiese
pusimos
pusiste
puso
putas
putin
puto
putumayo
puzzle
pymes
quadras
quebec
quebrar
quechua
quedado
quedase
queden
quedes
quedo
queen
quejaba
quejado
quejan
quejas
quemaba
quemados
quepa
queramos
quercus
queridas
queridos
quesada
quesos
quevedo
quicio
quiebre
quienes
quieran
quieras
quieren
quieres
quiero
quietas
quietos
quietud
quijada
quijano
quijote
quilmes
quina
quintas
quinto
quique
quiroga
quiroz
quise
quiso
quistes
quitado
quitamos
quitarme
quiten
quito
quomo
rabal
rabat
rabia
rabillo
rabino
rabiosa
rabioso
rabo
rachas
racimos
racing
racional
raciones
racismo
racistas
radares
radios
rafaela
rahola
raimon
rajoy
rallada
rallado
rallye
ralph
ramales
ramallo
ramas
ramblas
ramfis
ramiro
ramitas
ramito
ramona
ramos
rampas
ranas
ranchos
rancia
rancio
rangel
rangers
rangos
ranking
ranura
raoul
rapaces
rapaz
rape
raphael
rapidez
rapto
raquel
raqueta
raras
rarezas
raros
rasgos
raso
rastras
rastrear
rastreo
rastros
ratas
rating
ratio
ratito
ratones
ratos
raul
ravel
rayado
rayas
raymond
rayos
razas
razonar
razones
reabrir
reacios
reagan
realce
reales
realeza
reality
realzar
rebajar
rebajas
rebasan
rebasar
rebeca
rebeldes
rebotes
rebozo
rebrote
recabar
recados
recaer
recarga
recargo
recato
recaudar
recaudo
recelo
receptor
receso
recetas
rechace
rechaza
rechazo
recia
reciban
reciben
recibos
recio
recitar
recobrar
recodo
recogen
recoja
recojo
reconoce
recopa
records
recrear
recreo
rectas
rectos
recubre
recurrir
recurso
redactar
redada
redes
redimir
redoble
reducen
reductos
redujo
reed
refiera
refiero
refleje
reflejo
reflujo
reformar
refugios
refutar
regado
regalan
regalos
regar
regatas
regazo
regenta
regente
reggae
regia
regida
regina
regir
reglas
regreso
reguero
regulan
regule
regusto
rehacer
rehenes
rehogar
rehuir
reich
reinaba
reinado
reinar
reinas
reinos
reitero
rejas
rejilla
relaja
relajo
relatan
relatar
relator
relatos
releer
relevado
relevos
rellano
rellenas
relojes
relucir
remanso
rematado
rematar
remates
remedo
remesas
remigio
remite
remitida
remitir
remojar
remojo
remos
remotas
remotos
remover
removido
remueve
renacer
renales
renata
renato
renault
rencores
rendida
rendido
rendirse
renfe
renoir
rentas
renzi
reojo
reos
reparar
reparos
reparto
repasar
repaso
repente
repetir
repisa
repitan
repiten
repito
repollo
reportan
reposaba
reposan
reposar
reposo
repsol
reptil
repudio
repulsa
repunte
repuso
requena
requerir
requisa
resaca
rescate
reseca
reses
residir
resinas
resista
resisto
resonar
respetar
respiro
restaba
restarle
restos
resumen
retardo
retazos
retener
retenes
retina
retire
retiros
retomar
retornar
retorno
retos
retratos
retrete
retuvo
reunir
reus
reuters
reverso
reverte
reveses
revilla
revisada
revise
revista
revive
revivir
revocar
revoque
revuelo
rexach
reyerta
reyes
rezaba
rezagos
rezando
rezar
rezos
riada
riazor
ribas
ribeiro
riberas
ribetes
ricardo
ricas
rice
richter
ricky
ricos
rictus
riega
riegos
rieles
riendas
riendo
riera
rieron
riesgos
rifles
rigen
rigidez
rigores
rimas
rimplo
rinden
ring
riojano
risas
risco
risita
ristre
rita
ritmos
ritos
ritual
rivaldo
rivales
rivas
rivera
rivero
rizado
rizos
road
robaba
robadas
robados
robaina
robando
robarle
robaron
roberta
roberto
roberts
robledo
robles
robos
robots
robusta
rocas
roces
rocha
roche
rociar
rockero
rocosas
rocosos
rodaba
rodada
rodado
rodajas
rodaje
rodando
rodante
rodar
rodas
rodearon
rodeos
rodillo
rodolfo
rodrigo
roedores
rogar
rogelio
rogers
roig
rojano
rojas
rojizas
rojizos
rojos
rolando
roles
rolf
rolling
rollos
rolls
romanas
romanos
romario
romay
romeo
romero
romo
rompan
rompen
romperse
rompiera
ronaldo
ronca
ronco
rondaba
rondar
rondas
ropajes
ropas
ropero
roque
rosadas
rosados
rosales
rosas
rosaura
rosca
rosendo
rosita
rossini
rostros
rosy
rotas
rotativo
rotonda
rotos
rotundo
roturas
rouge
round
rover
rovira
roxana
royal
royo
rozaba
rozando
rozar
rozas
ruanda
ruano
rubens
rubias
rubin
rubios
rubor
rubros
ruby
ruda
rudolf
rudy
ruedas
ruedos
ruega
ruegos
rufino
rufo
rugby
rugido
ruinas
ruiz
ruleta
rulfo
rumana
rumania
rumanos
rumasa
rumba
rumbos
rumores
ruperto
rupestre
rurales
rusas
rusia
rusos
rutas
ruth
rutinas
sabana
sabedor
sabemos
saben
saberes
saberlo
saberse
sabes
sabias
sabido
sabina
sabino
sabios
sables
sabonis
sabores
sacaban
sacadas
sacados
sacamos
sacando
sacara
sacarla
sacarme
sacaron
sacarse
sacas
saciar
sacos
sacro
sacude
sacudir
sadam
sadat
saddam
sade
sadismo
safari
sagaz
sagradas
sagunto
said
sainete
saint
sainz
saiz
sajonia
salada
salado
salas
salazar
salcedo
saldar
saldos
salen
sales
salgado
salgan
salgas
salgo
salidas
salidos
saliendo
salimos
salinas
salirse
salita
salitre
saliva
salle
salmos
salomon
salones
salsas
saltado
saltos
saludos
salvas
salvia
samba
samper
sampras
samuel
sanar
sanas
sanchez
sanchis
sancho
sandino
sandra
sandro
sandy
sanear
sangrar
sangre
sanidad
sanos
sans
santana
santas
santer
santos
sanz
sapiens
saporta
sapos
saquen
saqueos
saques
sarah
sarcasmo
sarcoma
sardina
sargento
sarita
sarna
sarta
sartre
sastre
saturado
saturno
sauces
saudita
sauna
saura
savater
savia
savolta
saxo
sazonar
scala
seamos
sean
seas
sebo
secaba
secado
secano
secarse
secas
secos
sectas
sedas
sedes
seduce
seducido
seducir
segovia
seguidas
seguirle
seguirse
segundas
seguras
seguros
selecta
selectos
seles
self
sellada
sellado
sellar
seller
sellos
selvas
semanas
sembrar
sempere
sendas
sendos
senegal
senil
senior
senna
senos
sensata
sensato
sentados
sentara
sentida
sentirlo
sentirse
seoane
sepamos
sepan
separe
sepas
sepelio
sepia
sepla
sera
serbias
serbios
seremos
serenos
seres
sergio
serias
series
serios
serle
serlo
serna
serpa
serrano
serrat
service
servirle
sesenta
sesgo
sesos
setas
setenta
sets
severas
severos
sexenio
sexismo
sexista
sexos
sexta
sexteto
sexto
sexy
shiva
siberia
sidney
sido
sidra
siembras
siemens
siempre
siendo
sienes
sientan
sientas
sienten
sientes
siento
sierras
siervos
siesta
siete
sigamos
sigan
sigas
siglas
siglos
sigma
sigmund
signos
sigo
siguen
sigues
silbar
silbato
siles
silicio
sillas
silos
silva
silvia
silvio
simeone
simios
simona
simone
simples
simpson
simular
sinagoga
sinaloa
sinatra
sine
singer
singular
sinuosa
sinuoso
sirenas
siria
sirios
sirvan
sirven
sirvo
sismo
sitges
sitial
sitios
sito
sixto
slogan
smith
soares
sobrado
sobras
sobrero
sobria
sobrina
sobrio
social
sociedad
society
socios
socorro
soda
sodio
sofian
sofocar
sofrito
soga
sois
soja
solana
solano
solapas
solares
solari
solas
solaz
solbes
soleada
soleado
solemos
solera
soles
solidez
solista
solito
solos
soltaba
soltado
soltando
soltera
soltero
soltura
somalia
sombras
someta
someten
somos
somoza
sonaban
sonado
sonando
sonaron
sonatas
sondas
sondeos
sones
sonetos
sonia
sonidos
sonoras
sonoros
sony
sopas
soperas
sopesar
sophia
sophie
soplaba
soplar
soplete
soplo
soporto
soprano
sorbona
sorbos
sorda
sordera
sordina
sordos
sorgo
soriano
sorna
sorolla
sorpresa
sortear
sorteos
sortija
sosa
sosiego
soslayo
sostuvo
sotana
sotelo
sotero
soul
sousa
souza
soya
soyuz
space
spanish
spencer
spinoza
sprint
stalin
stanley
stanton
stark
stefano
steffi
steiner
stella
stop
strauss
stuart
suaves
suavizar
suazo
suban
subaru
suben
subidas
subido
subiera
subimos
subirse
subjefe
subo
subsuelo
suceda
suceden
sucesos
sucias
suciedad
sucios
sucres
sudaba
sudando
sudar
sudeste
sudoeste
sudores
sueca
suecia
suecos
suegra
suegros
suelas
sueldos
suelen
suelos
sueltan
sueltas
suelte
sueltos
suenan
suene
suero
suertes
sufran
sufren
sufridas
sufrir
sufro
sugerir
sugiere
sugiero
suites
suizas
suizos
sujetar
sujetas
sujetos
sula
sulfato
sumaban
sumados
sumamos
sumando
sumaron
sumarse
sumas
sumen
sumerge
sumida
sumidos
sumisa
sumiso
sumo
superen
supiese
supimos
suplico
suplir
suponen
supongo
suprema
supremo
suprime
suprimir
supuesta
supuesto
supuse
supuso
surcos
sureste
surgen
surgidos
surgir
surjan
surtido
susana
susi
suspense
suspenso
sustos
susurra
sutiles
sutura
suyas
suyos
suzuki
swing
sydney
systems
tabacos
tabasco
tablas
taboada
tachado
tacita
tacones
tacos
tacto
tadeo
taiwan
tajadas
tajo
talante
talco
talento
tales
tallado
tallas
tallos
talones
tamales
tamames
tamara
tamayo
tambien
tambor
tampa
tampico
tampoco
tandas
tangos
tania
tanit
tanques
tantas
tanteos
tantos
tapaba
tapada
tapados
tapar
tapas
tapete
tapias
tapices
tapiz
tapones
tapujos
tarazona
tardaba
tardado
tardes
tareas
tarifas
tarija
tarima
tarjetas
tarot
tarros
tarsis
tarta
tasas
tata
tate
tatiana
tato
tatuaje
taurina
tauro
taurus
taxi
taylor
tazas
teatre
teatros
tebas
techos
teclas
tedio
tejada
tejados
tejas
tejeda
tejen
tejero
tejida
tejidos
telar
telas
telf
tella
tello
telmo
temario
temas
temblar
tememos
temen
temes
temida
temido
temiera
temores
templar
temple
templos
temuco
tenaces
tendero
tendida
tenedor
tenemos
tenerife
tenerle
tenerse
tengan
tengas
tengo
tenia
tenidas
tenidos
tenores
tenorio
tensas
tensos
tentar
tenues
teobaldo
teodoro
teorema
tequila
terapia
terca
tercios
terco
teresa
termas
termina
termine
termino
termo
terna
ternera
terno
ternura
terror
tersa
teruel
teseo
tesis
tesoros
testigos
tests
tetas
texas
textos
texturas
thomas
thomson
tiberio
tibias
tibidabo
tibieza
tibios
tico
tics
tiempos
tiendas
tienden
tienen
tienes
tientas
tiento
tiernas
tiernos
tierras
tiesa
tieso
tigres
tijeras
tijuana
timbres
times
timidez
timonel
timoteo
tinajas
tino
tintas
tintero
tintes
tintos
tintura
tipos
tiraban
tiradas
tirados
tiraje
tirana
tirando
tiranos
tirantes
tiraron
tirarse
tiras
tire
tiritas
tirones
tiros
tiroteo
tirso
titanic
tito
titulaba
titulo
tiza
toallas
tobago
tobera
tobillos
tocaban
tocada
tocador
tocados
tocamos
tocando
tocante
tocara
tocarla
tocarlo
tocarme
tocaron
tocarse
tocas
tocho
tocino
toco
todas
todos
toga
tokio
toldos
toledo
tolerar
tolima
tolosa
tolstoi
toluca
tomaban
tomadas
tomados
tomamos
tomando
tomaran
tomarla
tomarle
tomarlo
tomarme
tomaron
tomarse
tomasa
tomates
tomemos
tomen
tomes
tomillo
tomos
tonelaje
toni
tonos
topado
toparse
topes
topo
toquen
toques
torcer
torcida
torcido
torear
toreo
torera
toreros
toribio
tornaba
tornado
tornan
torneos
torno
toronto
toros
torpes
torpeza
torras
torres
torrija
torso
tortas
tortosa
tortuga
tosca
tosco
toser
tostadas
tostado
totales
tous
tovar
toxinas
toyota
trabado
trabas
tracy
trade
tradujo
traemos
traen
traerle
traes
tragaba
tragado
tragos
traigan
traigo
trajera
trajes
trajo
tramas
tramos
trampas
trances
trapos
traste
trastos
tratando
tratara
tratase
traten
tratos
traumas
travel
traviesa
trazar
trazas
trazos
trece
trecho
tregua
treinta
trejo
trenes
trenzas
trepar
triana
trias
tribunas
tribune
tribus
trienio
trigo
trillo
trino
tripas
triples
tristes
trizas
trofeos
tromba
trompas
trompo
troncos
trono
tropas
tropel
tropezar
tropiezo
trote
troya
trozos
truchas
trucos
trudi
trueba
truenos
trueque
trufas
truman
tubos
tubular
tudela
tuerca
tuerto
tufo
tulio
tumbada
tumbado
tumbar
tumbas
tumbos
tumores
tumulto
tupida
tupido
turbado
turbias
turbios
turbo
turcas
turcos
turnos
tutelar
tutores
tuve
tuvieras
tuvimos
tuviste
tuvo
tuyas
tuyos
ubaldo
ubican
uganda
ugarte
ulises
ulloa
ulster
ultimar
ultimas
ultimo
ultranza
umberto
umbral
umbrosa
unamuno
unas
unen
unesa
unesco
unicaja
unicef
unico
unidas
unidos
uniendo
unieron
uniforme
unimos
uniones
unirse
united
universo
unos
untar
urania
uranio
urano
urbanas
urbanos
urbes
urbina
urbino
urea
uretra
uriarte
uribe
uriburu
uriel
urnas
urquijo
urrutia
urss
ursula
usaban
usadas
usados
usamos
usando
usanza
usarla
usarlos
usaron
usarse
usen
usos
ustedes
usuales
uterina
uterino
utilidad
utilizo
utrera
utuado
uvas
vacas
vaciado
vaciar
vacilar
vacunas
vacuno
vagando
vagar
vagas
vagones
vagos
vaguada
vaguedad
vaho
vainas
vais
vajilla
valdano
valdez
valedor
valente
valera
valeria
valerio
valerse
vales
valga
validez
valido
valiente
valija
valiosos
vallas
vallejo
valles
valls
valorar
valores
valses
vamos
vampiros
vanas
vance
vanessa
vanidoso
vanos
vapores
varas
varela
vargas
variadas
variar
varias
varices
varios
varones
varonil
vascas
vascos
vasijas
vasito
vasos
vastas
vastos
vaticano
vayamos
vayan
vayas
veamos
vean
veas
veces
vecinas
vecinos
vedado
vedette
vegas
veiga
veinte
veis
vejez
vejiga
veladas
velador
velados
velando
velarde
velasco
veleros
vello
veloces
velorio
velos
vemos
venados
venas
vencen
vencer
vendaje
vendan
vendas
venden
venderse
vendimia
vendo
venecia
venegas
vengas
vengo
venia
venidas
venidos
venimos
venirse
venosa
ventanas
ventas
vente
ventral
ventura
venus
veraneo
veranos
veras
veraz
verbena
verbos
verdades
verdes
verdi
verdor
verdosa
verdoso
verduras
veredas
veremos
vergara
verja
verlas
verles
verlos
verme
verne
vernos
verona
verse
versos
versus
verter
vesical
vestir
vetar
vetas
veto
vetusto
viables
viaducto
viajado
viajes
viajo
viales
viana
viandas
viaria
viasa
vibrar
vicario
vicens
vicente
viciosa
vicioso
vidal
vidas
videla
videos
vidrios
viedma
vieira
viejas
viejito
viejos
viena
viendo
vienen
vienes
vientos
vieran
vieras
viernes
vieron
vierten
viese
vietnam
vigas
vigilar
vigilia
vilar
vilas
villalba
villalta
villano
villas
villena
vilo
vimos
vinagre
vincent
vinci
vine
vinicio
vinieran
viniese
vinimos
viniste
vinos
violada
violeta
violines
viraje
virales
virgen
virgo
virtual
virtud
virucha
viruela
virus
visados
visas
viscosa
viscoso
visera
visitas
visite
visor
visos
vistas
vistazo
visten
vistosa
vitales
vitoria
vitro
viudas
viudo
vivaldi
vivanco
vivas
vivaz
viveros
vives
viveza
viviana
vividas
vividos
viviera
vivimos
vivir
vivos
vizcaya
vocal
voceros
voces
vodka
volaban
volando
volantes
volaron
volcada
volcado
volcanes
volcar
voltaje
voltear
voltios
volumen
volverme
volverse
volvo
vomitar
voraces
voraz
votada
votado
votaron
voten
votos
vuelan
vuelca
vuelco
vuelos
vueltas
vuelto
vuelvan
vuelvas
vuelven
vuelves
vuelvo
vulgar
vulgo
wagner
waldo
walter
wanda
warner
watson
weber
werner
western
whisky
wilder
wilmer
wilson
windows
windsor
winston
wong
xabier
xavier
xiii
ximena
xunta
xviii
xxiii
yacente
yahoo
yale
yamaha
yang
yankees
yanquis
yardas
yasir
yasser
yates
yeguas
yemas
yemen
yendo
yenes
yepes
yerbas
yergue
yerno
yeso
yihad
yodo
yoga
yogur
yolanda
yoly
yuca
yuri
yuste
zabala
zabalza
zafarse
zafra
zaga
zagreb
zaguero
zaire
zamacois
zancadas
zanjado
zanjar
zanjas
zapallo
zapata
zapatero
zapatos
zaplana
zarpazo
zavala
zebedeo
zedillo
zelanda
zelaya
zeta
zeus
zidane
zigzag
zinc
zita
zola
zonal
zonas
zoom
zorros
zozobra
zubiri
zulema
zuleta
zulia
zuloaga
zulueta
zumbido
zumos
zurda
zurdo
zurich
zurita
diceware-1.0.1/diceware/wordlists/wordlist_fr.txt 0000664 0000000 0000000 00000315237 14732404111 0022220 0 ustar 00root root 0000000 0000000 11111 abaisse
11112 abandon
11113 abaque
11114 abattre
11115 abbaye
11116 abdiquer
11121 abdomen
11122 abeille
11123 aberrant
11124 abject
11125 abjecte
11126 abjurer
11131 ablation
11132 abolir
11133 abondant
11134 abonder
11135 abonna
11136 abonner
11141 abord
11142 aborda
11143 abordage
11144 aborder
11145 aboutir
11146 aboutit
11151 aboyer
11152 aboyeur
11153 abreuver
11154 abri
11155 abricot
11156 abrita
11161 abriter
11162 abroger
11163 abrupte
11164 acabit
11165 acacia
11166 acajou
11211 acarien
11212 accabler
11213 accalmie
11214 accent
11215 accepta
11216 accepter
11221 accident
11222 acclamer
11223 accolade
11224 accoler
11225 accord
11226 accorder
11231 accoter
11232 accouder
11233 accourir
11234 accouru
11235 accroc
11236 accroche
11241 accroire
11242 accru
11243 accueil
11244 acculer
11245 acerbe
11246 acharne
11251 acharner
11252 achat
11253 achetant
11254 acheter
11255 acheteur
11256 achevant
11261 achever
11262 achopper
11263 achrome
11264 acide
11265 aciduler
11266 acier
11311 acolyte
11312 acompte
11313 acquiert
11314 acquit
11315 acre
11316 acrobate
11321 acronyme
11322 acropole
11323 actant
11324 acter
11325 acteur
11326 actif
11331 action
11332 activa
11333 activant
11334 active
11335 activer
11336 activeur
11341 actrice
11342 actuel
11343 adage
11344 adagio
11345 adaptant
11346 adapter
11351 additif
11352 addition
11353 additive
11354 adepte
11355 adieu
11356 adieux
11361 adipeux
11362 adipique
11363 adjacent
11364 adjectif
11365 adjoint
11366 adjointe
11411 adjudant
11412 adjuger
11413 adjuvant
11414 admettre
11415 admirant
11416 admirer
11421 admit
11422 adonner
11423 adoptant
11424 adopte
11425 adoptent
11426 adopter
11431 adoptif
11432 adoption
11433 adoptive
11434 adorable
11435 adorer
11436 adouba
11441 adoubant
11442 adouber
11443 adoucir
11444 adroit
11445 adroite
11446 aduler
11451 advenir
11452 adverbe
11453 affable
11454 affadir
11455 affaire
11456 affairer
11461 affaler
11462 affamant
11463 affamer
11464 affameur
11465 affect
11466 affecter
11511 affectif
11512 affermir
11513 afficha
11514 afficher
11515 affilage
11516 affiler
11521 affilier
11522 affinage
11523 affinant
11524 affine
11525 affiner
11526 affineur
11531 affirmer
11532 affliger
11533 afflouer
11534 affluant
11535 afflue
11536 affluent
11541 affluer
11542 afflux
11543 affolant
11544 affoler
11545 affreux
11546 affront
11551 afghan
11552 afghane
11553 afin
11554 afocal
11555 afocaux
11556 africain
11561 agace
11562 agacer
11563 agacerie
11564 agape
11565 agaric
11566 agate
11611 agave
11612 agence
11613 agencer
11614 agenda
11615 agent
11616 aggraver
11621 agile
11622 agio
11623 agir
11624 agiter
11625 agneaux
11626 agonie
11631 agoniser
11632 agora
11633 agrafage
11634 agrafant
11635 agrafe
11636 agrafer
11641 agraire
11642 agrandir
11643 agricole
11644 agripper
11645 agronome
11646 agrume
11651 aguerrir
11652 aguicher
11653 ahuri
11654 aidant
11655 aide
11656 aider
11661 aigle
11662 aiglefin
11663 aiglon
11664 aigre
11665 aigrefin
11666 aigrelet
12111 aigrette
12112 aigreur
12113 aigrir
12114 aigu
12115 aiguille
12116 aile
12121 aileron
12122 ailette
12123 ailier
12124 ailler
12125 ailloli
12126 aimable
12131 aimant
12132 aimanter
12133 aime
12134 aimer
12135 aine
12136 airain
12141 aire
12142 airelle
12143 ajointer
12144 ajonc
12145 ajour
12146 ajourer
12151 ajourner
12152 ajout
12153 ajoutant
12154 ajouter
12155 alambic
12156 alanguir
12161 alarmant
12162 alarme
12163 alarmer
12164 album
12165 albumen
12166 albumine
12211 alcalin
12212 alcaline
12213 alchimie
12214 alcool
12215 alentour
12216 alertant
12221 alerte
12222 alerter
12223 alevin
12224 algue
12225 alibi
12226 alignant
12231 aligner
12232 aliment
12233 aliter
12234 allaiter
12235 allemand
12236 aller
12241 allergie
12242 alliage
12243 alliance
12244 alliant
12245 allier
12246 allonge
12251 allonger
12252 allouer
12253 allumage
12254 allumant
12255 allumer
12256 allumeur
12261 allure
12262 alluvion
12263 almanach
12264 aloi
12265 alouette
12266 alourdir
12311 alpage
12312 alpaguer
12313 alpe
12314 alphabet
12315 alpin
12316 alpine
12321 alterner
12322 altier
12323 altitude
12324 alun
12325 aluner
12326 alunir
12331 amadouer
12332 amaigrir
12333 amande
12334 amandier
12335 amanite
12336 amant
12341 amante
12342 amarante
12343 amarrage
12344 amarre
12345 amarrer
12346 amateur
12351 amazone
12352 ambiance
12353 ambiant
12354 ambiante
12355 ambigu
12356 ambition
12361 ambre
12362 ambulant
12363 amen
12364 amenant
12365 amende
12366 amender
12411 amener
12412 amer
12413 amerrir
12414 amertume
12415 ameublir
12416 ameuter
12421 amiable
12422 amiante
12423 amical
12424 amicale
12425 amicaux
12426 amidon
12431 amie
12432 amincir
12433 amiral
12434 amirale
12435 amiraux
12436 ammoniac
12441 amochant
12442 amocher
12443 amollir
12444 amont
12445 amoral
12446 amoraux
12451 amorce
12452 amorcer
12453 amorphe
12454 amortir
12455 amortit
12456 amour
12461 amoureux
12462 amovible
12463 amphi
12464 amphibie
12465 amphore
12466 ample
12511 ampleur
12512 ampli
12513 ampoule
12514 amputer
12515 amulette
12516 amygdale
12521 anaconda
12522 anaphore
12523 anarchie
12524 anatomie
12525 anaux
12526 ancien
12531 ancienne
12532 ancrage
12533 ancrant
12534 ancre
12535 ancrer
12536 andalou
12541 anecdote
12542 aneth
12543 ange
12544 angelot
12545 angevin
12546 angevine
12551 angine
12552 angiome
12553 angle
12554 anglican
12555 angora
12556 anguille
12561 anguleux
12562 anhydre
12563 animal
12564 animant
12565 animaux
12566 anime
12611 animer
12612 anneau
12613 anneaux
12614 annelant
12615 anneler
12616 annexant
12621 annexe
12622 annexer
12623 annexion
12624 annonce
12625 annoncer
12626 annoter
12631 annuaire
12632 annuel
12633 annuelle
12634 annula
12635 annulant
12636 annuler
12641 anobli
12642 anode
12643 anodin
12644 anodine
12645 anomalie
12646 anonymat
12651 anonyme
12652 anorak
12653 anorexie
12654 anormal
12655 anormale
12656 anormaux
12661 antan
12662 antenne
12663 anthrax
12664 antichar
12665 antidote
12666 antigang
13111 antigel
13112 antihalo
13113 antilope
13114 antimite
13115 antipode
13116 antique
13121 antivol
13122 antonyme
13123 antre
13124 anxieux
13125 aorte
13126 aortique
13131 apache
13132 apanage
13133 apathie
13134 apatride
13135 apeurant
13136 apeurer
13141 apex
13142 aphone
13143 aphonie
13144 aphte
13145 apitoyer
13146 aplani
13151 aplanie
13152 aplanir
13153 aplat
13154 aplatir
13155 aplomb
13156 apode
13161 apollon
13162 apologie
13163 appairer
13164 apparat
13165 appareil
13166 apparent
13211 appeau
13212 appeaux
13213 appel
13214 appelant
13215 appeler
13216 appoint
13221 apponter
13222 apport
13223 apporter
13224 apprenti
13225 approche
13226 appui
13231 appuyant
13232 appuyer
13233 apte
13234 aptitude
13235 aquarium
13236 aqueduc
13241 aqueux
13242 aquilin
13243 arabe
13244 arabica
13245 arabique
13246 arable
13251 arachide
13252 arbitre
13253 arbitrer
13254 arborant
13255 arborer
13256 arbre
13261 arcade
13262 arcane
13263 arceau
13264 arceaux
13265 archange
13266 arche
13311 archer
13312 archerie
13313 archet
13314 archiduc
13315 archipel
13316 archive
13321 archiver
13322 archonte
13323 arctique
13324 ardent
13325 ardente
13326 ardeur
13331 ardu
13332 argent
13333 argentin
13334 argile
13335 argileux
13336 argon
13341 argot
13342 arguer
13343 argument
13344 aride
13345 arlequin
13346 armada
13351 armagnac
13352 armateur
13353 armature
13354 arme
13355 armement
13356 armer
13361 armoire
13362 armure
13363 armurier
13364 arnaque
13365 arnaquer
13366 arnica
13411 aromate
13412 arpent
13413 arpenter
13414 arracher
13415 arranger
13416 arrimage
13421 arrimer
13422 arrivage
13423 arrivant
13424 arriver
13425 arrogant
13426 arroger
13431 arrondir
13432 arrondit
13433 artefact
13434 arthrite
13435 article
13436 artifice
13441 arythmie
13442 atelier
13443 atlante
13444 atoll
13445 atome
13446 atomique
13451 atonal
13452 atone
13453 atonie
13454 atour
13455 atout
13456 atrium
13461 atroce
13462 atrophie
13463 atropine
13464 attabler
13465 attache
13466 attacher
13511 attaque
13512 attaquer
13513 attarder
13514 atteint
13515 atteinte
13516 attelage
13521 atteler
13522 attelle
13523 attenant
13524 attend
13525 attendre
13526 attendu
13531 attendue
13532 attentat
13533 attente
13534 attenter
13535 attentif
13536 atterrer
13541 atterrir
13542 atterrit
13543 attirail
13544 attirant
13545 attire
13546 attirer
13551 attitrer
13552 attitude
13553 attrait
13554 attraper
13555 attribua
13556 attribut
13561 atypique
13562 aubade
13563 aubaine
13564 aube
13565 auberge
13566 auburn
13611 aucun
13612 aucune
13613 audace
13614 audible
13615 audience
13616 audio
13621 audit
13622 auditeur
13623 auditif
13624 audition
13625 auditive
13626 augurer
13631 aulne
13632 aune
13633 auquel
13634 aura
13635 aurore
13636 autant
13641 autarcie
13642 autel
13643 auteur
13644 auto
13645 autocar
13646 automate
13651 automnal
13652 automne
13653 autonome
13654 autour
13655 autre
13656 autruche
13661 autrui
13662 auvent
13663 avachir
13664 aval
13665 avalant
13666 avaler
14111 avance
14112 avancer
14113 avant
14114 avantage
14115 avare
14116 avarice
14121 avatar
14122 avec
14123 aven
14124 avenant
14125 avenante
14126 avenir
14131 aventure
14132 avenue
14133 avertir
14134 aveu
14135 aveugle
14136 aveugler
14141 aveux
14142 aviaire
14143 aviateur
14144 aviation
14145 avide
14146 avilir
14151 aviner
14152 avion
14153 aviron
14154 avocat
14155 avocate
14156 avoine
14161 avoir
14162 avorter
14163 avouable
14164 avouer
14165 avril
14166 axer
14211 axiome
14212 ayant
14213 ayez
14214 azimut
14215 azote
14216 azur
14221 azurite
14222 azyme
14223 baba
14224 babiller
14225 babine
14226 babiole
14231 babouche
14232 babouin
14233 bachoter
14234 bacille
14235 badaud
14236 badge
14241 badinage
14242 badiner
14243 baffer
14244 baffle
14245 bafouer
14246 bagage
14251 bagarre
14252 bagarrer
14253 bagnard
14254 bagne
14255 bagnole
14256 bague
14261 baguer
14262 baguette
14263 bahut
14264 baie
14265 baignade
14266 baigner
14311 baigneur
14312 bail
14313 bailler
14314 bailleur
14315 bain
14316 bajoue
14321 bajoyer
14322 bakchich
14323 baklava
14324 baladant
14325 balade
14326 balader
14331 baladeur
14332 balafrer
14333 balai
14334 balance
14335 balancer
14336 balayage
14341 balayant
14342 balayer
14343 balayeur
14344 balcon
14345 baleine
14346 ballade
14351 balle
14352 baller
14353 ballet
14354 ballon
14355 ballot
14356 balte
14361 baluchon
14362 bambin
14363 bambou
14364 banane
14365 bananier
14366 banc
14411 bancaire
14412 bancal
14413 bancale
14414 banco
14415 bandage
14416 bande
14421 bandeau
14422 bandeaux
14423 banjo
14424 banlieue
14425 bannette
14426 bannir
14431 banque
14432 banquer
14433 banquet
14434 banquier
14435 baobab
14436 baquet
14441 baraque
14442 baraquer
14443 baratin
14444 barbant
14445 barbaque
14446 barbare
14451 barbarie
14452 barbe
14453 barbecue
14454 barbiche
14455 barbier
14456 barboter
14461 barbu
14462 bardage
14463 barde
14464 barge
14465 baril
14466 barillet
14511 barioler
14512 baron
14513 baronne
14514 baronnie
14515 baroque
14516 barouder
14521 barque
14522 barrage
14523 barrant
14524 barre
14525 barreau
14526 barreaux
14531 barrer
14532 barrette
14533 barreur
14534 barrique
14535 bataclan
14536 bataille
14541 batavia
14542 bateau
14543 bateaux
14544 batelage
14545 bateleur
14546 batelier
14551 battage
14552 battant
14553 battante
14554 batterie
14555 batteur
14556 battre
14561 battu
14562 battue
14563 baudet
14564 baudrier
14565 baudroie
14566 baume
14611 bauxite
14612 bavant
14613 bavard
14614 bavarder
14615 bave
14616 baver
14621 bavette
14622 baveux
14623 bavoir
14624 bavure
14625 bazar
14626 bazarder
14631 bazooka
14632 beagle
14633 beatnik
14634 beau
14635 beaucoup
14636 beauf
14641 beaux
14642 becquer
14643 bedaine
14644 bedon
14645 bedonner
14646 beffroi
14651 beige
14652 beigne
14653 beignet
14654 belette
14655 belge
14656 belle
14661 belote
14662 belouga
14663 bengali
14664 benjamin
14665 benne
14666 bercail
15111 berceau
15112 berceaux
15113 bercer
15114 berceur
15115 berge
15116 berger
15121 bergerie
15122 berline
15123 bermuda
15124 berne
15125 beugler
15126 beurre
15131 beurrer
15132 beurrier
15133 beuverie
15134 bibelot
15135 biberon
15136 bibine
15141 bible
15142 biblique
15143 biche
15144 bichette
15145 bichon
15146 bicolore
15151 bicoque
15152 bicorne
15153 bicycle
15154 bide
15155 bidet
15156 bidoche
15161 bidon
15162 bidonner
15163 bidule
15164 bief
15165 bielle
15166 bien
15211 bienfait
15212 biennal
15213 biennale
15214 biennaux
15215 bienvenu
15216 biface
15221 bifocal
15222 bifocale
15223 bifocaux
15224 bigamie
15225 bigleux
15226 bigoudi
15231 bigre
15232 bijou
15233 bijoux
15234 bikini
15235 bilan
15236 bile
15241 bileux
15242 biliaire
15243 bilingue
15244 billard
15245 bille
15246 billet
15251 billion
15252 bimane
15253 bimoteur
15254 binage
15255 binaire
15256 biner
15261 binette
15262 bingo
15263 biocide
15264 biologie
15265 biotope
15266 bipied
15311 biplace
15312 biplan
15313 bique
15314 biquet
15315 biquette
15316 bitonal
15321 bitumage
15322 bitumer
15323 bitumeux
15324 bivouac
15325 bizarre
15326 bizutage
15331 blafard
15332 blafarde
15333 blague
15334 blaguer
15335 blagueur
15336 blaireau
15341 blanc
15342 blanche
15343 blanchir
15344 blatte
15345 blazer
15346 bled
15351 bleu
15352 bleue
15353 bleuet
15354 bleui
15355 bleuie
15356 bleuir
15361 blindage
15362 blindant
15363 blinde
15364 blinder
15365 blizzard
15366 bloc
15411 blocage
15412 blond
15413 blonde
15414 blondeur
15415 blondir
15416 bloquant
15421 bloque
15422 bloquer
15423 blottir
15424 bluff
15425 bluffant
15426 bluffer
15431 bluffeur
15432 bobard
15433 bobine
15434 bobo
15435 bocal
15436 bocaux
15441 boeuf
15442 boire
15443 boitant
15444 boite
15445 boiter
15446 boiteux
15451 bolet
15452 bolide
15453 bollard
15454 bombage
15455 bombant
15456 bombante
15461 bombe
15462 bomber
15463 bonbon
15464 bonbonne
15465 bond
15466 bonder
15511 bondir
15512 bonheur
15513 bonhomie
15514 bonhomme
15515 bonifier
15516 boniment
15521 bonjour
15522 bonne
15523 bonnet
15524 bonze
15525 boom
15526 bord
15531 border
15532 bordure
15533 borgne
15534 borner
15535 botte
15536 botter
15541 bottin
15542 bottine
15543 bouc
15544 boucan
15545 bouche
15546 boucher
15551 bouchon
15552 boucle
15553 boucler
15554 bouclier
15555 bouddha
15556 bouder
15561 boudeur
15562 boudoir
15563 boue
15564 boueux
15565 bouffant
15566 bouffe
15611 bouffer
15612 bouffi
15613 bougeoir
15614 bouger
15615 bougie
15616 bougon
15621 bougre
15622 bouillir
15623 bouillon
15624 boulange
15625 boule
15626 bouleau
15631 bouleaux
15632 boulet
15633 boulette
15634 boulier
15635 boulimie
15636 boulon
15641 boulot
15642 boum
15643 bouquet
15644 bouquin
15645 bourbier
15646 bourbon
15651 bourde
15652 bourdon
15653 bourg
15654 bourgade
15655 bourgeon
15656 bout
15661 boutade
15662 bouter
15663 boutique
15664 bouton
15665 bouture
15666 bovin
16111 boxe
16112 boxer
16113 boxeur
16114 boyau
16115 bracelet
16116 brader
16121 braderie
16122 brailler
16123 brancard
16124 brancher
16125 brandir
16126 braquage
16131 braquer
16132 bravade
16133 braver
16134 bravo
16135 bravoure
16136 bref
16141 brelan
16142 breloque
16143 bretelle
16144 breton
16145 bretteur
16146 breuvage
16151 brevet
16152 bricole
16153 brider
16154 brie
16155 brigade
16156 brigand
16161 brillant
16162 brille
16163 briller
16164 brimade
16165 brimer
16166 brin
16211 bringue
16212 brio
16213 brioche
16214 brique
16215 briquer
16216 broc
16221 brocante
16222 broche
16223 brochet
16224 brochure
16225 brocoli
16226 broder
16231 broderie
16232 broie
16233 brome
16234 bronche
16235 broncher
16236 bronzage
16241 bronze
16242 bronzer
16243 brouette
16244 brouille
16245 brouter
16246 broyer
16251 broyeur
16252 bruine
16253 bruit
16254 brume
16255 brumeux
16256 brun
16261 brune
16262 brutal
16263 brute
16264 bruyant
16265 bruyante
16266 buccal
16311 budget
16312 buffet
16313 bulbe
16314 bulgare
16315 bulle
16316 bulletin
16321 bureau
16322 bureaux
16323 burin
16324 butane
16325 buter
16326 butin
16331 butiner
16332 butte
16333 buvard
16334 buvette
16335 buveur
16336 byzantin
16341 cabane
16342 cabanon
16343 cabaret
16344 cabine
16345 cabinet
16346 cabrer
16351 cabriole
16352 cacao
16353 cachalot
16354 cachant
16355 cache
16356 cacher
16361 cachet
16362 cachette
16363 cachot
16364 cachou
16365 cadeau
16366 cadeaux
16411 cadence
16412 cadet
16413 cadette
16414 cadrage
16415 cadre
16416 cadrer
16421 cadreur
16422 cafard
16423 cage
16424 cageot
16425 cagibi
16426 cagnotte
16431 cagoule
16432 cahier
16433 caille
16434 caillot
16435 caillou
16436 cailloux
16441 cairn
16442 cajoler
16443 cajou
16444 calamar
16445 calamine
16446 calanque
16451 calcaire
16452 calcul
16453 calculer
16454 cale
16455 calepin
16456 caler
16461 calibre
16462 calibrer
16463 calice
16464 calicot
16465 califat
16466 calife
16511 calmant
16512 calmante
16513 calme
16514 calmer
16515 calorie
16516 calque
16521 calquer
16522 calvaire
16523 calvitie
16524 camarade
16525 cambrer
16526 cambrure
16531 camion
16532 campagne
16533 camper
16534 campeur
16535 camping
16536 canada
16541 canadien
16542 canaille
16543 canard
16544 canarder
16545 canari
16546 canaux
16551 cancan
16552 cancer
16553 cancre
16554 candeur
16555 candidat
16556 candide
16561 cane
16562 caneton
16563 canette
16564 caniche
16565 canicule
16566 canif
16611 canin
16612 canine
16613 caniveau
16614 canne
16615 cannelle
16616 canon
16621 canot
16622 cantal
16623 cantine
16624 cantique
16625 canton
16626 cantonal
16631 capable
16632 cape
16633 capeline
16634 capital
16635 capitale
16636 capitaux
16641 capitole
16642 caporal
16643 capot
16644 caprice
16645 capter
16646 capteur
16651 captif
16652 captive
16653 captiver
16654 capture
16655 capturer
16656 capuche
16661 capuchon
16662 capucine
16663 caquelon
16664 carabine
16665 carafe
16666 caramel
21111 carapace
21112 caravane
21113 carcan
21114 cardiaux
21115 cardigan
21116 cardinal
21121 cardon
21122 carence
21123 cargo
21124 caribou
21125 carie
21126 carillon
21131 carmin
21132 carnage
21133 carnaval
21134 carnet
21135 carotide
21136 carotte
21141 carpe
21142 carreau
21143 carreaux
21144 carreler
21145 carriole
21146 carrure
21151 cartable
21152 carte
21153 cartel
21154 carton
21155 catalan
21156 catalane
21161 cathode
21162 catimini
21163 caution
21164 cavale
21165 cavalier
21166 cave
21211 caverne
21212 caviar
21213 ceci
21214 ceinture
21215 cela
21216 celle
21221 cellier
21222 cellule
21223 celte
21224 celtique
21225 celui
21226 cendre
21231 cendrier
21232 cent
21233 centaine
21234 centaure
21235 centime
21236 centrage
21241 central
21242 centre
21243 centuple
21244 cerceaux
21245 cercle
21246 cercueil
21251 cerf
21252 cerfeuil
21253 cerne
21254 cerner
21255 certain
21256 certaine
21261 cerveau
21262 cervelet
21263 cervelle
21264 cervical
21265 cette
21266 ceux
21311 chacal
21312 chacun
21313 chacune
21314 chagrin
21315 chahut
21316 chahuter
21321 chalet
21322 chaleur
21323 chaloupe
21324 chalut
21325 chambre
21326 chameaux
21331 champ
21332 champion
21333 chance
21334 chanceux
21335 chancre
21336 chandail
21341 change
21342 changer
21343 chant
21344 chantage
21345 chanter
21346 chanteur
21351 chantier
21352 chanvre
21353 chaos
21354 chape
21355 chapeau
21356 chapelet
21361 chapelle
21362 chaperon
21363 chapitre
21364 chapon
21365 chaque
21366 char
21411 charabia
21412 charade
21413 charbon
21414 chardon
21415 charge
21416 charger
21421 chargeur
21422 chariot
21423 charmant
21424 charme
21425 charmer
21426 charmeur
21431 charnue
21432 charpie
21433 charrier
21434 charrue
21435 charte
21436 chat
21441 chaton
21442 chaud
21443 chaude
21444 chaudron
21445 chauffe
21446 chauffer
21451 chaume
21452 chaumer
21453 chauve
21454 chaux
21455 chavirer
21456 chef
21461 chemin
21462 cheminer
21463 cheminot
21464 chenal
21465 chenapan
21466 chenil
21511 chenille
21512 cheptel
21513 cher
21514 chercher
21515 cheval
21516 chevalet
21521 chevaux
21522 chevelu
21523 chevet
21524 cheveux
21525 cheville
21526 chevreau
21531 chevron
21532 chez
21533 chialer
21534 chic
21535 chicane
21536 chiche
21541 chichi
21542 chien
21543 chiffon
21544 chiffrer
21545 chignole
21546 chignon
21551 chilien
21552 chimie
21553 chimique
21554 chine
21555 chiner
21556 chiot
21561 chiper
21562 chipie
21563 chipoter
21564 chlore
21565 chlorure
21566 choc
21611 chocolat
21612 choir
21613 choix
21614 chope
21615 chopine
21616 choquant
21621 chorale
21622 chorizo
21623 chou
21624 chouchou
21625 chouette
21626 choux
21631 chrome
21632 chute
21633 chuter
21634 cible
21635 cidre
21636 ciel
21641 cierge
21642 cieux
21643 cigale
21644 cigare
21645 cigogne
21646 cime
21651 ciment
21652 cinglant
21653 cinq
21654 cintre
21655 cintrer
21656 cirage
21661 circuit
21662 circuler
21663 cire
21664 cirer
21665 cireur
21666 cirque
22111 citadin
22112 citadine
22113 citant
22114 citation
22115 citer
22116 citerne
22121 citoyen
22122 citrique
22123 citron
22124 civet
22125 civil
22126 civile
22131 civique
22132 clair
22133 clairon
22134 clamer
22135 clameur
22136 clan
22141 clapet
22142 clapier
22143 clapoter
22144 claquer
22145 clavier
22146 clef
22151 clerc
22152 clic
22153 cliche
22154 client
22155 cliente
22156 cligne
22161 cligner
22162 climat
22163 clip
22164 clique
22165 clivage
22166 clivant
22211 cloche
22212 clocher
22213 clone
22214 clope
22215 clopine
22216 cloporte
22221 cloquer
22222 clore
22223 clou
22224 clouer
22225 clouter
22226 clown
22231 club
22232 coaguler
22233 coauteur
22234 coaxial
22235 coaxiaux
22236 cobalt
22241 cobaye
22242 cobra
22243 coca
22244 coche
22245 cocher
22246 cochon
22251 coco
22252 cocon
22253 cocotier
22254 cocotte
22255 codage
22256 code
22261 coder
22262 codeur
22263 codifier
22264 coeur
22265 coffrage
22266 coffre
22311 coffrer
22312 coffret
22313 cogiter
22314 cognac
22315 cogner
22316 cognitif
22321 cohorte
22322 cohue
22323 coiffant
22324 coiffer
22325 coiffeur
22326 coiffure
22331 coin
22332 coince
22333 coincer
22334 coing
22335 cola
22336 colibri
22341 collage
22342 collant
22343 collante
22344 collecte
22345 coller
22346 collier
22351 colline
22352 colmater
22353 colombe
22354 colonel
22355 colonial
22356 colonie
22361 colonne
22362 colorant
22363 colorer
22364 colorier
22365 colza
22366 coma
22411 combat
22412 combatif
22413 combe
22414 combien
22415 combiner
22416 comble
22421 combler
22422 comique
22423 commande
22424 commando
22425 comme
22426 comment
22431 commerce
22432 commode
22433 commun
22434 communal
22435 commune
22436 commuter
22441 compact
22442 compagne
22443 comparer
22444 compatir
22445 compiler
22446 complet
22451 complexe
22452 complice
22453 complot
22454 compote
22455 comptage
22456 compte
22461 compter
22462 compteur
22463 comptine
22464 comptoir
22465 comte
22466 concave
22511 concept
22512 concert
22513 concerto
22514 concile
22515 conclave
22516 conclu
22521 conclure
22522 concorde
22523 concourt
22524 concret
22525 condor
22526 conduire
22531 conduit
22532 conduite
22533 confetti
22534 confiant
22535 confier
22536 confiner
22541 confit
22542 conflit
22543 confond
22544 confondu
22545 conforme
22546 confort
22551 congeler
22552 conjoint
22553 conjugal
22554 conjurer
22555 connecte
22556 connexe
22561 connu
22562 conquit
22563 contact
22564 conte
22565 contenir
22566 content
22611 contente
22612 contenu
22613 conter
22614 conteur
22615 contexte
22616 contient
22621 contigu
22622 continu
22623 contour
22624 contrat
22625 contre
22626 contrer
22631 convenir
22632 converge
22633 converti
22634 convexe
22635 convient
22636 convier
22641 convive
22642 convoi
22643 convoya
22644 cool
22645 copain
22646 copeau
22651 copeaux
22652 copiage
22653 copie
22654 copieur
22655 copieux
22656 copilote
22661 copinage
22662 copine
22663 coque
22664 coquelet
22665 coquet
22666 coquette
23111 coquille
23112 coquin
23113 coquine
23114 corail
23115 coran
23116 coraux
23121 corbeau
23122 corbeaux
23123 cordage
23124 corde
23125 cordial
23126 cordiale
23131 cordiaux
23132 cordon
23133 coriace
23134 cormoran
23135 cornac
23136 cornet
23141 corniche
23142 cornu
23143 cornue
23144 corporel
23145 correct
23146 corridor
23151 corrige
23152 corrode
23153 corrompt
23154 corrompu
23155 cortex
23156 cortical
23161 corvette
23162 cotation
23163 cote
23164 coteau
23165 coteaux
23166 coterie
23211 cotillon
23212 coton
23213 cotte
23214 couchage
23215 couchant
23216 couche
23221 coucou
23222 coud
23223 coude
23224 coudre
23225 couenne
23226 couette
23231 coula
23232 couler
23233 couleur
23234 couloir
23235 coup
23236 coupable
23241 coupant
23242 coupante
23243 coupe
23244 coupelle
23245 couper
23246 couperet
23251 couplage
23252 couple
23253 couplet
23254 coupole
23255 coupon
23256 coupure
23261 cour
23262 courage
23263 courant
23264 courante
23265 courbe
23266 courber
23311 courbure
23312 coureur
23313 courge
23314 courir
23315 couronna
23316 courrier
23321 courroie
23322 courroux
23323 court
23324 courtage
23325 courte
23326 courtier
23331 couru
23332 courue
23333 couteau
23334 couteaux
23335 coutume
23336 couture
23341 couve
23342 couvent
23343 couvert
23344 couverte
23345 couvrant
23346 couvre
23351 couvreur
23352 coyote
23353 crabe
23354 crachin
23355 craie
23356 crainte
23361 craintif
23362 crame
23363 cramer
23364 crampe
23365 crampon
23366 cran
23411 crane
23412 craner
23413 cranter
23414 crapaud
23415 crapule
23416 craquant
23421 craque
23422 cravache
23423 cravate
23424 crayon
23425 credo
23426 creux
23431 creva
23432 crever
23433 crevette
23434 criant
23435 criante
23436 cribla
23441 criblage
23442 cribler
23443 crie
23444 crier
23445 crieur
23446 crime
23451 criminel
23452 crin
23453 crique
23454 critique
23455 croate
23456 croc
23461 croche
23462 crochet
23463 crochu
23464 croire
23465 croix
23466 croquant
23511 croque
23512 croquer
23513 crotale
23514 crottin
23515 croulant
23516 croupe
23521 croyant
23522 croyante
23523 cruche
23524 cruchon
23525 crucial
23526 cruciale
23531 cruciaux
23532 crucifix
23533 crue
23534 cruel
23535 cruelle
23536 crypta
23541 crypte
23542 crypter
23543 cubage
23544 cubain
23545 cubaine
23546 cube
23551 cubique
23552 cueille
23553 cueillir
23554 cuir
23555 cuire
23556 cuit
23561 cuite
23562 cuivre
23563 culminer
23564 culot
23565 culte
23566 cultive
23611 culture
23612 culturel
23613 cumin
23614 cumul
23615 cumulant
23616 cupide
23621 curage
23622 curare
23623 curatif
23624 curcuma
23625 cure
23626 curry
23631 cuve
23632 cuver
23633 cuvette
23634 cyan
23635 cyanure
23636 cyclable
23641 cycle
23642 cyclique
23643 cyclone
23644 cyclope
23645 cygne
23646 cylindre
23651 cymbale
23652 dactylo
23653 dada
23654 dague
23655 daim
23656 dalle
23661 dame
23662 damier
23663 danger
23664 dard
23665 data
23666 date
24111 datte
24112 dattier
24113 daube
24114 dauphin
24115 dauphine
24116 daurade
24121 debout
24122 delta
24123 demain
24124 demanda
24125 demande
24126 demander
24131 demeure
24132 demi
24133 demie
24134 denier
24135 dent
24136 dentaire
24141 dentelle
24142 dentier
24143 derme
24144 dermique
24145 dernier
24146 dette
24151 deuil
24152 deux
24153 devancer
24154 devant
24155 devenir
24156 devenu
24161 devenue
24162 devient
24163 devin
24164 deviner
24165 devoir
24166 dextre
24211 diable
24212 diabolo
24213 diacre
24214 diagonal
24215 dialogue
24216 diamant
24221 diantre
24222 diapo
24223 dicta
24224 dicter
24225 diction
24226 dicton
24231 dieu
24232 dieux
24233 difforme
24234 digit
24235 digital
24236 digne
24241 digue
24242 dilapida
24243 dilemme
24244 dilua
24245 diluant
24246 diluante
24251 dilution
24252 dimanche
24253 diminua
24254 diminuer
24255 dinar
24256 dinde
24261 dindon
24262 dingo
24263 dingue
24264 diode
24265 diorama
24266 dioxyde
24311 dira
24312 dire
24313 direct
24314 dirige
24315 diurne
24316 diva
24321 divaguer
24322 divan
24323 diverge
24324 diverti
24325 divertir
24326 divin
24331 divine
24332 divorce
24333 divorcer
24334 divulgua
24335 dizaine
24336 djinn
24341 doberman
24342 docile
24343 docteur
24344 doctorat
24345 doctrine
24346 document
24351 dodo
24352 dodu
24353 dogme
24354 doigt
24355 doit
24356 dolmen
24361 dolomite
24362 domaine
24363 domicile
24364 domina
24365 dominant
24366 domine
24411 domino
24412 dommage
24413 dompta
24414 domptage
24415 dompteur
24416 donateur
24421 donation
24422 donc
24423 donjon
24424 donna
24425 donner
24426 donneur
24431 dont
24432 dopage
24433 dopamine
24434 dopant
24435 dopante
24436 dope
24441 dorade
24442 dorer
24443 dorlote
24444 dorloter
24445 dormant
24446 dorme
24451 dormeur
24452 dormir
24453 dort
24454 dortoir
24455 dorure
24456 dotation
24461 dote
24462 douane
24463 douanier
24464 doublage
24465 double
24466 doubler
24511 doubleur
24512 doublon
24513 doublure
24514 douce
24515 douceur
24516 doucha
24521 douche
24522 doucheur
24523 douille
24524 douillet
24525 douleur
24526 douta
24531 doute
24532 douter
24533 douteux
24534 douve
24535 doux
24536 douzaine
24541 douze
24542 doyen
24543 doyenne
24544 dragon
24545 dragonne
24546 dragua
24551 draguer
24552 dragueur
24553 drain
24554 drainage
24555 drainer
24556 drame
24561 drap
24562 drapa
24563 drapeau
24564 drapeaux
24565 draper
24566 draperie
24611 drapier
24612 dribbla
24613 dribbler
24614 dring
24615 drogue
24616 droit
24621 droite
24622 droitier
24623 droiture
24624 druide
24625 dryade
24626 dual
24631 ducal
24632 ducale
24633 ducat
24634 ductile
24635 duel
24636 dune
24641 duper
24642 duplex
24643 duquel
24644 dura
24645 durable
24646 durai
24651 durant
24652 durcie
24653 durcir
24654 dure
24655 durement
24656 durer
24661 duvet
24662 duveteux
24663 dynamite
24664 dynamo
24665 eaux
24666 efface
25111 effacer
25112 effarant
25113 effectif
25114 effectua
25115 effectue
25116 effet
25121 efficace
25122 effigie
25123 effluve
25124 effondra
25125 efforcer
25126 effort
25131 effraie
25132 effraya
25133 effrayer
25134 effrita
25135 effroi
25136 elfe
25141 elle
25142 emballa
25143 embargo
25144 embarqua
25145 embaucha
25146 embauma
25151 embaumer
25152 embelli
25153 embellie
25154 embellir
25155 embobina
25156 embolie
25161 embout
25162 embouti
25163 emboutir
25164 embraya
25165 embrayer
25166 embrocha
25211 embruma
25212 embryon
25213 embuer
25214 emmena
25215 emmener
25216 emmental
25221 empathie
25222 empereur
25223 empilage
25224 empiler
25225 empire
25226 emplette
25231 emplir
25232 emploi
25233 employa
25234 emplumer
25235 empocha
25236 empocher
25241 emport
25242 empota
25243 empoter
25244 emprunt
25245 encadrer
25246 enceinte
25251 encercla
25252 enchanta
25253 enchante
25254 enclave
25255 enclin
25256 enclot
25261 enclume
25262 encoche
25263 encocher
25264 encodage
25265 encoder
25266 encodeur
25311 encolure
25312 encombra
25313 encorder
25314 encore
25315 encourir
25316 encrage
25321 encre
25322 encrier
25323 endiguer
25324 endive
25325 endolori
25326 endormi
25331 endormie
25332 endormir
25333 endort
25334 endroit
25335 enduira
25336 enduire
25341 enduit
25342 enduite
25343 endura
25344 endurant
25345 endurci
25346 endurcie
25351 endurcir
25352 endurer
25353 enfance
25354 enfant
25355 enfanta
25356 enfante
25361 enfanter
25362 enfantin
25363 enfer
25364 enferma
25365 enfermer
25366 enfin
25411 enfla
25412 enflamma
25413 enflant
25414 enfle
25415 enfler
25416 enfoncer
25421 enfoui
25422 enfreint
25423 enfui
25424 enfuie
25425 enfuir
25426 enfumage
25431 enfumer
25432 engage
25433 engagea
25434 engager
25435 engeance
25436 engelure
25441 engendra
25442 engin
25443 engloba
25444 englober
25445 englouti
25446 engoncer
25451 engrange
25452 enivra
25453 enivrant
25454 enjamba
25455 enjamber
25456 enjeu
25461 enjeux
25462 enjouer
25463 enlace
25464 enlacer
25465 enlaidir
25466 enlever
25511 enlumina
25512 enneiger
25513 ennemi
25514 ennemie
25515 ennui
25516 ennuya
25521 ennuyant
25522 ennuyer
25523 ennuyeux
25524 enracina
25525 enrage
25526 enragea
25531 enrager
25532 enrhumer
25533 enrichi
25534 enrichie
25535 enrichir
25536 enroba
25541 enrobage
25542 enrobant
25543 enrobe
25544 enrober
25545 enrouer
25546 enrouler
25551 entacher
25552 entaille
25553 entame
25554 entamer
25555 entend
25556 entende
25561 entendra
25562 entendu
25563 entente
25564 enterra
25565 enterrer
25566 entonner
25611 entourer
25612 entracte
25613 entraide
25614 entrain
25615 entrant
25616 entrante
25621 entrava
25622 entrave
25623 entraver
25624 entre
25625 entremet
25626 entrer
25631 entrera
25632 entrevue
25633 entrez
25634 entropie
25635 entuber
25636 envahi
25641 envahie
25642 envahir
25643 envia
25644 enviable
25645 envie
25646 envier
25651 envieux
25652 environ
25653 envoi
25654 envoie
25655 envol
25656 envoler
25661 envoyeur
25662 enzyme
25663 ergot
25664 ermitage
25665 ermite
25666 erra
26111 errance
26112 errant
26113 errer
26114 erreur
26115 euphorie
26116 euro
26121 exact
26122 exaltant
26123 exalter
26124 examen
26125 examina
26126 examine
26131 examiner
26132 exaucer
26133 excita
26134 excite
26135 exciter
26136 exclamer
26141 exclu
26142 exclure
26143 exemple
26144 exempt
26145 exempter
26146 exerce
26151 exercer
26152 exercice
26153 exhiber
26154 exhorter
26155 exige
26156 exigence
26161 exiger
26162 exigu
26163 exil
26164 exila
26165 exiler
26166 exode
26211 exotique
26212 expatria
26213 expert
26214 experte
26215 expia
26216 expira
26221 expirer
26222 expliqua
26223 explique
26224 exploit
26225 exploita
26226 exploite
26231 explora
26232 explore
26233 explorer
26234 exporta
26235 exporte
26236 exporter
26241 exprime
26242 exprimer
26243 expurger
26244 externe
26245 extirper
26246 extorqua
26251 extra
26252 extrader
26253 extraire
26254 extrait
26255 extruder
26256 exulter
26261 fable
26262 fabriqua
26263 fabrique
26264 fabuler
26265 face
26266 facette
26311 facilita
26312 facilite
26313 facteur
26314 factice
26315 faction
26316 factuel
26321 factura
26322 facture
26323 facturer
26324 fade
26325 fagot
26326 faible
26331 faibli
26332 faiblir
26333 faignant
26334 faille
26335 faillir
26336 faillite
26341 faim
26342 faire
26343 fait
26344 faite
26345 faitout
26346 fakir
26351 fameux
26352 familial
26353 familier
26354 famille
26355 famine
26356 faner
26361 fanfare
26362 fanfaron
26363 fanion
26364 faon
26365 farce
26366 farceur
26411 farci
26412 farcir
26413 farde
26414 fardeau
26415 fardeaux
26416 farfadet
26421 farfelu
26422 farine
26423 farouche
26424 fart
26425 fartage
26426 farter
26431 fatal
26432 fatale
26433 fatigue
26434 fatiguer
26435 faubourg
26436 faucha
26441 fauchage
26442 faucher
26443 faucheur
26444 faucille
26445 faucon
26446 faufiler
26451 faune
26452 fauta
26453 faute
26454 fauter
26455 fauteuil
26456 fautif
26461 fautive
26462 fauve
26463 fauvette
26464 faux
26465 faveur
26466 favori
26511 faxa
26512 faxer
26513 feignant
26514 feindre
26515 feinte
26516 femme
26521 fend
26522 fendeur
26523 fendoir
26524 fendre
26525 fendu
26526 fendue
26531 fennec
26532 fenouil
26533 fente
26534 fera
26535 ferma
26536 ferme
26541 ferment
26542 fermer
26543 fermier
26544 fermoir
26545 ferry
26546 fertile
26551 fervent
26552 fervente
26553 ferveur
26554 feuille
26555 feuillu
26556 feuillue
26561 feuler
26562 feutre
26563 feutrine
26564 feux
26565 fiable
26566 fiacre
26611 fiance
26612 fiancer
26613 fibre
26614 fibreux
26615 ficelage
26616 ficeler
26621 ficelle
26622 ficha
26623 fichage
26624 fiche
26625 ficher
26626 fichtre
26631 fichu
26632 fichue
26633 fictif
26634 fiction
26635 fictive
26636 fief
26641 fier
26642 figaro
26643 fige
26644 figea
26645 figer
26646 fignoler
26651 figue
26652 figuier
26653 figurant
26654 figure
26655 figurine
26656 fila
26661 filaire
26662 filament
26663 filant
26664 filante
26665 filature
26666 file
31111 filer
31112 filet
31113 filetage
31114 fileter
31115 fileur
31116 filial
31121 filin
31122 fille
31123 fillette
31124 filleul
31125 film
31126 filma
31131 filmer
31132 filon
31133 filou
31134 filtra
31135 filtrage
31136 filtrant
31141 filtre
31142 filtrer
31143 final
31144 finale
31145 finance
31146 financer
31151 fine
31152 finement
31153 fini
31154 finie
31155 finir
31156 finition
31161 fiole
31162 firme
31163 fixa
31164 fixant
31165 fixante
31166 fixateur
31211 fixation
31212 fixe
31213 fixement
31214 fixer
31215 flacon
31216 flagrant
31221 flaira
31222 flaire
31223 flairer
31224 flamand
31225 flamande
31226 flamba
31231 flambeau
31232 flamber
31233 flambeur
31234 flamenco
31235 flamme
31236 flan
31241 flanc
31242 flancha
31243 flancher
31244 flanquer
31245 flaque
31246 flatta
31251 flatter
31252 flatteur
31253 flegme
31254 flemme
31255 fleur
31256 fleuri
31261 fleurir
31262 fleuron
31263 fleuve
31264 flexible
31265 flexion
31266 flingue
31311 flinguer
31312 flippa
31313 flipper
31314 flirt
31315 flirta
31316 flirter
31321 flocage
31322 flocon
31323 floral
31324 florale
31325 floraux
31326 flore
31331 flot
31332 flotta
31333 flottant
31334 flotte
31335 flotter
31336 flotteur
31341 flou
31342 floua
31343 flouer
31344 fluage
31345 fluctue
31346 fluctuer
31351 fluide
31352 fluor
31353 fluorure
31354 fluvial
31355 fluviale
31356 flux
31361 focal
31362 focaux
31363 foetal
31364 foie
31365 foin
31366 foire
31411 folie
31412 folklore
31413 folle
31414 fonce
31415 foncer
31416 fonceur
31421 foncier
31422 fonction
31423 fond
31424 fonda
31425 fondant
31426 fondante
31431 fonde
31432 fonder
31433 fondre
31434 fondu
31435 fongique
31436 font
31441 fontaine
31442 fonte
31443 fora
31444 forage
31445 forain
31446 foraine
31451 forant
31452 forban
31453 force
31454 forcer
31455 forcir
31456 fore
31461 forer
31462 foret
31463 foreur
31464 forfait
31465 forge
31466 forgea
31511 forger
31512 forgeron
31513 forma
31514 format
31515 forme
31516 formel
31521 former
31522 formol
31523 formula
31524 formule
31525 fort
31526 forte
31531 fortifia
31532 fortifie
31533 fortin
31534 fortune
31535 forum
31536 foudre
31541 fouet
31542 fouetta
31543 fouette
31544 fouetter
31545 foufou
31546 fougue
31551 fougueux
31552 foui
31553 fouiller
31554 fouina
31555 fouine
31556 fouiner
31561 fouineur
31562 foula
31563 foule
31564 fouler
31565 four
31566 fourbe
31611 fourche
31612 fourchu
31613 fourgon
31614 fourmi
31615 fourneau
31616 fourni
31621 fournie
31622 fournir
31623 fourra
31624 fourrage
31625 fourreau
31626 fourrure
31631 foutu
31632 foutue
31633 foyer
31634 fraction
31635 fractura
31636 fracture
31641 fragile
31642 fragment
31643 franc
31644 franche
31645 franchi
31646 franchir
31651 frange
31652 frangin
31653 frangine
31654 frappe
31655 frapper
31656 fratrie
31661 frauda
31662 fraude
31663 frauder
31664 fraudeur
31665 fredonna
31666 fredonne
32111 frein
32112 freina
32113 freinage
32114 freiner
32115 frelater
32116 frelon
32121 fret
32122 freudien
32123 friable
32124 friand
32125 friande
32126 fric
32131 friche
32132 friction
32133 frileux
32134 frima
32135 frime
32136 frimer
32141 frimeur
32142 fringale
32143 fringue
32144 fripe
32145 friperie
32146 fripon
32151 frire
32152 frite
32153 friterie
32154 friture
32155 frivole
32156 froid
32161 froide
32162 fromage
32163 fromager
32164 froment
32165 froncer
32166 fronde
32211 frondeur
32212 front
32213 frontal
32214 frontale
32215 frotta
32216 frotte
32221 frotter
32222 frugal
32223 frugale
32224 frugaux
32225 fruit
32226 fruitier
32231 fugace
32232 fugitif
32233 fugitive
32234 fugue
32235 fuguer
32236 fugueur
32241 fuie
32242 fuir
32243 fuite
32244 fulminer
32245 fuma
32246 fumant
32251 fume
32252 fumer
32253 fumet
32254 fumeur
32255 fumier
32256 furet
32261 fureur
32262 furibond
32263 furie
32264 furieux
32265 furtif
32266 furtive
32311 futile
32312 futur
32313 fuyant
32314 fuyard
32315 gabarit
32316 gadget
32321 gadoue
32322 gaffe
32323 gaffeur
32324 gage
32325 gagna
32326 gagnant
32331 gagnante
32332 gagne
32333 gagner
32334 gagneur
32335 gaie
32336 gaiement
32341 gaillard
32342 gain
32343 gainage
32344 gaine
32345 gainer
32346 galant
32351 galante
32352 galaxie
32353 galbe
32354 galerie
32355 galet
32356 galette
32361 galion
32362 galop
32363 galoper
32364 galopin
32365 gambada
32366 gambader
32411 gamberge
32412 gambit
32413 gamelle
32414 gamin
32415 gamine
32416 gamme
32421 ganache
32422 ganglion
32423 gant
32424 gantelet
32425 garage
32426 garant
32431 garante
32432 garantie
32433 garantir
32434 garda
32435 garde
32436 garder
32441 garderie
32442 gardien
32443 gardon
32444 gare
32445 garenne
32446 garer
32451 garni
32452 garnie
32453 garnir
32454 garou
32455 garrigue
32456 garrot
32461 gauche
32462 gaucher
32463 gaufre
32464 gaufrier
32465 gaule
32466 gaver
32511 gazelle
32512 gazette
32513 gazeux
32514 gazier
32515 gazoduc
32516 gazole
32521 gazoline
32522 gazon
32523 gecko
32524 gela
32525 gelant
32526 geler
32531 gemme
32532 gencive
32533 gendarme
32534 gendre
32535 genet
32536 genou
32541 genoux
32542 genre
32543 gent
32544 gentil
32545 gentille
32546 gerbe
32551 gercer
32552 germain
32553 germaine
32554 germe
32555 germer
32556 germinal
32561 gibier
32562 gicla
32563 gicler
32564 gicleur
32565 gifle
32566 gifler
32611 gigot
32612 gigoter
32613 gilet
32614 girafe
32615 girafon
32616 gitan
32621 gitane
32622 givrant
32623 givre
32624 givrer
32625 glace
32626 glacer
32631 glacial
32632 glaciale
32633 glaciaux
32634 glacier
32635 glaive
32636 glande
32641 glaner
32642 glauque
32643 global
32644 globaux
32645 globe
32646 globule
32651 gloire
32652 glorieux
32653 glotte
32654 glouton
32655 gluant
32656 gluante
32661 glucide
32662 gluten
32663 glyphe
32664 gnome
32665 gnou
32666 gobe
33111 gobelet
33112 gobelin
33113 gober
33114 goinfre
33115 golf
33116 golfeur
33121 gomme
33122 gommer
33123 gond
33124 gondole
33125 gonfla
33126 gonfler
33131 gonfleur
33132 gong
33133 goret
33134 gorge
33135 gorgone
33136 gorille
33141 gothique
33142 gouache
33143 goudron
33144 gouffre
33145 goujon
33146 goule
33151 goulot
33152 gourde
33153 gourdin
33154 gourmand
33155 gourmet
33156 gourou
33161 goutte
33162 gouverne
33163 goyave
33164 grabuge
33165 gracier
33166 gracieux
33211 grade
33212 grader
33213 gradient
33214 gradin
33215 graduer
33216 graffiti
33221 grain
33222 graine
33223 gramme
33224 grand
33225 grande
33226 grandeur
33231 grandi
33232 grandie
33233 grandir
33234 grange
33235 granite
33236 granule
33241 graphe
33242 graphite
33243 grappe
33244 grappin
33245 gratin
33246 gratiner
33251 gratta
33252 gratter
33253 grattoir
33254 gratuit
33255 gratuite
33256 grava
33261 grave
33262 graver
33263 graveur
33264 gravier
33265 gravir
33266 graviter
33311 gravure
33312 grec
33313 gredin
33314 greffe
33315 greffer
33316 greffier
33321 grelot
33322 grena
33323 grenade
33324 grenier
33325 grief
33326 griffa
33331 griffe
33332 griffer
33333 griffon
33334 griffu
33335 griffure
33336 grignote
33341 grigri
33342 grilla
33343 grillade
33344 grille
33345 griller
33346 grillon
33351 grima
33352 grimace
33353 grimacer
33354 grimoire
33355 grimpa
33356 grimpant
33361 grimpe
33362 grimper
33363 grimpeur
33364 grince
33365 grincer
33366 griotte
33411 grippant
33412 grippe
33413 grive
33414 grogna
33415 grogne
33416 grogner
33421 grognon
33422 groin
33423 gronda
33424 gronde
33425 gronder
33426 grotte
33431 grouille
33432 groupa
33433 groupe
33434 grouper
33435 grue
33436 grumeaux
33441 guano
33442 guenille
33443 guenon
33444 guerre
33445 guerrier
33446 guet
33451 guetta
33452 guetter
33453 guetteur
33454 gueule
33455 gueuler
33456 gueux
33461 guichet
33462 guida
33463 guidage
33464 guide
33465 guider
33466 guidon
33511 guignol
33512 guilde
33513 guimauve
33514 guitare
33515 guitoune
33516 guppy
33521 guru
33522 guttural
33523 habile
33524 habiller
33525 habit
33526 habitant
33531 habitat
33532 habite
33533 habiter
33534 habitude
33535 habituel
33536 habituer
33541 hachage
33542 hache
33543 hacher
33544 hachette
33545 hachoir
33546 hachure
33551 hachurer
33552 hagard
33553 haie
33554 haillon
33555 haine
33556 haineux
33561 halage
33562 haleine
33563 haleter
33564 hall
33565 halle
33566 halo
33611 halte
33612 hamac
33613 hameau
33614 hammam
33615 hampe
33616 hanche
33621 handball
33622 handicap
33623 hangar
33624 hanneton
33625 hante
33626 hanter
33631 happer
33632 harcela
33633 harceler
33634 hardi
33635 harem
33636 hareng
33641 hargne
33642 hargneux
33643 haricot
33644 harmonie
33645 harpe
33646 harpie
33651 harpon
33652 harponna
33653 hauban
33654 haubert
33655 haut
33656 hautain
33661 hautaine
33662 haute
33663 hauteur
33664 havane
33665 havre
33666 heaume
34111 hectare
34112 hecto
34113 hein
34114 hennir
34115 herbage
34116 herbe
34121 herbeux
34122 herbier
34123 hermine
34124 hernie
34125 hertz
34126 heure
34131 heureux
34132 heurtant
34133 heurter
34134 hexagone
34135 hiberna
34136 hiberner
34141 hibou
34142 hiboux
34143 hideux
34144 hier
34145 hilarant
34146 hilare
34151 hindou
34152 hippie
34153 hippique
34154 hiver
34155 hiverna
34156 hivernal
34161 hiverner
34162 hobby
34163 hocha
34164 hochant
34165 hocher
34166 hochet
34211 hockey
34212 homard
34213 hommage
34214 homme
34215 homo
34216 homonyme
34221 honneur
34222 honni
34223 honorer
34224 honte
34225 honteux
34226 hoplite
34231 hoquet
34232 hoqueta
34233 hoqueter
34234 horaire
34235 horde
34236 horizon
34241 horloge
34242 horloger
34243 hormonal
34244 hormone
34245 horreur
34246 horrible
34251 hotte
34252 houblon
34253 houille
34254 houle
34255 houleux
34256 hourra
34261 houx
34262 hublot
34263 huer
34264 huguenot
34265 huila
34266 huilage
34311 huile
34312 huiler
34313 huileux
34314 huit
34315 huitaine
34316 hululer
34321 humain
34322 humaine
34323 humble
34324 humecter
34325 humer
34326 humeur
34331 humide
34332 humilier
34333 humour
34334 hurla
34335 hurlant
34336 hurlante
34341 hurle
34342 hurler
34343 hurleur
34344 hutte
34345 hybride
34346 hydrate
34351 hydrater
34352 hydre
34353 hydrique
34354 hydromel
34355 hymne
34356 icarien
34361 iceberg
34362 icone
34363 idem
34364 idiome
34365 idiotie
34366 idole
34411 idylle
34412 igloo
34413 ignare
34414 ignifuge
34415 ignition
34416 ignoble
34421 ignora
34422 ignorant
34423 ignore
34424 ignorer
34425 iguane
34426 iliaque
34431 illicite
34432 illico
34433 illumina
34434 illumine
34435 image
34436 imagerie
34441 imagier
34442 imagina
34443 imagine
34444 imaginer
34445 imam
34446 imberbe
34451 imbiba
34452 imbiber
34453 imbriqua
34454 imbu
34455 imbue
34456 imita
34461 imitable
34462 imite
34463 imiter
34464 immature
34465 immerge
34466 immerger
34511 immeuble
34512 immigra
34513 immigre
34514 immigrer
34515 imminent
34516 immobile
34521 immole
34522 immoler
34523 immonde
34524 immoral
34525 immorale
34526 immoraux
34531 immortel
34532 immuable
34533 immune
34534 impact
34535 impacta
34536 impacte
34541 impacter
34542 impair
34543 impaire
34544 impala
34545 imparti
34546 impie
34551 implant
34552 implanta
34553 impliqua
34554 implora
34555 implore
34556 implorer
34561 impoli
34562 impolie
34563 importa
34564 importe
34565 importer
34566 impotent
34611 imprima
34612 imprime
34613 imprimer
34614 impropre
34615 impudent
34616 impur
34621 inactif
34622 inaction
34623 inactive
34624 inamical
34625 inapte
34626 inaugura
34631 inca
34632 incarna
34633 incarne
34634 incarner
34635 incendia
34636 incendie
34641 incident
34642 incita
34643 incitant
34644 inciter
34645 inclina
34646 incline
34651 incliner
34652 inclue
34653 inclure
34654 incolore
34655 incomber
34656 incongru
34661 inconnu
34662 inconnue
34663 incuber
34664 inculper
34665 inculqua
34666 inculte
35111 incurver
35112 inde
35113 indemne
35114 index
35115 indexa
35116 indexage
35121 indexer
35122 indice
35123 indiciel
35124 indien
35125 indienne
35126 indigent
35131 indigne
35132 indigner
35133 indigo
35134 indiqua
35135 indique
35136 indiquer
35141 indirect
35142 individu
35143 indolent
35144 indolore
35145 indu
35146 induire
35151 inepte
35152 ineptie
35153 inerte
35154 inertie
35155 inertiel
35156 inexact
35161 inexacte
35162 infamant
35163 infamie
35164 infect
35165 infecta
35166 infecte
35211 infecter
35212 infernal
35213 infiltra
35214 infiltre
35215 infime
35216 infini
35221 infinie
35222 infirme
35223 inflige
35224 infliger
35225 influant
35226 informa
35231 informe
35232 informel
35233 informer
35234 infra
35235 ingrat
35236 ingrate
35241 inhala
35242 inhale
35243 inhaler
35244 inhiba
35245 inhiber
35246 inhuma
35251 inhumain
35252 inhumer
35253 initia
35254 initial
35255 initiale
35256 initiaux
35261 initier
35262 injecta
35263 injecter
35264 injure
35265 innocent
35266 innova
35311 innovant
35312 innover
35313 inocula
35314 inoculer
35315 inodore
35316 inonda
35321 inonder
35322 inox
35323 inquiet
35324 intact
35325 intacte
35326 intenta
35331 intenter
35332 inter
35333 interdit
35334 internat
35335 interne
35336 interner
35341 internet
35342 Internet
35343 intima
35344 intime
35345 intitula
35346 intrigue
35351 intuba
35352 intuber
35353 intuitif
35354 inutile
35355 invaincu
35356 invendu
35361 invendue
35362 inventa
35363 invente
35364 inventer
35365 inventez
35366 inventif
35411 invita
35412 invite
35413 inviter
35414 invoqua
35415 invoque
35416 invoquer
35421 iode
35422 iodure
35423 iota
35424 irakien
35425 iranien
35426 iraqien
35431 iridium
35432 ironie
35433 irradie
35434 irradier
35435 irrigua
35436 irriguer
35441 irrita
35442 irritant
35443 irriter
35444 italien
35445 italique
35446 item
35451 ivoire
35452 ivre
35453 ivrogne
35454 jacquard
35455 jacquier
35456 jacquot
35461 jade
35462 jaguar
35463 jailli
35464 jaillir
35465 jalon
35466 jalonna
35511 jalonne
35512 jalonner
35513 jaloux
35514 jambage
35515 jambe
35516 jambette
35521 jambier
35522 jambon
35523 jante
35524 janvier
35525 japon
35526 jappe
35531 japper
35532 jaquette
35533 jaquier
35534 jardin
35535 jardina
35536 jardine
35541 jardiner
35542 jardinet
35543 jargon
35544 jarre
35545 jarret
35546 jatte
35551 jauge
35552 jaugea
35553 jauger
35554 jaune
35555 jauni
35556 jaunie
35561 jaunir
35562 java
35563 javel
35564 javeline
35565 javelot
35566 jazz
35611 jazzman
35612 jazzmen
35613 jean
35614 jeep
35615 jeta
35616 jetable
35621 jeter
35622 jeteur
35623 jeton
35624 jette
35625 jeudi
35626 jeun
35631 jeune
35632 jeunette
35633 jeunot
35634 jeux
35635 jockey
35636 jogging
35641 joie
35642 joigne
35643 joindre
35644 joint
35645 jointe
35646 jointure
35651 joker
35652 joli
35653 jolie
35654 joliment
35655 jonc
35656 jonche
35661 joncher
35662 jonction
35663 jongla
35664 jongle
35665 jongler
35666 jongleur
36111 jonque
36112 joua
36113 jouable
36114 jouant
36115 joue
36116 jouer
36121 jouet
36122 joueur
36123 joufflu
36124 joufflue
36125 joug
36126 joui
36131 jouir
36132 jouira
36133 joujou
36134 joujoux
36135 joule
36136 jour
36141 journal
36142 journaux
36143 joute
36144 jouteur
36145 jouvence
36146 jouxte
36151 jouxter
36152 jovial
36153 joviale
36154 joyau
36155 joyaux
36156 joyeux
36161 jubilant
36162 jubile
36163 jubiler
36164 jucher
36165 juchoir
36166 judo
36211 judoka
36212 juge
36213 jugea
36214 jugeable
36215 jugeant
36216 jugement
36221 jugeote
36222 juger
36223 jugera
36224 juif
36225 juillet
36226 juin
36231 juive
36232 jujube
36233 jujubier
36234 julien
36235 julienne
36236 jumbo
36241 jumeau
36242 jumeaux
36243 jumelage
36244 jumeler
36245 jumelez
36246 jumelle
36251 jument
36252 junior
36253 junte
36254 jupe
36255 jupette
36256 jupon
36261 jura
36262 jure
36263 jurer
36264 juron
36265 jury
36266 jute
36311 juteux
36312 kabbale
36313 kaki
36314 kali
36315 kamikaze
36316 kanake
36321 kantien
36322 karma
36323 kart
36324 karting
36325 kayac
36326 kayak
36331 keffieh
36332 kelvin
36333 kendo
36334 ketchup
36335 khalifat
36336 khalife
36341 khan
36342 khmer
36343 kilo
36344 kilovolt
36345 kilowatt
36346 kilt
36351 kimono
36352 kiwi
36353 klaxon
36354 kleenex
36355 koala
36356 kobold
36361 kouglof
36362 kraft
36363 kraken
36364 krypton
36365 kumquat
36366 kurde
36411 labdanum
36412 label
36413 labeur
36414 labial
36415 labour
36416 laboura
36421 laboure
36422 labourer
36423 labrador
36424 lace
36425 lacement
36426 lacer
36431 lacet
36432 laceur
36433 lacrymal
36434 lactique
36435 lacune
36436 ladite
36441 lagon
36442 lagune
36443 laid
36444 laide
36445 laideron
36446 laideur
36451 laine
36452 laineux
36453 lait
36454 laitage
36455 laiterie
36456 laiteux
36461 laitier
36462 laiton
36463 laitue
36464 lama
36465 lamantin
36466 lambda
36511 lambeau
36512 lambeaux
36513 lambiner
36514 lame
36515 lamelle
36516 lamenter
36521 laminage
36522 laminoir
36523 lampa
36524 lampant
36525 lamparo
36526 lampe
36531 lamper
36532 lampion
36533 lance
36534 lancer
36535 lancette
36536 lanceur
36541 lancier
36542 landau
36543 lande
36544 langage
36545 lange
36546 langue
36551 langueur
36552 languir
36553 lanterne
36554 laotien
36555 lapa
36556 lape
36561 laper
36562 lapereau
36563 lapider
36564 lapin
36565 lapine
36566 lapone
36611 laque
36612 laquelle
36613 larbin
36614 larcin
36615 lard
36616 larda
36621 larder
36622 lardon
36623 largage
36624 large
36625 largeur
36626 largue
36631 larguer
36632 larme
36633 larron
36634 larvaire
36635 larve
36636 larynx
36641 latence
36642 latent
36643 latente
36644 latex
36645 latin
36646 latine
36651 latitude
36652 latte
36653 latter
36654 laudanum
36655 laurier
36656 lava
36661 lavable
36662 lavabo
36663 lavage
36664 lavande
36665 lavandin
36666 lavant
41111 lave
41112 lavement
41113 laver
41114 laverie
41115 lavette
41116 laveur
41121 lavoir
41122 laxatif
41123 laxative
41124 lecteur
41125 lectrice
41126 lecture
41131 ledit
41132 lent
41133 lente
41134 lenteur
41135 lentille
41136 lequel
41141 lettrage
41142 lettre
41143 lettrine
41144 leur
41145 leurra
41146 leurre
41151 leurrer
41152 leva
41153 levage
41154 levain
41155 levant
41156 lever
41161 levier
41162 levrette
41163 levure
41164 lexical
41165 lexicale
41166 lexicaux
41211 lexique
41212 liage
41213 liane
41214 liant
41215 liante
41216 libeller
41221 libertin
41222 libido
41223 libraire
41224 libre
41225 libyen
41226 libyenne
41231 lice
41232 licence
41233 licencia
41234 liche
41235 lichen
41236 lichette
41241 licorne
41242 lien
41243 lier
41244 lierre
41245 lieu
41246 lieudit
41251 lieux
41252 ligament
41253 ligature
41254 lignage
41255 ligne
41256 ligotage
41261 ligoter
41262 ligua
41263 ligue
41264 liguer
41265 lima
41266 limace
41311 limage
41312 limaille
41313 lime
41314 limer
41315 limier
41316 limita
41321 limitant
41322 limite
41323 limiter
41324 limiteur
41325 limoger
41326 limon
41331 limonade
41332 limpide
41333 limule
41334 linceul
41335 linge
41336 lingerie
41341 lingot
41342 lingual
41343 linguale
41344 linotte
41345 linteau
41346 linteaux
41351 lion
41352 lionceau
41353 lionne
41354 lipide
41355 liquette
41356 liqueur
41361 liquida
41362 liquide
41363 liquider
41364 lira
41365 lire
41366 litanie
41411 litchi
41412 literie
41413 lithium
41414 litige
41415 litre
41416 litron
41421 littoral
41422 liturgie
41423 livide
41424 livrable
41425 livrant
41426 livre
41431 livrer
41432 livret
41433 livreur
41434 lobe
41435 lober
41436 local
41441 locale
41442 locatif
41443 location
41444 locative
41445 locaux
41446 loge
41451 logement
41452 loger
41453 logeur
41454 loggia
41455 logiciel
41456 logique
41461 logo
41462 loin
41463 lointain
41464 loir
41465 lombaire
41466 lombard
41511 lombric
41512 long
41513 longe
41514 longer
41515 longue
41516 longueur
41521 lopin
41522 loquace
41523 loque
41524 loquet
41525 lord
41526 lorgna
41531 lorgne
41532 lorgner
41533 lorgnon
41534 lorrain
41535 lorraine
41536 loterie
41541 loti
41542 lotion
41543 lotir
41544 loto
41545 lotte
41546 loua
41551 louange
41552 loubar
41553 loubard
41554 loucha
41555 louche
41556 loucher
41561 loue
41562 louer
41563 loueur
41564 loufoque
41565 loulou
41566 loup
41611 loupa
41612 loupe
41613 louper
41614 loupiote
41615 lourd
41616 lourdaud
41621 lourde
41622 lourdeur
41623 loutre
41624 louve
41625 lover
41626 loyal
41631 loyale
41632 loyaux
41633 loyer
41634 lubie
41635 lubrifia
41636 lubrifie
41641 lubrique
41642 lucane
41643 lucarne
41644 lucide
41645 luciole
41646 lucratif
41651 ludique
41652 lueur
41653 luge
41654 lugubre
41655 luire
41656 lumbago
41661 lumen
41662 lumignon
41663 lumineux
41664 lunaire
41665 lundi
41666 lune
42111 lunetier
42112 lunette
42113 lurette
42114 luron
42115 luth
42116 luthier
42121 lutin
42122 lutine
42123 lutta
42124 lutte
42125 lutter
42126 lutteur
42131 luxation
42132 luxe
42133 luxer
42134 luxueux
42135 luxure
42136 luzerne
42141 lycaon
42142 lychee
42143 lycra
42144 lymphe
42145 lynchage
42146 lynx
42151 lyre
42152 lyrique
42153 maboul
42154 macabre
42155 macadam
42156 macaque
42161 macareux
42162 macaron
42163 macaroni
42164 machaon
42165 machette
42166 machin
42211 machina
42212 machinal
42213 machine
42214 macho
42215 maculer
42216 madame
42221 madone
42222 madrague
42223 maffia
42224 mafia
42225 magazine
42226 mage
42231 magenta
42232 magicien
42233 magie
42234 magique
42235 magma
42236 magna
42241 magner
42242 magnolia
42243 magnum
42244 magot
42245 magret
42246 maigre
42251 maigreur
42252 maigri
42253 maigrir
42254 maille
42255 maillet
42256 maillon
42261 maillot
42262 main
42263 mainte
42264 maintenu
42265 maintien
42266 maire
42311 mairie
42312 majeur
42313 majeure
42314 major
42315 majorer
42316 malabar
42321 malade
42322 maladie
42323 maladif
42324 maladive
42325 malaria
42326 malaxa
42331 malaxage
42332 malaxer
42333 maldonne
42334 malfrat
42335 malgache
42336 malheur
42341 malice
42342 malien
42343 malienne
42344 malin
42345 malle
42346 mallette
42351 malmena
42352 malmener
42353 malotru
42354 malpoli
42355 malpolie
42356 malt
42361 malvenu
42362 maman
42363 mambo
42364 mamelle
42365 mamelon
42366 mamie
42411 mammouth
42412 mammy
42413 manager
42414 manant
42415 manche
42416 manchon
42421 manchot
42422 mandarin
42423 mandat
42424 mandater
42425 mandchou
42426 mandrin
42431 manette
42432 mange
42433 mangea
42434 manger
42435 mangeur
42436 mangrove
42441 mangue
42442 manguier
42443 mania
42444 maniable
42445 maniaque
42446 manie
42451 manier
42452 manille
42453 manioc
42454 manipula
42455 manipule
42456 manitou
42461 manne
42462 manoir
42463 manqua
42464 manquant
42465 manque
42466 manquer
42511 mante
42512 manteau
42513 manucure
42514 manuel
42515 manuelle
42516 maori
42521 maorie
42522 maquette
42523 marabout
42524 marathon
42525 maraud
42526 marauda
42531 maraude
42532 marauder
42533 marbra
42534 marbre
42535 marbrer
42536 marbrure
42541 marc
42542 marcha
42543 marchand
42544 marchant
42545 marche
42546 marcher
42551 marcheur
42552 mardi
42553 mare
42554 marelle
42555 marge
42556 margelle
42561 marginal
42562 mari
42563 maria
42564 mariage
42565 marier
42566 marin
42611 marina
42612 marinade
42613 marine
42614 mariner
42615 marinier
42616 marital
42621 maritime
42622 marmite
42623 marmiton
42624 marmonna
42625 marmonne
42626 marmot
42631 marmotte
42632 marocain
42633 maronner
42634 maroufle
42635 marqua
42636 marquage
42641 marquant
42642 marque
42643 marquer
42644 marqueur
42645 marraine
42646 marrant
42651 marrante
42652 marre
42653 marrer
42654 marron
42655 marronna
42656 marronne
42661 marte
42662 marteau
42663 marteaux
42664 martel
42665 martela
42666 marteler
43111 martial
43112 martiale
43113 martiaux
43114 martien
43115 martinet
43116 martyr
43121 marxien
43122 matador
43123 matage
43124 match
43125 matcher
43126 mate
43131 matelot
43132 mater
43133 maternel
43134 materner
43135 math
43136 matheux
43141 matin
43142 matinal
43143 matinale
43144 matinaux
43145 matine
43146 maton
43151 matonne
43152 matou
43153 matraqua
43154 matraque
43155 matrice
43156 matrone
43161 mature
43162 maturer
43163 maudire
43164 maudit
43165 maudite
43166 maure
43211 maurelle
43212 mauve
43213 maux
43214 maxima
43215 maximal
43216 maximale
43221 maximaux
43222 maxime
43223 maximum
43224 maya
43225 mazout
43226 meccano
43231 meilleur
43232 melon
43233 membrane
43234 membre
43235 membrure
43236 mena
43241 menace
43242 menacer
43243 menant
43244 mendia
43245 mendiant
43246 mendie
43251 mendier
43252 mener
43253 meneur
43254 menhir
43255 menotte
43256 ment
43261 mental
43262 mentale
43263 mentant
43264 mentaux
43265 mente
43266 menteur
43311 menthe
43312 menthol
43313 menti
43314 mention
43315 mentir
43316 menton
43321 mentor
43322 menu
43323 menue
43324 menuet
43325 mercerie
43326 merci
43331 mercredi
43332 mercure
43333 merguez
43334 meringue
43335 merlan
43336 merle
43341 merlette
43342 merlin
43343 merlu
43344 mettable
43345 metteur
43346 mettre
43351 meubla
43352 meublant
43353 meuble
43354 meubler
43355 meuglant
43356 meugle
43361 meugler
43362 meula
43363 meulage
43364 meule
43365 meuler
43366 meunier
43411 meurt
43412 meurtre
43413 meurtri
43414 meurtrie
43415 meurtrir
43416 meute
43421 mexicain
43422 mezzo
43423 miaou
43424 miaula
43425 miaulant
43426 miaule
43431 miauler
43432 mica
43433 micelle
43434 miche
43435 micmac
43436 micro
43441 microbe
43442 micron
43443 miction
43444 midi
43445 miel
43446 mielleux
43451 mien
43452 mienne
43453 miette
43454 mieux
43455 mignon
43456 mignonne
43461 migra
43462 migraine
43463 migrant
43464 migre
43465 migrer
43466 mijota
43511 mijote
43512 mijoter
43513 mikado
43514 mildiou
43515 mile
43516 milice
43521 milicien
43522 milieu
43523 milieux
43524 milita
43525 militant
43526 militer
43531 mille
43532 millet
43533 milliard
43534 millibar
43535 millier
43536 million
43541 milord
43542 mima
43543 mimant
43544 mime
43545 mimer
43546 mimi
43551 mimique
43552 mina
43553 minable
43554 minage
43555 minaret
43556 minauder
43561 mince
43562 minceur
43563 minci
43564 mincir
43565 mine
43566 miner
43611 minerve
43612 minet
43613 minette
43614 mineur
43615 mineure
43616 mini
43621 minier
43622 minima
43623 minimal
43624 minimale
43625 minimaux
43626 minime
43631 minimum
43632 minium
43633 minora
43634 minorant
43635 minorer
43636 minot
43641 minou
43642 minuit
43643 minuta
43644 minutage
43645 minute
43646 minuter
43651 minuteur
43652 minutie
43653 mioche
43654 mira
43655 miracle
43656 mirador
43661 mirage
43662 mire
43663 mirmidon
43664 miro
43665 miroir
43666 miroite
44111 miroiter
44112 mitaine
44113 mite
44114 miteux
44115 mitiger
44116 mitigeur
44121 mitonner
44122 mitoyen
44123 mitre
44124 mixa
44125 mixage
44126 mixant
44131 mixe
44132 mixer
44133 mixeur
44134 mixte
44135 mixtion
44136 mixture
44141 mobile
44142 mobilier
44143 moche
44144 modaux
44145 mode
44146 modela
44151 modelage
44152 modelant
44153 modeler
44154 modeleur
44155 modem
44156 moderne
44161 modifia
44162 modifie
44163 modifier
44164 modique
44165 modula
44166 modulant
44211 module
44212 moduler
44213 moelle
44214 moelleux
44215 moellon
44216 mohair
44221 moignon
44222 moindre
44223 moine
44224 moineau
44225 moineaux
44226 moite
44231 moiteur
44232 moka
44233 molaire
44234 molette
44235 mollah
44236 molle
44241 mollet
44242 mollir
44243 moment
44244 momie
44245 momifia
44246 momifie
44251 momifier
44252 monacal
44253 monarque
44254 monceau
44255 monceaux
44256 mondain
44261 mondaine
44262 monde
44263 mondial
44264 mondiale
44265 mondiaux
44266 mongol
44311 mongole
44312 moniteur
44313 monnaie
44314 monnayer
44315 mono
44316 monobloc
44321 monocle
44322 monocyte
44323 monogame
44324 monopole
44325 monoprix
44326 monorail
44331 monotone
44332 mont
44333 monta
44334 montage
44335 montagne
44336 montant
44341 montante
44342 monte
44343 monter
44344 monteur
44345 montoir
44346 montra
44351 montrant
44352 montre
44353 montrer
44354 monture
44355 monument
44356 moqua
44361 moque
44362 moquer
44363 moquerie
44364 moquette
44365 moqueur
44366 moral
44411 morale
44412 moraux
44413 morbide
44414 morbleu
44415 morceau
44416 morceaux
44421 morcela
44422 morceler
44423 mord
44424 mordant
44425 mordante
44426 morde
44431 mordilla
44432 mordille
44433 mordorer
44434 mordre
44435 mordu
44436 mordue
44441 morfal
44442 morfle
44443 morfler
44444 morfond
44445 morgue
44446 moribond
44451 morille
44452 mormone
44453 morne
44454 morphine
44455 morpion
44456 mort
44461 morte
44462 mortel
44463 mortelle
44464 mortier
44465 mortifia
44466 mortifie
44511 morue
44512 morveux
44513 motard
44514 motarde
44515 motel
44516 moteur
44521 motif
44522 motion
44523 motiva
44524 motivant
44525 motive
44526 motiver
44531 motrice
44532 motte
44533 moucha
44534 mouchard
44535 mouche
44536 moucher
44541 mouchoir
44542 moud
44543 moudre
44544 moue
44545 mouette
44546 moufle
44551 mouflet
44552 mouflon
44553 moufter
44554 mouilla
44555 mouille
44556 mouiller
44561 moula
44562 moulage
44563 moulant
44564 moulante
44565 moule
44566 mouler
44611 mouleur
44612 moulin
44613 moulina
44614 mouline
44615 mouliner
44616 moulinet
44621 moult
44622 moulu
44623 moulure
44624 moumoute
44625 mourant
44626 mourante
44631 mourir
44632 mouroir
44633 mouron
44634 moutarde
44635 mouton
44636 moutonne
44641 mouture
44642 mouvance
44643 mouvant
44644 mouvante
44645 mouvoir
44646 moyen
44651 moyenne
44652 moyeu
44653 muer
44654 muet
44655 muette
44656 mufle
44661 mugir
44662 muguet
44663 mule
44664 mulet
44665 muletier
44666 mulot
45111 multiple
45112 muni
45113 munie
45114 munir
45115 munition
45116 muraille
45121 mural
45122 muraux
45123 mure
45124 muret
45125 murmura
45126 murmure
45131 murmurer
45132 mutant
45133 mutante
45134 mutation
45135 mute
45136 muter
45141 mutiler
45142 mutique
45143 mutuel
45144 mutuelle
45145 mygale
45146 myocarde
45151 myope
45152 myopie
45153 myriade
45154 myrmidon
45155 myrte
45156 myrtille
45161 mythe
45162 mythique
45163 nabab
45164 nabot
45165 nacelle
45166 nacre
45211 nacrer
45212 nage
45213 nagea
45214 nageant
45215 nageoire
45216 nager
45221 nageur
45222 nain
45223 naine
45224 nana
45225 nanti
45226 nantir
45231 napalm
45232 naphte
45233 nappa
45234 nappage
45235 nappant
45236 nappe
45241 napper
45242 napperon
45243 narguer
45244 narine
45245 narra
45246 narratif
45251 narrer
45252 narval
45253 natal
45254 natation
45255 natif
45256 nation
45261 national
45262 native
45263 natte
45264 nature
45265 naturel
45266 naufrage
45311 nautile
45312 nautique
45313 naval
45314 navaux
45315 navet
45316 navette
45321 navigant
45322 navigua
45323 navigue
45324 naviguer
45325 navire
45326 navrant
45331 navrante
45332 navre
45333 navrer
45334 nectar
45335 neige
45336 neigea
45341 neiger
45342 neigeux
45343 nenni
45344 nerf
45345 nerveux
45346 nervure
45351 nervurer
45352 nette
45353 nettoie
45354 nettoyer
45355 neuf
45356 neural
45361 neuraux
45362 neuronal
45363 neurone
45364 neutre
45365 neutrino
45366 neutron
45411 neuve
45412 neveu
45413 neveux
45414 niche
45415 nicher
45416 nichoir
45421 nickel
45422 nickeler
45423 nicotine
45424 nidation
45425 nidifier
45426 nier
45431 nigaud
45432 nimbe
45433 nirvana
45434 nitrate
45435 nitrique
45436 nitrite
45441 niveau
45442 niveaux
45443 nivela
45444 nivelage
45445 niveler
45446 noble
45451 noce
45452 noceur
45453 nocif
45454 nocive
45455 nocturne
45456 nodule
45461 noeud
45462 noie
45463 noir
45464 noirceur
45465 noirci
45466 noircir
45511 noire
45512 noix
45513 nomade
45514 nombre
45515 nombreux
45516 nombril
45521 nominal
45522 nominaux
45523 nomma
45524 nommer
45525 nonante
45526 nonne
45531 nord
45532 nordique
45533 normal
45534 normand
45535 normande
45536 normatif
45541 normaux
45542 norme
45543 nota
45544 notable
45545 notaire
45546 notant
45551 notarial
45552 notation
45553 note
45554 noter
45555 notice
45556 notifia
45561 notifie
45562 notifier
45563 notion
45564 notoire
45565 notre
45566 noua
45611 nouant
45612 noue
45613 nouer
45614 noueux
45615 nougat
45616 nouille
45621 nounou
45622 nourri
45623 nourrice
45624 nourrir
45625 nouveau
45626 nouveaux
45631 nouvel
45632 nouvelle
45633 nova
45634 novateur
45635 novembre
45636 novice
45641 noyade
45642 noyau
45643 noyaux
45644 noyer
45645 nuage
45646 nuageux
45651 nuance
45652 nuancer
45653 nubien
45654 nubienne
45655 nubile
45656 nuire
45661 nuit
45662 nulle
45663 nuptial
45664 nuptiale
45665 nuptiaux
45666 nuque
46111 nutritif
46112 nylon
46113 nymphe
46114 objecter
46115 objectif
46116 objet
46121 oblige
46122 obliger
46123 obliqua
46124 oblique
46125 obliquer
46126 oblong
46131 oblongue
46132 obtenant
46133 obtenir
46134 obtenu
46135 obtenue
46136 obtient
46141 obturer
46142 ocarina
46143 occident
46144 occiput
46145 occitan
46146 occitane
46151 occlure
46152 occulta
46153 occulte
46154 occulter
46155 occupa
46156 occupant
46161 occupe
46162 occuper
46163 ocelot
46164 ocre
46165 octane
46166 octave
46211 octet
46212 octobre
46213 octogone
46214 octopode
46215 octroi
46216 octroya
46221 octroyer
46222 oculaire
46223 odeur
46224 odieux
46225 odorant
46226 odorante
46231 odorat
46232 oedipe
46233 oeil
46234 oeillade
46235 oeillet
46236 oeuf
46241 oeuvra
46242 oeuvre
46243 oeuvrer
46244 offert
46245 offerte
46246 office
46251 officia
46252 officiel
46253 officier
46254 officine
46255 offrande
46256 offrant
46261 offrante
46262 offre
46263 offrir
46264 ogive
46265 ogre
46266 oignon
46311 oindre
46312 okapi
46313 olfactif
46314 oliphant
46315 olive
46316 olivier
46321 olympe
46322 olympien
46323 omble
46324 ombra
46325 ombrage
46326 ombre
46331 ombrelle
46332 omelette
46333 omet
46334 omettre
46335 omnivore
46336 omoplate
46341 onagre
46342 once
46343 oncle
46344 onction
46345 onctueux
46346 onde
46351 ondin
46352 ondine
46353 ondoyant
46354 ondula
46355 ondulant
46356 ondule
46361 onduler
46362 ongle
46363 onglet
46364 onirique
46365 onyx
46366 onze
46411 opale
46412 opaque
46413 opercule
46414 opina
46415 opiner
46416 opinion
46421 opium
46422 opportun
46423 opprima
46424 opprime
46425 opprimer
46426 opprobre
46431 opta
46432 opter
46433 opticien
46434 optima
46435 optimal
46436 optimale
46441 optimaux
46442 optimum
46443 option
46444 optique
46445 opulence
46446 opulent
46451 opulente
46452 oracle
46453 orage
46454 orageux
46455 oral
46456 orale
46461 orange
46462 oranger
46463 orateur
46464 oratoire
46465 oratrice
46466 oraux
46511 orbe
46512 orbital
46513 orbitale
46514 orbitaux
46515 orbite
46516 orbiter
46521 ordonna
46522 ordonne
46523 ordonner
46524 ordre
46525 ordure
46526 ordurier
46531 oreille
46532 oreiller
46533 oreillon
46534 organe
46535 orge
46536 orgie
46541 orgue
46542 orgueil
46543 orient
46544 orienta
46545 oriental
46546 oriente
46551 orienter
46552 orifice
46553 origan
46554 original
46555 origine
46556 originel
46561 orignal
46562 orignaux
46563 orme
46564 orna
46565 ornant
46566 orne
46611 ornement
46612 orner
46613 oronge
46614 orphelin
46615 orque
46616 orteil
46621 ortie
46622 orvale
46623 orvet
46624 otage
46625 otarie
46626 otite
46631 ottoman
46632 ottomane
46633 ouate
46634 ouatine
46635 oubli
46636 oublia
46641 oublie
46642 oublier
46643 ouragan
46644 ourdir
46645 ourlet
46646 outil
46651 outilla
46652 outiller
46653 outra
46654 outrage
46655 outrager
46656 outrance
46661 outrant
46662 outre
46663 outremer
46664 outrer
46665 ouvert
46666 ouverte
51111 ouvra
51112 ouvrable
51113 ouvrage
51114 ouvrant
51115 ouvrante
51116 ouvre
51121 ouvreur
51122 ouvrier
51123 ouvrir
51124 ouzbek
51125 ovaire
51126 ovale
51131 ovation
51132 ovin
51133 ovine
51134 ovipare
51135 ovni
51136 ovocyte
51141 ovule
51142 oxydant
51143 oxyde
51144 oxyder
51145 ozone
51146 pacha
51151 pacifier
51152 pacte
51153 pactole
51154 paella
51155 pagaie
51156 pagaille
51161 pagaye
51162 pagayer
51163 pagayeur
51164 page
51165 pagne
51166 pagode
51211 paie
51212 paiement
51213 paiera
51214 pailla
51215 paillage
51216 paillard
51221 paille
51222 pailler
51223 paillote
51224 pain
51225 pair
51226 paire
51231 paix
51232 palabre
51233 palabrer
51234 palace
51235 paladin
51236 palan
51241 palatine
51242 pale
51243 palefroi
51244 palet
51245 palette
51246 palier
51251 palliant
51252 pallier
51253 palmaire
51254 palme
51255 palmer
51256 palmier
51261 palombe
51262 palot
51263 palote
51264 palourde
51265 palpa
51266 palpable
51311 palpant
51312 palpe
51313 palper
51314 palpeur
51315 palpita
51316 palpite
51321 palpiter
51322 paluche
51323 palud
51324 pamphlet
51325 panacha
51326 panache
51331 panacher
51332 panade
51333 panama
51334 panard
51335 pancarte
51336 panda
51341 pandore
51342 pane
51343 panel
51344 paner
51345 pangolin
51346 panier
51351 paniqua
51352 panique
51353 panne
51354 panneau
51355 panneaux
51356 panoplie
51361 panorama
51362 pantalon
51363 pantin
51364 panure
51365 paon
51366 papa
51411 papal
51412 papaye
51413 papayer
51414 pape
51415 papetier
51416 papi
51421 papier
51422 papille
51423 papillon
51424 papota
51425 papotage
51426 papote
51431 papoter
51432 paprika
51433 papy
51434 paquebot
51435 paquet
51436 para
51441 parabole
51442 parada
51443 paradant
51444 parade
51445 parader
51446 paradeur
51451 paradoxe
51452 parafant
51453 parafer
51454 parage
51455 parait
51456 parapet
51461 parapher
51462 paravent
51463 parbleu
51464 parc
51465 parcage
51466 parcelle
51511 parcoure
51512 parcourt
51513 parcouru
51514 pardi
51515 pardieu
51516 pardon
51521 pardonna
51522 pardonne
51523 pare
51524 pareil
51525 parement
51526 parent
51531 parental
51532 parente
51533 parer
51534 pareur
51535 parfaire
51536 parfait
51541 parfaite
51542 parfum
51543 parfuma
51544 parfume
51545 parfumer
51546 pari
51551 paria
51552 parier
51553 parieur
51554 parjure
51555 parka
51556 parking
51561 parla
51562 parlant
51563 parle
51564 parler
51565 parleur
51566 parloir
51611 parlote
51612 parme
51613 parmi
51614 parodia
51615 parodie
51616 parodier
51621 paroi
51622 parole
51623 parpaing
51624 parqua
51625 parquer
51626 parquet
51631 parqueta
51632 parrain
51633 parraina
51634 parraine
51635 part
51636 partage
51641 partager
51642 partance
51643 partant
51644 partante
51645 parte
51646 parterre
51651 parti
51652 partial
51653 partiale
51654 partiaux
51655 partie
51656 partiel
51661 partir
51662 partira
51663 partout
51664 paru
51665 parure
51666 parution
52111 parvenir
52112 parvenu
52113 parvenue
52114 parvient
52115 patapouf
52116 patate
52121 patauge
52122 patauger
52123 patelin
52124 patente
52125 paternel
52126 patience
52131 patient
52132 patienta
52133 patiente
52134 patina
52135 patinage
52136 patinant
52141 patine
52142 patiner
52143 patineur
52144 patio
52145 patraque
52146 patrie
52151 patriote
52152 patron
52153 patronal
52154 patronat
52155 patte
52156 paume
52161 paumer
52162 pauvre
52163 pava
52164 pavage
52165 pavana
52166 pavanant
52211 pavaner
52212 pave
52213 pavement
52214 paver
52215 pavillon
52216 pavot
52221 paya
52222 payant
52223 payante
52224 paye
52225 payement
52226 payer
52231 payeur
52232 peau
52233 peaufina
52234 peaufine
52235 peaux
52236 pectine
52241 pectoral
52242 pedigree
52243 peigna
52244 peignant
52245 peigne
52246 peigner
52251 peignoir
52252 peinard
52253 peinarde
52254 peindre
52255 peine
52256 peiner
52261 peint
52262 peinte
52263 peintre
52264 peinture
52265 pela
52266 pelade
52311 pelage
52312 pelant
52313 peler
52314 pelle
52315 pellet
52316 pelleta
52321 pelleter
52322 pelote
52323 peloton
52324 peluche
52325 pelucher
52326 pelure
52331 pelvien
52332 penaud
52333 penaude
52334 pencha
52335 penchant
52336 penche
52341 pencher
52342 pend
52343 pendant
52344 penderie
52345 pendre
52346 pendule
52351 pentacle
52352 pente
52353 pentu
52354 peptide
52355 perce
52356 percer
52361 percha
52362 perche
52363 percher
52364 perchoir
52365 percuta
52366 percute
52411 percuter
52412 perd
52413 perdant
52414 perdante
52415 perdre
52416 perdreau
52421 perdrix
52422 perdu
52423 perdue
52424 perdura
52425 perdurer
52426 perfide
52431 perfidie
52432 perfora
52433 perfore
52434 perforer
52435 pergola
52436 perla
52441 perlant
52442 perle
52443 perler
52444 permet
52445 permit
52446 permuta
52451 permuter
52452 peroxyde
52453 perplexe
52454 perron
52455 perruche
52456 perruque
52461 perte
52462 perturba
52463 perturbe
52464 perverti
52465 petit
52466 petite
52511 peton
52512 peupla
52513 peuplade
52514 peuple
52515 peupler
52516 peuplier
52521 peur
52522 peureux
52523 peut
52524 peux
52525 phalange
52526 pharaon
52531 phare
52532 pharynx
52533 philo
52534 philtre
52535 phobie
52536 phobique
52541 phoenix
52542 phoque
52543 photo
52544 photon
52545 phrygien
52546 piaf
52551 piaffer
52552 piailler
52553 piano
52554 pianota
52555 pianote
52556 pianoter
52561 piaule
52562 picard
52563 pichet
52564 picoler
52565 picoleur
52566 picore
52611 picorer
52612 picot
52613 picote
52614 picoter
52615 pictural
52616 pied
52621 pierre
52622 pierreux
52623 pieu
52624 pieuvre
52625 pieux
52626 pige
52631 pigea
52632 pigeon
52633 piger
52634 pigment
52635 pignon
52636 pila
52641 pilaf
52642 pile
52643 pileux
52644 pilier
52645 pilla
52646 pillage
52651 pillard
52652 piller
52653 pilleur
52654 pilon
52655 pilonna
52656 pilonne
52661 pilonner
52662 pilori
52663 pilota
52664 pilotage
52665 pilotant
52666 pilote
53111 piloter
53112 pilule
53113 pilulier
53114 pilum
53115 piment
53116 pimenta
53121 pimenter
53122 pimpant
53123 pimpante
53124 pinacle
53125 pinard
53126 pince
53131 pinceau
53132 pinceaux
53133 pincer
53134 pincette
53135 pingouin
53136 pingre
53141 pinot
53142 pintade
53143 pinte
53144 pioche
53145 piocher
53146 piolet
53151 pion
53152 pionce
53153 pioncer
53154 pionnier
53155 pioupiou
53156 pipe
53161 pipeau
53162 pipette
53163 piqua
53164 piquage
53165 piquant
53166 piquante
53211 pique
53212 piquer
53213 piquet
53214 piqueter
53215 piquette
53216 piranha
53221 pirata
53222 piratage
53223 pirate
53224 pirater
53225 pire
53226 pirogue
53231 pitance
53232 piteux
53233 piton
53234 pitre
53235 pitrerie
53236 pivoine
53241 pivot
53242 pivota
53243 pivotant
53244 pivote
53245 pivoter
53246 pizza
53251 pizzeria
53252 placage
53253 placard
53254 place
53255 placebo
53256 placenta
53261 placer
53262 placide
53263 plafond
53264 plage
53265 plagiat
53266 plagier
53311 plaid
53312 plaider
53313 plaie
53314 plaindre
53315 plaine
53316 plaint
53321 plainte
53322 plaira
53323 plaire
53324 plan
53325 plana
53326 planage
53331 planaire
53332 planant
53333 plancha
53334 planche
53335 plancher
53336 plancton
53341 plane
53342 planer
53343 planeur
53344 planifia
53345 planifie
53346 planqua
53351 planque
53352 planquer
53353 plant
53354 planta
53355 plantage
53356 plantain
53361 plante
53362 planter
53363 planteur
53364 plaquage
53365 plaque
53366 plaquer
53411 plaqueur
53412 plat
53413 platane
53414 plate
53415 plateau
53416 platine
53421 plein
53422 pleine
53423 pleur
53424 pleura
53425 pleural
53426 pleurer
53431 pleureur
53432 pleurote
53433 pleut
53434 pleutre
53435 pleuvoir
53436 plia
53441 pliable
53442 pliage
53443 pliant
53444 pliante
53445 plie
53446 plier
53451 plieur
53452 plinthe
53453 pliure
53454 ploie
53455 plomb
53456 plomba
53461 plombage
53462 plombant
53463 plombe
53464 plomber
53465 plombier
53466 plonge
53511 plongea
53512 plongeon
53513 plonger
53514 plongeur
53515 plot
53516 plouf
53521 pluche
53522 pluie
53523 plumage
53524 plume
53525 plumeau
53526 plumeaux
53531 plumier
53532 plupart
53533 pluriel
53534 pluton
53535 pluvieux
53536 pneu
53541 pneumo
53542 poche
53543 pochette
53544 pochoir
53545 podium
53546 pognon
53551 poignant
53552 poignard
53553 poigne
53554 poignet
53555 poil
53556 poilant
53561 poilu
53562 poilue
53563 poindre
53564 poing
53565 point
53566 pointa
53611 pointage
53612 pointer
53613 pointeur
53614 pointu
53615 pointue
53616 pointure
53621 poire
53622 poireaux
53623 poirier
53624 poitrail
53625 poitrine
53626 poivre
53631 poivrer
53632 poivrier
53633 poivron
53634 poker
53635 polaire
53636 polar
53641 polenta
53642 poli
53643 police
53644 policer
53645 policier
53646 polie
53651 poliment
53652 polio
53653 polir
53654 polka
53655 pollen
53656 pollua
53661 polluant
53662 polluer
53663 pollueur
53664 polo
53665 polochon
53666 poltron
54111 polygone
54112 pommade
54113 pomme
54114 pommeau
54115 pommier
54116 pompa
54121 pompage
54122 pompe
54123 pomper
54124 pompette
54125 pompeux
54126 pompier
54131 pompon
54132 pomponne
54133 poncer
54134 poncho
54135 ponction
54136 ponctua
54141 ponctue
54142 ponctuel
54143 ponctuer
54144 pond
54145 pondre
54146 pondu
54151 poney
54152 pont
54153 pontage
54154 ponte
54155 ponton
54156 popote
54161 populace
54162 porc
54163 porche
54164 porcin
54165 pore
54166 poreux
54211 port
54212 porta
54213 portable
54214 portage
54215 portail
54216 portance
54221 portant
54222 portatif
54223 porte
54224 porter
54225 porteur
54226 portier
54231 portion
54232 portique
54233 porto
54234 portrait
54235 potable
54236 potache
54241 potage
54242 potager
54243 pote
54244 poteau
54245 poteaux
54246 potence
54251 poterie
54252 potiche
54253 potier
54254 potion
54255 potiron
54256 poubelle
54261 pouce
54262 poudre
54263 poudrer
54264 poudrier
54265 pouf
54266 pouffer
54311 poulain
54312 poularde
54313 poule
54314 poulet
54315 poulette
54316 pouliche
54321 poulie
54322 poulpe
54323 poumon
54324 poupe
54325 poupon
54326 pour
54331 pourceau
54332 pourfend
54333 pourpre
54334 pourquoi
54335 pourra
54336 pourri
54341 pourrir
54342 pourtant
54343 pourtour
54344 pourvoir
54345 pourvu
54346 poutre
54351 pouvant
54352 pouvoir
54353 poux
54354 prairie
54355 praline
54356 pratique
54361 premier
54362 prenable
54363 prenant
54364 prenante
54365 prend
54366 prendra
54411 prendre
54412 preneur
54413 preuve
54414 preux
54415 pria
54416 prie
54421 prier
54422 prieur
54423 primaire
54424 primate
54425 prime
54426 primer
54431 primeur
54432 primitif
54433 primo
54434 prince
54435 princier
54436 principe
54441 priori
54442 prit
54443 priva
54444 prive
54445 priver
54446 prix
54451 probable
54452 probant
54453 prochain
54454 proche
54455 proclama
54456 proclame
54461 procura
54462 procure
54463 procurer
54464 prodige
54465 prodigua
54466 prodigue
54511 produira
54512 produire
54513 produit
54514 produite
54515 prof
54516 profana
54521 profane
54522 profaner
54523 profil
54524 profila
54525 profile
54526 profiler
54531 profit
54532 profita
54533 profiter
54534 profond
54535 profonde
54536 prohiba
54541 prohiber
54542 proie
54543 projet
54544 projeta
54545 projeter
54546 prologue
54551 prolonge
54552 promena
54553 promener
54554 promet
54555 promit
54556 promo
54561 prompt
54562 prompte
54563 promu
54564 pronom
54565 prononce
54566 propage
54611 propager
54612 propane
54613 propice
54614 propre
54615 propret
54616 proprio
54621 prorata
54622 proton
54623 prou
54624 proue
54625 prouva
54626 prouve
54631 prouver
54632 provenir
54633 proverbe
54634 provient
54635 province
54636 provoqua
54641 provoque
54642 proximal
54643 prude
54644 prudence
54645 prudent
54646 prudente
54651 prune
54652 pruneau
54653 pruneaux
54654 prunelle
54655 prunier
54656 puant
54661 puanteur
54662 pubien
54663 publia
54664 public
54665 publie
54666 publier
55111 publique
55112 puce
55113 pucelage
55114 puceron
55115 pudeur
55116 pudique
55121 puer
55122 pugilat
55123 pugnace
55124 pull
55125 pulluler
55126 pulpe
55131 pulpeux
55132 puma
55133 puni
55134 punie
55135 punir
55136 punitif
55141 punition
55142 punitive
55143 punk
55144 pupille
55145 pupitre
55146 pure
55151 purement
55152 purge
55153 purger
55154 purgeur
55155 purifia
55156 purifie
55161 purifier
55162 purin
55163 puritain
55164 purulent
55165 putride
55166 puzzle
55211 pyjama
55212 pyramide
55213 pyromane
55214 pythie
55215 python
55216 quadrant
55221 quai
55222 qualifia
55223 qualifie
55224 quand
55225 quant
55226 quantum
55231 quarante
55232 quark
55233 quart
55234 quartier
55235 quartile
55236 quartz
55241 quatorze
55242 quatrain
55243 quatre
55244 quatuor
55245 quel
55246 quelle
55251 quelque
55252 quenelle
55253 quenotte
55254 querelle
55255 querir
55256 quiche
55261 quignon
55262 quille
55263 quinoa
55264 quint
55265 quinte
55266 quinze
55311 quitta
55312 quittant
55313 quitte
55314 quitter
55315 quoi
55316 quoique
55321 quolibet
55322 quota
55323 quotient
55324 quotte
55325 quotter
55326 rabat
55331 rabattre
55332 rabattu
55333 rabattue
55334 rabbin
55335 rabot
55336 rabota
55341 rabotage
55342 rabotant
55343 rabote
55344 raboter
55345 raboteur
55346 rabougri
55351 racaille
55352 raccord
55353 raccorda
55354 raccorde
55355 raccroc
55356 race
55361 racer
55362 rachat
55363 racheta
55364 racheter
55365 racial
55366 raciale
55411 raciaux
55412 racine
55413 racket
55414 racla
55415 raclage
55416 raclant
55421 racle
55422 racler
55423 raclette
55424 racleur
55425 racloir
55426 raclure
55431 racola
55432 racolage
55433 racolant
55434 racoler
55435 racoleur
55436 raconta
55441 raconte
55442 raconter
55443 racorni
55444 racornir
55445 radar
55446 rade
55451 radeau
55452 radeaux
55453 radia
55454 radial
55455 radian
55456 radiance
55461 radical
55462 radicale
55463 radicaux
55464 radier
55465 radieux
55466 radin
55511 radine
55512 radio
55513 radium
55514 radota
55515 radote
55516 radoter
55521 rafale
55522 raffermi
55523 raffina
55524 raffine
55525 raffiner
55526 raffole
55531 raffoler
55532 raffut
55533 rafiot
55534 rafla
55535 rafle
55536 rafler
55541 rage
55542 rageant
55543 rageante
55544 rager
55545 ragondin
55546 ragot
55551 ragoter
55552 raide
55553 raideur
55554 raidi
55555 raidir
55556 raie
55561 rail
55562 railler
55563 rainette
55564 rainure
55565 rainurer
55566 rajeuni
55611 rajeunie
55612 rajeunir
55613 rajout
55614 rajouta
55615 rajoute
55616 rajouter
55621 ralenti
55622 ralentie
55623 ralentir
55624 rallia
55625 rallier
55626 rallonge
55631 ralluma
55632 rallume
55633 rallumer
55634 rallye
55635 rama
55636 ramadan
55641 ramage
55642 rambarde
55643 rambour
55644 ramdam
55645 rame
55646 rameau
55651 rameaux
55652 ramena
55653 ramener
55654 ramequin
55655 ramer
55656 rameur
55661 rameuter
55662 rami
55663 ramifie
55664 ramifier
55665 ramolli
55666 ramollir
56111 ramona
56112 ramonage
56113 ramone
56114 ramoner
56115 ramoneur
56116 rampa
56121 rampant
56122 rampante
56123 rampe
56124 ramper
56125 ramure
56126 rancard
56131 rancart
56132 rance
56133 ranch
56134 rancoeur
56135 rancune
56136 randonna
56141 randonne
56142 rang
56143 range
56144 rangea
56145 ranger
56146 ranime
56151 ranimer
56152 rapace
56153 rapatrie
56154 raphia
56155 rapiat
56156 rapide
56161 rapine
56162 raplati
56163 raplatir
56164 rappel
56165 rappela
56166 rappeler
56211 rapport
56212 rapporta
56213 rapporte
56214 rapprend
56215 rapt
56216 raque
56221 raquer
56222 raquette
56223 rare
56224 rarement
56225 rata
56226 ratafia
56231 ratage
56232 ratatina
56233 ratatine
56234 rate
56235 rater
56236 ratifia
56241 ratifie
56242 ratifier
56243 ratio
56244 ration
56245 rational
56246 rationna
56251 rationne
56252 rattacha
56253 rattache
56254 rattrapa
56255 rattrape
56256 raturage
56261 rature
56262 rauque
56263 ravage
56264 ravager
56265 ravageur
56266 ravale
56311 ravaler
56312 rave
56313 ravi
56314 ravigote
56315 ravin
56316 ravine
56321 ravioli
56322 ravir
56323 ravive
56324 raviver
56325 raya
56326 rayon
56331 rayonne
56332 rayonner
56333 rayure
56334 razzia
56335 rebelle
56336 rebeller
56341 rebiffe
56342 rebique
56343 rebond
56344 rebondi
56345 rebondir
56346 rebord
56351 reboucha
56352 rebouche
56353 reboute
56354 rebut
56355 rebuta
56356 rebutant
56361 rebuter
56362 recale
56363 recaler
56364 recel
56365 receler
56366 receleur
56411 recentra
56412 recentre
56413 recette
56414 receveur
56415 recevoir
56416 rechange
56421 recharge
56422 rechigna
56423 rechigne
56424 rechuta
56425 rechute
56426 rechuter
56431 reclouer
56432 recoiffa
56433 recoin
56434 recoller
56435 recompta
56436 recompte
56441 reconnu
56442 reconnue
56443 recopia
56444 recopie
56445 recopier
56446 record
56451 recoud
56452 recoudre
56453 recoupa
56454 recoupe
56455 recouper
56456 recourir
56461 recouvra
56462 recouvre
56463 recracha
56464 recrache
56465 recru
56466 recrue
56511 recrute
56512 recruter
56513 recteur
56514 rectifia
56515 recto
56516 rectorat
56521 rectrice
56522 recueil
56523 recuire
56524 recuit
56525 recuite
56526 recul
56531 recula
56532 reculer
56533 recycla
56534 recycle
56535 recycler
56536 redire
56541 redit
56542 redorer
56543 redoubla
56544 redouble
56545 redouta
56546 redouter
56551 redoux
56552 refaire
56553 refait
56554 refaite
56555 refend
56556 refendre
56561 refendu
56562 refera
56563 referma
56564 referme
56565 refermer
56566 refila
56611 refile
56612 refiler
56613 reflet
56614 reflex
56615 refluer
56616 reflux
56621 refond
56622 refondre
56623 refonte
56624 reforger
56625 reforme
56626 reformer
56631 refoula
56632 refoule
56633 refouler
56634 refrain
56635 refroidi
56636 refuge
56641 regagne
56642 regagner
56643 regain
56644 regard
56645 regarda
56646 regarde
56651 regarder
56652 regarni
56653 regarnir
56654 reggae
56655 regorge
56656 regorger
56661 regret
56662 regroupa
56663 regroupe
56664 rein
56665 reine
56666 reinette
61111 rejet
61112 rejeta
61113 rejeter
61114 rejeton
61115 rejette
61116 rejoigne
61121 rejoint
61122 rejoua
61123 rejoue
61124 rejouer
61125 rejuger
61126 relance
61131 relancer
61132 relater
61133 relatif
61134 relation
61135 relative
61136 relaver
61141 relax
61142 relaxant
61143 relaxer
61144 relaya
61145 relayer
61146 relayeur
61151 relent
61152 releva
61153 relever
61154 relia
61155 relief
61156 relier
61161 relieur
61162 religion
61163 reliquat
61164 relique
61165 relira
61166 relire
61211 reliure
61212 reloge
61213 reloger
61214 relouer
61215 relu
61216 relue
61221 reluire
61222 reluquer
61223 remake
61224 remanier
61225 remarier
61226 remarqua
61231 remarque
61232 remballe
61233 remblai
61234 remercia
61235 remercie
61236 remet
61241 remettre
61242 remeubla
61243 remit
61244 remonta
61245 remonte
61246 remonter
61251 remord
61252 remorque
61253 remoud
61254 rempart
61255 rempila
61256 rempile
61261 rempiler
61262 remplace
61263 rempli
61264 remplir
61265 rempoche
61266 remporte
61311 rempote
61312 rempoter
61313 remua
61314 remuant
61315 remuer
61316 renard
61321 renarde
61322 renarder
61323 rencard
61324 rencarda
61325 rencarde
61326 rencart
61331 rend
61332 rendait
61333 rendant
61334 rendorme
61335 rendormi
61336 rendort
61341 rendra
61342 rendre
61343 rendu
61344 rendue
61345 reneige
61346 reneiger
61351 renferma
61352 renferme
61353 renfila
61354 renfile
61355 renfiler
61356 renfle
61361 renfler
61362 renfloue
61363 renfonce
61364 renforce
61365 renfort
61366 rengaine
61411 rengorge
61412 renia
61413 renie
61414 renier
61415 renifla
61416 renifle
61421 renifler
61422 renne
61423 renom
61424 renomma
61425 renomme
61426 renommer
61431 renonce
61432 renoncer
61433 renoua
61434 renouant
61435 renoue
61436 renouer
61441 rentable
61442 rentamer
61443 rente
61444 rentier
61445 rentra
61446 rentrant
61451 rentre
61452 rentrer
61453 renverra
61454 renvoi
61455 renvoya
61456 renvoyer
61461 repaie
61462 repaire
61463 repairer
61464 reparla
61465 reparle
61466 reparler
61511 repart
61512 reparte
61513 reparti
61514 repartie
61515 repartir
61516 reparu
61521 reparue
61522 repatine
61523 repava
61524 repave
61525 repaver
61526 repayer
61531 repeigna
61532 repeigne
61533 repeint
61534 repeinte
61535 repend
61536 rependre
61541 repent
61542 repente
61543 repenti
61544 repentie
61545 repentir
61546 reperce
61551 repercer
61552 reperd
61553 reperdre
61554 reperdu
61555 repeupla
61556 repincer
61561 repiqua
61562 repiquer
61563 replace
61564 replacer
61565 replanta
61566 replante
61611 repleut
61612 repli
61613 replia
61614 repliant
61615 replie
61616 replier
61621 replonge
61622 repolie
61623 repolir
61624 report
61625 reporta
61626 reporte
61631 reporter
61632 reprend
61633 reprenne
61634 reprit
61635 reprocha
61636 reproche
61641 reprouva
61642 reptile
61643 repu
61644 requiem
61645 requiert
61646 requin
61651 requit
61652 retaille
61653 retapa
61654 retape
61655 retaper
61656 retard
61661 retarde
61662 retarder
61663 retendre
61664 retendu
61665 retenir
61666 retente
62111 retenter
62112 retenti
62113 retentir
62114 retenu
62115 retienne
62116 retient
62121 retira
62122 retirage
62123 retire
62124 retirer
62125 retomba
62126 retombe
62131 retomber
62132 retond
62133 retondre
62134 retondu
62135 retord
62136 retordre
62141 retoucha
62142 retouche
62143 retour
62144 retourna
62145 retourne
62146 retrace
62151 retracer
62152 retrait
62153 retraita
62154 retraite
62155 retrempa
62156 retrempe
62161 retrouva
62162 retrouve
62163 revanche
62164 revaudra
62165 revenant
62166 revend
62211 revendre
62212 revenir
62213 revente
62214 revenu
62215 reverdir
62216 revernir
62221 reverra
62222 revient
62223 revigora
62224 revigore
62225 revint
62226 revivre
62231 revoie
62232 revoir
62233 revolver
62234 revoter
62235 revu
62236 revue
62241 rhabilla
62242 rhinite
62243 rhizome
62244 rhubarbe
62245 rhum
62246 rhume
62251 rhumerie
62252 riant
62253 ricana
62254 ricanant
62255 ricane
62256 ricaner
62261 ricaneur
62262 riche
62263 ricocha
62264 ricoche
62265 ricocher
62266 ricochet
62311 ride
62312 rideau
62313 rideaux
62314 rider
62315 ridicule
62316 rien
62321 rieur
62322 rigide
62323 rigola
62324 rigolade
62325 rigole
62326 rigoler
62331 rigolo
62332 rigolote
62333 rigueur
62334 rikiki
62335 rima
62336 rime
62341 rimer
62342 rimeur
62343 rince
62344 rincer
62345 ripa
62346 ripaille
62351 riper
62352 rira
62353 rire
62354 rite
62355 rituel
62356 rivage
62361 rival
62362 rivale
62363 rivaux
62364 rive
62365 riverain
62366 rivet
62411 rivetage
62412 riveter
62413 rixe
62414 robe
62415 robinet
62416 robot
62421 rocade
62422 rocaille
62423 roche
62424 rocher
62425 rocheux
62426 rock
62431 rocker
62432 rocket
62433 rococo
62434 rocque
62435 rocquer
62436 roda
62441 rodage
62442 rode
62443 roder
62444 rogna
62445 rognant
62446 rogne
62451 rogner
62452 rogneur
62453 rognon
62454 roitelet
62455 romain
62456 romaine
62461 roman
62462 romance
62463 romancer
62464 romane
62465 romarin
62466 rompre
62511 ronce
62512 ronchon
62513 roncier
62514 rond
62515 rondache
62516 ronde
62521 rondelle
62522 rondeur
62523 rondin
62524 ronflant
62525 ronfle
62526 ronfler
62531 ronfleur
62532 ronge
62533 ronger
62534 rongeur
62535 ronron
62536 ronronna
62541 ronronne
62542 roque
62543 roquer
62544 rorqual
62545 rotarien
62546 rotateur
62551 rotatif
62552 rotation
62553 rotative
62554 rote
62555 roter
62556 rotin
62561 rotonde
62562 rotor
62563 rotule
62564 roturier
62565 roua
62566 rouage
62611 roublard
62612 rouble
62613 roucoule
62614 roue
62615 rouer
62616 rouge
62621 rougeole
62622 rouget
62623 rougeur
62624 rougi
62625 rougie
62626 rougir
62631 rouilla
62632 rouille
62633 rouiller
62634 roula
62635 roulade
62636 roulant
62641 roulante
62642 roule
62643 rouleau
62644 rouleaux
62645 rouler
62646 roulette
62651 roulotte
62652 roumain
62653 roumaine
62654 roupie
62655 roupille
62656 rouquin
62661 rouquine
62662 routa
62663 routage
62664 routard
62665 routarde
62666 route
63111 router
63112 routier
63113 routine
63114 rouvert
63115 rouverte
63116 rouvrir
63121 roux
63122 royal
63123 royale
63124 royaume
63125 royaux
63126 ruade
63131 ruban
63132 ruche
63133 rude
63134 rudement
63135 rudiment
63136 rudoie
63141 rudoyer
63142 ruelle
63143 ruer
63144 rugby
63145 rugi
63146 rugir
63151 rugueux
63152 ruina
63153 ruine
63154 ruiner
63155 rumeur
63156 rumina
63161 ruminant
63162 rumine
63163 ruminer
63164 rupture
63165 rural
63166 rurale
63211 ruraux
63212 rutilant
63213 rutiler
63214 rythma
63215 rythmant
63216 rythme
63221 rythmer
63222 tabac
63223 table
63224 tableau
63225 tableaux
63226 tabler
63231 tablette
63232 tableur
63233 tablier
63234 tabou
63235 tabouret
63236 tabuler
63241 tacha
63242 tachant
63243 tache
63244 tacher
63245 tacheter
63246 tacite
63251 tacot
63252 tact
63253 tactile
63254 tahitien
63255 taie
63256 tailla
63261 taillade
63262 taillage
63263 taille
63264 tailler
63265 tailleur
63266 taire
63311 tait
63312 tajine
63313 talc
63314 talent
63315 taloche
63316 talon
63321 talonner
63322 talquer
63323 tamanoir
63324 tamarin
63325 tambour
63326 tampon
63331 tamponna
63332 tamponne
63333 tandem
63334 tangent
63335 tangente
63336 tangible
63341 tango
63342 tangue
63343 tanguer
63344 tanin
63345 tank
63346 tanker
63351 tanne
63352 tanner
63353 tannerie
63354 tanneur
63355 tant
63356 tante
63361 tantinet
63362 taon
63363 tapa
63364 tapage
63365 tapageur
63366 tape
63411 tapenade
63412 taper
63413 tapis
63414 tapioca
63415 tapir
63416 tapota
63421 tapote
63422 tapoter
63423 taquet
63424 taquine
63425 taquiner
63426 taraud
63431 tarauder
63432 tard
63433 tarde
63434 tarder
63435 tardif
63436 tardive
63441 tare
63442 tarente
63443 tarer
63444 targe
63445 targette
63446 targuer
63451 tari
63452 tarif
63453 tarir
63454 tarot
63455 tartare
63456 tarte
63461 tartina
63462 tartine
63463 tartiner
63464 tartre
63465 tatami
63466 tatillon
63511 tatou
63512 tatoua
63513 tatouage
63514 tatouer
63515 tatoueur
63516 taule
63521 taulier
63522 taupe
63523 taureau
63524 taureaux
63525 taurine
63526 taux
63531 taverne
63532 taxa
63533 taxation
63534 taxe
63535 taxer
63536 taxi
63541 teck
63542 teckel
63543 teigne
63544 teigneux
63545 teindre
63546 teint
63551 teinte
63552 teinter
63553 teinture
63554 telle
63555 tempe
63556 temple
63561 templier
63562 tempo
63563 temporal
63564 temporel
63565 tenable
63566 tenace
63611 tenaille
63612 tenant
63613 tend
63614 tendance
63615 tendeur
63616 tendon
63621 tendre
63622 tendu
63623 tendue
63624 teneur
63625 tenir
63626 tenta
63631 tente
63632 tenter
63633 tenture
63634 tenu
63635 tenue
63636 tequila
63641 tercet
63642 terme
63643 termina
63644 terminal
63645 termine
63646 terminer
63651 termite
63652 ternaire
63653 terne
63654 terni
63655 ternie
63656 ternir
63661 terrain
63662 terre
63663 terreau
63664 terreaux
63665 terrer
63666 terreur
64111 terrible
64112 terrien
64113 terrier
64114 terrine
64115 terroir
64116 tertre
64121 teuton
64122 texan
64123 texte
64124 textile
64125 textuel
64126 texture
64131 thermal
64132 thon
64133 thorax
64134 thym
64135 tiare
64136 tibia
64141 ticket
64142 tierce
64143 tige
64144 tigre
64145 tigron
64146 tilde
64151 tilleul
64152 timbale
64153 timbre
64154 timide
64155 timonier
64156 tinter
64161 tique
64162 tiquer
64163 tira
64164 tirade
64165 tirage
64166 tiraille
64211 tire
64212 tirelire
64213 tirer
64214 tiret
64215 tirette
64216 tireur
64221 tiroir
64222 titan
64223 titane
64224 titiller
64225 titrage
64226 titre
64231 titrer
64232 tituber
64233 toboggan
64234 toge
64235 toile
64236 toilette
64241 toit
64242 toiture
64243 tomate
64244 tombal
64245 tombe
64246 tombeau
64251 tomber
64252 tombeur
64253 tombola
64254 tome
64255 tonal
64256 tond
64261 tondre
64262 tonifie
64263 tonifier
64264 tonnage
64265 tonne
64266 tonneau
64311 tonneaux
64312 tonnelle
64313 tonnerre
64314 tonte
64315 tonton
64316 topaze
64321 toque
64322 toquer
64323 torche
64324 torchon
64325 tord
64326 tordant
64331 tordre
64332 torero
64333 torgnole
64334 tornade
64335 torpeur
64336 torpille
64341 torrent
64342 torride
64343 tort
64344 tortue
64345 torture
64346 total
64351 totem
64352 touareg
64353 toubib
64354 toucan
64355 toucha
64356 touchant
64361 touche
64362 toucher
64363 touffe
64364 touffu
64365 touiller
64366 toundra
64411 toupet
64412 toupie
64413 tour
64414 tourbe
64415 tourelle
64416 tourment
64421 tourna
64422 tournage
64423 tournant
64424 tourne
64425 tourner
64426 tournure
64431 tourte
64432 tout
64433 toute
64434 toutou
64435 toux
64436 toxine
64441 toxique
64442 traboule
64443 trac
64444 trace
64445 tracer
64446 traceur
64451 tract
64452 tracteur
64453 traction
64454 traduire
64455 trafic
64456 tragique
64461 trahi
64462 trahie
64463 trahir
64464 train
64465 traire
64466 traitant
64511 traite
64512 traiter
64513 traiteur
64514 trajet
64515 tram
64516 trame
64521 tramer
64522 tramway
64523 trancha
64524 tranche
64525 trancher
64526 trappe
64531 trappeur
64532 trapu
64533 traque
64534 traquer
64535 traqueur
64536 trauma
64541 travail
64542 travaux
64543 treille
64544 treize
64545 trembla
64546 tremble
64551 trembler
64552 trempage
64553 trempe
64554 tremper
64555 tremplin
64556 trente
64561 treuil
64562 tria
64563 triade
64564 triage
64565 triangle
64566 tribal
64611 tribord
64612 tribu
64613 tribun
64614 tribunal
64615 tribune
64616 tribut
64621 triche
64622 tricher
64623 tricheur
64624 tricorne
64625 tricot
64626 tricoter
64631 tricycle
64632 trier
64633 trillion
64634 trilogie
64635 trimer
64636 trinque
64641 trinquer
64642 trio
64643 triomphe
64644 tripe
64645 triple
64646 tripler
64651 tripoter
64652 tritium
64653 triton
64654 tritura
64655 trivial
64656 troc
64661 trogne
64662 trognon
64663 troll
64664 trombe
64665 tromblon
64666 trombone
65111 trompe
65112 tromper
65113 tronc
65114 tronche
65115 tronquer
65116 trop
65121 tropical
65122 tropique
65123 troque
65124 troquer
65125 trot
65126 trotter
65131 trottoir
65132 trou
65133 troua
65134 troubla
65135 trouble
65136 troubler
65141 trouer
65142 trouille
65143 troupe
65144 troupeau
65145 trouva
65146 trouve
65151 trouver
65152 troyen
65153 troyenne
65154 truand
65155 truander
65156 truc
65161 trucage
65162 trucider
65163 truelle
65164 truffe
65165 truie
65166 truite
65211 truquage
65212 truquer
65213 tuba
65214 tube
65215 tuer
65216 tuerie
65221 tueur
65222 tuile
65223 tulipe
65224 tulle
65225 tumeur
65226 tumoral
65231 tumulte
65232 tunnel
65233 turban
65234 turbine
65235 turbot
65236 turc
65241 turne
65242 tutelle
65243 tuteur
65244 tutoyer
65245 tutrice
65246 tutu
65251 tuyau
65252 tuyauter
65253 tuyaux
65254 tympan
65255 type
65256 typhon
65261 typique
65262 typo
65263 tyran
65264 tyrannie
65265 tzar
65266 tzarine
65311 tzigane
65312 ultime
65313 ultra
65314 ululer
65315 unanime
65316 unie
65321 unifie
65322 unifier
65323 uniforme
65324 union
65325 unir
65326 unit
65331 unitaire
65332 uranium
65333 urbain
65334 urbaine
65335 urge
65336 urgence
65341 urgent
65342 urgente
65343 urne
65344 urticant
65345 utile
65346 utopie
65351 vacance
65352 vacant
65353 vacante
65354 vacarme
65355 vacation
65356 vaccin
65361 vacciner
65362 vache
65363 vacherie
65364 vacherin
65365 vachette
65366 vaciller
65411 vagabond
65412 vague
65413 vain
65414 vaincre
65415 vaincu
65416 vaincue
65421 vaine
65422 vairon
65423 valable
65424 valence
65425 valet
65426 valeur
65431 validant
65432 valide
65433 valider
65434 valkyrie
65435 vallon
65436 valoir
65441 valvaire
65442 valve
65443 valvule
65444 vampire
65445 vandale
65446 vaniteux
65451 vannerie
65452 vantant
65453 vantard
65454 vanter
65455 vape
65456 vapeur
65461 vaporeux
65462 vaquant
65463 vaque
65464 vaquent
65465 vaquer
65466 varapper
65511 variable
65512 variance
65513 variant
65514 variante
65515 varice
65516 varier
65521 variole
65522 vaticane
65523 vaudou
65524 vaurien
65525 vaut
65526 vautour
65531 vautrer
65532 veau
65533 veaux
65534 vecteur
65535 vedette
65536 veillant
65541 veille
65542 veiller
65543 veilleur
65544 veinard
65545 veinarde
65546 velu
65551 venait
65552 venant
65553 vend
65554 vendable
65555 vendange
65556 vendetta
65561 vendeur
65562 vendre
65563 vendu
65564 venger
65565 vengeur
65566 venimeux
65611 venin
65612 venir
65613 vent
65614 venter
65615 venteux
65616 ventiler
65621 ventral
65622 ventrale
65623 ventraux
65624 ventre
65625 ventru
65626 ventrue
65631 venturi
65632 venu
65633 venue
65634 verbal
65635 verbale
65636 verbaux
65641 verbe
65642 verbeux
65643 verbiage
65644 verdeur
65645 verdict
65646 verdure
65651 verger
65652 vergogne
65653 vermine
65654 verni
65655 vernir
65656 verre
65661 verrerie
65662 verrier
65663 verrou
65664 vert
65665 verte
65666 vertical
66111 vertige
66112 vertu
66113 vertueux
66114 verve
66115 verveine
66116 veto
66121 veuf
66122 veut
66123 veuvage
66124 veuve
66125 veux
66126 vexant
66131 vexation
66132 vexer
66133 viable
66134 viaduc
66135 viager
66136 viande
66141 vibrant
66142 vibrante
66143 vibrer
66144 vibreur
66145 vice
66146 vicomte
66151 victime
66152 victoire
66153 vidage
66154 vidange
66155 vidanger
66156 vidant
66161 vide
66162 vider
66163 videur
66164 vidoir
66165 vieillir
66166 vieillot
66211 viellant
66212 vieller
66213 vielleur
66214 vient
66215 vierge
66216 vieux
66221 vigie
66222 vigilant
66223 vigile
66224 vigne
66225 vigneron
66226 vignette
66231 vignoble
66232 vigueur
66233 viking
66234 vilain
66235 vilaine
66236 vile
66241 vilement
66242 vilenie
66243 villa
66244 village
66245 ville
66246 vinaigre
66251 vindicte
66252 vingt
66253 vinicole
66254 vinifier
66255 vinyle
66256 violine
66261 violon
66262 virage
66263 viral
66264 virale
66265 viraux
66266 virement
66311 virer
66312 virginal
66313 virgule
66314 viril
66315 virtuel
66316 vital
66321 vitale
66322 vitamine
66323 vitaux
66324 vite
66325 viticole
66326 vitrage
66331 vitrail
66332 vitraux
66333 vitre
66334 vitrer
66335 vitreux
66336 vitrier
66341 vitrine
66342 vitriol
66343 vivable
66344 vivace
66345 vivant
66346 vivante
66351 vivarium
66352 vive
66353 vivement
66354 vivifie
66355 vivifier
66356 vivipare
66361 vivoter
66362 vivre
66363 vizir
66364 vocable
66365 vocal
66366 vocale
66411 vocation
66412 vocaux
66413 vodka
66414 voeu
66415 voeux
66416 voguant
66421 vogue
66422 voguer
66423 voici
66424 voie
66425 voilage
66426 voilant
66431 voile
66432 voiler
66433 voilette
66434 voilier
66435 voilure
66436 voir
66441 voirie
66442 voiture
66443 voix
66444 volage
66445 volaille
66446 volant
66451 volante
66452 volatil
66453 volatile
66454 volcan
66455 voler
66456 volerie
66461 volet
66462 voletant
66463 voleur
66464 volley
66465 volt
66466 voltage
66511 voltaire
66512 volter
66513 voltige
66514 voltiger
66515 volume
66516 volute
66521 vomi
66522 vomir
66523 vont
66524 vorace
66525 vortex
66526 votant
66531 vote
66532 voter
66533 votre
66534 vouant
66535 vouer
66536 vouivre
66541 voulant
66542 vouloir
66543 vouvoyer
66544 voyage
66545 voyager
66546 voyageur
66551 voyance
66552 voyant
66553 voyante
66554 voyelle
66555 voyou
66556 vrac
66561 vrai
66562 vraie
66563 vraiment
66564 vrillage
66565 vriller
66566 vrombir
66611 vulcain
66612 vulgaire
66613 wagon
66614 wagonnet
66615 wallon
66616 wapiti
66621 watt
66622 whisky
66623 yacht
66624 yachting
66625 yack
66626 yaourt
66631 yeux
66632 yoga
66633 yogi
66634 yogourt
66635 yourte
66636 yucca
66641 zambien
66642 zanzibar
66643 zeppelin
66644 zigoto
66645 zigzag
66646 zinc
66651 zinguer
66652 zipper
66653 zircon
66654 zizanie
66655 zodiaque
66656 zombie
66661 zonage
66662 zone
66663 zoner
66664 zoologie
66665 zoom
66666 zozoter
diceware-1.0.1/diceware/wordlists/wordlist_it.txt 0000664 0000000 0000000 00000161131 14732404111 0022215 0 ustar 00root root 0000000 0000000 abate
abati
abbaio
abbasso
abbazia
abbazie
abbiamo
abbiasi
abbiate
abbinai
abbino
abbondo
abbono
abbordo
abdico
abete
abeti
abile
abissi
abisso
abitare
abiti
abito
abituo
abituro
abiuro
abolii
abolita
aboliti
aborto
abradi
abraso
abrogo
abusai
abusare
abusate
abusato
abusavi
abusavo
abuso
acacia
accada
accadi
accanto
accaso
accatti
acceco
accenda
accenno
accento
accerto
accesa
accese
accesi
acceso
accesso
accetto
accidia
accinto
accodo
accolto
acconto
accorsa
accorsi
accorso
accosto
accuso
acefali
acerbe
acerbo
aceti
aceto
achei
achille
acida
acide
acidi
acido
acqua
acquea
acume
acuto
adagiai
adagio
adamo
adattai
adatto
addendi
addenso
addetto
addice
addii
addio
addito
addomi
adduci
adeguai
adeguo
adepti
aderire
adesso
adiposa
adirai
adirare
adirati
adirato
adiravi
adiro
aditi
adito
adonto
adorai
adorino
adorno
adoro
adotto
adulai
adulano
adulare
adulavi
adulo
adulta
adulti
adulto
adunai
adunano
adunco
adunino
aduno
adunque
aerea
aeree
aerei
aereo
affamati
affamato
affamo
affare
affatto
affido
affilo
affine
affini
affogo
afona
afone
afoni
afono
afosa
afose
afosi
afoso
africa
agata
agenda
agende
agendo
agente
agenti
agenzia
agenzie
aggirai
aggiro
aghi
agiamo
agiata
agiati
agiato
agii
agile
agili
agimmo
agio
agirai
agirei
agiremo
agirete
agirono
agisce
agisci
agiste
agisti
agitai
agitate
agitavo
agitino
agito
agivi
agivo
aglio
agnello
agnese
agonia
agonie
agosto
agro
agrume
agrumi
aguzzai
aguzzo
aiuola
aiuole
aiutai
aiutalo
aiutami
aiutamo
aiutando
aiutano
aiutante
aiutarci
aiutare
aiutarla
aiutarli
aiutarlo
aiutarmi
aiutarti
aiutarvi
aiutata
aiutati
aiutato
aiutiamo
aiuto
alacri
alate
alati
alba
alberi
albero
alberto
albina
albine
albini
albino
alcali
alce
alcoli
alcool
alcuna
alcune
alcuni
alcuno
aldo
alfieri
alfine
alga
alghe
alibi
alieno
aliti
alito
allago
allargo
allatto
alleai
alleano
alleavo
allegre
allegro
alleno
allento
alleo
allevo
allieva
allocco
alloco
allora
allori
alloro
alluce
alluci
allungo
almeno
alpha
altare
altari
alterai
alterco
altero
altezza
alti
alto
altra
altrove
altura
alture
alucce
alunna
alunne
alunni
alunno
alvei
alveo
alzai
alzano
alzante
alzare
alzarla
alzarmi
alzarsi
alzarti
alzaste
alzasti
alzata
alzati
alzato
alzavi
alzavo
alzerai
alzerei
alzino
alzo
amaca
amache
amai
amami
amammo
amano
amante
amanti
amarena
amarla
amarlo
amarmi
amarne
amarti
amarvi
amaste
amasti
amata
amateli
amati
amato
amavano
amavi
amavo
ambiente
ambigua
ambiguo
ambisce
ambito
ambo
amena
amene
ameni
ameno
amerai
amerei
ameremo
amiamo
amiate
amica
amico
amino
ammacco
ammalai
ammalo
ammazzo
ammenda
ammesse
ammirai
ammiro
ammise
ammonto
amnesie
amore
amorfa
amorfe
amorfi
amorfo
amori
ampio
amplino
amplio
amputo
amuleti
analista
ananas
anarchia
anatema
anatra
anatre
anca
anche
ancona
ancora
ancore
andai
andammo
andando
andante
andanti
andarci
andare
andarlo
andarsi
andarvi
andati
andato
andavi
andavo
anditi
andito
andrai
andranno
andrea
andrebbe
andrei
andremo
andrete
anelava
anello
anfora
anfore
angarie
angelo
angoli
angolo
anguria
angusta
animai
animale
animali
animare
animati
animavi
animavo
animose
annali
annata
annate
annego
annessa
annesse
annetti
annetto
annido
annodo
annoio
annose
annosi
annoto
annuali
annuncio
annuo
annusai
annuso
anomalia
anomalie
ansava
ansia
ansie
ansiose
ansiosi
ansioso
antica
antiche
antichi
anticipo
antico
antri
antro
anubis
anulare
anziana
anziani
anziano
aosta
apatia
apatie
aperta
aperte
aperti
aperto
apertura
apice
apici
apollo
appalti
appanno
apparire
apparsa
apparse
appello
appena
appeso
appieno
applico
appone
apposta
apposto
apprezzo
approdo
appunti
appunto
appurai
appuro
aprano
apre
apriamo
aprii
aprile
aprili
aprilo
aprire
aprirlo
aprirsi
aprite
aprono
aquila
aquile
arabo
arai
arammo
arance
arancia
arando
arano
arante
arare
araste
arasti
arata
arate
arati
arato
aratri
aratro
aravano
aravi
aravo
arazzo
arbori
arbusti
arcaico
arcane
arcani
arcata
arcate
archivio
arcigna
arco
ardente
ardere
ardeva
ardisse
arditi
ardito
ardiva
ardono
ardore
ardori
ardua
ardue
ardui
arduo
area
aree
arenai
arenano
arenati
arenato
areno
arerai
arerei
arerete
arezzo
argani
argento
argilla
argino
argute
arguti
arguto
ariamo
ariani
ariate
arida
aride
aridi
arido
ariete
aringa
arino
ariosa
ariose
ariosi
arioso
armadio
armai
armammo
armano
armante
armare
armata
armate
armati
armato
armavi
armavo
armerai
armerei
armiate
armino
armonia
armonie
arnese
arnesi
arnia
arno
aroma
aromi
arpa
arpia
arredo
arrendo
arresa
arresti
arresto
arretro
arrivano
arrivare
arrivata
arrivate
arrivati
arrivato
arrivino
arrivo
arrogo
arrotai
arsa
arsero
arsi
arso
arterie
articoli
artista
arto
arturo
arzillo
ascelle
ascesi
ascia
ascolti
ascolto
asfalti
asili
asilo
asina
asino
asola
asole
aspetto
aspirai
aspirina
aspiro
aspre
aspro
assai
assalito
assalto
assegni
assegno
assensi
assente
assenza
assenze
asserto
assicuro
assidue
assiduo
assieme
assillo
assise
assito
assodo
assolto
assoluto
assuma
assumere
assunta
assunto
assurda
assurdo
asta
astiene
astri
astuta
astute
astuto
astuzie
ateismi
ateneo
atlante
atlantis
atleta
atomica
atomico
atomo
atrio
atroce
attacchi
attacco
attenda
attenti
attento
attesa
attese
attesi
atteso
attico
attigue
attigui
attiguo
attimo
attinta
attirare
attiro
attivai
attivare
attivato
attivo
attore
attori
attorno
attratto
attrezzi
attrezzo
attrice
attrito
attuai
attuale
attuavi
attuavo
attuo
audace
audacia
audio
auge
augurai
auguri
auguro
augusti
aula
aule
aumento
aura
aurea
auree
aurei
aureo
aurora
aurore
austera
austero
autieri
autobus
automi
autopsia
autore
autunno
avallai
avallo
avana
avanti
avanzai
avanzata
avanzi
avanzo
avara
avare
avarie
avaro
avendo
avente
aventi
avenue
averci
avere
averi
averla
averle
averli
averlo
avermi
averne
aversi
averti
avervi
avessero
avessimo
aveste
avete
avevamo
avevano
avevate
avevi
avevo
avide
avidi
avido
avrai
avreanno
avrei
avremmo
avremo
avreste
avresti
avrete
avuta
avute
avuti
avutolo
avutone
avvedo
avvenire
avvenne
avvenuto
avvero
avverse
avverto
avvezzi
avvezzo
avviai
avviare
avviata
avviato
avvicini
avvidi
avviino
avvio
avvisato
avviso
avvito
avvocati
avvocato
avvolse
azione
azioni
azoto
azzardo
azzecco
azzuffo
azzurro
babbeo
babbi
babbo
bacco
bacerei
bacheca
bachi
baciai
baciala
baciare
bacini
bacino
bacio
bacon
badai
badano
badare
badata
badate
badati
badato
badavi
badavo
baderai
baderei
badile
badili
badino
bado
baffi
baffo
bagnai
bagnata
bagnati
bagnini
bagno
baia
baie
balcone
balconi
baldi
balena
baleno
balia
balie
ballai
ballare
ballavo
balliamo
ballo
balorda
balorde
balordo
balzai
balzare
balzato
balzo
bambina
bambine
bambini
bambola
banale
banana
banane
banda
bandii
bandite
bandivo
barai
barano
barare
barata
barate
barati
barato
baratri
baravi
baravo
barbare
barbaro
barbone
barbuto
barerai
barerei
barile
barili
barino
barlume
barocco
barone
baroni
barra
barre
baruffa
baruffe
basai
basammo
basano
basare
basarsi
basarti
basaste
basata
basate
basati
basato
basavi
basavo
baserai
basetta
basiamo
basica
basino
baso
bassina
bastai
bastato
bastavi
bastino
battei
battuta
baule
bauli
baveri
bavero
bavosi
bazar
bazza
beano
beata
beate
beato
beava
beccano
beccati
beccato
becco
beffe
belano
belare
belati
belgio
bello
belva
belve
bemolle
bendai
bendo
benigne
benino
benone
benzine
beone
beoni
berci
bere
bergamo
berlo
berrai
bersi
bestie
bettole
bevessi
bevilo
bevine
bevono
bevuta
bevute
bevuto
bevve
biade
bianco
biava
bibanda
bibbia
bibbie
bibita
bibite
bicocca
bidone
bidoni
bieca
bieche
bieco
bietole
bigia
bile
bilico
bilioso
bimba
bimbe
bimbi
bimbo
binaria
binario
biologa
bionda
bionde
biondo
bios
birilli
birra
bisacce
bisava
bisavi
bisca
bisce
biscia
bisturi
bivio
bizzose
bizzosi
blanda
blande
blandi
blando
bloccai
blocco
bobina
boccata
bocconi
boiata
bolgia
bollano
bollata
bollati
bollii
bolliti
bollivo
bollore
bologna
bombe
bonacce
borchie
bordi
bordone
borgate
borghi
borgo
boria
borie
boriosi
boschi
bosco
botola
botole
botta
bovini
bozza
bracchi
bracco
brache
bramai
bramare
bramata
bramate
bramavo
branca
branda
brani
brano
bravo
bravura
brezza
brezze
briglie
brillo
brinato
brindai
brindo
brine
brio
brividi
broda
brodi
brodo
bronzi
bronzo
bruchi
bruco
brulla
brulle
brulli
brullo
bruna
bruni
bruno
bruschi
brutali
bruti
bruto
brutto
bubboni
bucare
bucato
bucce
buccia
buche
budget
budini
budino
bufera
bufere
buffa
buffe
buffi
buffoni
bugie
buio
bulbi
bulbo
buoi
buona
buone
buoni
buono
burbere
burlai
burlano
burlata
burlo
burri
buscato
bussai
bussare
bussata
bussate
bussavi
bussino
bussola
bussole
busta
busti
busto
buttai
buttano
buttata
buttate
buttato
butto
cabala
cabina
cabine
cacao
cacca
cacciai
caccio
caddi
cadenza
cadenze
cadere
cadetto
cadono
cadrai
caduca
caduco
caduta
cadute
caduti
caduto
caffo
caglia
caino
calai
calano
calare
calaste
calasti
calata
calati
calato
calavi
calavo
calce
calcio
calcite
caldaia
caldei
caldo
calerei
caleva
caliamo
calibro
calice
calici
calino
calle
callo
calmai
calmata
calmate
calmati
calmino
calmo
calore
calve
calvo
calzai
calzare
calzate
calzati
calzato
calzini
calzoni
cambiamo
cambiano
cambiare
cambiata
cambiate
cambiati
cambiato
cambio
camera
camere
camicie
camini
camino
camion
cammino
campai
campata
campate
campavi
camuffo
canada
canale
canali
canapa
canape
canapo
cancri
cancro
candido
cangio
canile
canili
canina
canna
canone
canora
canore
canori
canoro
canotti
cantai
cantata
cantate
cantati
cantavo
cantine
cantore
canuta
canute
canuti
canuto
canzoni
caos
capace
capanni
caparra
capelli
capente
capiamo
capii
capirei
capirsi
capisci
capiste
capisti
capiti
capivi
capivo
cappa
cappone
capra
caprina
caprona
capua
caraffe
carena
carene
carezzo
carico
carina
carine
carini
carino
carmine
carni
carnosa
carogne
carota
carote
carpire
cartoni
casale
casati
casato
cascata
cascati
caschi
casco
casina
casini
casino
casoni
cassio
castigo
casuale
casuali
catene
cateti
catini
catino
catone
catrame
cattivi
catullo
cauchy
causai
causale
causata
causati
causato
causavi
causo
cauta
cautela
cautele
cauti
cauto
cavai
cavano
cavare
cavarmi
cavati
cavavi
cavavo
caverai
caverne
caviale
cavino
cavoli
cavolo
cecino
ceco
cedano
cedei
cedente
cederai
cedete
cedetti
cedevi
cedevo
cediamo
cedola
cedole
cedono
cedri
cedro
ceduta
cedute
ceduti
ceduto
ceffo
celai
celammo
celano
celante
celare
celasti
celata
celate
celati
celato
celavi
celavo
celeri
celiate
celibe
celibi
celie
celino
cella
celo
cenai
cenano
cenare
cenata
cenate
cenati
cenato
cenavi
cenavo
ceneri
ceniamo
ceniate
cenino
cenni
cenno
ceno
centri
centro
ceppo
cercai
cercano
cercare
cercavo
cerco
cerini
cerino
cernita
cerotti
cerotto
certuni
cerva
cervi
cervo
cesare
cesena
cesoia
cesoie
cessai
cessano
cessavi
cessavo
cessino
cesso
cesta
cestini
ceti
ceto
cetra
cetre
chetare
chetava
cheto
chiamai
chiamo
chiatta
chiave
chicca
chicchi
chicco
chiesa
chiesi
chili
chimici
chimico
chinai
chinano
chinare
chinati
chinavi
chinavo
chinino
chino
chiodi
chiodo
chiome
chiose
chiuda
chiudere
chiudo
chiusa
chiuse
chiusi
chiuso
cialda
cialde
ciance
ciao
cibi
cibo
cicale
cicca
cicche
cicloni
ciclopi
cicogna
cicoria
cicuta
cicute
cieche
ciechi
cieco
cieli
cielo
cifrati
cifre
ciglia
ciglio
cigni
cigno
cigolo
ciliege
cima
cimice
cimici
cina
cinema
cinese
cinesi
cingeva
cinica
ciniche
cinici
cinico
cinse
cinta
cinti
ciocca
ciotole
cipolla
cipria
ciprie
circa
circhi
cisti
citai
citammo
citano
citare
citarle
citarne
citaste
citata
citate
citati
citato
citavi
citavo
citerei
citiate
citino
cito
citrati
ciuffi
ciuffo
ciurma
ciurme
civici
civico
civile
civili
clamore
clamori
classe
clero
clima
climi
clinica
cluny
coabito
coatta
cocche
cocolla
cocolle
codesta
codeste
codesti
codice
codici
coeva
cofani
cofano
cognate
cognato
cognomi
colai
colando
colano
colante
colare
colarla
colarlo
colata
colate
colati
colato
colavi
colavo
colei
colerai
coliamo
coliate
colico
colini
colino
collana
collare
collina
colloco
colmai
colmata
colmate
colmati
colmo
colomba
colombi
colore
coloro
colpa
colpii
colpito
colpivi
colpivo
colpo
colta
colto
coltri
coltura
colui
comando
comare
comari
cometa
comete
comica
comico
commuto
comode
comodo
compilo
compose
comprai
concavi
conciai
concio
concisi
condii
condite
conditi
condito
condono
confece
confuse
coniai
coniati
conino
conio
coniugi
coniugo
consti
contai
contare
contate
contavi
contavo
contese
contino
convoco
copali
coperte
copiai
copiano
copiare
copiato
copino
copista
coppa
coppia
coprano
coprii
coprono
corale
corallo
cordone
corico
cornice
corno
corono
corposi
corra
correa
corroso
corsia
corsie
corsivo
corso
corta
cortei
corteo
cortili
corto
corvi
corvo
cosa
cosce
cosina
cosine
cosmi
coso
costai
costano
costare
costate
costavo
costei
costino
costosa
costosi
costui
costumi
cosucce
cotale
cotali
cotanta
cotenna
cotesti
cotone
cotta
cotte
cotti
cotto
covai
covammo
covano
covante
covare
covaste
covata
covate
covati
covato
covavi
covavo
coverai
coviamo
coviate
covile
covili
covino
covo
cozzai
cozzata
cozzati
cozzato
cozzino
cozzo
crampi
crampo
cranio
cratere
creai
creano
creanze
creare
crearla
crearne
crearsi
crearti
creaste
creasti
creata
create
creavi
creavo
crebbi
credei
credesi
credevo
credimi
creerai
creino
cremai
cremavi
cremosa
creo
crepai
crepata
crepate
crepato
crepo
cresima
crespa
crespe
crespi
crespo
cresta
creste
creta
crete
cretina
cretine
criceti
crisi
critico
croati
crollo
cronico
croste
cruda
crudi
crudo
cruento
cruna
crune
crusca
cubico
cubo
cuccia
cucendo
cucino
cucire
cuciti
cuciva
cuculi
cuculo
cuffia
cuffie
cugina
cugine
cugini
cugino
culetto
cullai
cullano
cullare
cullate
cullati
cullavo
cullino
cullo
culti
culture
cumuli
cumulo
cunetta
cuoca
cuoceva
cuoche
cuochi
cuoco
cuoio
cuore
cuori
cupe
cupido
cupola
cupole
curai
curano
curarci
curare
curarvi
curasti
curata
curate
curati
curavi
curavo
curerei
curino
curo
curvai
curvate
curvavi
curvo
cuscini
cuscino
cute
dabbene
dacci
dadi
dado
daffare
daini
daino
dalla
dalle
dallo
dame
dammele
dammelo
dammi
dandole
daniele
dannai
dannano
dannato
dannavi
dannino
dannosa
dannosi
danzai
danzate
danzati
danzino
danzo
darai
darci
dardi
darei
daremo
darete
darla
darle
darli
darlo
darmi
darne
darsi
darti
darvi
datai
datammo
datano
datante
datare
datasi
datata
datate
datati
datato
datavi
datavo
datelo
datemi
daterei
datevi
datino
datoci
datolo
datomi
datore
datosi
dattero
datti
davamo
davano
davide
davo
dazio
debbano
debian
debite
debiti
decani
decano
decenti
decimi
decimo
decina
decine
deciso
declino
decollo
decori
decorso
decreto
dedico
dedita
dedite
dedito
dedotti
deduce
dedursi
definii
defunte
degli
degnai
degnate
degno
degrado
delego
deliro
delitto
della
delle
dello
deludo
delusa
deluse
deluso
demenza
demmo
demone
demonio
denari
denaro
densa
dense
denso
dente
dentro
denudo
deploro
deponi
depose
depurai
depuro
deridi
derisa
derise
derivo
derma
derrate
derubai
derubo
deserti
deserto
designo
desino
desio
desisto
despota
dessero
desso
destai
destano
destato
destino
desto
destro
desumi
desumo
detergi
detiene
detieni
dettai
dettano
dettavo
detto
deturpo
devasto
deve
deviare
devolvi
devono
devote
devoti
devoto
diaccia
diacono
diadema
dialogo
diamoli
diano
dianzi
diario
diate
dibatta
dicano
dicasi
dicci
dicevi
dicevo
dicono
diedero
diedi
diesis
dieta
diete
dietro
difesa
difesi
difeso
diga
digesto
dighe
digito
dilanio
dilato
dilemma
dilla
dille
dillo
diluii
diluita
diluiti
diluivi
diluivo
dimeno
dimesse
dimezzo
dimmela
dimmelo
dimmi
dinari
diocesi
dipanai
dipano
dipesa
dipese
dipesi
dipeso
dipinte
dipinti
diplomi
dipolo
dirac
dirado
dirai
diramo
dirci
direi
diremo
diresti
direte
dirette
diritta
diritto
dirla
dirle
dirlo
dirmela
dirmi
dirne
dirsi
dirtela
dirti
dirupi
dirupo
dirvene
dirvi
discesa
discesi
disceso
dischi
disloco
disopra
dissero
distai
distavo
distesi
distino
disuso
ditale
ditali
ditele
ditelo
ditemi
dito
ditte
divago
divani
divano
divelto
divida
dividi
diviene
divieto
divino
divisa
diviso
divoro
docce
doccia
docile
docili
dodici
dogane
doglia
dogma
dogmi
dolenti
dolere
dolore
dolori
dolose
dolosi
doloso
dolse
domai
domando
domani
domano
domante
domare
domarlo
domata
domate
domati
domavi
domavo
domerai
domiate
domino
domo
donaci
donai
donano
donante
donare
donarti
donasti
donata
donate
donati
donavi
donavo
donde
donerei
donino
donna
donnola
donnole
dono
doppino
dorata
dorate
dorati
dorato
dormii
dorrei
dorsale
dorsali
dorsi
dorso
dosai
dosammo
dosano
dosante
dosare
dosasti
dosata
dosate
dosati
dosato
dosavi
dosavo
doserei
dosino
doso
dosso
dotai
dotano
dotare
dotasti
dotata
dotate
dotati
dotato
dotavi
dotavo
doterei
dotiamo
dotino
doto
dotta
dotte
doverci
dovere
doveri
dovete
dovevi
dovevo
dovizia
dovrai
dovrei
dovuta
dovute
dovuti
dovuto
draga
draghe
draghi
drago
drammi
drappi
dritta
dritti
dritto
drizzo
droga
dubbia
dubito
ducale
ducati
ducato
duce
duchi
duci
duelli
duello
duna
dune
dunque
duole
duomi
duomo
durai
durammo
durando
durano
durare
durarla
durata
durate
durati
durato
duravi
duravo
duriamo
durino
duro
ebano
ebbene
ebbero
ebbi
ebbri
ebbro
ebete
ebeti
ebraica
ebrea
ebree
ebrei
ebreo
eccesso
eccito
eccoci
eccola
eccole
eccoli
eccolo
eccome
eccomi
eccone
eccoti
eccovi
echi
eclisso
edera
edere
edicola
edile
edite
editi
editti
editto
edotta
edotte
edotti
edotto
educai
educate
educato
educavo
educo
efebo
effetto
effige
egida
egitto
egli
egoismi
egoisti
eguale
eguali
eleate
elegga
elena
elenco
eletta
elette
elevai
elevate
elevavi
elevavo
elevino
elevo
elica
eliche
eliso
ella
elle
elmetto
elmo
elogiai
elogino
elogio
eludi
eludono
elusa
eluse
elusiva
eluso
emacs
emanai
emano
emboli
embolo
emendo
emersa
emerse
emerso
emesso
emigro
emilio
emise
emotivi
emotivo
empia
empio
emtex
emulai
emulare
emulati
emulavi
emulo
enea
energia
enfasi
enigmi
enormi
enrico
ente
enti
entraci
entrai
entrare
entrata
entrate
entravo
enzo
epica
epiche
epici
epico
epoca
epoche
eppure
epurai
epurare
epurata
epurati
epurino
epuro
eque
equina
equo
erano
erasmo
erbacce
erbette
erboso
ercole
erede
eresia
eresie
eressi
eretico
eretta
erette
eretti
eretto
erge
ergo
erigo
ermete
erode
eroe
erogato
eroico
eroismo
erpice
errai
errammo
errando
errano
errare
errata
errate
errati
errato
erravi
erravo
errerai
errerei
erriate
errino
erronee
errore
errori
erta
erte
erto
eruditi
esagero
esalto
esame
esatti
esaurii
esausta
esca
esce
esche
esci
esclamo
escono
esecro
esentai
esento
esequie
esigere
esiguo
esile
esilio
esimere
esimio
esimo
esitano
esiti
esito
esodo
esonero
esordio
esorto
esperia
esperta
esperto
espiai
espiamo
espiata
espiate
espii
espino
espio
esporto
espose
esposte
esposti
esprima
essa
esserci
essere
esseri
essersi
esserti
esservi
esso
estate
esterne
estese
estesi
esteso
estinta
estiva
estive
estivi
estivo
estorte
estrae
estrai
estreme
esulano
esule
esuli
esulto
etere
eterne
eterni
eterno
etica
etico
etna
etnia
etnica
etti
ettore
eulero
europa
europeo
evacuo
eventi
evento
evitai
evitalo
evitano
evitare
evitata
evitate
evitavo
evito
evoluta
evoluto
evviva
fabbro
fabio
faccine
faccio
facente
faceste
facesti
faceto
facevi
facevo
fachiro
facile
faenza
faglia
faine
falchi
falcino
falcio
falda
falde
falle
fallo
false
falso
fama
fame
fammela
fammici
famosa
famose
famoso
fanale
fanali
fanghi
fanne
fanno
fantasia
fantasma
farai
farci
farei
faremmo
faremo
fareste
farete
farine
farla
farle
farli
farlo
farmele
farmici
faro
farsele
farselo
farsi
fartele
fartene
farti
farvene
farvi
fascine
fascini
fascio
fase
fasi
fassa
fastosa
fatale
fatali
fateci
fatela
fatele
fateli
fatelo
fatemi
fatene
fatevi
fato
fattasi
fatteli
fattosi
fatui
fatuo
fauci
fausto
fautori
fava
favola
favole
fazione
fazioni
faziosi
febbre
feccia
fecero
feci
fecondo
fedele
federa
federe
fegati
fegato
felci
feltri
feltro
fendei
fendere
fendeva
fendono
fenice
fenile
feretro
feriale
ferie
ferii
ferirai
ferisci
ferita
ferite
ferivi
ferivo
fermai
fermavo
fermino
fermo
ferrari
ferri
fervidi
fessa
fesse
fessi
fesso
festa
festini
festino
festosa
fetente
fetida
fetide
fetidi
fetido
fetore
fetta
fette
fettine
feudi
feudo
fiaba
fiaccai
fianco
fiasco
fiatava
fiato
fibra
fibre
ficcai
ficcano
ficcare
ficcati
ficcavo
ficco
fiche
fichi
fico
fidai
fidano
fidare
fidarsi
fidarti
fidarvi
fidaste
fidasti
fidata
fidato
fidavi
fidavo
fidiate
fidino
fiducia
fiele
fieni
fieno
fiero
figlie
figure
figuro
filai
filanda
filande
filano
filare
filari
filasti
filata
filate
filavi
filavo
filerai
filetto
filiali
filiamo
filino
filippo
filmare
filtri
filtro
filza
finale
finendo
finezza
fingere
fingi
fingono
finii
finirai
finirei
finirla
finisce
finisti
finiti
finito
finivi
finivo
finora
finse
finsi
finta
finte
finti
finto
fioca
fiochi
fiocina
fioco
fionda
fionde
fiorita
fioriva
fiotto
firenze
firmai
firmo
fiscale
fiscali
fischio
fisco
fisici
fisico
fissai
fissare
fissata
fissavo
fisso
fitta
fitte
fitto
fiumana
fiume
fiutai
fiutano
fiutata
fiutate
fiutato
fiuto
flauti
flauto
flemma
flora
florido
floscia
flotta
flotte
fluente
fluiate
fluii
fluiste
fluisti
fluita
fluite
fluiti
fluito
fluivi
fluivo
flussi
flusso
flutti
flutto
foce
foche
foci
focosa
focose
focosi
focoso
fodero
foga
foggia
foglio
fogna
fogne
folgori
folla
follia
follie
folta
folte
folti
folto
fondai
fondino
fondono
fononi
fontana
fonte
forai
forano
forante
forare
forata
forate
forati
forato
foravi
foravo
forca
forconi
forense
forerai
foresta
foreste
forfora
forgia
foriamo
foriate
forino
formai
formare
formata
formato
formino
formose
formoso
fornii
forno
foro
forzai
forzano
forzato
forzino
forzo
fosca
fosco
fosfato
fossimo
fosso
foste
fosti
fottuto
fradice
fragola
fragore
fragori
franai
franano
franate
franati
franavo
franchi
francia
frano
frasca
frasi
freccia
freddo
fremere
fremo
frenare
freni
freno
fresca
fretta
fritte
fritto
frivoli
frizzi
frodai
frodano
frodino
frodo
fronda
fronde
frugai
frugati
frugato
frugo
frusto
frutto
fucilo
fucina
fugace
fugai
fugammo
fugando
fugano
fugare
fugata
fugate
fugati
fugato
fugavi
fugavo
fuggii
fuggivo
fuggono
fugo
fulcro
fulmine
fulmini
fumammo
fumano
fumante
fumanti
fumare
fumasti
fumata
fumate
fumati
fumavi
fumavo
fumino
fummo
fumo
funeste
funesto
funge
funghi
fungono
fuochi
fuoco
fuori
furbi
furboni
furgone
furgoni
furia
furie
furiose
furono
furore
furori
furto
fusa
fusero
fusioni
fuso
fusto
futile
futili
futura
future
futuri
futuro
gabbie
gabbro
gaetano
gaie
gaio
galea
galera
galere
galileo
galla
galles
gallia
gallina
gallo
galois
galosce
gamba
gamberi
gambi
gambo
gameti
gamma
gancio
garbava
garbo
garza
garze
garzone
garzoni
gasati
gaspare
gatta
gatti
gattoni
gaudio
gazza
gelai
gelando
gelano
gelare
gelaste
gelata
gelate
gelato
gelavi
gelavo
gelerai
geliate
gelida
gelide
gelidi
gelido
gelino
gelone
geloni
gelosia
geloso
gelsi
gemano
gemelle
gemere
gemesse
gemiti
gemito
gemme
gemono
gengiva
gengive
genio
gennaio
gennaro
genova
gente
genuine
genuini
genuino
geranio
gerardo
gerenti
gerghi
gergo
gerla
gerle
germe
germi
gessi
gesso
gesta
gestii
gestivi
gestivo
gestore
gettai
gettare
gettati
gettiti
gettone
ghetto
ghiaia
ghiaie
ghigno
ghiotta
ghiotti
ghisa
giacca
giacomo
gialla
gialle
giammai
giara
giare
giglio
gilet
ginnica
ginnici
ginnico
giocai
giocata
gioghi
giogo
gioiate
gioii
gioirai
gioirei
gioisce
gioiste
gioisti
gioita
gioite
gioiti
gioito
gioivi
gioivo
giorni
giorno
giostra
giotto
giovai
giovare
giovata
giovate
giovati
giovo
girai
girammo
girando
girano
girare
girasti
girata
girate
girato
giravi
girerei
girino
gita
gite
giubilo
giuda
giudei
giugno
giulio
giunchi
giunco
giungla
giungle
giunone
giunsi
giunti
giunto
giurai
giuralo
giurare
giurata
giurate
giuravo
giurie
giuro
giuste
giusto
gleba
gliela
gliele
glieli
glielo
gliene
globi
globo
glorie
gluoni
gnocchi
goal
gobba
gobbe
gobbi
gobbo
gocce
goccia
godano
godere
goderne
godervi
godeva
goditi
godono
godrei
godute
goduti
goduto
goffe
goffi
goffo
gola
gole
golfi
golfo
golia
golosa
golose
golosi
goloso
golpe
gomiti
gomma
gomme
gondola
gonfiai
gonna
gorghi
gota
gote
gotico
gotta
governo
grado
graduo
grama
grammi
grammo
granaio
grappa
grappe
graspi
grassi
grata
grate
gratis
grato
grattai
gratto
gravai
gravano
gravose
gravoso
grazino
greca
greche
grecia
greco
gregge
grembo
gremii
gremivo
gretta
gretto
greve
gridai
gridano
gridare
gridate
gridavo
grido
grilli
grillo
grinza
grinze
groppa
groppe
grossa
grosse
grotta
grotte
grucce
gruccia
gruppi
gruppo
guadai
guadano
guadare
guadato
guadino
guado
guaio
guaiva
guance
guardo
guarii
guarito
guarivi
guasto
guazzo
guelfa
guelfe
guelfi
guelfo
guerra
gufi
gufo
guidai
guidata
guidate
guidavo
guido
guisa
guizzai
guizzo
guscio
gustai
gustati
gustavi
gustosa
hacker
hanno
hegel
hurd
iacopo
iattura
ibrida
ibridi
ibrido
icilio
iddio
ideale
ideando
ideare
idee
idem
idioma
idiomi
idiota
idiote
idoli
idolo
idonea
idonee
idonei
idoneo
idranti
iena
iene
ieri
igiene
ignara
ignare
ignari
ignaro
ignea
ignee
ignoro
ignota
ignote
ignoti
ignoto
ignuda
ignude
ignudi
ilari
illesa
illese
illesi
illeso
illudi
illusa
illuse
imbocco
imbuti
imbuto
imitai
imitate
imitavi
imitino
imito
immane
immani
immenso
immessa
immota
immoti
immoto
immune
immuni
imola
imparo
impatti
impatto
impedii
impegno
impero
impeti
impeto
implode
imploro
imponga
impose
imposte
impugno
impura
impuri
impuro
imputo
inamido
incalzo
incanto
incarto
incaute
incauto
incensi
incerai
incero
incerto
incetto
incisa
incise
incito
inclusa
incluse
incollo
incolpo
incolta
incolte
incorra
incrino
incubi
incubo
indago
indarno
indegni
indiana
indicai
indice
indico
indosso
indotta
indotto
induca
indugio
indurci
indurmi
inebrio
inedite
inedito
inerme
inermi
inerte
inerti
inetta
inette
inetti
inetto
inezia
inezie
infamai
infamo
infarto
infatti
inferma
infido
infilo
infima
infimi
infimo
infine
informo
infusa
infuse
infuso
ingegni
inglesi
ingoio
ingorde
ingrano
iniqua
inique
iniquo
inizino
inizio
innata
innesca
innesto
inni
innocua
innocuo
inoltro
inondo
inox
insania
insilai
insilo
insito
insulso
intasca
intaso
integro
intenso
interno
intero
intesa
intesi
inteso
intesto
intimai
intinti
intinto
intrusa
intruso
intuire
inumana
inumani
inumano
inutile
invalsa
invano
invece
inversa
inverso
inverta
investe
inviai
inviami
inviano
inviare
inviavo
invidie
inviino
invio
invisa
inviso
invitai
invito
invitta
invoco
inzuppo
iodio
ione
iosa
ipotesi
ippica
ippiche
irato
iride
ironia
ironico
ironie
irradia
irrigai
irrigo
irrisa
irrisi
irrito
irruppe
irsute
irte
irti
isolai
isolare
isolata
isolati
isolavi
isolavo
isolo
ispidi
ispiri
istante
istanti
istanze
istigai
istigo
istmi
istmo
istrice
italica
iterai
iterano
iterate
iterato
itero
jacopo
labbra
labbro
labili
lacca
lacche
laccio
lacero
lacuna
lacune
ladra
ladre
ladri
ladroni
laghi
lagni
lagno
lago
lagrime
laguna
lagune
laiche
laici
laico
laida
laide
laidi
laido
lama
lambii
lambite
lambiti
lambito
lamiera
lamina
lamine
lampade
lamponi
lana
lancino
lancio
landa
lande
lane
lanosa
lanose
lanosi
lanoso
laonde
lapidi
lapis
lapsus
lardo
largo
larva
larve
lascio
laser
lastra
lastre
latente
latex
latina
latine
latino
latore
latrai
latrano
latrate
latrato
latrino
laura
lauree
lauro
laute
lauto
lavabi
lavabo
lavai
lavano
lavare
lavarli
lavata
lavate
lavati
lavato
lavavi
lavavo
laverai
lavino
lavorio
lavoro
lazzi
leale
leali
lebbra
leccai
leccare
leccata
leccate
leccati
leccato
leccio
lecita
lecite
leciti
lecito
ledere
ledi
ledo
legai
legale
legame
legami
legammo
legano
legante
legare
legaste
legasti
legata
legati
legavi
legavo
leggero
leggila
leggio
leggono
leghino
legname
legnami
legni
legno
lego
legume
legumi
lembi
lembo
lento
lenza
lenze
leoni
lepre
lepri
lerce
lercia
lercio
lesa
lese
leso
lessai
lessano
lessata
lesso
lesta
leste
lesti
lesto
letale
letali
letame
letami
letargo
letizie
letta
lettere
lettiga
lettini
levai
levami
levano
levante
levare
levasti
levati
levavi
levavo
levigo
levino
levo
lezione
lezzo
liana
libano
libbra
libelli
liberai
libero
libia
librai
libri
libro
licaone
licei
licenze
liceo
lidi
lido
liete
lieto
ligi
ligneo
liguri
lilla
limano
lime
limito
limone
limoni
limpida
limpidi
limpido
linceo
linda
linde
lindi
lindo
lineai
lineate
lineati
lineavi
lineo
linfa
lini
linus
linux
liquore
lira
lire
lirica
lirici
lirico
lisbona
lisca
lisce
lische
liscio
lisp
listai
listano
listate
listini
listo
lite
litigai
litigo
litri
litro
liuti
liuto
livello
livida
livide
lividi
livido
livore
livorno
livrea
livree
lobbia
locale
locanda
locare
locati
lodai
lodano
lodare
lodata
lodati
lodato
lodavi
lodavo
lodino
lodo
logiche
logici
logico
loglio
logorio
logoro
londra
lontane
lontra
lontre
lorde
lordi
lordo
lorenzo
loreto
loro
losca
losche
loschi
losco
lottai
lottare
lottate
lottino
lotto
lucano
lucca
luccico
lucente
lucenti
lucido
lucrosa
luglio
luigi
luisa
lumaca
lungo
luoghi
lupini
lupo
luridi
lussi
lusso
lustre
lustri
lutti
lutto
macchie
macero
macine
madama
madia
madie
madonna
madrid
maestro
mafia
magagne
magari
maghi
magia
magica
magici
magico
magione
maglia
magma
magmi
magno
magonza
magra
magre
magri
magro
maiale
maiali
mais
malanni
malata
malate
malato
malizia
malora
malore
malori
malsana
malsano
malta
mamba
mamma
mammona
manata
manate
mancai
mancato
mancavi
mancavo
mance
mancine
mancini
mancino
manco
mandai
mandami
mandare
mandavo
mangino
mania
manica
manici
maniere
manina
manine
manovre
mantice
manuale
manuali
manzi
manzoni
mappe
marcai
marcano
marcavi
marcavo
marcia
marcire
marco
marea
maree
margini
maria
marino
mariolo
marito
marmi
marta
martora
marzo
masi
massaie
massime
massoni
mastici
mastico
mastri
mastro
matasse
materne
materni
materno
matilde
matita
matite
matrice
mattana
mattate
matteo
mattini
mattino
maturai
maturo
mauro
mazza
mazzi
mazzo
mediana
mediani
medico
medito
medusa
meduse
meglio
meiosi
melma
melme
membri
membro
memore
menai
menando
menano
menare
menaste
menasti
menata
menati
menato
menavi
menavo
menerei
menino
mensa
mense
mensile
mensola
mensole
mentale
mentali
mentii
mentiti
mentre
menu
mercede
merenda
merende
merli
mero
mesceva
mese
mesi
messale
messia
messina
mestai
mestano
mestati
mestato
mestolo
metano
metrico
mettevi
mettici
mettila
mezzani
mezzi
mica
micce
miccia
michele
microbi
midolli
miei
miele
mietei
mietete
mietevo
mietuta
mietuti
mignoli
milano
milioni
milza
milze
mimica
minata
miniati
miniera
miniere
minime
minimo
minute
minuto
minuzia
minuzie
miope
miopi
mirai
mirano
mirare
mirata
mirate
mirati
mirato
miravi
miravo
mirini
mirino
miro
mirto
miseria
miserie
misero
misi
missiva
mista
mistero
mistici
mistico
misto
misurai
misuro
mitica
mitico
mitigo
mitosi
mobile
mobilie
moda
modena
moderai
moderna
moderne
moderno
modero
modica
modici
modico
modo
moduli
modulo
mogano
moggio
moglie
moine
molai
molammo
molando
molano
molare
molari
molata
molate
molati
molato
molavi
molavo
molerai
molerei
molesti
moliate
molino
molla
mollica
molo
molta
molto
monaca
monache
monaci
monaco
monade
monatto
monca
monchi
monco
mondai
mondano
mondata
mondato
mondavo
mondo
monella
monete
montai
montato
montino
montone
monza
morale
morbida
morbose
morboso
morente
morenti
morfina
morgex
moria
morii
morirai
morosa
morsa
morso
mortale
mortali
morte
mosaici
mosaico
mosca
moschea
mosci
mossa
mosso
mosto
mostro
mota
motivi
motivo
motore
motosa
motti
motto
movente
mozzai
mozzate
mozzati
mozzato
mozzino
mozzo
mucca
mucche
mucchio
mucidi
muffa
muffe
muggii
muggito
mugolo
mule
mulini
mulino
mulo
multa
multe
mummia
mummie
munire
munita
muniti
munito
muoia
muore
muori
muovano
muoviti
muovono
murata
murati
muro
murphy
musa
musei
museo
muso
mutai
mutano
mutante
mutare
mutarla
mutaste
mutata
mutate
mutati
mutato
mutavi
mutavo
mutino
muto
mutria
mutui
nacqui
nafta
nafte
nana
nane
nani
nano
napoli
nappa
narice
narici
narrai
narrano
narrate
narro
nasale
nasali
nasino
naso
nastri
nastro
natale
natali
nate
natica
natiche
natio
native
nativi
nativo
nato
nature
nauseai
nauseo
navale
navali
navetta
navigo
nebbia
nebbie
nefasti
negai
negano
negare
negarla
negaste
negata
negate
negato
negavi
negavo
negra
negre
negri
negro
nella
nelle
nello
nembi
nembo
nemica
nemiche
nemici
nemico
neonata
nepero
neppure
nera
nere
nerone
nervi
nestore
nette
netto
neurali
neutre
neutri
nevaio
neve
nevicai
nevico
nibbio
nicchia
nicola
nidi
nido
ninfa
ninfe
nipote
nipoti
nizza
nobile
nocca
nociva
nocive
nocivi
nocivo
nodi
nodo
noia
noie
noiose
noiosi
noioso
noli
nomade
nomadi
nome
nomino
nona
none
noni
nonna
nonne
nonni
nonno
normale
norme
nostre
nostri
notaio
notammo
notano
notare
notarsi
notaste
notata
notate
notati
notato
notavi
notavo
noterai
notiate
notino
notizia
notte
notti
novella
novelle
novizio
nozze
nube
nubile
nubili
nuca
nuche
nuclei
nucleo
nuda
nude
nudi
nudo
nulla
nulle
nullo
nunzio
nuocere
nuora
nuore
nuotai
nuotano
nuotati
nuoto
nuove
nuovi
nuovo
nutrii
nutrita
nutrito
nutrivi
nutrivo
nutrono
nuziali
oasi
obbedii
oberai
oberate
oberavi
oberino
obero
obliai
obliamo
obliare
obliata
obliato
obliavi
oblii
oblio
obliqui
obliquo
occludi
occludo
occlusa
occluse
occorra
occorsi
occulto
occupo
oceano
oche
oculati
odiai
odiammo
odiamo
odiano
odiare
odiata
odiate
odiati
odiato
odiavi
odiavo
odino
odiosa
odiose
odioso
odono
odorai
odorano
odorare
odorata
odorato
odoravi
odoravo
odorose
offersi
offesa
offese
offesi
offeso
offrano
offrite
oggi
ogni
ognora
ognuna
ognuno
olanda
oleico
oleina
olezzo
oliai
oliammo
oliamo
oliano
oliare
oliata
oliate
oliati
oliato
oliavi
oliavo
olierai
olierei
olino
olio
oliva
oliver
olivi
olivo
olmi
olmo
omacci
ombra
omerico
omero
omessa
omesse
omessi
omesso
omino
omonima
omonimo
once
oncia
onda
ondosa
ondose
ondosi
ondoso
ondulo
onere
oneri
onerosa
onerosi
oneste
onesto
onice
onorai
onorano
onoravo
onore
onoro
onta
opaca
opache
opachi
opaco
operavi
operose
opinai
opinato
opinavo
opino
oppio
opporsi
opposte
opprima
oppure
optai
optano
optare
optaste
optata
optate
optati
optato
optavi
optavo
opterai
optiate
optino
opto
opzione
opzioni
orafa
orafe
orafi
orafo
orale
orali
oramai
oraria
orario
orbene
orbita
orbite
orco
orda
ordiamo
ordii
ordino
ordiste
ordita
ordite
orditi
ordito
ordivi
ordivo
oretta
orfana
orfane
orfani
orfano
orfeo
organo
oriano
origlio
oriolo
orlai
orlammo
orlando
orlano
orlare
orlata
orlate
orlati
orlato
orlavi
orlavo
orliamo
orlino
orlo
ormai
ornai
ornammo
ornando
ornano
ornare
ornata
ornate
ornati
ornavi
ornavo
ornerai
ornerei
orniate
ornino
orno
orrende
orrida
orride
orridi
orrido
orrore
orrori
orsa
orse
orsi
orso
ortica
osai
osammo
osando
osano
osante
osare
osarono
osaste
osasti
osata
osate
osati
osato
osavamo
osavi
osavo
oscena
oscene
osceni
osceno
oscuro
oserai
oserei
osiamo
osiate
osino
ospitai
ospito
ospizio
ossia
osso
ossuto
ostare
ostica
ostile
ostili
otre
otri
ottanta
ottava
ottavo
ottenga
ottica
ottici
ottico
ottime
ottimo
ottone
otturai
otturo
ottusa
ottuse
ottusi
ottuso
ovale
ovali
ovest
ovidio
ovile
ovili
ovini
ovvero
ovviai
ovviamo
ovviano
ovviate
ovviavi
ovviavo
ovviino
ovvio
oziai
oziammo
oziamo
oziano
oziante
oziare
oziaste
oziasti
oziata
oziate
oziati
oziato
oziavi
oziavo
ozino
oziose
oziosi
ozioso
pacati
pacato
pacca
pacchi
pacco
pace
paesi
paffuta
paffuto
pagai
pagammo
pagana
pagane
pagani
pagano
pagante
pagare
pagarlo
pagarsi
pagarti
pagasti
pagata
pagati
pagato
pagavi
pagavo
pagelle
paggio
pagina
pagine
paglie
pago
paiano
paiolo
paiono
palaia
palati
palato
palchi
paleso
paletti
palio
palla
palle
pallida
pallide
pallore
pallosa
palma
palme
palmo
palpai
palpate
palpavi
palpavo
palpino
palpo
palude
paludi
panca
pance
pancia
panfili
panico
panini
panino
panna
panni
paola
paolo
papato
papera
papere
paperi
papero
papiro
pappe
parai
parano
parante
parare
pararsi
parata
parate
parati
parato
paravi
paravo
parca
parchi
parco
parerei
pareri
parete
pareti
pariate
paride
parino
parlai
parlane
parlate
parlavo
parlo
parma
parodia
parodie
parsa
parso
partii
partite
pascal
pasceva
pasqua
pasque
passai
passare
passata
passavi
passavo
passeri
passo
pasta
pastore
pastori
pastura
patata
patate
patenti
paterne
paterni
patito
pativa
patrie
patta
pattino
patto
paura
paure
paurosa
pausa
pause
pavento
pavia
pavido
pavoni
pazzia
pazzie
pazzo
peccai
peccavo
pecco
pece
pecora
pedale
pedali
pedalo
pedana
pedane
pedata
pedate
pedice
pedino
pedone
pedoni
pegni
pegno
pelai
pelammo
pelando
pelano
pelare
pelaste
pelata
pelate
pelati
pelato
pelavi
pelavo
pelerei
pelino
pellami
pelosa
pelose
pelosi
peloso
peltro
penai
penale
penammo
penano
penare
penata
penate
penati
penato
penavi
penavo
pendano
pendei
pendevo
pendio
penduti
penino
penosa
penose
penosi
penoso
pensai
pensare
pensata
pensavo
pensoso
pentire
pentite
pentium
pentiva
penuria
perda
perdio
perdite
perdono
perenni
perire
perita
perite
periti
perito
periva
perizie
perla
perle
permuta
persa
persici
pertica
pervade
pesai
pesano
pesante
pesare
pesata
pesate
pesati
pesato
pesavi
pesavo
pescai
pescavo
pesco
peserai
pesiamo
pesino
peso
pestai
pestano
pestare
pesto
petali
petalo
pettine
pezza
pezzi
pezzo
piacete
piacque
piaga
piaghe
pialla
pialle
piana
pianeti
pianga
piangi
pianse
piansi
piantai
pianto
pianure
piastre
piazza
piccava
piccolo
piccone
piede
piegalo
piegare
piegata
piegato
piero
pietosi
pietoso
pietra
pietre
pieve
pigiare
pigione
piglio
pigmei
pignola
pignolo
pignoro
pigolo
pigre
pigro
pile
pillola
pillole
pilone
piloni
piloti
pineta
pinete
pingue
pini
pinna
pinne
pinta
pinte
pinza
piogge
pioli
piombo
pioppi
pioppo
piova
piovra
piovve
pipa
pipe
pirati
pirenei
pisani
pisano
piscine
pista
piste
pitone
pitoni
piuma
piume
pizza
pizze
pizzo
placati
placco
placide
plagio
plance
planck
plasmo
platea
platee
platone
plauso
plauto
plebee
plebei
plebeo
plichi
plico
plinio
plutone
poca
poco
poderi
podio
poema
poemi
poesia
poesie
poetico
poggio
polare
polari
polipi
polipo
polizze
pollice
pollo
polsino
polso
pomata
pomate
pomice
pomici
pompai
pompare
pompata
pompei
pomposi
pondero
poneva
poniamo
pontili
poppe
porca
porcili
porgli
porgono
pori
porla
porlo
porosa
porose
porosi
poroso
porrai
porri
porro
porse
porsi
portai
portale
portalo
portare
portavi
portico
portino
portoni
porvi
posai
posano
posare
posasti
posata
posate
posati
posavi
posavo
poscia
posdato
poserei
posero
posiate
posino
poso
possano
possono
postale
postalo
postina
postino
potai
potando
potano
potante
potare
potata
potate
potati
potato
potavi
potavo
potei
potente
potenza
potenze
poterci
poterei
poteri
poterle
potersi
potervi
potete
potevi
potevo
potino
poto
potrai
potrei
potuta
potute
potuti
potuto
povero
pozione
pozza
pozze
pozzi
pozzo
pranzai
pranzo
pratico
prato
preciso
precoce
predai
predare
predate
predite
pregai
pregano
pregati
pregio
pregna
pregne
pregni
pregno
prego
premei
premevi
premiai
premino
premio
premono
premute
prepose
preso
presso
presto
pretesa
preteso
preti
pretta
pretto
prevali
preveda
previa
previo
prezzi
prezzo
pria
prillo
primato
priore
priori
prisma
prive
privo
probi
proda
proemio
profuga
prologo
pronto
propalo
prora
prostro
protese
proteso
protone
provai
provare
provata
provavi
provavo
provino
prozie
prugna
prugne
pruni
psiche
psicosi
pube
pudichi
pudico
pudore
pudori
puerili
pugile
pugili
puglia
pugni
pugno
pula
pulce
pulcini
pulcino
puledri
pulente
puliamo
pulii
pulisci
pulita
pulite
pulivi
pulivo
pulpito
pulsai
pulsano
pulsata
pulsavi
pulsavo
pulso
pungoli
pungolo
pungono
punire
punirli
punita
punite
puniti
punse
punsi
puntai
puntali
puntavo
punto
puntura
puoi
pupilla
purgai
purgano
purgo
puro
putridi
puzzai
puzzare
puzzavi
quadro
quaglie
quale
quando
quanta
quante
quark
quarto
quarzi
quarzo
quasi
quatti
quegli
quei
quella
quelle
quelli
quello
querce
querelo
questa
queste
quiete
quieti
quieto
quinci
quinto
quivi
quiz
quotai
quotami
quotano
quotata
quotate
quotati
quotato
quotino
quoto
rabbia
rabbie
rada
radenti
radiai
radiano
radiare
radiata
radiavo
radice
radici
radino
radioso
rado
raduno
radura
radure
raffino
ragazzo
raggio
ragni
ragno
rame
raminga
rampa
rampe
rampone
rana
rancio
rane
ranghi
rango
raniero
rantoli
rantolo
rapace
rapaci
rapai
rapando
rapano
rapante
rapare
rapasti
rapata
rapate
rapati
rapato
rapavi
rapavo
rapente
rapide
rapidi
rapido
rapii
rapina
rapino
rapita
rapite
rapiti
rapivi
rapivo
rapo
rare
rari
raro
rasai
rasammo
rasano
rasante
rasare
rasata
rasate
rasati
rasato
rasavi
rasavo
raschio
raserai
rasino
rasoio
raspai
raspate
raspato
raspavi
raspo
rata
rateo
ratti
ratto
rauca
rauche
rauchi
rauco
rayon
razioni
razza
razze
reale
reati
reato
rebus
recai
recano
recare
recasti
recata
recate
recati
recato
recavi
recavo
recessi
recinta
recinte
recinto
recisa
recise
recisi
reciso
recito
record
redigi
redigo
redine
redini
reduce
reduci
referti
regalai
regalo
regata
regate
regime
regimi
regina
regine
regioni
regnai
regnano
regnati
regnino
regno
regolai
regolo
relegai
relego
relitto
remai
remammo
remando
remano
remare
remasti
remata
remate
remati
remavi
remavo
remerai
remerei
remiate
remino
remota
remote
remoti
remoto
renato
rendita
rene
reni
renna
renne
renzo
reparto
replico
reputo
resa
resero
resine
reso
ressa
resse
ressi
restai
restano
restato
restavi
restie
restii
restino
restio
resto
retata
retate
rete
rette
rettore
revoco
rialzo
rianimo
riavevi
riavuti
riavuto
ribalto
ribelle
ribes
ricada
ricaddi
ricadi
ricamo
ricavai
ricavo
ricchi
ricco
ricino
ricorra
ricorsa
ricotta
ricotte
ricurva
ridare
ridete
ridevo
ridiamo
ridici
ridono
ridotta
ridotto
riebbi
riempii
rientro
riesce
riesci
rievoco
riformo
righe
rigida
rigide
rigidi
rigido
rigore
rigori
rilego
rilevo
rilievi
rimando
rimasi
rimedio
rimetti
rimiro
rimisi
rimonto
rimorsi
rimosse
rimuovo
rinfusa
rinvio
rione
rioni
ripagai
ripago
riparai
riparo
ripiani
ripida
ripide
ripidi
ripido
riposai
riposo
ripresa
risacca
risaia
risalto
risanai
risano
risata
risate
risero
risma
risme
risolse
risolsi
risolti
risolto
risolva
risono
rissa
risse
ritegni
ritegno
ritenga
ritenne
ritiene
ritieni
ritirai
ritiro
ritmica
ritmo
ritorno
ritrose
ritta
ritte
ritti
ritto
riunii
riunite
riunito
rivali
rivelai
rivelo
rivide
rividi
rivisti
roba
rocce
roccia
roghi
rognoni
rogo
rollio
rombai
rombano
rombati
rombino
rombo
rompa
rompere
rompeva
ronda
ronzai
ronzare
ronzo
rosee
rosolai
rosolo
rospi
rospo
rossa
rossi
rotaia
rotaie
rotolai
rotolo
rotore
rottame
rottami
rotte
rotti
rotto
rotture
routine
rovere
rovinai
rovino
rovisto
rovo
rozza
rozze
rozzi
rozzo
rubai
rubando
rubano
rubare
rubata
rubate
rubati
rubato
rubavi
rubavo
rubini
rubino
rubo
rubrica
ruga
ruggine
rughe
rullai
rullati
rullato
rullavi
rullii
rullio
rullo
ruminai
rumino
rumore
rumori
ruoli
ruolo
ruota
ruote
rupe
rupi
ruppe
rurale
rurali
russai
russano
russo
rustici
ruvida
ruvide
ruvidi
ruvido
ruzzolo
sabato
sabbia
sabbie
sacchi
saccone
sacconi
saffo
sagace
saggiai
saggina
saggio
sahara
saio
salace
salai
salame
salami
salammo
salano
salante
salare
salario
salasso
salasti
salata
salate
salati
salato
salavi
salavo
saldai
saldate
saldato
saldavi
saldo
salga
saliate
salice
saliere
salino
salirvi
salita
salite
saliti
salito
salivo
salme
salotto
salpai
salpano
salpate
salpati
salpavi
salpavo
salpo
salsa
salso
saltai
saltano
saltato
saltavo
salto
salubre
salubri
salutai
saluto
salvai
salvano
salvati
salvavi
salvo
sanai
sanando
sanano
sanante
sanare
sanata
sanate
sanati
sanavi
sanavo
sangue
sanino
sanno
sano
sansa
santino
santo
saperci
sapere
saperle
saperli
saperlo
sapermi
sapersi
sapervi
sapeste
sapete
sapevi
sapevo
sapore
sappilo
saprai
saprei
saputa
sapute
saputi
sarai
saranno
sardine
sarei
saremo
sareste
sarete
sarta
sarte
sarti
sassate
sassi
satira
satire
sature
saturi
saturno
savia
savie
savio
savoia
savona
saziai
saziamo
saziano
saziate
saziato
saziavo
sazino
sazio
sbadati
sbadato
sballo
sbalzo
sbando
sbarcai
sbarco
sbarro
sbavai
sbavano
sbavata
sbavate
sbavavi
sbavavo
sbavino
sbavo
sbendo
sbieco
sbirro
sbocchi
sbornia
sbrano
sbrigai
sbrigo
sbucare
sbuffai
sbuffo
scaccio
scada
scadere
scado
scadute
scaduti
scafi
scafo
scalai
scalano
scalavi
scalavo
scaldo
scaleo
scalo
scaltri
scalze
scalzi
scalzo
scambio
scampai
scanni
scanno
scanso
scapito
scapola
scapole
scappo
scarico
scarna
scarne
scarno
scarso
scasso
scatto
scavai
scavano
scavate
scavato
scavavi
scavavo
scavo
scelga
scelsi
scelta
scelte
scelti
scelto
scemato
scemi
scemo
scenda
scesa
scesi
sceso
scettro
scevro
schede
schegge
schemi
schermo
scherno
schiavi
schiavo
schiene
schifi
schivo
scialbi
sciame
scienze
scilla
sciolse
sciolta
sciolte
sciolti
sciolto
scipito
sciupo
scocci
scocco
scoglio
scolari
scoli
scollo
scontai
sconto
scopi
scopo
scoppio
scorcio
scordai
scordo
scorga
scorgi
scorsa
scorsi
scortai
scorto
scorza
scorze
scossa
scosse
scossi
scosso
scosto
scottai
scotto
scovai
scovati
scovato
scovavi
scovino
scovo
scozzai
scozzo
scremo
scribi
scrigni
scrigno
scritta
scrofa
scrofe
scrollo
scruto
scudo
scuola
scuole
scura
scure
scuro
scusai
scusare
scusavi
scusavo
scuso
sdoppio
sdraie
sdraio
sebbene
secchie
secco
secoli
secolo
sedai
sedani
sedano
sedante
sedare
sedaste
sedata
sedate
sedato
sedavi
sedavo
sederci
sedersi
sederti
sedete
sedevi
sedevo
sediamo
sedici
sedie
sedile
sedili
sedino
sedotto
seduta
sedute
seduti
segale
segare
segata
seggo
segnai
segnare
segnata
segnavo
segnino
segno
sego
seguaci
seguii
seguine
selcino
selcio
selle
selve
sembro
semenza
semino
semmai
sempre
senapa
senape
senati
seneca
senegal
senile
senili
senno
sensati
sensato
sensori
sentano
sentii
sentile
sentimi
sentina
sentiti
sentivo
senza
separai
separo
sepolte
sepolti
seppero
seppia
seppie
seppure
sequela
sequele
serata
serate
serbai
serbavi
serbo
serene
sereno
sergio
seriale
seriali
serie
serio
sermoni
serpi
serrai
serrare
serrato
serro
serto
servano
servigi
servii
servile
serviti
servivo
sesso
sesta
sesto
seteria
seterie
setola
setole
settici
severe
severo
seziono
sfamai
sfamano
sfamata
sfamato
sfamavi
sfamo
sfarzi
sfatta
sfatte
sfatti
sfatto
sfera
sfere
sfibro
sfidai
sfidare
sfidata
sfidate
sfidino
sfido
sfilai
sfilare
sfilate
sfilati
sfilato
sfilavi
sfilo
sfilza
sfinge
sfingi
sfinii
sfinita
sfinivi
sfioro
sfitta
sfitte
sfitti
sfitto
sfocio
sfogai
sfogare
sfogavi
sfogo
sfondo
sforzai
sforzo
sfrego
sfrondo
sgarbo
sgelo
sgerri
sghemba
sgherri
sgml
sgobbai
sgombre
sgombri
sgomino
sgorgai
sgorgo
sgozzo
sgrasso
sgravai
sgravo
sgrido
sguardi
sguardo
siamo
siano
siate
sibilo
sicilie
sicuri
sicuro
sidro
siede
siena
siepe
siepi
sieri
siero
siesta
sieste
siete
sifone
sifoni
sigari
sigaro
sigla
sigle
silenti
sillabe
siluro
simile
simona
simone
simulo
sindaco
singole
sintomi
sintomo
sinuosa
sinuose
sinuoso
sirena
sirene
sisifo
sisma
sismico
siti
sito
situai
situo
sleale
sleali
slegai
slegano
slegare
slegata
slegato
slegavi
slego
slento
slip
slittai
slitto
slogai
slogati
slogavo
slogo
smacco
smalto
smanie
smentii
smessa
smesse
smessi
smesso
smetta
smezzo
smilza
smilze
smilzi
smilzo
smise
smisi
smodata
smodato
smonto
smorta
smorte
smorti
smorto
smorzo
smossa
smosse
smossi
smosso
smunta
smunti
smunto
smuova
smuovi
smusso
snodai
snodavo
snodino
snodo
sobria
sobrie
sobrio
sociale
sode
sodico
sodio
sodo
soffice
soffrii
soffuse
soglia
soglie
sognai
sognano
sognate
sognavi
sogno
soia
solaio
solcai
solcata
solcate
solcati
solcato
solcavi
solco
solevi
solfato
solide
solido
solite
soliti
solito
sollevo
solo
somara
somare
somari
somaro
sommai
sommare
sommata
sommavo
sonata
sonate
sondai
sondano
sondati
sondato
sondavi
sondino
sondo
sonerie
sonora
sonore
sonori
sonoro
sopendo
sopii
sopirai
sopirei
sopirla
sopisti
sopita
sopite
sopiti
sopito
sopivi
sopivo
sopore
soprusi
sorbire
sorcio
sorda
sorde
sordida
sordina
sorgiva
soriane
soriano
sorriso
sorsate
sorsero
sorsi
sorso
sorta
sortita
sortite
sorto
sosia
sostai
sostano
sostare
sostino
sosto
sottana
sottile
sozza
sozze
sozzi
sozzo
sozzure
spaccai
spade
spadoni
spaghi
spagna
spago
spalmo
spanda
spanna
spanne
spanse
sparai
sparato
sparii
sparino
sparivi
sparivo
sparlai
sparlo
sparo
sparsa
sparsi
sparso
spasmi
spassi
spazino
specie
spedii
spedito
spegni
spello
spenga
spengi
spense
spenta
spente
spenti
spento
sperai
sperano
sperato
speravi
speravo
sperone
spersi
spesai
spesano
spesati
spesavi
spesavo
speso
spessa
spesse
spettai
spetto
spettro
spezie
spezzai
spiando
spiano
spiare
spiava
spiazzi
spicce
spicco
spiedi
spiedo
spiego
spigoli
spigolo
spii
spinale
spinati
spinosa
spinosi
spinta
spinte
spinti
spione
spiova
spirai
spirare
spirata
spiro
spola
sponda
sponde
spopolo
sporco
sporga
sporgi
sporse
sporta
sporto
sposai
sposare
sposato
spose
sposo
sposto
sprango
spray
sprazzo
spregio
sprezzo
spronai
sprono
spugna
spugne
spumosi
spunto
sputai
sputata
sputate
sputati
sputavi
sputo
squadre
squalo
squama
squame
squillo
stacco
stadera
stadio
staffa
staia
staio
stalla
stalle
stammi
stampo
stanai
stanavo
stanco
stanno
stante
stanti
stanze
stappo
starai
starci
starei
starle
starmi
starne
starsi
starti
starvi
stasi
statemi
statevi
statici
statico
stato
stature
stavamo
stavano
stavi
stazzai
stazzo
stecche
stecco
steli
stelle
stelo
stemma
stemmi
steppa
steppe
sterco
sterile
sterni
sterno
sterpi
sterpo
sterzo
stesa
stesi
steso
stessa
stesso
stesure
stiamo
stiano
stiate
stigma
stillo
stimai
stimate
stimavi
stimolo
stinchi
stinco
stingi
stinta
stinte
stinti
stinto
stipata
stirai
stirare
stirino
stiro
stirpe
stirpi
stitica
stivai
stivano
stivare
stivata
stivavi
stivavo
stivino
stivo
stizza
stoffa
stoffe
stoica
stoico
stokes
stola
stole
stolta
stolto
stonai
stonato
stonavo
stonino
stono
stoppa
stoppe
stoppie
storci
storco
storia
storico
stormii
stormo
stornai
storno
storpio
storta
storte
storti
storto
stracca
stracco
strage
stragi
strali
strambo
strame
strano
strato
stregue
stremo
stress
strofa
stuccai
stucco
studiai
stufato
stufe
stufi
stufo
stuoia
stuolo
stupii
stupita
stupito
stupivo
stupore
stupori
stupri
sturai
sturato
sturavi
sturavo
sturo
subdolo
subire
subisso
subite
subito
sublimi
succose
succoso
sudai
sudando
sudano
sudante
sudare
sudata
sudate
sudati
sudato
sudavi
sudavo
suddite
suddito
suderai
sudicia
sudicie
sudino
sudore
sudori
suggano
sughi
sugli
sugna
sugo
suini
suino
sulla
sulle
sunto
suocere
suocero
suoi
suola
suole
suoli
suolo
suonai
suonano
suonavi
suono
suora
suore
superai
supero
supina
supine
supini
supino
supreme
suscito
susina
susine
susini
sutura
suture
svagai
svagati
svagavi
svagavo
svago
svanii
svanita
svanite
sveglio
svelare
svelta
svelti
svelto
svenire
svenite
svenivo
svenni
svenuti
svernai
sverno
svezia
sviai
sviammo
sviamo
sviano
sviare
sviaste
sviasti
sviata
sviate
sviati
sviato
sviavi
sviavo
sviene
svieni
svierai
svino
svio
svisai
svisate
svisato
sviso
svista
sviste
svitai
svitare
svitavo
svito
svolse
svolto
svuotai
svuoto
taccino
tacco
tacendo
tacere
tacerne
tacersi
tacete
tacevo
tacite
taciti
tacito
taciute
tacqui
tafani
tafano
taffete
tagliai
taglino
talamo
talari
talco
tallone
talora
talpa
talpe
taluna
talune
taluni
taluno
tamburo
tana
tandem
tane
tanfo
tanga
tantalo
tante
tanto
tapini
tappai
tappo
tarata
tarate
tarati
tarato
tardai
tardano
tardare
tardati
tardavi
tardavo
tardive
tardivi
tardo
tare
targa
targhe
tariffe
tarlata
tarlati
tarpai
tarpate
tarpino
tarpo
tartina
tartine
tartufi
tasche
tassai
tassare
tassavi
tasso
tastai
tastate
tastati
tastavi
tattica
tatto
tatuai
tatuano
tatuo
taverne
tavola
tazza
tazze
teatro
tecnici
tecnico
tedesco
tediai
tediamo
tediavi
tedino
tediosa
tediosi
tegame
tegami
tegola
tegole
teiera
teiere
telaio
teli
telo
temano
temei
temerai
temerli
temerti
temeste
temesti
temete
temetti
temevi
temevo
temiamo
temiate
temono
tempia
tempie
tempio
tempro
temuta
temute
temuti
temuto
tenace
tendina
tendine
tendone
tendono
tenerci
teneri
tenerle
tenerli
tenermi
tenero
tenervi
tenevi
tenevo
tengano
tengono
tenie
tenni
tenore
tenori
tentai
tentano
tentare
tentata
tentate
tentavi
tentino
tento
tenue
tenui
tenuta
tenute
tenuti
teologo
teoria
teorico
teorie
tepore
tepori
terapie
teresa
terga
tergere
tergo
termale
terme
termico
termiti
terna
terne
terrai
terrea
terreno
tersa
terse
tersi
terso
terza
terzo
tesa
tesero
tesi
tesoro
tessano
tessei
tessevo
tessili
tessuta
testata
teste
testine
tetano
tetre
tetri
tetro
tetta
tette
tetti
tevere
tibia
tibie
tiene
tienile
tienti
tiepide
tifone
tifoni
tifoso
tigna
tigne
tigrata
tigre
tigri
timbro
timidi
timido
timone
timore
timori
timpani
tingano
tini
tinta
tintore
tipa
tipe
tipiche
tipici
tipico
tipino
tirai
tirala
tiranna
tiranno
tirano
tirare
tirarla
tirarmi
tirarne
tirata
tirati
tiravi
tiravo
tirchia
tirchio
tiretti
tiretto
tirino
tiroide
tirolo
tisana
tisane
tisica
tisiche
tisici
tisico
titolo
titubai
titubo
tizia
tizie
tizio
tizzone
toccai
toccata
tocco
togato
toghe
toledo
tolgono
tolsi
tolta
tolte
toltisi
tomaia
tomaie
tomba
tombe
tonaca
tonda
tondi
tondo
tonfi
tonfo
tonio
tonnata
tonnate
tonni
tonno
tono
tonsura
tonta
tonte
tonti
tonto
topaie
topi
toppa
toppe
torace
torba
torbide
torcete
torcia
torcono
torello
torino
tornai
tornare
tornata
tornea
tornei
torneo
tornii
tornino
tornio
torniti
tornito
torno
toro
torpore
torrida
torride
torrone
torroni
torse
torsoli
torta
torte
torti
tortora
tortore
torvo
tosai
tosando
tosano
tosare
tosarsi
tosaste
tosasti
tosata
tosate
tosati
tosato
tosavi
tosavo
toscano
tosco
tosiamo
tosino
toso
tossii
tossiti
tossito
tossivi
tossivo
tostai
tostano
tostata
tostato
tosto
totale
totani
totano
tozza
tozze
tozzi
tozzo
traccio
tracio
tradii
tradite
traduco
traente
traevo
tragica
tragico
traila
traino
traluce
tramai
tramata
tramavi
tramavo
tramino
tranne
tranvai
trapano
trapelo
trarla
trarle
trarmi
trarne
trarre
trarti
traslai
traslo
trattai
traumi
travidi
travio
trecce
treccia
tredici
tregua
tregue
tremai
tremate
tremato
tremavi
tremila
tremiti
tremito
tremuli
treni
treno
trento
trepido
tribolo
tribune
triglie
trillo
trincea
tripla
triple
triplo
tripode
trippa
trippe
tristo
tritai
tritata
tritavo
trito
trofei
trofeo
troni
trono
tropico
troppa
troppe
troppi
troppo
trota
trote
trovai
trovano
trovavo
trovo
truccai
trucco
truce
trucido
truffo
truppa
truppe
tubai
tubano
tubante
tubare
tubaste
tubata
tubate
tubati
tubato
tubavi
tubavo
tuberi
tubiate
tubino
tuffai
tuffano
tuffati
tuffo
tulle
tumefai
tumuli
tumulto
tunica
tunisia
tunnel
tuoi
tuonai
tuono
tuorlo
turai
turammo
turano
turare
turaste
turata
turate
turati
turato
turavi
turavo
turbai
turbano
turbare
turbato
turbavi
turbavo
turca
turco
turgido
turiamo
turino
turni
turno
turo
turpe
tutelo
tutore
tutori
tutte
tutti
ubaldo
uccello
uccida
uccisa
ucciso
udendo
udii
udirla
udirle
udirlo
udirmi
udirono
udirti
udiste
udita
udite
uditi
udiva
udivi
udivo
udrai
uggiolo
uguale
uguali
ulcera
ulcere
ulisse
ulivi
ulivo
ultimai
ultimo
ululai
ululano
ululata
ululati
ululo
umane
umano
umida
umide
umidi
umido
umile
umiliai
umilino
umilio
umore
uncini
uncino
undici
unente
ungere
ungete
unghia
unghie
ungono
uniamo
uniate
unica
uniche
unici
unico
unimmo
unione
unioni
unirai
unirei
uniremo
unirete
unirli
unirsi
unirvi
unisce
uniste
unisti
unite
uniti
unito
univi
unni
unsi
unta
unte
unti
untori
untumi
unzione
uomini
uomo
uopo
uova
uovo
urbana
urbano
urbe
urbino
urlai
urlando
urlano
urlante
urlare
urlaste
urlata
urlate
urlati
urlato
urlavi
urlavo
urlerai
urlino
urlo
urna
urne
urtai
urtano
urtare
urtata
urtate
urtati
urtato
urtavi
urtavo
urtino
urtone
urtoni
usai
usala
usali
usammo
usano
usante
usanza
usanze
usare
usarla
usarle
usarlo
usarne
usarsi
usaste
usasti
usata
usate
usati
usato
usavamo
usavi
usavo
uscendo
uscirne
uscita
uscite
usciti
uscito
uscivo
usenet
userai
userei
usiamo
usiate
usino
usuale
usuali
usuraio
usure
usurpo
utente
utenti
utenza
utenze
utile
utopia
utopie
vacante
vacca
vacuo
vadano
vado
vagai
vagano
vaganti
vagare
vagasti
vagata
vagate
vagati
vagato
vagavi
vagavo
vagente
vaghino
vagiamo
vagii
vagimmo
vagirai
vagirei
vagiste
vagita
vagite
vagiti
vagito
vagivi
vagivo
vaglio
vagone
vagoni
vaioli
vaiolo
valanga
valere
valete
valicai
valico
valide
valido
valigia
valigie
valle
valore
valuto
valvole
valzer
vammi
vampa
vampiro
vandali
vangai
vangate
vangato
vangavi
vangavo
vango
vanno
vano
vantai
vantano
vantare
vantata
vanto
vapori
varai
varano
varare
varasti
varata
varate
varati
varato
varavi
varavo
varchi
varco
varerei
variai
variamo
variano
variati
varino
varo
vasca
vasche
vasi
vaso
vasta
vaste
vasto
vattene
vatti
vece
veci
vedano
vedere
vedersi
vedeste
vedetta
vedette
vedevi
vedevo
vedili
vedimi
vediti
vedono
vedova
vedove
vedovi
vedovo
vedrai
vedrei
vedremo
veduta
vedute
veduti
vegetai
vegeto
veglio
veicoli
velai
velame
velando
velano
velante
velare
velario
velasti
velata
velate
velati
velato
velavi
velavo
veleni
velette
velina
veline
velino
velli
vello
veltro
venale
venali
vendei
vendevi
venero
veneta
venete
veneti
veneto
vengano
veniamo
venimmo
venirci
venire
venirle
venirlo
venirmi
venirsi
venirvi
veniste
venivi
venivo
venni
venosa
ventina
ventine
ventosa
ventose
ventosi
ventre
ventri
venute
venuti
venuto
verace
veranda
verbali
verdura
verghe
vergini
verme
verno
verona
verrai
verrei
verri
versai
versare
versavi
vertice
veruna
veruno
verzura
vespe
vespri
vespro
vessai
vessate
vessavi
vesso
vestano
vestii
vestita
vestono
vesuvio
veti
veto
vetrina
vetrine
vetro
vetta
vette
vettura
vetusti
vezzi
vezzoso
viale
viali
vibrai
vibravi
vibro
vicario
vicenda
vicine
vicino
vicoli
vicolo
videata
video
videro
vidimo
viene
vieni
vietai
vietano
vietare
vietavi
vietavo
vieto
vigenti
vigilie
vigilo
vigna
vigore
vigori
vile
viluppo
vimini
vinaio
vinca
vincevo
vincono
vini
vino
vinta
vinte
vinti
vinto
violai
violano
violata
violino
violo
vipera
vipere
virai
virando
virano
virare
viraste
virasti
virata
virate
virati
virato
viravi
viravo
virerei
virile
virili
virino
viro
virus
viscere
viscida
viscosa
viscoso
visino
visioni
visitai
visito
visiva
visone
visoni
visore
vispa
vispe
vispi
vispo
vissi
vissute
vistai
vistala
vistare
vistavi
vistavo
vistino
vistosa
vitale
vitali
vitelli
viticci
vito
viuzza
vivace
vivaci
vivagno
vivanda
vivande
vivano
vivente
viventi
viverci
vivere
viveri
viverla
vivete
vivevi
vivevo
viviamo
vivono
vivrai
vivrei
viziai
viziano
viziati
viziavi
vizino
viziose
vizioso
vocale
vocali
voce
vocina
vogai
vogammo
vogano
vogante
vogare
vogasti
vogata
vogate
vogati
vogato
vogavi
vogavo
voglie
vogo
volai
volammo
volano
volare
volasti
volata
volate
volato
volavi
volavo
voleri
volerle
volerli
volerti
volete
volevi
volevo
volgere
volghi
volino
volli
volpe
volsi
voltai
voltare
voltavi
voltavo
voltino
volute
voluti
voluto
vomito
vongola
vorace
voraci
vorrai
vorrei
vorrete
vostra
vostre
vostri
vostro
votano
votare
votata
votate
votati
votiva
votive
votivi
votivo
voto
vuoi
vuole
vuotai
vuotate
vuotati
vuotavo
vuoto
zaffate
zaffiri
zaini
zaino
zampa
zampine
zanna
zanne
zappai
zappano
zappare
zappata
zappavo
zappo
zattera
zavorre
zazzera
zazzere
zecca
zefiri
zelo
zenit
zeppa
zeppe
zeppi
zeppo
zeri
zero
zeta
zigomo
zinzino
zitelle
zitello
zitta
zitte
zittire
zitto
zodiaco
zolfo
zolla
zona
zone
zonzo
zoppa
zoppe
zoppo
zotica
zotici
zotico
zucca
zucconi
zuffa
zuffe
zufolai
zufolo
zuppa
zuppe
zuppo
diceware-1.0.1/diceware/wordlists/wordlist_pt-br.txt 0000664 0000000 0000000 00000166464 14732404111 0022643 0 ustar 00root root 0000000 0000000 abacate
abacaxi
abacial
abade
abadia
abafa
abaixo
abalizada
abalo
abandono
abano
abarca
abarcou
abas
abate
abdica
abdicou
abdome
abdominal
abelha
abelheira
abelhudos
abeliano
aberto
abertura
abeto
abismado
abismal
abismo
abjeto
abjurar
ablativo
abnegado
abobada
abobrinha
aboli
abomino
abono
aborda
aborrece
abortivo
aborto
abra
abrupta
abscesso
abscissa
abside
absinto
absoluta
absolve
absolvido
absorto
absorve
absorvia
absorvida
abstendo
abstenho
abster
absteve
abstido
abstive
abstrai
abstrata
absurdo
abunda
abusivo
abuso
abutre
acaba
academia
acalma
acalmou
acalorada
acamado
acampado
acampando
acampar
acampe
acampou
acanhado
acaricia
acarreta
acarretou
acasala
acaso
acata
acautelar
aceito
acelera
acelerou
acelga
acena
acende
acendia
acento
acentua
acentuou
acerca
acerola
acerta
acervo
acesa
acesso
acetato
acetileno
acetona
acho
acidental
acidente
acidentou
acidez
acidose
acima
aciona
acionista
acionou
acirra
acirrou
aclamado
aclamando
aclamar
aclame
aclamou
aclara
aclive
acne
acobertar
acolhe
acolhia
acolhida
acomete
acometido
acomoda
acomodou
acompanha
aconchego
aconselho
acontece
acontecia
acopla
acoplou
acordo
acorrem
acorreram
acorriam
acossado
acostuma
acostumou
acre
acrobacia
acrobata
acuado
acuda
acudir
acuidade
acumula
acurada
acusa
adaga
adapta
adaptou
adega
ademais
adendo
adentro
adepto
adequada
adequando
adequar
adequasse
adequava
adequou
adere
aderido
aderindo
aderissem
aderiu
aderne
adesivo
adeus
adicione
adidas
adido
adiposo
adis
aditar
aditivo
adivinha
adjacente
adjetivo
adjudicou
adjunto
adjuvante
admira
admite
adocicado
adoece
adoecido
adoentado
adoidado
adormece
adorno
adoro
adota
adotivo
adquire
adstrito
aduana
aduaneira
adubo
adulterar
adulterou
adulto
adutora
adveio
advento
adverso
adverte
advindo
advinha
advir
advocacia
advoga
advogou
aeronauta
aeronave
aeroplano
aeroporto
aerossol
afamado
afasta
afazeres
afeito
afeminado
aferido
aferir
afeta
afetivo
afetuoso
afiada
afiar
afigura
afilhado
afilia
afiliou
afim
afinco
afinidade
afins
afirma
afixada
afixar
afixo
aflige
afligido
afligiu
aflito
aflora
afluem
afluente
afluxo
afoga
afogou
afoito
afora
aforismo
afresco
africana
afro
afta
aftosa
afugenta
afunda
agachado
agachar
agache
agarra
agasalho
agencia
agencies
agenda
agendou
agente
ages
agido
agilidade
agiliza
agimos
agindo
agiota
agir
agita
aglomera
aglutina
agonia
agoniza
agora
agosto
agoura
agraciado
agraciar
agraciou
agrada
agrava
agredi
agrega
agregou
agregue
agressivo
agressor
agreste
agride
agridoce
agro
agrupa
agrupou
agruras
aguaceiro
aguada
aguardo
agudeza
agudo
aguerrido
agulha
aias
aids
ainda
airosa
ajam
ajeita
ajeitei
ajoelha
ajoelhou
ajuda
ajuizada
ajuizar
ajuizou
ajunta
ajuste
ajustou
alabastro
alado
alaga
alambique
alambrado
alameda
alanina
alarde
alarga
alargou
alarido
alarme
alarmou
alas
alavanca
albanesa
albaneses
albatroz
albedo
alberga
albergue
albigense
albinismo
albino
albornoz
albumina
alcaide
alcalino
alcalose
alcance
alcaparra
alcatra
alce
alcova
alcunha
aldeia
alecrim
alega
alegre
alegria
alegue
aleijado
alelo
aleluia
alento
alergia
alerta
alfa
alferes
alfinete
alforria
algema
algo
algum
alguns
algures
alheia
alho
alhures
alia
alicate
alicerce
alicia
alija
alimento
alinha
alinhou
aliou
alisa
alista
alistou
alivia
alma
almeja
almirante
almofada
aloca
alocou
aloja
alojou
alonga
alongou
alonguei
alopatia
alpendre
alpercata
alpestre
alpinismo
alpinista
alpino
alqueire
alquimia
altera
alterna
alternou
alteza
altiplano
altitude
altivez
altivo
alto
altura
alucina
alude
aludido
aludindo
aludir
aluga
alugou
alugueis
aluguel
aluno
alusiva
alvejado
alvejante
alvejar
alvenaria
alveolar
alvinegro
alvitre
alvo
amado
amadurece
amando
amanhece
amante
amar
amava
amazona
ambas
ambiciona
ambicioso
ambiente
ambos
ambulante
ameace
ameba
amendoim
amendoins
ameniza
ameno
americano
ames
ametista
amianto
amido
amigo
amiguinho
amistoso
amizade
amolar
amolecer
amontoado
amor
amparo
ampla
amplexo
amplia
amplifica
amplitude
ampola
ampulheta
amputada
amputar
amuleto
anaconda
anacoreta
anagrama
anais
anal
anamnese
anarquia
anatomia
anca
ancestral
anchova
ancinho
ancora
ancorou
anda
anedota
anel
anemia
anestesia
aneurisma
anexo
angaria
angariou
angelical
angico
angina
anglicana
anglo
angolana
angra
angular
angustia
anidrido
anil
anime
animismo
aninha
aninhos
aniquila
aniquilou
anjinho
anjo
anoitecer
anomalia
anonimato
anorexia
anormais
anormal
anos
anota
anotou
anseio
ansiava
ansiedade
ansioso
anti
antologia
antro
anuais
anual
anuidade
anule
anuncia
anzol
aonde
aorta
apache
apaga
apague
apaixona
apaixonou
apanha
apanhei
apara
aparece
aparelho
aparente
aparentou
apartado
apartar
aparte
apatia
apavora
apaziguar
apego
apelido
apelo
apena
apercebi
aperitivo
aperte
apesar
apetece
apetite
apetrecho
apicais
apical
apimentar
apinhadas
apito
aplacar
aplainada
aplaude
aplaudido
aplaudiu
aplauso
aplica
aplique
apodera
apoderou
apodrecer
apogeu
apoiado
apoiamos
apoiando
apoiar
apoiasse
apoiava
apoiei
apoio
apolo
aponta
apoplexia
aporte
aportou
aposenta
apossa
apossou
aposta
apostila
apoteose
aprecia
apreende
apregoa
aprenda
apresenta
apressa
apressou
aprimora
aprimorou
aprisiona
aprofunda
apronta
aprontou
apropria
apropriou
aprova
aproxima
aproximou
apto
apunhala
apura
aquarela
aquece
aquecido
aqueduto
aquele
aqui
aquosa
arabesco
arado
aragonesa
aram
arando
aranha
araponga
arapuca
arauto
arava
arbitro
arbustiva
arbusto
arcebispo
arco
arda
areado
areais
areal
arejado
arena
arenga
arenito
arenoso
arenque
ares
arfa
argamassa
argelina
argentina
argila
argilosa
argola
argonauta
argumento
ariana
arianismo
aridez
ariranha
arisco
arlequim
arlequins
arma
arminho
armou
aroeira
aroma
aros
arque
arquiteto
arquivo
arraia
arraigado
arranca
arranha
arranjo
arranque
arrasa
arrasou
arrasto
arrazoado
arrebata
arrebatou
arrebenta
arrecada
arrecadou
arredio
arredondo
arredor
arrefece
arregace
arreio
arremate
arrematou
arremedo
arremesso
arrenda
arrendou
arrepende
arrepiado
arrepiar
arrepio
arria
arriba
arribou
arrimo
arrisca
arrisquei
arritmia
arroba
arrocha
arrogante
arrogar
arroio
arrojo
arromba
arrotar
arroto
arroubos
arroxeada
arroz
arruda
arruela
arruinado
arruinar
arruinou
arruma
arsenais
arsenal
arte
articulo
artigo
artimanha
artista
artralgia
artrite
artrose
arvorar
arvore
asas
ascende
ascese
asceta
ascetismo
asco
asfaltada
asfalto
asfixia
asilo
asma
asneira
asno
aspa
aspecto
aspereza
aspire
aspirina
aspirou
asqueroso
assim
assine
assista
asso
assume
assunto
assusta
assustou
astato
asteca
astenia
asterisco
astral
astro
astuto
ataca
atacou
atado
ataduras
atalaia
atalho
ataque
atas
atavismo
atazanar
ateado
ateando
atear
atencioso
atende
ateneu
atenha
ateniense
atenta
atenua
ateou
ateu
atina
atingi
atinja
atira
atirou
atitude
atividade
ativismo
ativista
ativo
atlante
atlas
atleta
atletismo
atmosfera
atomismo
atonais
atonal
ator
atraca
atracou
atraem
atraente
atrai
atrapalha
atraso
atrativo
atrator
atravessa
atrelada
atrelar
atrevo
atribuem
atribui
atributo
atrito
atriz
atrofia
atropela
atua
atuns
atura
audacioso
audaz
auditiva
auditor
auferidos
auferir
augusto
aula
aumento
aura
aureola
auricular
aurora
ausente
ausentou
austero
austrais
austral
autarquia
autentica
autismo
autista
auto
auxilia
avacalhar
avais
aval
avance
avante
avarento
avareza
avaria
avaro
avascular
aveia
aveludado
avenida
aventada
aventais
avental
aventou
aventura
aventurou
averiguar
aves
avia
avidez
aviso
avista
avistou
aviva
avos
avulso
avultada
axiais
axial
axila
axioma
azar
azedo
azeite
azeitona
azeri
azia
azimute
azoto
azuis
azul
baba
bacalhau
bacamarte
bacana
bacantes
bacharel
bacia
bacilo
badalado
badalo
badejo
baderna
bafo
baga
bagulho
baia
baile
bainha
baioneta
bairrismo
bairrista
bairro
baita
baixinho
baixista
baixo
bajulador
bajular
bala
balde
baldio
balsa
baluarte
bambu
banais
banal
banana
bananeira
bananinha
banco
banda
bandeira
bandeja
bandido
bane
banguela
banheiro
banhista
banho
banjo
banque
banquinho
baque
barafunda
baralho
barata
baratear
barateiro
baratinha
barba
barbear
barbeiro
barbicha
barbuda
barco
bardo
bares
barganha
baronesa
barqueiro
barquinho
barra
barrica
barriga
barriguda
barris
barulho
barzinho
basais
basal
base
basilar
basta
bastidor
bate
batucada
batucar
batuque
batuta
baunilha
bauxita
baviera
bazar
bazuca
beato
bebe
beco
bedelho
bege
beijinho
beijo
beira
beirute
beisebol
beleza
belga
belicoso
beliscar
belo
beltrano
bemol
bendigo
bendito
beneficia
benfeitor
bengala
benigno
bens
bentinho
bento
benzeno
benzer
benzo
beque
berinjela
berlinda
bermuda
bernardo
berro
besouro
besta
besteira
bestial
beta
beterraba
betoneira
betume
bexiga
bezerra
bicheiro
bichinho
bicho
bicicleta
bico
bicudo
biela
bienais
bienal
bifurca
biga
bigode
bigorna
bijuteria
bilabial
bilateral
bilhar
bilhete
biliar
bilinear
bimestral
bimestre
bingo
binomiais
binomial
biografia
biologia
biomassa
biombo
biometria
biosfera
biotipo
bipartido
biquinho
birmanesa
birra
biruta
biscoito
bismuto
bisnaga
bisneto
bisonho
bisonte
bispo
bissetriz
bissexto
bisturi
bitola
bizantino
bizarro
blasfemo
blefe
blindado
blindagem
blindar
bloco
bloqueado
bloquear
bloqueava
bloqueei
bloqueio
bloqueou
blusa
boas
boataria
boate
bobear
bobeira
bobeou
bobina
bobo
boca
bocejo
boceta
bocha
bochecha
bodas
bode
boemia
bofetada
boiada
boiadeiro
boiando
boicotado
boicotar
boicote
boicotou
boiei
boina
bois
bola
boldo
bolha
bolinha
boliviana
bolsa
bolsista
bomba
bombeado
bombear
bombeia
bombeiro
bombinha
bombom
bombons
bombordo
bondade
bonde
bondinho
bondoso
boneco
bonitinho
bonito
bons
bonzinho
booleana
boquinha
borato
borboleta
borbulhas
borda
boreais
boreal
boro
borra
borrifar
bosque
bossa
bosta
bota
botica
botija
botina
botsuana
botulismo
bovino
boxeador
brabo
bracelete
brado
braga
braille
brama
branco
brancura
brando
brandura
branquear
branqueio
branqueou
braquial
brasa
braseiro
brasil
bravia
bravo
bravura
breca
brecha
brejeiro
brejinho
brejo
breque
bretanha
breve
brevidade
bridge
briga
brigue
brilho
brinco
brinde
brindou
brinque
brio
brisa
brita
broa
broca
brochado
broche
brochura
brometo
bromo
bronca
bronquite
bronze
broto
bruma
brusca
bruto
bruxinha
bruxo
bucais
bucal
bucha
bucolismo
budismo
budista
bueiro
bufo
bugiganga
bula
bulbo
buldogue
bulha
bulhufas
bumbo
bundinha
buraco
bureta
burgo
burguesa
burgueses
burguesia
burle
burlou
burocrata
burquina
burrice
burrinho
burro
busca
busque
busto
butanesa
butano
buxo
buzina
caatinga
cabais
cabal
cabana
cabia
cabido
cabimento
cabine
cabo
cabra
cabreiro
cabresto
cabrita
cacem
cacete
cacheados
cachecol
cachimbo
cachinhos
cacho
cacique
caco
cacto
cactus
cada
cadeado
cadeia
cadeira
cadela
cadelinha
cadencia
cadente
caderneta
caderno
cadete
cadinho
caduca
caem
cafeteira
cafetina
cafezinho
cafona
cafuzo
caga
caiba
caimento
caindo
caio
caipira
caipora
caixa
caixeiro
caixeta
caixilho
caixinha
cajado
caju
calca
calcinha
calcula
caldeira
caldo
cale
calha
calhou
calibre
califa
calma
calunia
caluniosa
calvino
calvo
cama
cambada
cambiemos
cambio
cambista
camboja
cambota
cambraia
camelo
caminho
camisa
camiseta
camisinha
camisola
camomila
camoniana
camorra
campainha
campais
campal
campana
campanha
campeador
campeiro
campesina
campestre
campina
campo
campus
camuflada
camuflar
cana
cancela
cancha
cancro
candango
candeeiro
candeia
candidato
candura
caneca
canela
caneleira
caneta
canga
canguru
canhoto
canibais
canibal
canina
caninha
canivete
canja
canjica
cansa
cantiga
cantil
cantina
cantinho
canto
canudinho
canudo
caolhas
caolho
caos
capa
capilar
capim
capina
capinha
capitais
capital
capitania
capitulo
capivara
capixaba
caprichar
capricho
caprino
capta
captei
captou
captura
capturou
capuz
carbonato
carbono
carcinoma
cardeais
cardeal
cardinais
cardinal
cardo
cardume
carece
carecia
careiro
carente
carestia
careta
cargo
cargueiro
caricato
caridade
caridosa
carimbo
carinho
carioca
cariri
carisma
carmesim
carmim
carnais
carnal
carnavais
carnaval
carne
carnosa
carnuda
caro
carpi
carranca
carrapato
carrasco
carrega
carregue
carreira
carreta
carretel
carrinho
carro
carruagem
carta
carteira
cartela
cartilha
cartinha
cartola
cartolina
cartucho
caruncho
caruru
carvalho
carvoeiro
casca
cascudo
casimira
casinha
casmurro
caso
caspa
casquinha
cassa
cassino
casta
castelo
castidade
castigo
castres
castro
casuais
casual
casulo
cate
catinga
cativeiro
cativo
catraca
cauda
caudilho
caule
causa
cautela
cauteloso
cave
cavidade
caxumba
cazaque
cear
cebola
cebolinha
cedo
cedro
cego
cegueira
ceguinho
ceia
ceife
ceifou
ceira
cela
celebra
celebrou
celeiro
celeste
celestial
celeuma
celibato
celofane
celta
celular
celulite
celulose
cena
cenobita
cenoura
censo
censura
censurou
centauro
centavo
centeio
centelha
centena
cento
centrista
centro
cepa
cera
cerca
cerda
cereais
cereal
cerebelo
cerebrais
cerebral
cereja
cerejeira
cerne
cerro
certeiro
certeza
certifica
certo
cerveja
cervicais
cervical
cervo
cesariana
cessa
cessou
cesta
ceticismo
cetim
cetro
cevada
chacais
chacal
chacina
chacota
chadiano
chafariz
chaga
chale
chama
champanha
chamusca
chance
chanchada
chanfro
chantagem
chapa
chapinha
charada
charanga
charco
charge
chargista
charme
charmoso
charneca
charrete
charuto
chateado
chatear
chateia
chateou
chato
chave
checa
chefe
chefia
chefiou
chega
chegue
cheio
cheirinho
cheiro
cheque
chia
chibata
chiclete
chico
chifre
chifrudo
chileno
chilique
china
chinelo
chinesa
chineses
chique
chiquinha
choca
chocho
chofer
choque
choro
choupana
chove
chovia
chuchu
chucrute
chumbada
chumbo
chupa
chupeta
churrasco
chute
chuva
chuveiro
chuvisco
chuvoso
cianeto
cianose
cianureto
cicatriz
cicerone
ciclismo
ciclista
ciclo
cicuta
cidadania
cidade
cidra
cidreira
ciente
cientista
cifose
cifra
cigano
cigarro
cilada
ciliado
ciliar
cilindro
cima
cimentado
cimentar
cimento
cimitarra
cinco
cindi
cineasta
cinema
cingalesa
cingir
cinismo
cinto
cintura
cinza
cinzeiro
cinzel
cinzento
cioso
cipreste
cipriota
ciranda
circo
circuito
circula
circunda
cirrose
cirurgia
cisalpina
cisco
cisma
cismou
cisne
cisterna
cite
ciumento
civil
clama
clarear
clareia
clareira
clareou
clareza
claridade
clarifica
clarim
clarinete
clarins
claro
classe
classista
claustro
clausura
clava
clero
cliente
clima
clinica
clinique
clipe
clique
clivagem
clivagens
cloaca
clonagem
clone
clorato
cloreto
cloro
clube
coaduna
coagido
coagir
coalesce
coalhada
coalho
coamo
coas
coaxar
coaxiais
coaxial
cobaia
cobalto
cobarde
cobardia
coberta
cobertura
cobre
coceira
cocheiro
cochilar
cochilo
cocho
coco
codifica
codificou
codorna
coelhinho
coelho
coentro
coerente
coes
coeva
coevos
coexiste
coexistir
cofre
cofrinho
cogita
cogitei
cognato
cognitiva
cogumelo
coibido
coibir
coice
coifa
coincide
coincidiu
coisa
coisinha
coitado
coito
colcha
colchete
cole
colhe
colibri
colide
colidido
colidindo
colidiu
coligado
colina
coliseu
coluna
colunista
combalido
combate
combatia
combatido
combativo
combina
combinou
comboio
como
compactei
compacto
compadece
compadre
companhia
compare
comparsa
compasso
compelido
compendio
compensa
compensou
compete
compila
compilou
completa
complexo
complica
complicou
compondo
compor
composto
compota
compra
comprido
comprime
comprimir
compunha
compus
computa
comum
comungam
comunica
comunique
comunismo
comunista
comuns
comuta
concebe
concebia
concebido
concede
concedia
concedido
conceito
conceitua
concentra
concerne
concertei
concerto
concha
concilio
concisa
concluem
conclui
concordo
concorre
concorria
concreto
concubina
concurso
condado
conde
condita
condiz
condor
conduta
condutiva
conduz
cone
confeitos
confere
confesso
confia
configura
confina
confinou
confira
confirma
confisco
conflito
confluem
conflui
conforme
conforto
confraria
confronto
confunde
confuso
congela
congelou
congolesa
congrega
congregou
congresso
conhaque
conhece
conivente
conjetura
conjuga
conjugue
conjunto
conjura
conluio
conosco
conquanto
conquista
consagra
consegue
conselho
consenso
consente
consentiu
conserto
conserva
conservou
considera
consigna
consigo
consiste
consistia
consoante
console
consolida
consorcio
conspira
conspirou
consta
constitui
constou
constroem
construa
construir
consulado
consular
consulte
consumo
conta
contida
contigo
continha
continua
contiver
contra
contribui
controle
contudo
contundiu
convence
convenha
convento
converge
convergir
conversa
converte
conveses
convexo
convicto
convido
convier
convinha
convir
convite
convive
convoca
convoque
convosco
coopera
cooperou
cooptado
cooptar
coordena
coorte
copa
copeiro
copie
copista
copular
coqueiro
corcovado
corcunda
corda
cordeiro
cordel
cordiais
cordial
coringa
corisco
corista
coriza
corja
corneta
corno
coro
corpo
corre
corrupto
corte
cortina
cortisona
coruja
corveta
corvo
cosa
cosmo
cossaco
cosseno
costa
costeira
costela
costeleta
costuma
costura
costurou
cota
cotidiano
coube
couro
couve
cova
coveiro
covinha
coxa
coxilha
coxim
coxinha
cozi
cranial
craniano
craque
crasso
cratera
cravo
creche
credito
credo
creio
creme
cremos
crendice
crendo
crente
crer
cresce
crespo
cretino
crida
crie
crime
criminais
criminal
criminoso
crina
cripta
crise
crisma
crista
critica
critique
crivado
crivo
croata
crocodilo
cromo
cronista
croquis
crosta
cruciais
crucial
crucifixo
cruel
cruenta
crueza
cruz
cuba
cubismo
cubital
cubra
cuca
cueca
cuia
cuida
cujo
culatra
culmina
culminou
culpa
cultivo
culto
cultua
cultura
cumbuca
cume
cumpre
cumulo
cunha
cupido
cupim
cupom
cupons
cura
curioso
curitiba
curou
currais
curral
cursinho
curso
curta
curupira
curva
cuscuz
cuspido
cuspindo
cuspir
custo
cutelaria
cutelo
cutuca
cutuque
czarina
czarismo
czarista
dado
dais
dali
dama
dana
dance
dando
danifica
danificou
daninha
daquele
daqui
dardo
darem
daria
darmos
data
dativo
dava
debaixo
debandada
debandou
debate
debelada
debelar
debilitar
debilitou
debitar
debito
deboche
debuta
debutou
decadente
decaem
decai
decalque
decano
decapita
decapitou
decente
decepada
decerto
decibel
decida
decifra
decimais
decimal
decisiva
declamado
declamar
declaro
decline
declive
decola
decolou
decompor
decoro
decorre
decorria
decorrido
decote
decresce
decreto
decurso
dedica
dedilhado
dedinho
dedique
dedo
dedutivo
deduz
defasada
defasagem
defecar
defectivo
defeito
defende
defensiva
defensor
deferido
deferiu
defesa
define
definhar
deflagra
deflagrou
deforma
defraudar
defronte
defrontou
defumado
defunto
degelo
degenera
degeneres
degenerou
degola
degrada
degradou
degrau
degredado
degredo
degustar
deidade
deificado
deis
deita
deitou
deixe
dejetos
dele
delgado
delibera
deliberou
delicada
delicia
delicioso
delimita
delimitou
delineado
delinear
delineia
delineou
delira
delito
delongas
delta
demagogia
demagogo
demais
demanda
demandou
demarco
demasia
demente
demite
demiurgo
demo
dendrito
denegri
dengoso
dengue
denodo
denomina
denominou
denota
densa
densidade
dentada
dentadura
dentais
dental
dente
dentina
dentista
dentro
denuncia
depara
depende
dependia
depois
depondo
depor
deposita
depositei
deposto
depravado
deprecia
depreende
depressa
depressor
deprimido
depurado
depurar
depuseram
deputado
dera
derem
deriva
derivou
dermatite
dermatose
dermos
derrame
derramou
derrapou
derrete
derretido
derrocada
derrota
derrotou
derruba
derrubou
desaba
desabone
desabou
desacato
desacordo
desafeto
desafio
desafogar
desaforo
desagrado
desagravo
desaguar
desalento
desalinho
desalojar
desamor
desamparo
desandar
desanime
desanimou
desapego
desaprova
desarma
desastre
desata
desatento
desatino
desativa
desativou
desatou
desbaste
desbotado
desbravar
desbravou
descabido
descamba
descanso
descarada
descarga
descarta
descascar
descaso
desce
descobre
descolado
desconexo
desconfia
desconto
descrente
descreve
descri
descubra
descuido
desculpe
descumpre
desde
desdobra
desdobrou
desejo
desemboca
desempate
desengano
desenho
desenlace
desenrola
deserdado
deserto
desespero
desfalca
desfalque
desfaz
desfecho
desfeita
desfere
desferido
desferir
desfez
desfile
desfilou
desfiz
desforra
desfruta
desfrutou
desgaste
desgastou
desgosto
designa
designou
desiguais
desigual
desilude
desiludiu
desiste
desjejum
deslavada
desleais
desleal
desleixo
desliga
desligue
deslize
deslizou
desloca
deslocou
desloque
desmaia
desmanche
desmandos
desmarca
desmedido
desmembra
desmente
desmentiu
desmonte
desmontou
desmorona
desnatado
desnuda
desocupar
desolado
desonesto
desonra
desonroso
desordem
desordens
desova
despacho
despe
despida
despir
despistar
despiste
despojado
despojos
desponta
despontou
desporto
desposa
desposou
desprende
desprezo
desquite
dessa
desta
destila
destino
destitui
destoa
destreza
destro
destrua
destruir
desumano
desuso
desvanece
desvario
desvenda
desvendou
desvio
desvirtua
detalhe
detalhou
detecta
detectou
detendo
detenha
detento
deter
detesto
deteve
detido
detinha
detiveram
detivesse
detona
detonou
detrito
deturpa
deus
deve
dezembro
dezena
dezenove
dezesseis
dezessete
dezoito
diabete
diabo
diacho
diaconato
diaconisa
diadema
diafragma
diagonais
diagonal
diagrama
dialeto
dialogo
dialogue
diamante
diante
diarista
dias
dica
dicotomia
diedral
diedro
diesel
dieta
difama
difere
diferido
diferindo
diferir
dificulta
difteria
difunde
difundido
difundir
difusa
diga
digerem
digerido
digerir
digestivo
digite
dignidade
digno
dilata
dilema
dileto
diligente
diluente
dilui
diluviana
diminuem
diminui
diminuta
dinamismo
dinamite
dinamiza
dinamizou
dinastia
dinheiro
diocesano
diocese
diodo
dioxina
dipirona
diploma
diplomou
diplopia
dique
direciona
direi
diremos
direta
diretiva
diretriz
diria
dirige
dirija
dirimir
discada
discagem
discente
discernir
disco
discreta
discurso
discuta
disfagia
disfarce
disforme
disjunta
disjuntos
disparo
dispensa
dispepsia
disperso
displasia
dispomos
dispondo
disponho
dispor
disposto
dispunha
dispus
disputa
disputou
disque
dissipa
dissipou
disso
dissuadi
distingue
distinta
disto
distraem
distrai
distribui
distrital
distrito
distrofia
dito
diurno
diuturno
diva
diverge
divergiam
divergido
divergir
diversa
diverte
divide
divindade
divino
divirta
divisa
divisor
divorcio
divulga
divulgue
dize
dizia
dizimada
dizimando
dizimar
dizimo
doado
doando
doar
doava
dobro
doce
documento
doendo
doente
doentio
does
dogma
doideira
doido
dois
dolo
dome
domicilio
domina
domingo
dominical
dona
donde
doninha
donzela
doou
dope
doravante
dores
dorme
dorsais
dorsal
dorso
dosagem
dosagens
dosar
dose
dote
dourado
dourar
douro
douto
doutra
doutrina
doze
dracena
dracma
drago
drama
drena
drible
driblou
drinque
droga
druida
duais
duas
dubla
dublou
ducado
ducha
ductal
ducto
duelista
duelo
duende
dueto
duma
duna
dunga
duodenal
duodeno
dupla
duplica
duplicou
duplique
duque
durma
duro
duto
duvida
duzentas
duzentos
ecletismo
eclipsado
eclipse
eclusa
ecologia
economia
economiza
ecoou
ecos
eczema
edema
edifica
edificou
edite
educa
educou
efedrina
efeito
efeminado
efetivo
efetua
efetuou
eficaz
eficiente
efusiva
egresso
eira
eivado
eixo
ejacular
ejeta
ejetor
elabora
elaborou
elas
elefante
elegante
elege
elegia
elegido
eleito
eleja
elementar
elemento
elenco
eles
eletivo
eletrodo
eleva
elimina
elipse
elite
elitista
elmo
elogiei
elogio
elos
elucida
emagrece
emana
emancipa
emancipou
emanou
emas
embaixada
embaixo
embalo
embarca
embarcou
embargada
embargar
embargo
embarque
embasa
embasou
embate
embebido
embeleza
emblema
emboaba
embolia
embolo
embora
emboscada
emboscar
embreagem
embrulhar
embrulho
embutido
emenda
emendou
ementa
emerge
emergido
emergindo
emergiu
emerso
emigra
emigrou
eminente
emir
emissor
emite
emociona
emocionou
emotiva
empacotar
empada
empalado
empalhado
empanada
empatado
empate
empatia
empecilho
empedrado
empena
empenho
empilhar
empilhe
empinado
empirismo
empirista
emplaca
emplacou
emplastro
emplumada
empobrece
empolga
empolgou
empolguei
empossado
empreende
emprego
empregue
empresa
empresta
emprestou
empunha
empurra
empurrou
empuxo
emule
enaltece
enamores
enamoro
encadeada
encaixe
encaixou
encalhe
encalhou
encaminha
encampada
encampou
encanada
encanto
encara
encargo
encarna
encarnou
encarrega
encartado
encena
encenou
encerra
encetar
encetou
enche
encima
encoberto
encobre
encobrir
encolhe
encomenda
encontra
encoraja
encorpado
encosta
encravado
encrenca
encurrala
encurta
encurtou
encurvado
endemia
endireita
endogamia
endosso
endurece
energia
enfadonho
enfarte
enfatiza
enfeite
enfermo
enfia
enfiou
enfisema
enfoca
enfoque
enforca
enforcou
enfrenta
enfrentou
enfurece
engaja
engajou
engano
engate
engendra
engendrou
engenho
engessado
engessar
engloba
englobou
engodo
engole
engraxate
engrenar
engrossar
enguia
enigma
enjoa
enjoei
enlace
enlatada
enluarada
enojado
enorme
enquadre
enquanto
enraizada
enraizar
enraizou
enrascada
enredo
enriquece
enrola
enrolou
enrosca
enrugada
ensaio
enseada
ensejo
ensino
ensopado
entalado
entalhada
entalhe
entanto
ente
entidade
entoa
entorno
entortar
entre
entulhar
entulho
entupido
entupindo
entupir
enturmar
enumera
enumerou
enuncia
enunciou
envelhece
envelope
envenena
envenenou
envereda
enveredou
envio
enviuvar
enviuvou
envolto
envolve
enxada
enxame
enxaqueca
enxerga
enxergue
enxerto
enxofre
enxoval
enxuga
enxurrada
enxuta
enzima
epicentro
epidemia
epiderme
epifania
epigrama
epilepsia
episcopal
epistaxe
epistolar
epitelial
equador
equalizar
equalize
equilibra
equimose
equino
equipe
equivale
equivalia
equivoco
eram
eremita
ereto
ergo
ergue
erguia
erguido
erice
erigida
erigindo
erigir
erisipela
eritreu
ermida
ermo
erode
erodido
eroge
erosiva
erotismo
erro
erudita
eruptiva
erva
ervilha
esbanja
esbarra
esbarrei
esbarrou
esbelto
escada
escala
escalda
escaldes
escalona
escalou
escalpo
escama
escamoso
escanteio
escape
escapismo
escapular
escarpa
escarro
escassa
escassear
escassez
escava
escavou
esclarece
escocesa
escoceses
escol
escombros
esconde
escopeta
escopo
escorbuto
escore
escoria
escorre
escorria
escoteiro
escotilha
escotismo
escova
escraviza
escravo
escreva
escriba
escrito
escritura
escroto
escudeiro
escudo
esculpe
esculpida
esculpir
escultura
escuna
escurece
escuro
escusa
escuto
esfaquear
esfaqueia
esfaqueou
esfera
esfolado
esfomeado
esforce
esfrega
esfria
esfriou
esgoto
esgrima
esgueirar
esguio
eslavo
eslovaco
eslovena
esmaga
esmagou
esmaltada
esmalte
esmerada
esmeralda
esmero
esmo
esnobe
esnobismo
esofagite
espace
espaciais
espacial
espada
espalda
espalha
espalhou
espanca
espancou
espanhol
espanto
espargo
esparsa
espartano
esparza
espasmo
especiais
especial
espectral
espectro
especula
espelho
esperma
espernear
esperneia
espero
esperteza
esperto
espessa
espessura
espetada
espetar
espeto
espia
espiga
espinafre
espinho
espira
espirro
esplanada
esplendor
espoleta
espolio
esponja
esponjoso
esporo
esporte
esportiva
esposa
espraiada
espreita
espremer
espremido
espuma
espumoso
esquadra
esquadria
esqueci
esqueleto
esquema
esquenta
esquentou
esquerda
esqui
essa
esta
estiagem
estiagens
estibordo
estica
estigma
estilete
estilista
estilo
estima
estimula
estio
estipula
estipulou
estireno
estirpe
estive
estocada
estocar
estofados
estofo
estojo
estola
estomacal
estoniano
estopa
estoque
estorvo
estou
estrada
estrago
estrague
estranho
estrato
estreado
estreando
estrear
estreasse
estreava
estreito
estrela
estrelou
estreou
estresse
estria
estribo
estrito
estrofe
estrondo
estrume
estrutura
estudioso
estudo
estufa
estupendo
estupro
esvai
esvazia
esvaziou
etano
etapa
eteno
eternizar
eternizou
eterno
etileno
etilo
etiologia
etiqueta
etnia
etnologia
etologia
etrusco
eucalipto
eufemismo
euforia
eugenia
eugenista
eunuco
europa
europeu
evacuado
evacuar
evacuou
evade
evadir
evangelho
evapora
evasiva
evento
eventuais
eventual
evidencia
evidente
evite
evoca
evocou
evoluem
evolui
evolutiva
evolve
evoque
exacerbar
exagero
exala
exalta
exaltei
exaltou
exame
examina
examinou
exato
exaurido
exaurir
exaustiva
exausto
excede
excelente
excelsa
excerto
excessivo
excesso
exceto
excite
exclama
exclamou
excluem
exclui
exclusivo
excretado
excretas
excretor
executa
executivo
executou
exegese
exegeta
exemplar
exemplo
exerce
exercia
exercido
exercito
exibe
exige
exijo
exile
exilou
exime
eximia
existe
exonera
exonerou
exorcismo
exorcista
exorcizar
exorta
exortou
exotismo
expanda
expansivo
expedi
expele
expelido
expelindo
expelir
expensas
expiar
expire
expirou
explanada
explica
explicita
explique
explode
explore
explorou
explosivo
expoente
expondo
exponha
expor
expositor
exposto
expressa
exprime
exprimir
expugnar
expulso
expunha
expurgado
expus
extensa
extensiva
exterior
extermine
externa
extingue
extinto
extirpado
extirpar
extorquir
extra
extremo
exuma
fabrica
fabrique
fabuloso
face
fachada
facho
faciais
facial
facilita
facilitou
faculdade
faculta
fadiga
fado
fagulha
faina
faixa
fajuta
fala
falcatrua
falda
falha
falido
falindo
faliu
falsear
falsidade
falsifica
falso
falta
fama
faminto
famoso
fanatismo
fandango
fanfarra
fantasia
fantasma
fantoche
faquir
fardo
farei
fareja
farelo
faremos
faria
faringe
faringite
farinha
faro
farpado
farpas
farra
farsa
fartei
farto
fartura
fascina
fascinou
fascismo
fascista
fase
fatais
fatal
fatia
fatiga
fatigue
fato
fatura
faturou
fauna
fausto
fava
favela
faxina
faxineiro
faze
fazia
febre
febril
fecais
fecal
fecha
fecunda
fede
fedia
fedido
fedor
feijoada
feio
feira
feitio
feito
feitura
feixe
feldspato
felicita
felino
feliz
felpudo
feltro
feminino
feminismo
feminista
fenda
feno
fera
fermento
feroz
ferritina
ferro
ferrugem
fertiliza
ferve
fervida
fervor
fervura
festa
festeiro
festeja
festim
festinha
festivo
fetais
fetal
fetiche
feto
feudais
feudal
feudo
fevereiro
fezes
fiada
fiais
fiar
fiasco
fibra
fibrina
fibroma
fibrose
fica
ficha
fidalgo
fidalguia
fidedigna
fieira
fieis
fiel
figo
figueira
figura
figurinha
figurino
figurou
fijiana
file
filhinha
filho
filia
filigrana
filipina
filisteu
filme
filmoteca
filmou
filtro
finca
fincou
findo
fineza
finge
fingido
fingindo
fingir
fininho
finito
finja
fins
finta
finura
fiorde
fios
fique
fira
firme
fiscais
fiscal
fisco
fisgado
fisgar
fissura
fita
fitem
fivela
fixa
fizemos
fizer
fizesse
fizeste
flagelado
flagelo
flagra
flagrou
flambagem
flamengo
flamingo
flanco
flanela
flauta
flautista
flavo
flecha
flexiona
floco
flor
flotilha
fluem
fluente
flui
fluoreto
flutua
flutuou
fluviais
fluvial
fluxo
fobia
focinho
foco
fofa
fogo
fogueira
foguete
foguista
foice
folclore
fole
folga
folguedo
folha
folheado
folhear
folheto
folhinha
folia
fome
fomos
fone
fonologia
fonte
foque
fora
force
forem
forense
forja
forjou
forma
formiga
formou
formula
formulou
fornada
fornalha
fornece
forno
forquilha
forro
fortalece
fortaleza
forte
fortifica
fortuito
fortuna
fosco
fosfato
fosse
foste
foto
fraco
fractais
fractal
frade
fradinho
fraga
fragmento
frajola
fralda
framboesa
francesa
franceses
francisco
franco
frango
franja
franqueza
franquia
franze
franzino
fraque
fraquinho
frasal
frasco
frase
fraterno
fratura
fraturou
fraudada
fraudando
fraudar
fraude
fraudou
freada
frear
frecha
fregueses
freguesia
frei
frente
frentista
fresa
fresco
frescura
fresta
fretado
frete
freudiana
frevo
frieira
frieza
frigida
frio
friso
frito
fritura
frondosa
fronhas
frontais
frontal
fronte
frota
frouxo
frustra
frustrou
fruteira
frutifica
fruto
frutuosa
fuga
fuja
fulano
fulgor
fuligem
fumo
funciona
funcionou
fundo
funesto
fungicida
fungo
funil
furioso
furna
furo
furtivo
furto
fusco
fuselagem
fusiforme
fuso
futebol
futurismo
futurista
futuro
fuxico
fuzil
gabe
gabinete
gado
gafanhoto
gafieira
gaga
gagueira
gaiato
gaiola
gaita
gaivota
gajo
galego
galena
galera
galeria
galerinha
galeto
galgo
galhardia
galhardo
galheta
galho
galicismo
galinha
galo
gama
gambiana
gambiarra
gambito
gamela
gameta
gana
gancho
gandaia
gandula
gangorra
gangrena
ganha
ganso
garagem
garagens
garante
garapa
garbo
garfo
gargalo
garganta
gari
garoa
garota
garotinho
garoupa
garra
garrido
garrote
garrucha
garupa
gases
gasoduto
gasolina
gasoso
gasto
gastrite
gatilho
gatinha
gato
gatuno
gaulesa
gauleses
gaveta
gazela
gazeta
geada
gear
geei
geis
gelo
gema
gemido
geminada
genciana
gendarme
gene
gengiva
geniais
genial
genitais
genital
genitor
genro
gentalha
gente
gentil
gentinha
geografia
geologia
geometria
georgiana
gera
germano
germe
germina
gesso
gesto
gestuais
gestual
gigante
ginasial
ginasta
gincana
ginete
ginga
girino
giro
glaciais
glacial
gladiador
glande
glandular
glaucoma
gleba
glicemia
glicerina
glicose
globais
global
globo
globulina
glorifica
gloriosa
glosa
gnomo
gnus
goela
goiaba
goiabeira
goiano
gola
golfinho
golfo
golpe
goma
gongo
gonzo
gordinha
gordo
gorducho
gordura
gorduroso
gore
gorila
gorjeta
gorro
gosma
goste
gostinho
gota
goteira
gotinha
governo
goze
gracejos
gracinha
graciosa
gradativa
grade
gradiente
gradua
graduou
grafia
grafismo
grafite
grafo
gralha
grama
gramofone
grampeado
grampo
grana
grande
grandioso
granel
granito
granizo
granja
granjear
granjeiro
granjeou
granulado
granular
granuloma
granulosa
grato
gratuito
grau
grave
gravidade
graviola
gravita
gravura
graxo
grego
grelha
greve
grevista
grifado
grifamos
grifar
grifo
grilagem
grileiro
grilo
grinalda
gringo
gripe
grisalho
grito
groselha
grosseiro
grosseria
grosso
grossura
grotesco
gruda
grunhidos
grupais
grupal
grupinho
grupo
gruta
guarani
guarda
guarita
guarnecer
gueixa
guelra
guerra
guerrear
guerreiro
guerreou
guerrilha
gueto
guia
guinada
guincho
guindaste
guineense
guirlanda
guisa
guitarra
guizo
gula
guloso
gume
guri
gusa
gustativa
habilita
habilitou
habita
habituado
habituais
habitual
habituei
habituou
haitiano
haja
halitose
halo
haras
hardware
harmonia
harmoniza
harpa
harpia
harpista
haste
havaiana
havana
havemos
havendo
haver
havia
havido
haxixe
hebraico
hebreu
hecatombe
hectare
hediondo
hedonismo
hedonista
hegemonia
helenismo
helenista
hematita
hematoma
hemofilia
hemograma
hemoptise
heparina
hepatite
heptano
hera
herbicida
herda
herdou
herege
heresia
herpes
hesite
hexaedro
hexagonal
hexano
hialina
hialinos
hiato
hibernar
hiberno
hibisco
hidratado
hidrato
hidromel
hiena
higiene
himalaia
hindu
hino
hipercubo
hipismo
hipnose
hipnotiza
hipoteca
histeria
historia
hodierna
hoje
holandesa
homem
homenagem
homens
homeopata
homero
homicida
homilia
homologa
homologia
homologou
homotetia
homotopia
honesto
honra
honrosa
honrou
hora
horda
horizonte
hormonais
hormonal
horrendo
horror
horta
hortense
hospeda
hospedou
hospitais
hospital
hostil
hotel
houve
hulha
humanismo
humanista
humanizar
humano
humildade
humilde
humilha
humilhou
humo
huno
hurra
ianque
iara
iate
iatismo
ibero
ices
idade
idas
ideais
ideal
idem
ideograma
ideologia
idioma
idiota
idiotia
idiotismo
idolatra
idolatria
idos
iemenita
iene
ignore
ignoto
igreja
igrejinha
iguais
igual
iguana
iguaria
ilegais
ilegal
ileso
iletrado
ilha
ilibada
ilimitado
ilude
iludido
iludindo
iludir
ilumina
iluminou
iluminura
ilustre
ilustrou
imaculada
imagem
imagens
imagine
imanente
imaterial
imaturo
imbecil
imberbe
imbuia
imediata
imensa
imergir
imerso
imigra
imigrou
iminente
imita
imitou
imobiliza
imola
imorais
imoral
imortais
imortal
impacto
imparcial
impasse
impedi
impele
impelido
impensada
impera
imperiais
imperial
imperioso
impessoal
impetrado
impetuoso
impiedade
impiedoso
impingir
implante
implantou
implica
implicou
implique
implora
impondo
imponente
imponha
impopular
impor
imposto
impotente
impreciso
imprensa
impresso
imprime
improviso
impugna
impugnei
impugnou
impulsivo
impulso
impune
impunha
impureza
impuro
impus
imputa
imundo
imune
imunidade
imunizado
imunizar
inacabado
inalado
inalar
inanimado
inapto
inata
inativa
inaudita
inaugura
inaugurou
inca
incendeia
incendiar
incendiou
incenso
incentivo
incerta
incerteza
incesto
incha
inches
incide
incidindo
incidir
incisivo
inciso
incita
incitou
inclina
incluem
inclui
inclusive
incluso
incolor
incomoda
incomum
incomuns
incorpora
incorre
incorrido
incuba
inculcar
inculto
incumbe
incumbido
incumbiu
incutir
indaga
indecente
indeciso
indeferiu
indefesa
indenizar
independe
indevido
indexa
indexes
indiana
indica
indicia
indigente
indigesta
indigno
indique
indireta
indispor
individuo
indivisa
indo
indulto
indutivo
indutor
induz
ineficaz
inepto
inerciais
inercial
inerente
inerte
inexata
inexiste
infame
infantil
infarto
infecta
infeliz
infere
infernais
infernal
inferno
infesta
infiel
infiltra
infiltrou
infinito
infla
infligido
infligir
influem
influente
influenza
influi
influxo
informe
infra
infringi
infrinja
infundada
infunde
infundido
infundir
ingere
inglesa
ingleses
ingrata
ingresso
inguinais
inguinal
inibe
inibida
inibindo
inibir
inicio
inimigo
inimizade
injeta
injetiva
injetou
injuria
injuries
injusto
inocente
inocentou
inocular
inodoro
inova
inovou
inquieto
inquilino
inquirido
inquirir
insalubre
insano
inscreva
inscrito
inseguro
insensato
inseri
inserto
inseto
insidiosa
insinua
insinuei
insinuou
insira
insista
insolente
inspetor
inspira
inspirou
insta
instiga
instigou
instinto
institui
instituto
instou
instrui
instrutor
insucesso
insuflar
insula
insulina
insulto
insumo
insurgiu
intacta
integra
inteireza
inteiro
intelecto
intensa
intensiva
intento
interagi
interaja
intercala
intercede
interdito
interesse
interface
interfere
interfira
interino
interior
interliga
interna
interpor
interroga
intervalo
interveio
intervir
intestino
intima
intimida
intimidou
intocada
intriga
intrigou
intrigue
introduz
intromete
intrusiva
intruso
intuir
intuitivo
intuito
inunda
inundou
inusitado
invade
invalida
invasor
inveja
invejoso
inventa
inventivo
invernada
inverno
inverso
inverte
investe
invicta
invista
invoca
iodo
ioga
iogurte
ioniza
ionosfera
iota
irado
iraniana
iraquiano
iras
irei
iria
irlanda
irlandesa
irmandade
irmos
ironia
ironiza
ironizou
irradia
irradiou
irreais
irreal
irregular
irriga
irrita
irritou
irrompe
isca
isento
islamismo
islandesa
isola
isolou
isomeria
isometria
isomorfo
isonomia
isqueiro
israelita
isso
istmo
isto
italiano
item
itens
iterado
iterativo
iugoslava
jabuti
jaca
jacente
jacinto
jacobina
jade
jaguar
jaleco
jamaicana
jamais
jamanta
jandaia
janeiro
janela
jangada
janta
japonesa
japoneses
jaqueta
jararaca
jarda
jardim
jardins
jarro
jato
jaula
javali
jazem
jazente
jazia
jazida
jazigo
jazzista
jeca
jegue
jeitinho
jeito
jejuar
jejum
jejuns
jenipapo
jerico
joalheiro
joalheria
joana
joaninha
jocoso
joelhada
joelho
jogo
jogue
joguinho
joio
jordana
jornada
jornais
jornal
jorro
jota
jovem
jovens
jovial
juazeiro
juba
jubilado
jubilar
jubileu
jubilo
judaica
judas
judeu
judia
judiciais
judicial
judoca
jugo
jugular
juiz
jujuba
julgo
julgue
julho
jumento
junco
junho
junto
jura
jurista
jurubeba
jusante
justifica
justo
juta
juvenil
juventude
kantiana
labareda
labirinto
labor
labuta
laca
lacrado
lacraia
lacre
lacrimosa
lactato
lacuna
lacustre
ladainha
ladeado
ladeando
ladeira
ladinho
ladino
lado
ladra
ladrilho
lagar
lago
laguna
laicismo
laico
laje
lama
lambe
lambreta
lameiro
lamento
lamina
lamparina
lampejo
lance
lancha
lanterna
laociano
lapela
lapidado
lapidar
lapiseira
lapso
laranja
lareira
lares
largo
largue
largura
laringe
laringite
larva
lasanha
lasca
lascivo
lastimado
lastro
late
latrina
laudo
laureado
lava
lavra
lavrou
laxante
leais
leal
lebre
leciona
lecitina
lede
legenda
legisla
legista
legitima
lego
legume
leia
leigo
leiloado
leiloar
leiloeiro
leiloes
leiloou
leite
leitura
lema
lembre
lenda
lenga
lenha
lentilha
lento
leoa
leonesa
leoneses
leonino
leopardo
lepra
leproso
leque
lera
lerdo
lerem
leria
lermos
lesa
lesivo
lesma
lesse
leste
letais
letal
letargia
letivo
letra
letreiro
letrinha
leucemia
leva
leviana
levita
lexicais
lexical
lhama
lhas
lhes
lhos
liam
libanesa
libaneses
libelo
libera
liberdade
liberiana
liberta
libertino
libido
libra
libreto
licencia
licenciou
liceu
licita
licor
lida
liga
ligeireza
ligeiro
ligue
lilases
lima
limbo
limiar
limita
limpinho
limpo
lince
linchado
linchar
linda
linear
linfa
linfonodo
linguado
linguagem
lingual
linha
liquido
lira
lirismo
lisa
lisboa
lista
listra
lisura
litania
literais
literal
literato
litorais
litoral
litosfera
litro
lituana
liturgia
livrinho
livro
lixeira
lixo
lobinho
lobisomem
lobista
lobo
loco
locutor
lodo
logaritmo
logo
logro
loiola
loira
loirinha
loja
lojinha
lojista
lombada
lombo
lombriga
lona
londrina
longitude
longo
lontra
lorde
lordose
lorota
losango
lote
louco
loucura
louro
lousa
louva
luas
lucas
lucidez
lucro
ludibriar
ludismo
lufada
lugar
lula
luminar
luminosa
lunar
luneta
lupa
lusitano
luso
lustre
luta
luva
luxo
luxuoso
luzes
luzi
maca
macetes
machado
machete
machismo
machista
macho
machuca
machucou
machuque
macia
macieira
macilenta
maconha
macro
macuco
macula
macumba
madalena
madama
madeira
madeixas
madona
madrasta
madrinha
madruga
maduro
maestria
maestro
mafioso
magia
magistral
magma
magnitude
magno
mago
magrelo
magreza
magricela
magro
mais
majestade
majestoso
major
mala
malcriado
maldade
maldita
maldivas
maldizer
maldoso
males
maleta
malfadada
malfeito
malgache
malgrado
malha
maliana
malicioso
maligno
maloca
malograda
malogro
malta
maltesa
malteses
maltrata
maluco
malvadeza
malvado
mama
mamilo
mancebo
mancha
manchou
manco
manda
mandioca
mandril
maneio
maneira
manejo
manequim
manequins
maneta
manga
mangue
manguito
manha
manhosa
mania
manicure
manifesto
manilha
maninho
manipula
manipulou
maniqueu
manivela
manja
manjerona
manjuba
mano
mansa
mansinho
manteiga
mantemos
mantendo
mantenha
manter
manteve
mantido
mantinha
mantive
manto
mantra
manuais
manual
manuseado
manusear
manuseio
mapa
mapeada
mapeando
mapear
mapeia
mapeou
mapoteca
maquiada
maquiar
maquina
marasmo
maratona
maravilha
marca
marcha
marchou
marciais
marcial
marciano
marechais
marechal
maremoto
mares
marfim
marfins
margarida
margarina
margem
margens
marginais
marginal
maria
maricas
marido
marinha
marionete
mariposa
marisco
marista
marital
marmelada
marmelo
marmita
marmota
marola
maroto
marque
marra
marreco
marreta
marrom
marrons
marta
martelar
martelo
marujo
marxismo
marxista
mascar
mascate
mascavo
masculino
masmorra
masque
massa
massiva
mastigado
mastigar
mastro
matilha
matinais
matinal
matiz
mato
matraca
matricial
matricula
matriz
matrona
mature
matutino
matuto
mauritana
maus
maxila
maximal
maximiza
maxixe
mazelas
meada
meandro
mecanismo
mecha
medalha
medo
medrado
medroso
medula
medusa
megera
meiga
meio
meira
melhor
melindres
melo
melro
membro
memento
memorando
memoriais
memorial
memorizar
menarca
menciona
mendigo
menestrel
menininha
menino
menir
menisco
menopausa
menos
mensagem
mensagens
mensais
mensal
menstrual
mensura
mente
menu
mera
mercado
mercante
mercantil
mercearia
merda
merece
merecia
merecido
merenda
meretriz
mergulho
meridiano
mesa
mescla
mesclou
meses
mesinha
mesmice
mesmo
mesquinho
mesquita
messias
mestre
meta
metralha
metro
meus
mexa
mezanino
miado
mias
mico
micro
mies
migalhas
migra
migrou
mija
milagre
milagrosa
milenar
milheiro
milho
miliciano
miligrama
mililitro
milita
mime
mindinho
mingau
minguante
minha
minhoca
mini
minto
minuciosa
minueto
minuto
miolo
miopia
miou
mira
mirra
missa
missiva
mista
mister
mistura
misturou
mitigar
mito
mitra
miudezas
miudinho
mixuruca
moais
moas
mobiliza
mobilizou
mocambo
mochila
mocidade
mocinho
modelo
modem
modere
moderna
moderniza
moderou
modesto
modifica
modifique
modinha
modismo
modista
modo
module
moeda
moedor
moela
moenda
moer
mofo
mogno
mogol
moinho
moita
molde
moldou
moldura
mole
molho
molinete
molusco
momento
momo
monarca
monarquia
monegasco
monge
mongol
monitor
monja
monjolo
mono
monstro
monte
montinho
monumento
moqueca
morbidade
morcego
morde
mordida
more
morfina
morfismo
moribundo
moringa
morna
morre
morse
morte
mosaico
mosca
moscou
moscovita
mosque
mosquito
mostarda
mosteiro
mostra
motivo
moto
motriz
moura
mourisca
move
muamba
muar
mucambo
muco
mude
muito
mula
muleta
mulher
multi
multou
mundana
mundiais
mundial
mundo
muni
murcho
muro
murro
musa
musca
muscular
musculoso
museu
musgo
musica
musicista
musique
mussarela
mutante
mutila
mutilou
mutismo
mutual
nababo
nabla
nabo
nacionais
nacional
naco
nada
nadinha
nafta
naipe
naja
nalguma
namibiana
namoro
nana
nanico
nanismo
naquele
naquilo
narciso
nardo
narigudo
narina
nariz
narra
narrou
nasais
nasal
nasce
natimorto
nativo
nato
naturais
natural
natureza
naufraga
naufragou
nauseante
nauta
navais
naval
nave
navio
nazareno
nazi
neblina
nebulosa
necessita
necropsia
necrose
nefasto
nega
negreiro
negrinho
negrito
negro
negue
nele
nenhum
nenhuns
neonatal
neoplasia
nepalesa
nepaleses
nepotismo
nervo
nervura
nesse
neste
netinho
neto
netuno
neurais
neural
neutro
neve
nexo
nicho
nicotina
nigeriana
nigerina
niilismo
niilista
nina
ninfa
ninhada
ninharias
ninho
nisso
nisto
nitrato
nitrito
nitro
nivelado
nivelar
niveles
nobre
nocautear
nocauteia
nocauteou
nocivo
nodais
nodal
nodosa
nodular
noel
nogueira
noitada
noite
noiva
nojento
nojo
nomadismo
nome
nominais
nominal
nono
nora
nordeste
norma
noroeste
norte
nortista
noruega
nossa
nostalgia
nota
noticia
noticies
noticiosa
noticiou
notifica
notificou
notifique
noturna
noutro
noviciado
novidade
novilho
novinho
novo
nozes
nuas
nublado
nuca
nuclear
nudez
nudismo
nudista
nulidade
nulo
numa
numero
numismata
nunca
nuns
nupciais
nupcial
nutre
nuvem
nuvens
obcecado
obedece
obedecia
obedecido
obediente
obelisco
obesa
obesidade
objetar
objetivo
objeto
oblonga
obra
obreiras
obreiro
obriga
obrigou
obrigue
obsceno
obscurece
obscuro
observe
obsessivo
obsoleto
obsta
obstetra
obstinado
obstruir
obtemos
obtendo
obtenha
obter
obteve
obtida
obtinha
obtive
obturador
obtusa
obvio
ocas
occipital
oceano
ocidental
ocidente
ocioso
oclusiva
ocorre
ocorria
ocorrida
ocos
octaedro
octanagem
ocular
ocultei
ocultismo
ocultista
oculto
ocupa
odalisca
odeia
odes
odiado
odiando
odiar
odiava
odiei
odioso
odiou
odor
oeste
ofegante
ofenda
ofensa
ofensiva
oferece
oferenda
oferta
ofertou
oficina
oficio
ofusca
ofuscou
ogiva
oitava
oitenta
oito
ojeriza
olaria
oleiro
oleoduto
oleosa
olfativo
olfato
olho
oligarcas
olimpo
oliva
oliveira
olvido
omanense
ombro
omega
omelete
omisso
omite
omoplata
onde
ondulado
ondulante
onerosa
ontem
ontologia
onze
opaca
opala
opcionais
opcional
opera
operou
opine
opondo
oponente
oponho
opor
opositor
oposto
opressivo
oprime
oprimido
oprimir
opta
opulenta
opunha
opus
orada
orador
oral
orando
orava
orbe
orbitais
orbital
orca
ordeira
ordem
ordenha
ordens
orelha
orelhuda
ores
orfanato
orfandade
organismo
organista
organiza
orgasmo
orgia
orgulho
orienta
origem
origens
origina
originou
oriundo
orla
orne
orou
orquestra
ortodoxa
ortodoxia
ortogonal
ortopedia
orvalho
oscila
oscilou
ossada
osso
ostensivo
ostenta
ostentou
ostra
otimismo
otimista
otimiza
otomano
ouro
ousa
outeiro
outonal
outono
outorga
outorgou
outra
outubro
ouvi
ovais
oval
ovelha
overdose
ovino
ovos
oxalato
oxide
oxigenada
paca
pachorra
paciente
pacifico
pacifique
pacifismo
pacifista
pacote
pacto
pactuar
padaria
padece
padecia
padeiro
padrasto
padre
padrinho
padroeiro
padroniza
paga
pagina
pague
painel
paire
pais
paizinho
palaciano
paladar
paladino
palafita
palanque
palavra
palco
palestina
palestra
paleta
palha
palheta
palhinha
paliativo
palidez
palito
palma
palmeira
palmito
palpite
pamonha
pampa
panamenha
panamense
panca
panda
pandeiro
pandorga
panela
panelinha
panfleto
pano
panqueca
pantanais
pantanal
pantanosa
pantera
papa
papila
papiro
papisa
papista
papua
paquera
para
parceiro
parcela
parceria
parciais
parcial
parco
pardo
parque
parreira
parrudo
parte
parvo
pasmado
pasmo
passional
passista
passivo
passo
pasta
pastilha
pastinha
patente
paterno
pateta
patife
patim
patinho
patins
pato
patriarca
patriota
patroa
patrocina
patrono
patrulha
paulada
paulatina
paulista
paus
pauta
pautou
pauzinhos
pavimento
pavio
pavor
peca
pechincha
peculato
peculiar
pedacinho
pedagogia
pedagogo
pedais
pedal
pede
pedregoso
pedreira
pedrinho
pedro
pega
pegue
peido
peito
peixe
peixinho
pejo
pela
pelicano
peludo
pena
penca
penda
pendia
pendor
pendura
pendurou
penhasco
penhor
penico
peninha
penitente
pensa
pente
penugem
penumbra
pepino
pepita
peque
perca
percebi
percevejo
percurso
perda
perdoe
perdoou
perdura
perdurou
perece
perecido
peregrino
pereira
perene
perereca
perfaz
perfeito
perfil
perfumado
perfume
perfura
perfurou
pergunta
pericia
periferia
perigo
periquito
perito
permanece
permeado
permite
permuta
perna
perneta
perninha
pernoitar
pernoite
peroba
perpetua
perplexo
persa
persegue
persiana
persigo
persiste
persistir
perspicaz
persuadi
pertence
pertencia
pertinaz
pertinho
perto
perturba
perturbou
peru
perverso
perverter
pesca
peso
pesque
pesquisa
pessoa
pestana
peste
pesticida
petardo
peteca
petisco
petista
petiz
pezinho
piada
piadinha
piadista
piamente
pianista
piano
pias
piche
pico
picuinha
piedade
piedoso
piegas
pies
pietista
pife
pigmento
pijama
pilantra
pilar
pilastra
pilha
pilhou
piloto
pimenta
pimpolho
pince
pingo
pingue
pinheiral
pinheiro
pinho
pino
pintinho
pinto
pintura
piolho
pioneiro
pior
pipa
pipeta
pipoca
pique
pira
pires
pirilampo
pirita
pirose
pirralho
pirueta
pirulito
piscina
pisco
piso
pista
pistola
pitada
pitanga
piteira
pitoresco
pixeis
pixel
pizza
placa
placebo
placenta
plagiado
plagiando
plagiar
plagio
planilha
plano
planta
plantio
plantou
planura
plaqueta
plasma
platina
plebe
pleitear
pleiteia
pleiteou
pleito
plenitude
pleno
pleonasmo
pleura
plexo
plugado
plugue
pluma
plurais
plural
pneu
pobre
pode
podia
podido
podre
poeira
poema
poente
poesia
poeta
poetisa
pois
polaco
polainas
polar
polca
polegada
polegar
poleiro
polemista
polemizar
polenta
poli
polonesa
poloneses
polpa
poltrona
poluente
polvilho
polvo
pomada
pomar
pombinha
pombinhos
pombo
pomo
pompa
pomposo
poncho
pondo
ponha
pontinho
ponto
pontua
pontudo
pontuou
popo
populacho
popular
populosa
porcelana
porco
porem
porfia
poria
pormenor
poro
porquanto
porque
porquinho
porrada
porre
porto
pose
posiciona
positivo
possa
possuem
possui
posto
postula
postulou
postura
potassa
pote
potro
pouco
poupa
poupou
pouquinho
pouso
povo
pracinha
pradaria
prado
praga
praia
prainha
prancha
prancheta
pranto
prata
prateado
pratica
pratique
praxe
prazer
prazo
precaver
prece
preciosa
precipita
precise
precoce
preconiza
precursor
predador
prediais
predial
predicado
predileto
predisse
predito
prediz
predomina
preencha
prefacio
prefeito
prefere
prefiro
prefixado
prefixes
prefixo
prego
preguinho
preito
prejudica
prelado
prelo
premi
prende
prendia
prendido
prensa
prenuncia
preocupe
prepara
preposto
presa
prescinde
prescreve
prescrito
presencia
presente
preserva
preservou
preside
presidido
presidiu
pressa
pressente
pressiona
pressupor
presta
prestigio
presume
presunto
pretenda
pretensa
preterido
pretexto
pretinho
preto
prevalece
prevejo
prevendo
preveni
prever
previ
preza
prima
primitiva
princesa
principal
principio
priorado
priori
prisma
priva
privou
proa
probidade
problema
procede
processo
proclama
proclamou
procriar
procrie
procure
produtivo
produto
produz
proeza
profano
profecia
profere
proferida
proferir
professa
profeta
profetisa
profetiza
profunda
programa
programou
progredir
progresso
progride
proibi
projeteis
projetiva
projeto
prole
prolifera
prolixo
prolonga
prolongou
prolongue
promessa
promete
promissor
promotor
promove
promulga
promulgou
prontinho
pronto
pronuncia
propaga
propagou
propalada
propelido
propenso
propicia
propina
propomos
propondo
proponho
propor
proposta
propulsor
propunha
propus
prorroga
prosa
proscrito
prospecto
prospero
prossegue
prossiga
prostitui
prostrado
prostrou
protege
proteja
protelar
protesto
protetor
protocolo
prova
provido
provindo
provinha
provir
proximais
proximal
prudente
prumo
prurido
prussiana
pseudo
psicopata
psicose
psiquismo
psiu
puberdade
pubianos
publico
publique
pude
pudica
pudim
pudins
pudor
pueril
pugilismo
pugilista
pujante
pula
pulga
pulinho
pulmonar
pulso
pululam
puma
pune
pungente
punho
pupilo
pura
pureza
purga
purifica
purismo
purista
puritano
purpurina
pururuca
puser
pusesse
puseste
puta
puxa
puxou
quadril
quadrinho
quadro
quais
qual
quando
quantia
quanto
quarenta
quaresma
quartel
quarteto
quarto
quartzito
quartzo
quasar
quase
quatorze
quatro
quebra
queda
queijo
queima
queimou
queira
queixa
quem
queniana
quente
quentinho
quepe
quesito
questiono
quiabo
quieto
quietude
quilate
quilha
quilo
quimera
quimono
quina
quinta
quinteto
quinze
quiosque
quis
quito
quociente
quorum
quota
rabicho
rabino
rabisco
rabo
rabugento
racha
rachou
raciais
racial
raciocina
racionais
racional
racismo
racista
radar
radica
radicou
radio
radon
rainha
raio
raiva
raivoso
raja
ralha
ralo
ramagens
ramalhete
ramifica
ramificou
raminho
ramo
rampa
rancho
rancor
range
ranheta
ranhura
ranzinza
rape
rapidez
rapidinho
rapina
raposa
rapto
raquete
rarefeito
raro
rasa
rascunhar
rascunho
rasga
rasgue
raspa
raspou
rasteira
rasteja
rastilho
rasto
rastreado
rastrear
rastreio
rastreou
rastro
rasura
rateio
ratifica
ratinho
rato
ravina
reaberto
reabilita
reabre
reagente
reagi
reais
reaja
reajustar
reajuste
real
reanima
reaparece
reassume
reassumiu
reativa
reato
reavalie
reaver
reavivado
reavivar
reavivou
rebaixa
rebaixou
rebanho
rebarbas
rebate
rebatida
rebelde
rebeldia
rebelo
rebento
rebite
rebocado
rebocar
reboco
rebolo
reboque
rebuscada
recado
recaem
recai
recalcado
recalque
recanto
recaptura
recarga
recarrega
recatada
receando
recear
receava
recebe
receio
receita
recente
receoso
receptivo
receptor
recessivo
recesso
recheado
rechear
recheio
recibo
reciclado
recife
recinto
recita
recitou
reclama
reclinada
recoberta
recobre
recobrir
recobrou
recolha
recomenda
reconhece
recorde
recorre
recorte
recreio
recrie
recriou
recruta
recrutou
recuo
recupera
recursiva
recurso
recurvado
recusa
redator
rede
redigi
redija
redime
redimido
redimir
rediviva
redobrado
redobrar
redoma
redonda
redondeza
redor
redundou
reduto
reduz
reedita
reeditei
reeditou
reelege
reeleito
reembolso
reencarna
reentrada
reentrar
reentrou
reenviar
reescrevi
reescrito
reexame
refaz
refeito
refere
refez
refino
refira
refiz
reflete
refletor
reflexiva
reflexo
reflita
refluxo
refogado
reforce
reforma
reformou
reformula
refrear
refrega
refresco
refugio
refuta
refutou
rego
regra
regredir
regresso
regride
regula
reincidir
reinicia
reino
reintegra
reis
reitero
reitor
reja
rejeita
relaciona
relance
relapso
relate
relativa
relaxa
relegado
relegando
relegar
releia
relembra
relendo
relento
reler
relevada
relevando
relevante
relevo
reli
reluta
relutou
reluzente
relva
remo
remunerar
rena
renda
rendia
rendido
renega
renegou
renhida
renomado
renome
renova
rente
renuncia
reocupada
repare
repartido
repartir
reparto
repasse
repatria
repele
repense
repente
repentina
repercute
repete
repique
repito
replantio
repleto
replica
replicou
repolho
repondo
reponha
repor
reposta
repouso
repovoada
repovoar
repreende
represa
repressor
reprime
reprimida
reprimir
reprise
reprisou
reproduz
reprova
reprovou
repudia
repulsa
repulsiva
repus
reputa
requebra
requeira
requer
requinte
requisito
rescaldo
resenha
reserve
reses
resfria
resgate
resgatou
resguardo
reside
residido
residindo
residir
residuais
residual
resigna
resignou
resina
resiste
resoluto
resolve
respaldo
respeito
respingos
respira
responda
resposta
ressaca
ressalta
ressalva
ressarcir
resseguro
ressoa
ressurge
ressurgiu
restinga
restitui
resto
restringi
restrinja
restrito
resulta
resumo
reta
retendo
reter
reteve
reticular
retido
retifica
retina
retinha
retire
retiveram
retrai
retranca
retrato
retribuo
retrocede
retruca
retrucou
returno
reuni
reutiliza
reveja
revela
revelia
revender
revendo
rever
reveses
reveste
revestido
revestir
revezam
revezando
revezavam
revezes
revi
revoada
revoga
revogou
revolta
revolve
reza
riacho
rias
ribalta
rico
ride
riem
rife
rifle
rigor
rija
rima
rindo
rinite
rins
rios
ripa
riquenho
riqueza
riram
rirem
risada
risco
riso
rispidez
risque
risse
riste
ritmada
ritmo
rito
rituais
ritual
rivais
rival
rixa
roam
robalo
robusta
robustez
roca
roces
rocha
rochedo
rochoso
roda
rodinhas
roedor
roendo
roer
rogo
rogue
roias
roldana
role
rolha
rolinha
romance
romanesca
romano
romaria
rombo
romeiro
romena
rompe
rompia
rompido
ronco
ronda
roque
rosa
rosbife
rosca
roseira
roseta
rosnado
rosto
rota
roteador
roteiro
rotina
rotineiro
rotulo
rotunda
rotura
roubo
rouca
roupa
rouxinol
roxo
ruandesa
ruas
rubi
rublo
rubrica
rubrique
rubro
rude
ruela
rufo
ruga
rugido
rugir
rugosa
ruidoso
ruim
ruins
ruivo
ruja
rumina
rumo
ruptura
rurais
rural
rusga
russo
rutilo
sabatina
sabe
sabia
sabido
sabonete
sabor
sabotagem
sabre
sabugo
sabujo
sacerdote
saco
sacrifica
sacristia
sacro
sacudida
sacudindo
sacudir
sadia
sadismo
saem
safe
safira
safra
saga
sagra
sagres
sagrou
saiba
saindo
sair
sala
saldo
saleiro
saleta
salga
salgueiro
saliente
salina
salitre
saliva
salmo
salobra
salpicado
salsa
salsicha
saltinho
salto
salvo
samambaia
samba
sambinha
sambista
samoana
samovar
sana
sanciona
sancionou
sanfona
sangre
sangria
sangue
sanha
sanhudo
sanidade
santa
santeiro
santidade
santinho
sapateado
sapateiro
sapatinho
sapato
sapeca
sapinho
sapo
saque
saquinho
sara
sarcasmo
sarcoma
sarda
sardinha
sargento
sarilho
sarjeta
sarmento
sarna
sarnento
sarraceno
sarro
satanismo
satiriza
satirizou
satisfaz
satisfez
satura
saudade
saudando
saudar
saudita
saudoso
saudou
sauna
savana
saxofone
sazonais
sazonal
seara
sebo
seca
secreta
secular
secunda
secura
sede
sedia
sedimento
sediou
sedoso
sedutor
seduz
segmento
segredo
segrega
segue
segundo
seguro
seira
seis
seita
seiva
seixo
seja
selim
selo
selva
semana
semblante
semeado
semeadura
semeando
semear
semeia
semente
semeou
semestral
semestre
semideus
semigrupo
seminais
seminal
semita
semitismo
sempre
senado
sendo
senha
senhor
seno
sensatez
sensato
sensitiva
senso
sensuais
sensual
sente
senzala
separa
separou
sepse
septal
septo
sepulcro
sepulta
sepultou
sepultura
seque
serelepe
serem
serena
seria
seringa
sermos
serosa
serpente
serra
serrinha
sertaneja
serve
sesmaria
sessenta
sesta
sete
setor
seus
severo
sevilhano
sexo
sexta
sexteto
sexuada
sexuais
sexual
siberiano
sibila
siciliano
siderais
sideral
sido
siga
sigilo
sigla
sigma
significa
signo
silencio
silhar
silhueta
silo
siluriano
silva
silves
simbiose
simboliza
simetria
similar
simpatia
simpatiza
simples
simplista
simula
simulou
sincero
sincicial
sincronia
sindicais
sindical
sindicato
sineira
sinergia
sineta
sinfonia
singela
singular
sinistro
sino
sinta
sintetiza
sinuca
sinuoso
sinusite
sionismo
sionista
sirene
siri
sirva
sisal
sismo
siso
sistema
sisudo
sitio
sito
situa
situou
soado
soalheira
soalho
soando
soar
soava
sobe
sobre
sobrinho
sociais
social
sociedade
soco
soda
sodomia
sofisma
sofista
sofre
software
sogro
sois
soja
soldo
solicito
solista
solo
solta
soltura
soluciona
solvente
sombra
sombreado
sombreiro
sombrinha
sombrio
some
sonata
sonda
soneca
sonegar
soneto
sonho
sons
soou
sopa
sopro
soquete
soro
sorri
sorte
sortida
sorvete
sossego
sotaque
soterrado
soturno
soube
sova
sovina
sozinho
status
suado
suando
suas
suave
suavidade
suaviza
suba
subchefe
subdivide
subestima
subgrupo
subjetivo
subjuga
subjugou
sublevar
sublevou
sublime
sublinha
submarino
submenu
submerge
submergir
submerso
submete
submisso
submundo
subordina
suborno
subrotina
subscreva
subscrito
subsiste
subsistir
subsolo
substitui
substrato
subtrai
subverte
sucata
sucateado
sucede
sucedia
sucedido
sucessivo
sucesso
sucinto
suco
suculenta
sucumbe
sucumbido
sucumbiu
sucupira
sucuri
sucursais
sucursal
sudanesa
sudaneses
sudeste
sudoeste
sudorese
sueco
sues
sufixo
sufoco
suga
sugere
sugestivo
sugiro
suicide
suicidou
suja
sujeira
sujeito
sulco
sulfato
sulfeto
sulfito
sulfuroso
sulina
sulista
sultana
suma
sunga
suntuoso
suor
super
suplantar
suplantou
suplente
supletivo
suplica
supomos
supondo
suponho
supor
suposto
supra
suprida
suprimi
suprindo
suprir
supunha
supus
surda
surdez
surdina
surfando
surfista
surge
surgido
surgindo
surgisse
surgiu
surja
surpresa
surra
surtidas
surtido
surtiu
surto
suscita
suscitou
suserano
suspeita
suspende
suspendia
suspense
suspiro
sussurro
sustenido
sustenta
suster
susto
sutil
sutura
taba
tabela
tablado
tabuada
tabuinhas
tabula
tabuleiro
tabuleta
taca
tachado
tachar
tacho
taciturno
tagarela
taipa
tais
taiwanesa
tajique
talco
talento
talha
talo
talude
talvez
tamanco
tamanho
tamareira
tamarindo
tambor
tamoio
tampa
tampes
tampinha
tanajura
tango
tanino
tanja
tanque
tanquinho
tanto
tape
tapinha
tapioca
tapumes
taquara
taque
tara
tarde
tardio
tarefa
tarifa
tarja
tarraxas
tartaruga
tatu
taurino
taxa
taxes
taxista
tcheca
tear
teatrais
teatral
teatro
tece
tecia
tecido
tecla
tedioso
tegumento
teia
teima
teimosia
teimoso
tela
telha
telinha
tema
tempero
tempinho
templo
tempo
tenaz
tenciono
tendo
tenebrosa
tenente
tenha
tenista
tenor
tenra
tens
tenta
teocracia
teodolito
teologia
teor
teosofia
terapeuta
terapia
terceira
terem
teria
termais
termal
termina
termo
terno
ternura
terra
terreiro
terremoto
terreno
terrestre
terror
terroso
tese
teste
teto
tetraedro
teus
teve
texto
textuais
textual
textura
texugo
tiara
tias
tido
tifo
tigela
tigre
tijolinho
tijolo
timbrado
timbre
time
timoneiro
timorense
tina
tingido
tingir
tinha
tinta
tinteiro
tintura
tios
tipagem
tipo
tire
tirinha
tissular
titica
titio
titulado
titular
tive
toada
toalete
toalha
toca
tocha
todinho
todo
toga
togolesa
toldo
toledana
tolera
tolher
tolice
tolo
toma
tombo
tomista
tonel
tonganesa
tons
tonto
tontura
topo
toque
torce
torcia
torcicolo
torcida
tormenta
torna
toro
torpe
torre
torto
tortuoso
tortura
torturou
tosa
tosco
tosse
tossir
tosta
totais
total
totem
totens
touca
toucinho
toupeira
tourada
tourear
toureio
toureiro
tourinho
touro
toxina
trabalho
trabuco
trace
tradutor
traduz
traem
trafego
traficar
trafico
trago
traje
tralha
trama
tramita
tramitou
trampolim
trance
transe
transfere
transfira
transito
translado
transmite
transmuta
transpor
trapo
traqueal
traquina
trarei
traria
traseira
traste
trata
trauma
trave
traz
trecho
treco
treino
trejeitos
trem
trens
trepa
trespasse
treta
trevo
treze
triagem
tribais
tribal
tribo
tribuna
tributar
tributo
triciclo
tridente
trigo
trigueiro
trilha
trilogia
trimestre
trina
trinca
trindade
trinta
trio
tripa
triplica
diceware-1.0.1/docs/ 0000775 0000000 0000000 00000000000 14732404111 0014221 5 ustar 00root root 0000000 0000000 diceware-1.0.1/docs/Makefile 0000664 0000000 0000000 00000015620 14732404111 0015665 0 ustar 00root root 0000000 0000000 # Makefile for Sphinx documentation
#
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
PAPER =
BUILDDIR = _build
# User-friendly check for sphinx-build
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
endif
# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
# the i18n builder cannot share the environment and doctrees with the others
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest coverage gettext
help:
@echo "Please use \`make ' where is one of"
@echo " html to make standalone HTML files"
@echo " dirhtml to make HTML files named index.html in directories"
@echo " singlehtml to make a single large HTML file"
@echo " pickle to make pickle files"
@echo " json to make JSON files"
@echo " htmlhelp to make HTML files and a HTML help project"
@echo " qthelp to make HTML files and a qthelp project"
@echo " devhelp to make HTML files and a Devhelp project"
@echo " epub to make an epub"
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
@echo " latexpdf to make LaTeX files and run them through pdflatex"
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
@echo " text to make text files"
@echo " man to make manual pages"
@echo " texinfo to make Texinfo files"
@echo " info to make Texinfo files and run them through makeinfo"
@echo " gettext to make PO message catalogs"
@echo " changes to make an overview of all changed/added/deprecated items"
@echo " xml to make Docutils-native XML files"
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
@echo " linkcheck to check all external links for integrity"
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
@echo " coverage to run coverage check of the documentation (if enabled)"
clean:
rm -rf $(BUILDDIR)/*
html:
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
dirhtml:
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
singlehtml:
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
@echo
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
pickle:
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
@echo
@echo "Build finished; now you can process the pickle files."
json:
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
@echo
@echo "Build finished; now you can process the JSON files."
htmlhelp:
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
@echo
@echo "Build finished; now you can run HTML Help Workshop with the" \
".hhp project file in $(BUILDDIR)/htmlhelp."
qthelp:
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
@echo
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/diceware.qhcp"
@echo "To view the help file:"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/diceware.qhc"
devhelp:
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
@echo
@echo "Build finished."
@echo "To view the help file:"
@echo "# mkdir -p $$HOME/.local/share/devhelp/diceware"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/diceware"
@echo "# devhelp"
epub:
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
@echo
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
latex:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
@echo "Run \`make' in that directory to run these through (pdf)latex" \
"(use \`make latexpdf' here to do that automatically)."
latexpdf:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo "Running LaTeX files through pdflatex..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
latexpdfja:
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
@echo "Running LaTeX files through platex and dvipdfmx..."
$(MAKE) -C $(BUILDDIR)/latex all-pdf-ja
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
text:
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
@echo
@echo "Build finished. The text files are in $(BUILDDIR)/text."
man:
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
@echo
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
texinfo:
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
@echo
@echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
@echo "Run \`make' in that directory to run these through makeinfo" \
"(use \`make info' here to do that automatically)."
info:
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
@echo "Running Texinfo files through makeinfo..."
make -C $(BUILDDIR)/texinfo info
@echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
gettext:
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
@echo
@echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
changes:
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
@echo
@echo "The overview file is in $(BUILDDIR)/changes."
linkcheck:
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
@echo
@echo "Link check complete; look for any errors in the above output " \
"or in $(BUILDDIR)/linkcheck/output.txt."
doctest:
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
@echo "Testing of doctests in the sources finished, look at the " \
"results in $(BUILDDIR)/doctest/output.txt."
coverage:
$(SPHINXBUILD) -b coverage $(ALLSPHINXOPTS) $(BUILDDIR)/coverage
@echo "Testing of coverage in the sources finished, look at the " \
"results in $(BUILDDIR)/coverage/python.txt."
xml:
$(SPHINXBUILD) -b xml $(ALLSPHINXOPTS) $(BUILDDIR)/xml
@echo
@echo "Build finished. The XML files are in $(BUILDDIR)/xml."
pseudoxml:
$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml
@echo
@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml."
diceware-1.0.1/docs/api.rst 0000664 0000000 0000000 00000002021 14732404111 0015517 0 ustar 00root root 0000000 0000000 API
===
`diceware` code is geared towards commandline usage. You can, however,
use it from Python. The API docs are here to assist you with that.
For using `diceware` in your own, `setuptools`-based Python project,
you can add it as an install requirement in ``setup.py`` of your
project::
from setuptools import setup
# ...
setup(
name="myproject",
# ...
install_requires=[
# packages we depend on...
'setuptools',
'diceware',
# ...
],
# ...
)
Of course there are other ways to make `diceware` available.
`diceware` main module
----------------------
.. automodule:: diceware
:members:
`diceware.logger`
-----------------
.. automodule:: diceware.logger
:members:
`diceware.config`
-----------------
.. automodule:: diceware.config
:members:
`diceware.wordlist`
-------------------
.. automodule:: diceware.wordlist
:members:
`diceware.random_sources`
-------------------------
.. automodule:: diceware.random_sources
:members:
diceware-1.0.1/docs/changes.rst 0000664 0000000 0000000 00000000035 14732404111 0016361 0 ustar 00root root 0000000 0000000
.. include:: ../CHANGES.rst
diceware-1.0.1/docs/conf.py 0000664 0000000 0000000 00000026161 14732404111 0015526 0 ustar 00root root 0000000 0000000 #!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# diceware documentation build configuration file, created by
# sphinx-quickstart on Mon Jan 26 23:35:24 2015.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys
import os
import diceware
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.viewcode',
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix of source filenames.
source_suffix = '.rst'
# The encoding of source files.
#source_encoding = 'utf-8-sig'
# The master toctree document.
master_doc = 'index'
# General information about the project.
project = 'diceware'
copyright = '2015-2024, Uli Fouquet'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = diceware.__version__
# The full version, including alpha/beta/rc tags.
release = version
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = 'en'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ['_build']
# The reST default role (used for this markup: `text`) to use for all
# documents.
#default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
# If true, keep warnings as "system message" paragraphs in the built documents.
#keep_warnings = False
# -- Options for HTML output ----------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'sphinx_rtd_theme'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory.
#html_theme_path = []
# The name for this set of Sphinx documents. If None, it defaults to
# " v documentation".
#html_title = None
# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title = None
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
#html_logo = None
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
#html_favicon = None
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
# directly to the root of the documentation.
#html_extra_path = []
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# Additional templates that should be rendered to pages, maps page names to
# template names.
#html_additional_pages = {}
# If false, no module index is generated.
#html_domain_indices = True
# If false, no index is generated.
#html_use_index = True
# If true, the index is split into individual pages for each letter.
#html_split_index = False
# If true, links to the reST sources are added to the pages.
#html_show_sourcelink = True
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
#html_show_sphinx = True
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
#html_show_copyright = True
# If true, an OpenSearch description file will be output, and all pages will
# contain a tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# This is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = None
# Language to be used for generating the HTML full-text search index.
# Sphinx supports the following languages:
# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
#html_search_language = 'en'
# A dictionary with options for the search language support, empty by default.
# Now only 'ja' uses this config value
#html_search_options = {'type': 'default'}
# The name of a javascript file (relative to the configuration directory) that
# implements a search results scorer. If empty, the default will be used.
#html_search_scorer = 'scorer.js'
# Output file base name for HTML help builder.
htmlhelp_basename = 'dicewaredoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#'preamble': '',
# Latex figure (float) alignment
#'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
('index', 'diceware.tex', 'diceware Documentation',
'Uli Fouquet', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
# If true, show page references after internal links.
#latex_show_pagerefs = False
# If true, show URL addresses after external links.
#latex_show_urls = False
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
#latex_domain_indices = True
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'diceware', 'create a passphrase',
['Written by Uli Fouquet and contributors.'], 1)
]
# If true, show URL addresses after external links.
#man_show_urls = False
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'diceware', 'diceware Documentation',
'Uli Fouquet', 'diceware', 'One line description of project.',
'Miscellaneous'),
]
# Documents to append as an appendix to all manuals.
#texinfo_appendices = []
# If false, no module index is generated.
#texinfo_domain_indices = True
# How to display URL addresses: 'footnote', 'no', or 'inline'.
#texinfo_show_urls = 'footnote'
# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False
# -- Options for Epub output ----------------------------------------------
# Bibliographic Dublin Core info.
epub_title = 'diceware'
epub_author = 'Uli Fouquet'
epub_publisher = 'Uli Fouquet'
epub_copyright = copyright
# The basename for the epub file. It defaults to the project name.
#epub_basename = 'diceware'
# The HTML theme for the epub output. Since the default themes are not optimized
# for small screen space, using the same theme for HTML and epub output is
# usually not wise. This defaults to 'epub', a theme designed to save visual
# space.
#epub_theme = 'epub'
# The language of the text. It defaults to the language option
# or 'en' if the language is not set.
#epub_language = ''
# The scheme of the identifier. Typical schemes are ISBN or URL.
#epub_scheme = ''
# The unique identifier of the text. This can be a ISBN number
# or the project homepage.
#epub_identifier = ''
# A unique identification for the text.
#epub_uid = ''
# A tuple containing the cover image and cover page html template filenames.
#epub_cover = ()
# A sequence of (type, uri, title) tuples for the guide element of content.opf.
#epub_guide = ()
# HTML files that should be inserted before the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_pre_files = []
# HTML files shat should be inserted after the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_post_files = []
# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']
# The depth of the table of contents in toc.ncx.
#epub_tocdepth = 3
# Allow duplicate toc entries.
#epub_tocdup = True
# Choose between 'default' and 'includehidden'.
#epub_tocscope = 'default'
# Fix unsupported image types using the Pillow.
#epub_fix_images = False
# Scale large images.
#epub_max_image_width = 0
# How to display URL addresses: 'footnote', 'no', or 'inline'.
#epub_show_urls = 'inline'
# If false, no index is generated.
#epub_use_index = True
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}
diceware-1.0.1/docs/config.rst 0000664 0000000 0000000 00000007570 14732404111 0016231 0 ustar 00root root 0000000 0000000 Configuration Files
===================
You can use configuration files to persistently override built-in
defaults and make your custom settings the default.
`diceware` configuration files follow simple ``.ini``-style and look
like this::
[diceware]
num = 3
caps = off
specials = 2
delimiter = "MYDELIMITER"
randomsource = system
wordlist = "en"
dice_sides = 6
These settings would mean that by default phrases with three words
(instead six) would be created. Commandline options, however, override
config file settings. So, with the settings above::
$ diceware
Duma7YDELIMITER56MYDE^IMITERJock
we will get three-word phrases while with::
$ diceware --delimiter=FOO
AmuseFOO]us(FOO18th
we will override the config file setting for ``delimiter``. Other
settings from config file are still valid.
Option Names
------------
The options names have to match long argument names, as output with
``--help``. The values set must meet the requirements valid for
commandline usage.
You can use all or only some (or none) of the above options. Please
note that other entries, providing unknown option names, are
ignored. That means that also typos might lead to ignored entries.
Please note, that all options must be set within a section
``[diceware]``.
Config Files Name and Path
--------------------------
Prior to version 1.0 we looked for a single configuration file in the calling
users' home directory only. The file had to be called::
.diceware.ini
(please note the leading dot). If such a file were missing, buildt-in
defaults applied.
Since version 1.0 we look into several additional locations, but values set in
``.diceware.ini`` still always override settings from other configuration files
found.
In order of precedence (with highest priority first) we look into the following
paths::
${HOME}/.diceware.ini
Values set here override settings in any of the following files. If
``${XDG_CONFIG_HOME}`` is defined and not empty, we then look into
::
${XDG_CONFIG_HOME}/diceware/diceware.ini
or otherwise into
::
${HOME}/.config/diceware/diceware.ini
Finally, if a colon-separated and not empty list of directories is set
in
::
${XDG_CONFIG_DIRS}
we look up any directory in this list, appended by
::
/diceware/diceware.ini
If none of the above files exist, default settings apply. Using this scheme we
follow the `XDG Base Directory Specification
`_.
Examples
........
If you set the environment variable ``${XDG_CONFIG_DIRS}`` to ``/foo:/etc``,
and then create a file ``diceware.ini`` in directory
``/foo/diceware/`` with contents like this::
[diceware]
num = 2
then `diceware` will create passphrases with two terms, except other
configuration files or commandline options overrule this setting.
Precedence of paths in ``${XDG_CONFIG_DIRS}`` is from least to highest
priority. Therefore, if you create a file ``/etc/diceware/diceware.ini`` with
content
::
[diceware]
num = 4
then this setting will override ``num = 2`` from the file above. Still any
setting in ``${XDG_CONFIG_HOME}/diceware/diceware.ini`` or
``${HOME}/.config/diceware/diceware.ini`` as explained above will take
precedence while options set in ``${HOME}/.diceware.ini`` or on the commandline
like
::
diceware -n 6
will still have highest priority.
Option Values
-------------
The option values set can be strings, integers, or boolean
values.
`diceware` accepts ``yes``, ``no``, ``1``, ``0``, ``true``, ``false``,
``on``, and ``off`` as boolean values.
Some options require their setting to be taken from a fixed set of
names/values, for instance the ``randomsource`` option. You can
normally get the allowed values from calling ``diceware --help``.
String-based options (like `delimiter`) accept values enclosed in
quotes to allow whitespace-only values.
If some value cannot be parsed, an exception is raised.
diceware-1.0.1/docs/index.rst 0000664 0000000 0000000 00000001332 14732404111 0016061 0 ustar 00root root 0000000 0000000 .. diceware documentation master file, created by
sphinx-quickstart on Mon Jan 26 23:35:24 2015.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to `diceware` documentation
=============================================
Version: |version|
|bdg-tests|
.. toctree::
:maxdepth: 2
readme
randomsources
config
wordlists
api
changes
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
.. |bdg-tests| image:: https://github.com/ulif/diceware/actions/workflows/tests.yml/badge.svg?branch=master
:target: https://github.com/ulif/diceware/actions/workflows/tests.yml
:alt: Test Status
diceware-1.0.1/docs/make.bat 0000664 0000000 0000000 00000016120 14732404111 0015626 0 ustar 00root root 0000000 0000000 @ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^` where ^ is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
echo. coverage to run coverage check of the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
REM Check if sphinx-build is available and fallback to Python version if any
%SPHINXBUILD% 2> nul
if errorlevel 9009 goto sphinx_python
goto sphinx_ok
:sphinx_python
set SPHINXBUILD=python -m sphinx.__init__
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
:sphinx_ok
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\diceware.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\diceware.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %~dp0
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "coverage" (
%SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
diceware-1.0.1/docs/manpage.rst 0000664 0000000 0000000 00000022026 14732404111 0016365 0 ustar 00root root 0000000 0000000 :title: diceware
:title_upper: DICEWARE
:subtitle: create passphrases
:manual_section: 1
:manual_group: User Commands
:date: December 2024
:version: diceware 1.0.1
:author: Written by Uli Fouquet and contributors
synopsis
--------
``diceware`` [`OPTION`]... [`FILE`]
description
-----------
``diceware`` generates passphrases by concatenating words randomly picked from
wordlists. It supports also real dice for passphrase generation.
It is based on the proposals of Arnold G. Reinhold on http://diceware.com.
options
-------
``positional arguments``:
FILE
optional input wordlist. ``'-'`` will read from stdin. Should contain one
word per line.
``optional arguments``:
``-h``, ``--help``
show help message and exit
``-n`` `NUM`, ``--num`` `NUM`
number of words to concatenate. Default 6
``-c``, ``--caps``
Capitalize words. This is the default.
``--no-caps``
Turn off capitalization.
``-s`` `NUM`, ``--specials`` `NUM`
Insert NUM special chars into generated word.
``-d`` `DELIMITER`, ``--delimiter`` `DELIMITER`
Separate words by DELIMITER. Empty string by default.
``-r`` `SOURCE`, ``--randomsource`` `SOURCE`
Get randomness from this source. Possible values:
``realdice``, ``system``. Default: ``system``
``-w`` [`NAME` [`NAME` ...]], ``--wordlist`` [`NAME` [`NAME` ...]]
Use words from this wordlist. Possible values: `ca`, `de`, `de_8k`, `en`,
`en_8k`, `en_adjectives`, `en_eff`, `en_nouns`, `en_orig`, `en_securedrop`.
`es`, `it`, `pt-br`. Default: ``en_eff``
``-v``, ``--verbose``
Be verbose. Use several times for increased verbosity.
``--version``
output version information and exit.
``Arguments related to`` `realdice` ``randomsource``:
``--dice-sides`` `N`
Number of sides of dice. Default: 6
environment variables
---------------------
``XDG_CONFIG_HOME``
If set and not empty, this variable determines the directory to use for
user-local configuration files. We then lookup
`${XDG_CONFIG_HOME}/diceware/diceware.ini` and values set here override
system-wide config files.
``XDG_CONFIG_DIRS``
If set and not empty, this variable is interpreted as colon-separated list
of directories, that might contain system-wide configuration files. We
lookup `/diceware/diceware.ini` for each directory set in
`$XDG_CONFIG_DIRS`.
``XDG_DATA_HOME``
If set and not empty, this variable determines a directory to search for
additional wordlists. We then lookup `${XDG_DATA_HOME}/diceware` for any
existing wordlist files.
``XDG_DATA_DIRS``
If set and not empty, this variable is interpreted as colon-separated list
of directories, that might contain additional wordlist files. See below. We
lookup `/diceware/` then for each directory set in the list.
files
-----
Depending on environment variables set (or not set) we lookup certain
directories for configuration files called ``diceware.ini`` and for wordlist
files.
CONFIGURATION FILES
...................
Configuration settings for ``diceware`` can be spread over several
configuration files. We parse configuration values from the files given below,
but values set in former files take precedence over values set in latter ones.
`~/.diceware.ini`
Your personal diceware configuration file. Values set here override values
from any other configuration file.
`$XDG_CONFIG_HOME/diceware/diceware.ini`
Additional location for your personal diceware configuration. Values set
here will override any system-wide valid values but can be overridden by
`~/.diceware.ini`.
`$HOME/.config/diceware/diceware.ini`
Alternative location for diceware configuration, only used if
`${XDG_CONFIG_HOME}` is empty or unset.
`/etc/xdg/diceware/diceware.ini`
If ``$XDG_CONFIG_DIRS`` is not set or empty, we look here for a system-wide
configuration file. Values set here take least precedence.
WORDLIST FILES AND WORDLIST DIRECTORIES:
........................................
``diceware`` comes with a set of wordlists but enables you to add new wordlists
by putting them into certain directories. The paths where the lists are stored
(including the built-in ones) is shown using ``--show-wordlist-dirs``.
Wordlist files are expected to contain lines with one term on each
line and they must have a certain filenames to be found.
Wordlist filenames have to follow the pattern: ``wordlist_.txt``
where ```` can be any name consisting of letters, numbers, underscores and
hyphens. For instance ``wordlist_en_eff.txt`` is the filename of the EFF
(electronic frontier foundation) word list. ``en_eff`` is the name of this list.
We support ``.txt`` and ``.asc`` as filename extensions for wordlists, where
``.txt`` files are expected to be plain wordlists and ``.asc`` files should
provide a PGP-signature.
If wordlists with the same name are found in different directories then the one
in the directory with the highest precedence is taken only. The following
locations are ordered by precedence (highest first). Therefore built-in
wordlists cannot be overridden by custom wordlists. You can, however, use
custom wordlists with a different name.
Directories we look up that do not exist (in part or completely) are silently
skipped when searching for wordlist files.
`/wordlists/`
The directory containing the built-in wordlists as part of the
installation. These are the wordlists that are always available, regardless
of configuration values and their exact location depends on the
installation location of the ``diceware`` package.
`$XDG_DATA_HOME/diceware/`
If $XDG_DATA_HOME is set and not empty, we look in this directory for
wordlists.
`$HOME/.local/share/diceware/`
If $XDG_DATA_HOME is unset or empty, we look into this directory for
wordlists.
`/diceware` from `$XDG_DATA_DIRS`
If $XDG_DATA_DIR is set and not empty, it is interpreted as a
colon-separated list of directories with `/diceware` appended. So,
`/foo/bar:/baz` will make us look into `/foo/bar/diceware/` and
`/baz/diceware/` in that order.
`/usr/local/share/diceware/`, `/usr/share/diceware`
If $XDG_DATA_DIRS is unset or empty, we look into these two directories for
wordlists.
examples
--------
``diceware``
Create a passphrase using defaults. Outputs something like
"``WheelDyeHonkCanvasWitsPuck``"
``diceware -d`` `"-"` ``-n`` `3`
Create a passphrase with three words, separated by dash ("`-`"). Results in
something like "``Wheel-Dye-Honk``"
``diceware --no-caps``
Create a passphrase without capital words. Creates something like
"``wheel-dye-honk``".
``diceware -r`` `realdice`
Use real dice to create a passphrase. The program will tell you what to do
(roll dice and tell what numbers appear) and in the end present a
passphrase.
``diceware -r`` `realdice` ``--dice-sides`` `20`
Use real dice, as shown above, but this time use dice with 20 faces,
instead of standard, 6-sided dice.
``diceware mywordlist.txt``
Create a passphrase with words from file "mywordlist.txt". The file should
contain one word on each line.
``diceware -w en_securedrop -s 2``
Create a passphrase with two special chars spread over the generated
passphrase and containing words from wordlist "``en_securedrop``". This is
one of the wordlists that come included with `diceware`. Creates something
like:
"``PlayaBrigVer{SeesNe-tsGets``".
``diceware -w en_adjectives en_nouns -n 2``
Create two syntactically meaningful phrases, each one consisting of an
adjective and a noun. Results in something like:
"``CruelAttendeesCleanCoffee``".
copyright
---------
Copyright (C) 2015-2024 Uli Fouquet and contributors
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see .
diceware is a concept invented by Arnold G. Reinhold, Cambridge, Massachusetts
USA.
The Securedrop wordlist (file ``wordlists/wordlist_en_securedrop.asc``) by
Heartsucker is licensed under the `MIT` license (see http://mit-license.org/).
The EFF wordlist (file ``wordlsts/wordlist_en_eff.txt``) is licensed by the
Electronic Frontier Foundation under the `Creative Commons CC-BY 3.0 US`
license (see https://creativecommons.org/licenses/by/3.0/us/).
The copyright for the the `Diceware SecureDrop` list is owned by `@heartsucker`.
Copyright for the `EFF large` list by `Joseph Bonneau` and `EFF`. Copyright for
the brazilian portuguese list by `@drebs`. Copyright for the english adjective
and noun lists by `NaturalLanguagePasswords`.
"Diceware" is a trademark of Arnold G Reinhold, used with permission.
diceware-1.0.1/docs/randomsources.rst 0000664 0000000 0000000 00000010633 14732404111 0017642 0 ustar 00root root 0000000 0000000 Sources of Randomness
=====================
The security of your passphrase depends naturally heavily on the
source of randomness you use. If the source is good, it is really hard
to predict your passphrase. If it is bad, your passphrase might be
surprisingly easy to guess. `diceware` does not provide own
pseudo-random number generators or similar. Instead we let you choose
yourself the source of randomness you trust.
`diceware` supports different sources of randomness, which can be
chosen with the ``-r `` or ``--randomsource ``
option.
Use the ``--help`` option to list all valid values for the
``--randomsource`` option.
Python-developers can provide their own source of randomness. If their
package is installed together with `diceware` (and their source is
registered correctly), `diceware` will offer their source as valid
option.
System Random
-------------
By default `diceware` uses the Python standard lib
:class:`random.SystemRandom` class to retrieve randomness. This class
calls an OS-specific source of randomness that returns data normally
unpredictable enough for our purposes. The quality of randomness
therefore depends on the quality of your OS implementation.
As a user you can enforce the use of this source of randomness with
the ``-r system`` option.
Please note that the Raspberry Pi is said to provide a hardware random
number generator that delivers "real randomness". One has to enable it
system-wide to make it the active source of randomness on a Raspberry
Pi. If done properly, also :class:`randomSystemRandom` (and hence
`diceware`) should use good quality random numbers.
Real Dice
---------
`diceware` also supports real dice as source of randomness. You can
pick this source of randomness with the ``-r realdice`` option.::
$ diceware -r realdice
Warning: entropy is reduced!
Please roll 5 dice (or a single dice 5 times).
What number shows dice number 1? 1
What number shows dice number 2? 2
What number shows dice number 3? 3
What number shows dice number 4? 4
What number shows dice number 5? 5
Warning: entropy is reduced!
Please roll 5 dice (or a single dice 5 times).
What number shows dice number 1? 2
What number shows dice number 2? 3
What number shows dice number 3? 3
What number shows dice number 4? 5
What number shows dice number 5? 1
...
What number shows dice number 5? 3
AnyDogmaShrikeSageSableHoar
If you see a warning "entropy is reduced!", this means that not the
whole range of the wordlist you use can be put to account. Instead we
use (in case of 5 rolls) the first 6^5 words only. If you use a
wordlist with 6^n elements (for instance the original list with 7776
elements of Mr. Rheinhold), you will not get this warning.
Currently we support only 6-sided dice.
Bring Your Own Source (for developers)
--------------------------------------
`diceware` uses Python entry-points for looking up sources of
randomness. That means you can write your own source of randomness in
Python, register it in your own package and once both, your package
and `diceware` are installed together on a system, your source of
randomness will be offered and used by `diceware` (if the user selects
it).
To build your own source of randomness you have to provide a class
with a constructor that accepts a single `options` object. Furthermore
a source of randomness has to provide a `choice(sequence)` method. It
comes down to something like that::
class MySourceOfRandomness(object):
"Tell about your source..."
def __init__(self, options):
# initialize, etc.
def choice(sequence):
# return one of the elements in `sequence`
The `choice()` method will be called for each word of the passphrase
and for each special char. Please do not make assumptions about the
`sequence` passed to choice. It will be a list of "somethings" and be
indexable.
If your source is ready, you can register it in the ``setup.py`` of
your package like this::
# setup.py
...
setup(
...
entry_points={
'diceware_random_sources': [
'mysrc = mypkg.sources:MySourceOfRandomness',
# add more sources of randomness here...
],
}
)
Here we assume that you defined `MySourceOfRandomness` in a package
`mypkg` and a module called `sources`.
Once this package is installed, you can run `diceware` like this::
$ diceware -r mysrc
and your source of randomness will be used.
diceware-1.0.1/docs/readme.rst 0000664 0000000 0000000 00000000035 14732404111 0016206 0 ustar 00root root 0000000 0000000
.. include:: ../README.rst
diceware-1.0.1/docs/requirements.txt 0000664 0000000 0000000 00000002223 14732404111 0017504 0 ustar 00root root 0000000 0000000 #
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --extra=docs --strip-extras
#
alabaster==1.0.0
# via sphinx
babel==2.16.0
# via sphinx
certifi==2024.12.14
# via requests
charset-normalizer==3.4.0
# via requests
docutils==0.21.2
# via
# sphinx
# sphinx-rtd-theme
idna==3.10
# via requests
imagesize==1.4.1
# via sphinx
jinja2==3.1.5
# via sphinx
markupsafe==3.0.2
# via jinja2
packaging==24.2
# via sphinx
pygments==2.18.0
# via sphinx
requests==2.32.3
# via sphinx
snowballstemmer==2.2.0
# via sphinx
sphinx==8.1.3
# via
# diceware (pyproject.toml)
# sphinx-rtd-theme
# sphinxcontrib-jquery
sphinx-rtd-theme==3.0.2
# via diceware (pyproject.toml)
sphinxcontrib-applehelp==2.0.0
# via sphinx
sphinxcontrib-devhelp==2.0.0
# via sphinx
sphinxcontrib-htmlhelp==2.1.0
# via sphinx
sphinxcontrib-jquery==4.1
# via sphinx-rtd-theme
sphinxcontrib-jsmath==1.0.1
# via sphinx
sphinxcontrib-qthelp==2.0.0
# via sphinx
sphinxcontrib-serializinghtml==2.0.0
# via sphinx
urllib3==2.3.0
# via requests
diceware-1.0.1/docs/wordlists.rst 0000664 0000000 0000000 00000027224 14732404111 0017014 0 ustar 00root root 0000000 0000000 Wordlists
=========
The passphrases generated by `diceware` naturally depend on the set of
words used, the wordlists.
`diceware` comes with some wordlists out-of-the-box, that might be a
good choice for usual private use.
.. warning::
We do *not* use the `diceware standard wordlist`_,
but the `long EFF wordlist`_ (see below), because it is more secure
and more comfortable to use.
Currently (v1.0) we provide the following lists:
- `ca` (8192/2^13 words)
A list of Catalan words. Compiled by `@jawlenskys`_ from Debian dict file for
Catalan and a selection of most used Catalan Wikipedia words. This list
provides the `prefix property`_.
- `de` (7776/6^5 words)
A list of German words, suitable for use with dice. Generated with
`diceware-list` based on wordlists from `Institut für Deutsche Sprache`_,
Mannheim and filtering blacklists. This list provides the `prefix property`_.
- `de_8k` (8192/2^13 words)
A longer list of German words, suitable for use with machines, nerds, and
other binary-geared entities. Generated with `diceware-list` based on
wordlists from `Institut für Deutsche Sprache`_, Mannheim and filtering
blacklists. This list provides the `prefix property`_.
- `en_eff` (7776/6^5 words, default)
This is the `long EFF wordlist`_ as published by the `Electronic Frontier
Foundation`_ in mid-2016 and used by default. They put real `scientific
effort`_ into the creation of this list which might considerably ease the
use of passphrases generated with it. When using real dice (or other
six-based randomness generators) use is definitely recommended!
It was the first list in `diceware` that provided the
`prefix property`_. That means it contains no word which is a prefix
of another word. Lists without this property might provide a slightly
decreased entropy.
- `en_securedrop` (8192/2^13 words)
We provide a hand-crafted `en_securedrop` wordlist provided
by `@Heartsucker`_. It contains 8,192 english words and
phrases. This list is based on the `diceware standard wordlist`_ and
extended to offer better memorizable words. Please see
https://github.com/heartsucker/diceware for details. The name
`en_securedrop` refers to the `securedrop`_ project.
- `en_adjectives` (1296/6^4 words)
A list of english adjectives. This list is relatively short and should be
used together with other lists -- for instance the `en_nouns` list -- to
provide a sufficient security level. List provided from the
`NaturalLanguagePasswords`_ project. This list got lots of short terms (good
for comfort, bad for security) and does *not* provide the `prefix property`_.
- `en_nouns` (7776/6^5 words)
A list of english nouns. Can be used together with other lists -- for
instance the `en_adjectives` list to form natural language phrases. List
provided from the `NaturalLanguagePasswords`_ project. This list got lots of
short terms (good for comfort, bad for security) and does *not* provide the
`prefix property`_.
- `es` (8192/2^13 words)
A list of Spanish words, carefully crafted by `@jawlenskys`_ from Debian dict
file for Spanish and a selection of most used Spanish words from `Corpus de
Referencia del Español Actual (CREA)`_. This list provides the `prefix
property`_ and is.
- `fr` (7776/6^5 words)
A list of french words, compiled by @Tango for Tails OS and Tor. Handcrafted
to avoid offensive and rare words. This list provides the `prefix property`_.
- `it` (8192/2^13 words)
A list of Italian words, Compiled by `@jawlenskys`_ from Debian dict file for
Italian and an `Italian frequency list
`
generated from TV and movie subtitles. This list provides the `prefix
property`_.
- `pt-br` (7776/6^5 words)
A list of Brazilian Portugese words, carefully crafted by `@drebs`_. This
list contains no overshort words. It also provides the `prefix property`_.
You can pick wordlists to use with the ``-w`` or ``--wordlist`` option. Lists
with 7776 words are made for six-sided dice (7776 = 6^5) while lists with 8192
(2^13) words are made for machines and 2-sided coins.
You can also select several wordlists at once. In that case each "word" of the
generated passphrase consists of one word from each of the lists in the order
given.
Example::
$ diceware -w en_adjectives en_nouns -n 2 -d '-'
lax-toast-strong-reason
We get two "words" (`lax-toast` and `strong-reason`) each consisting of a
leading adjective and a trailing noun.
If you'd prefer the Yoda style, you could change that order::
$ diceware -w en_nouns en_adjectives -n 2 -d '-'
grains-honest-oxidant-happy
Each such term (like `oxidant-happy`) provides an entropy of about 23 bits.
Retired Wordlists
-----------------
Some wordlists have been removed from `diceware`, because they contained bad
language and words, users might be uncomfortable with.
- `en` (8192 words, removed in v0.10)
The so-called `8k wordlist`_ from Mr. Reinhold as published on
http://diceware.com/. It was something like the canonical wordlist for use
with binary-geared entities like computers or nerds.
- `en_orig` (7776 words, removed in v0.10)
This is the `diceware standard wordlist`_ as provided by
Mr. Reinhold. Something like the canonical list in former times.
There are now considerable alternatives.
None of these lists provide the `prefix property`_. They also provide overshort
terms, i.e. words that are so short, that they can lead to passphrases that are
easier to break by checking all char combinations than to try all combinations
of words in the wordlist.
Using Custom Wordlists
----------------------
You can use any wordlist you like. Simply give the filename and it
will be used::
$ diceware mywordlist.txt
HiHelloHelloHiHiHi
You can even pipe-in dynamic wordlists. Just use the dash ``-`` as
filename::
$ mywordgenerator.sh | diceware -
HiHiHelloHiHiHello
for instance.
Of course you have to give the filenames of your files with each call
to `diceware`.
But, if you want to store a wordlist persistently, you can do so too.
The built-in wordlists we offer for use with `diceware` are all stored in a
single directory. The exact location is output by ``--show-wordlist-dirs`` as
first entry::
$ diceware --show-wordlist-dirs
/path/to/some/directory
/path/to/other/directory
...
But also all the other directories listed by this command are looked up for
wordlist files (if they exist).
You can put your own wordlists into one of these folders (here:
``/path/to/some/directory``, ``/path/to/other/directory``) and rename the file
to something like ``wordlist_MY_SPECIAL_NAME.txt``. Afterwards you can pick
your wordlist by running::
$ diceware -w MY_SPECIAL_NAME
`diceware` will use this file of yours then to create a
passphrase. Please note that `diceware` only accepts files that are
named like::
wordlist_NAME.txt
or::
wordlist_OTHER_NAME.asc
I.e. we expect ``wordlist_`` at the beginning and some filename
extension like ``.txt`` at the end. Furthermore names must not contain
funny characters. In fact we accept regular letters, dashes, numbers,
and underscores only. Files that do not follow these naming convention
are ignored.
A list of all available wordlist names can be retrieved with ``--help``. See
the ``--wordlist`` explanation.
Where Wordlists are Looked Up
-----------------------------
Starting with version 1.0 wordlists can be stored in several directories. We
look for wordlists in certain directories only. The list of these directories
depends partly on environment variables. It can be shown with::
$ diceware --show-wordlist-dirs
/some/installdir/diceware/wordlists
/home/user/.local/share/diceware
/usr/local/share/diceware
/usr/share/diceware
and may be different on your machine. Wordlist directories are looked up in the
order listed by ``--show-wordlist-dirs``. Wordlists in former directories
override same-named in latter ones. So, with the order given above, a wordlist
named ``wordlist_foo.txt`` in ``/some/installdir/diceware/wordlists`` will have
precedence over a same-named wordfile located in ``/usr/share/diceware``.
The ``wordlists/`` directory of the Python package itself is always the first
we look into.
Afterwards we look up ``${XDG_DATA_HOME}/diceware/`` or, if this environment
variable is not set or empty, ``${HOME}/.local/share/diceware``.
At the end we look into each of the directories listed in the
colon-separated list in ``${XDG_DATA_DIRS}``, appended by ``/diceware``. So, if
``${XDG_DATA_DIRS}`` is set to ``/foo:/bar:/etc/foo``, we will look into
``/foo/diceware``, ``/bar/diceware`` and ``/etc/foo/diceware`` (in that order)
for wordlists.
In case the environment variable ``${XDG_DATA_DIRS}`` is not set or empty, we
look into ``/usr/local/share/diceware`` and ``/usr/share/diceware`` instead.
Under all circumstances we stop looking up wordlist directories, when the first
match (with a given wordlist name) happened.
All these rules try to follow the `XDG Base Directory Specification`_.
Plain Wordlists
---------------
Out of the box, `diceware` supports plain wordlists, PGP-signed
wordlists, and numbered wordlists. Plain wordlists look like this::
termone
termtwo
anotherterm
Each line in such a file is considered a word of the wordlist. Empty
lines are ignored.
Whitespaces are allowed if they are not at the beginning or end of a
line, stripped off otherwise.
Numbered Wordlists
------------------
Numbered wordlists contain numbers in each line, telling a
sequence of dice rolls like so::
11111 aterm
11112 anotherterm
...
`diceware` detects such lines and in this case extracts ``aterm`` and
``anotherterm`` as wordlist entries.
Apart from simple digits written next to each other, `diceware` also
accepts numbers separated by dashes like this::
1-1-1-1-1 aterm
1-1-1-1-2 anotherterm
which is handy when working with wordlists for dice with more than 9
sides.
PGP-signed Wordlists
--------------------
PGP-signed wordlists are wordlists (ordinary or numbered ones), that
have been cryptographically signed with PGP or GPG. They look like
this::
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
foo
bar
baz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iJwEAQEKAAYFAlW00GEACgkQ+5ktCoLaPzSutwP8DVgdjBFqRXNKaZlvd8pR+P3k
8xx5XLC0OFwZQFx4Ls8xl3+/xfvCNxCGSZjD6BGPzNZCK7bmQQYWcrsoEyX5jAC3
dXjAPj0nct/PkJQlrUjUI2qrO0dFfU7sRj0Gn9TOlQQkKoQVwy7pY/6HaScGNepL
J8BNUPYdOWeVgxY1jSY=
=WXfu
-----END PGP SIGNATURE-----
and are normally stored with the ``.asc`` filename extension. Signed
wordlists can be verified to detect changes, although this is not
automatically done by `diceware`.
.. warning:: Diceware does *not* automatically verify PGP-signed
files.
.. _`8k wordlist`: http://world.std.com/~reinhold/diceware8k.txt
.. _`Corpus de Referencia del Español Actual (CREA)`: https://corpus.rae.es/lfrecuencias.html
.. _`diceware standard wordlist`: http://world.std.com/~reinhold/diceware.wordlist.asc
.. _`@drebs`: https://github.com/drebs
.. _`Electronic Frontier Foundation`: https://eff.org/
.. _`@Heartsucker`: https://github.com/heartsucker/
.. _`Institut für Deutsche Sprache`: https://www.ids-mannheim.de/derewo
.. _`@jawlenskys`: https://github.com/jawlenskys
.. _`long EFF wordlist`: https://www.eff.org/files/2016/07/18/eff_large_wordlist.txt
.. _`NaturalLanguagePasswords`: https://github.com/NaturalLanguagePasswords
.. _`prefix property`: https://en.wikipedia.org/wiki/Prefix_code
.. _`scientific effort`: https://www.eff.org/deeplinks/2016/07/new-wordlists-random-passphrases
.. _`securedrop`: https://github.com/freedomofpress/securedrop
.. _`XDG Base Directory Specification`: https://specifications.freedesktop.org/basedir-spec/latest/
diceware-1.0.1/pyproject.toml 0000664 0000000 0000000 00000004344 14732404111 0016212 0 ustar 00root root 0000000 0000000 [build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "diceware"
dynamic = ["version", "readme"]
authors = [
{ name="Uli Fouquet", email="uli@gnufix.de" },
]
description = "Passphrases you will remember"
keywords = ["diceware", "password", "passphrase"]
requires-python = ">=2.7"
license = { file = "LICENSE" }
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"Topic :: Security :: Cryptography",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
"Homepage" = "https://github.com/ulif/diceware"
"Bug Tracker" = "https://github.com/ulif/diceware/issues"
"Documentation" = "https://diceware.readthedocs.io/"
[project.scripts]
diceware = "diceware:main"
[project.entry-points."diceware_source_of_randomness"]
system = "diceware.random_sources:SystemRandomSource"
[project.optional-dependencies]
tests = ["pytest>=2.8.3", "pytest-cov", "coverage"]
docs = ["Sphinx", "sphinx_rtd_theme"]
dev = ["black", "ruff"]
[tool.setuptools]
packages = ["diceware", "diceware.wordlists" ]
[tool.setuptools.package-data]
"diceware.wordlists" = ["*.txt", "*.asc"]
[tool.setuptools.dynamic]
version = {attr = "diceware.__version__"}
readme = {file = ["README.rst", "CHANGES.rst"]}
diceware-1.0.1/tests/ 0000775 0000000 0000000 00000000000 14732404111 0014433 5 ustar 00root root 0000000 0000000 diceware-1.0.1/tests/conftest.py 0000664 0000000 0000000 00000005641 14732404111 0016640 0 ustar 00root root 0000000 0000000 import logging
import pytest
import sys
class InputMock(object):
"""A replacement for input() or raw_input() respectively.
This mock, when called, mimics input() behaviour, outputs a prompt,
etc., but does not wait for real key strokes. Instead it returns the
next value from `fake_input_values` given on initialization:
>>> faked_input = InputMock(["val1", "val2", "1"])
>>> faked_input("Give a value: ")
Give a value: val1
'val1'
>>> faked_input("And another value: ")
And another value: val2
'val2'
>>> faked_input()
1
'1'
To be used with the `monkeypatch` pytest fixture, to replace
`diceware.random_sources.input_func`.
"""
fake_input_values = []
def __init__(self, fake_input_values=[]):
self.fake_input_values = fake_input_values
self.fake_input_values.reverse()
def __call__(self, prompt=''):
curr_value = self.fake_input_values.pop()
print("%s%s" % (prompt, curr_value))
return curr_value
@pytest.fixture(scope="function")
def argv_handler(request):
"""This fixture restores sys.argv and sys.stdin after tests.
"""
_argv_stored = sys.argv
_stdin_stored = sys.stdin
def teardown():
sys.argv = _argv_stored
sys.stdin = _stdin_stored
request.addfinalizer(teardown)
@pytest.fixture(scope="function")
def wordlists_dir(request, monkeypatch, tmpdir):
"""This fixture provides a temporary wordlist dir.
"""
monkeypatch.setattr(
"diceware.wordlist.get_wordlist_dirs", lambda: [str(tmpdir)])
return tmpdir
@pytest.fixture(scope="function")
def home_dir(request, monkeypatch, tmpdir):
"""This fixture provides a temporary user home.
"""
tmpdir.mkdir("home")
monkeypatch.setenv("HOME", str(tmpdir / "home"))
return tmpdir / "home"
@pytest.fixture(autouse=True)
def change_home(monkeypatch, tmpdir):
"""Set $HOME to some tempdir.
This is an autouse fixture.
If the user running tests has an own .diceware.ini in his home, then
this will influence tests. Therefore we set the user home to some
empty dir while tests are running.
The same applies for XDG-based config files, that might be set on the host
running and point to real config files not related to testing.
"""
monkeypatch.setenv("HOME", str(tmpdir))
monkeypatch.delenv("XDG_CONFIG_DIRS", raising=False)
monkeypatch.delenv("XDG_CONFIG_HOME", raising=False)
monkeypatch.delenv("XDG_DATA_DIRS", raising=False)
monkeypatch.delenv("XDG_DATA_HOME", raising=False)
return tmpdir
@pytest.fixture(autouse=True)
def cleanup_loghandlers(request, monkeypatch):
"""Clean up log handlers still in `ulif.diceware` logger
"""
def teardown():
logger = logging.getLogger('ulif.diceware')
for handler in logger.handlers:
logger.removeHandler(handler)
request.addfinalizer(teardown)
diceware-1.0.1/tests/exp_help_output.txt 0000664 0000000 0000000 00000002666 14732404111 0020432 0 ustar 00root root 0000000 0000000 usage: diceware [-h] [-n NUM] [-c | --no-caps] [-s NUM] [-d DELIMITER]
[-r SOURCE] [-w NAME] [--dice-sides N] [-v] [--version]
[INFILE]
Create a passphrase
positional arguments:
INFILE Input wordlist. `-' will read from stdin.
optional arguments:
-h, --help show this help message and exit
-n NUM, --num NUM number of words to concatenate. Default: 6
-c, --caps Capitalize words. This is the default.
--no-caps Turn off capitalization.
-s NUM, --specials NUM
Insert NUM special chars into generated word.
-d DELIMITER, --delimiter DELIMITER
Separate words by DELIMITER. Empty string by default.
-r SOURCE, --randomsource SOURCE
Get randomness from this source. Possible values:
`realdice', `system'. Default: system
-w NAME, --wordlist NAME
Use words from this wordlist. Possible values: `en',
`en_eff', `en_orig', `en_securedrop'. Wordlists are
stored in the folder displayed below. Default: en_eff
-v, --verbose Be verbose. Use several times for increased verbosity.
--version output version information and exit.
Arguments related to `realdice' randomsource:
--dice-sides N Number of sides of dice. Default: 6
Wordlists are stored in
diceware-1.0.1/tests/sample_dot_diceware.ini 0000664 0000000 0000000 00000000206 14732404111 0021124 0 ustar 00root root 0000000 0000000 [diceware]
num = 6
caps = on
specials = 0
delimiter = ""
randomsource = "system"
verbose = 0
wordlist = "en_securedrop"
dice_sides = 6 diceware-1.0.1/tests/sample_signed_wordlist.asc 0000664 0000000 0000000 00000000572 14732404111 0021670 0 ustar 00root root 0000000 0000000 -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
foo
bar
- -dash-at-start
baz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iJwEAQEKAAYFAlW00GEACgkQ+5ktCoLaPzSutwP8DVgdjBFqRXNKaZlvd8pR+P3k
8xx5XLC0OFwZQFx4Ls8xl3+/xfvCNxCGSZjD6BGPzNZCK7bmQQYWcrsoEyX5jAC3
dXjAPj0nct/PkJQlrUjUI2qrO0dFfU7sRj0Gn9TOlQQkKoQVwy7pY/6HaScGNepL
J8BNUPYdOWeVgxY1jSY=
=WXfu
-----END PGP SIGNATURE-----
diceware-1.0.1/tests/test_config.py 0000664 0000000 0000000 00000021226 14732404111 0017314 0 ustar 00root root 0000000 0000000 import os
from diceware.config import (
OPTIONS_DEFAULTS, valid_locations, get_configparser,
string_to_wlist_list, get_config_dict, SafeParser,
)
class TestConfigModule(object):
# tests for diceware.config
def test_defaults(self):
# there is a set of defaults for options available
assert OPTIONS_DEFAULTS is not None
def test_valid_locations(self, home_dir):
# we look for config files in "~/.diceware.ini"
locations = valid_locations()
assert locations == [
"/etc/xdg/diceware/diceware.ini",
str(home_dir / ".config" / "diceware" / "diceware.ini"),
str(home_dir / ".diceware.ini"),
]
def test_valid_locations_wo_user_home(self, monkeypatch):
# w/o a valid home we get at least a system-wide default location
monkeypatch.setattr("os.path.expanduser", lambda x: x)
monkeypatch.delenv("HOME")
locations = valid_locations()
assert locations == ["/etc/xdg/diceware/diceware.ini"]
def test_valid_locations_considers_xdg_config_home(self, monkeypatch, home_dir):
# we consider the $XDG_CONFIG_HOME env var
monkeypatch.setenv("XDG_CONFIG_HOME", "/foo")
locations = valid_locations()
assert locations == [
"/etc/xdg/diceware/diceware.ini",
"/foo/diceware/diceware.ini",
str(home_dir / ".diceware.ini"),
]
def test_valid_locations_considers_xdg_config_dirs(self, monkeypatch, home_dir):
# we consider the $XDG_CONFIG_DIRS env var
monkeypatch.setenv("XDG_CONFIG_DIRS", "/foo:/bar")
locations = valid_locations()
assert locations == [
"/bar/diceware/diceware.ini",
"/foo/diceware/diceware.ini",
str(home_dir / ".config" / "diceware" / "diceware.ini"),
str(home_dir / ".diceware.ini"),
]
def test_get_configparser(self, tmpdir):
# we can parse simple configs
conf_path = tmpdir / "sample.ini"
conf_path.write("\n".join(["[diceware]", "num=1", ""]))
found, config = get_configparser([str(conf_path), ])
assert found == [str(conf_path)]
def test_get_configparser_empty_list(self):
# we cope with empty config file lists
found, config = get_configparser([])
assert found == []
def test_get_configparser_no_list(self, home_dir):
# we cope with no list at all
found, config = get_configparser()
assert found == []
def test_get_configparser_default_path(self, home_dir):
# a config file in $HOME is looked up by default
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "num = 3", ""]))
found, config = get_configparser()
assert found == [str(config_file)]
def test_string_to_wlist_list_returns_lists(self):
# we can parse valid wordlists from config strings
assert string_to_wlist_list("en_eff") == ["en_eff"]
assert string_to_wlist_list("en_eff,en_eff") == ["en_eff", "en_eff"]
assert string_to_wlist_list("en_eff en_eff") == ["en_eff", "en_eff"]
class TestGetConfigDict(object):
# tests for get_config_dict()
def test_get_config_dict_no_config_file(self, home_dir):
# we get config values even without a config file.
conf_dict = get_config_dict()
assert conf_dict == OPTIONS_DEFAULTS
assert conf_dict is not OPTIONS_DEFAULTS
def test_get_config_dict_no_diceware_section(self, home_dir):
# we cope with config files, if they do not contain a diceware config
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[not-diceware]", "num = 3", ""]))
conf_dict = get_config_dict()
assert conf_dict == OPTIONS_DEFAULTS
def test_get_config_dict(self, home_dir):
# we can get config values from files as a dict.
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "num = 3", ""]))
conf_dict = get_config_dict()
assert len(conf_dict) == len(OPTIONS_DEFAULTS)
assert conf_dict != OPTIONS_DEFAULTS
def test_get_config_dict_arg_path_list(self, home_dir):
# we can give the paths searched.
config_file_default = home_dir / ".diceware.ini"
config_file_default.write("[diceware]\nnum=4\n")
config_file_custom = home_dir / "some-new-file"
config_file_custom.write("[diceware]\nnum=42\n")
conf_dict = get_config_dict(
path_list=[str(config_file_custom), ])
assert conf_dict['num'] == 42
def test_get_config_dict_arg_defaults_dict(self, home_dir):
# we can change the dict of defaults used.
custom_defaults = dict(num=42)
conf_dict = get_config_dict(defaults_dict=custom_defaults)
assert conf_dict == dict(num=42)
assert conf_dict is not custom_defaults
def test_get_config_dict_arg_section(self, home_dir):
# we can set the section name to look for in config files.
config_file = home_dir / ".diceware.ini"
config_file.write("[diceware]\nnum=4\n[foo]\nnum=5\n[bar]\nnum=6\n")
conf_dict = get_config_dict(section='foo')
assert conf_dict['num'] == 5
def test_get_config_dict_int(self, home_dir):
# integer values are interpolated correctly
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "num=3", ""]))
conf_dict = get_config_dict()
assert "num" in conf_dict.keys()
assert conf_dict["num"] == 3
def test_get_config_dict_bool(self, home_dir):
# boolean values are interpolated correctly
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "caps = Off", ""]))
conf_dict = get_config_dict()
assert "caps" in conf_dict.keys()
assert conf_dict["caps"] is False
config_file.write("\n".join(["[diceware]", "caps = On", ""]))
assert get_config_dict()["caps"] is True
def test_get_config_dict_ignore_irrelevant(self, home_dir):
# values that have no default are ignored
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "foo = bar", ""]))
conf_dict = get_config_dict()
assert "foo" not in conf_dict.keys()
def test_get_config_dict_string(self, home_dir):
# string values are interpolated correctly
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "delimiter=!", ""]))
conf_dict = get_config_dict()
assert conf_dict["delimiter"] == "!"
def test_get_config_dict_string_empty(self, home_dir):
# we can set empty string values
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "delimiter=", ""]))
conf_dict = get_config_dict()
assert conf_dict["delimiter"] == ""
def test_get_config_dict_string_quotes_stripped(self, home_dir):
# preceding/trailing quotes are stripped from string values
config_file = home_dir / ".diceware.ini"
for string_in_conf, expected_parsed in (
('" "', " "), ("' '", " "), ('"\t\t"', "\t\t")):
config_file.write("[diceware]\ndelimiter=%s \n" % string_in_conf)
conf_dict = get_config_dict()
assert conf_dict["delimiter"] == expected_parsed
def test_get_config_dict_returns_wordlists_as_list(self, home_dir):
# wordlist settings are returned as lists
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(["[diceware]", "wordlist=en_eff", ""]))
config_dict = get_config_dict()
assert config_dict["wordlist"] == ["en_eff"]
class TestSampleIni(object):
# test local sample ini file
def test_complete_options_set(self, home_dir):
# make sure the set of options in sample file is complete
sample_path = os.path.join(
os.path.dirname(__file__), 'sample_dot_diceware.ini')
parser = SafeParser()
found = parser.read([sample_path, ])
assert sample_path in found
assert parser.has_section('diceware')
for key, val in OPTIONS_DEFAULTS.items():
# make sure option keywords are contained.
assert parser.has_option('diceware', key)
def test_no_invalid_options(self, home_dir):
# ensure we have no obsolete/unused options in sample
sample_path = os.path.join(
os.path.dirname(__file__), 'sample_dot_diceware.ini')
parser = SafeParser()
parser.read([sample_path, ])
for option in parser.options('diceware'):
assert option in OPTIONS_DEFAULTS.keys()
diceware-1.0.1/tests/test_diceware.py 0000664 0000000 0000000 00000034164 14732404111 0017637 0 ustar 00root root 0000000 0000000 from __future__ import unicode_literals
import datetime
import os
import pytest
import re
import sys
from io import StringIO
from errno import EISDIR
from diceware import (
SPECIAL_CHARS, insert_special_char, get_passphrase,
handle_options, main, __version__, print_version, get_random_sources,
get_wordlist_names
)
class FakeRandom(object):
# a very, very bad random generator.
# Very handy for tests, though :-)
nums_to_draw = [0] * 100
def choice(self, elems):
num, self.nums_to_draw = self.nums_to_draw[0], self.nums_to_draw[1:]
return elems[num]
class TestHandleOptions(object):
# tests for diceware.handle_options
def test_handle_options(self):
# we can get help
with pytest.raises(SystemExit) as exc_info:
handle_options(['--help'])
assert exc_info.value.code == 0
def test_handle_options_defaults(self):
# defaults are correctly set
options = handle_options([])
assert options.num == 6
assert options.caps is True
assert options.specials == 0
assert options.infile is None
assert options.version is False
assert options.delimiter == ""
assert options.randomsource == "system"
assert options.wordlist == ["en_eff"]
assert options.verbose == 0
def test_handle_options_infile(self, tmpdir):
# we can give an infile
tmpdir.chdir()
with open('mywords', 'w') as fd:
fd.write('one\ntwo\n')
options = handle_options(['mywords', ])
assert options.infile == 'mywords'
def test_handle_options_version(self):
# we can ask for version infos
options = handle_options(['--version', ])
assert options.version is True
def test_handle_options_caps(self):
# we can set a flag to tell use of caps
options = handle_options([])
assert options.caps is True # default
options = handle_options(['-c', ])
assert options.caps is True
options = handle_options(['--caps', ])
assert options.caps is True
options = handle_options(['--no-caps', ])
assert options.caps is False
def test_handle_options_caps_conflicting_raises_exc(self):
# conflicting caps-settings raise an exception
with pytest.raises(SystemExit):
handle_options(['--caps', '--no-caps'])
with pytest.raises(SystemExit):
handle_options(['--no-caps', '--caps'])
def test_handle_options_delimiter(self):
# we can set delimiter
options = handle_options(['-d', ' '])
assert options.delimiter == ' '
options = handle_options(['--delimiter', ' '])
assert options.delimiter == ' '
options = handle_options(['-d', 'WOW'])
assert options.delimiter == 'WOW'
def test_handle_options_randomsource(self):
# we can choose the source of randomness
source_names = get_random_sources().keys()
for name in source_names:
options = handle_options(['-r', name])
assert options.randomsource == name
options = handle_options(['--randomsource', name])
assert options.randomsource == name
def test_handle_options_randomsource_rejects_invalid(self, capsys):
# we can not choose illegal values for source of randomness
with pytest.raises(SystemExit):
handle_options(['-r', 'not-a-valid-source-name'])
out, err = capsys.readouterr()
assert out == ''
assert "invalid choice" in err
def test_handle_options_verbose(self):
# we can set verbosity level.
options = handle_options([])
assert options.verbose == 0
options = handle_options(['-v', ])
assert options.verbose == 1
options = handle_options(['-vv', ])
assert options.verbose == 2
options = handle_options(['--verbose', ])
assert options.verbose == 1
options = handle_options(['--verbose', '--verbose', ])
assert options.verbose == 2
def test_handle_options_wordlist(self, capsys):
# we can pick a wordlist
wordlist_names = get_wordlist_names()
for name in wordlist_names:
options = handle_options(['-w', name])
assert options.wordlist == [name]
options = handle_options(['--wordlist', name])
assert options.wordlist == [name]
def test_handle_options_wordlist_rejects_invalid(self, capsys):
# we can choose only existing wordlists
with pytest.raises(SystemExit):
handle_options(['-w', 'not-a-valid-wordlist-name'])
out, err = capsys.readouterr()
assert out == ''
assert "invalid choice" in err
def test_handle_options_dice_sides(self):
# we can set the number of dice sides.
options = handle_options([])
assert options.dice_sides == 6
options = handle_options(['--dice-sides', '21'])
assert options.dice_sides == 21
def test_handle_options_show_wordlist_dirs(self):
# we can request to show the wordlist dirs
options = handle_options([])
assert options.show_wordlist_dirs is False
options = handle_options(['--show-wordlist-dirs'])
assert options.show_wordlist_dirs is True
def test_handle_options_considers_configfile(self, home_dir):
# defaults from a local configfile are respected
config_file = home_dir / ".diceware.ini"
config_file.write("\n".join(
["[diceware]",
"num = 3",
"caps = off",
"delimiter = my-delim",
""]))
options = handle_options([])
assert options.num == 3
assert options.delimiter == "my-delim"
assert options.caps is False
def test_handle_options_allows_plugins_updating(self, monkeypatch):
# we allow plugins to update our argparser, before being used
import diceware
class FakePlugin(object):
@classmethod
def update_argparser(cls, parser):
parser.add_argument('--foo', default=2, type=int)
return parser
monkeypatch.setattr(
diceware, 'get_random_sources', lambda: dict(foo=FakePlugin))
options = handle_options([])
assert options.foo == 2
class TestDicewareModule(object):
def test_get_random_sources(self):
# we can get a dict of random sources registered as entry_points.
sources_dict = get_random_sources()
assert isinstance(sources_dict, dict)
assert len(sources_dict) > 0
assert 'system' in sources_dict
assert isinstance(sources_dict['system'], type)
def test_get_random_sources_non_existing(self, monkeypatch):
import diceware
monkeypatch.setattr(
diceware.__about__, 'random_sources',
{'foo': 'diceware.random_sources:NotExistingSource'})
with pytest.raises(ImportError):
get_random_sources()
def test_insert_special_char(self):
# we can insert special chars in words.
fake_rnd = FakeRandom()
result1 = insert_special_char('foo', specials='bar', rnd=fake_rnd)
assert result1 == 'boo'
fake_rnd.nums_to_draw = [1, 1]
result2 = insert_special_char('foo', specials='bar', rnd=fake_rnd)
assert result2 == 'fao'
fake_rnd.nums_to_draw = [2, 2]
result3 = insert_special_char('foo', specials='bar', rnd=fake_rnd)
assert result3 == 'for'
fake_rnd.nums_to_draw = [0, 0]
result4 = insert_special_char('foo', rnd=fake_rnd)
assert result4 == '~oo'
def test_insert_special_char_defaults(self):
# defaults are respected
expected_matrix = []
for i in range(3):
for j in range(len(SPECIAL_CHARS)):
word = list('foo')
word[i] = SPECIAL_CHARS[j]
expected_matrix.append(''.join(word))
for x in range(100):
assert insert_special_char('foo') in expected_matrix
def test_special_chars_do_not_quote(self):
# backslashes in SPECIAL_CHAR do not hide away chars
assert len(SPECIAL_CHARS) == 36
def test_get_passphrase(self):
# we can get passphrases
r1 = get_passphrase()
r2 = get_passphrase()
assert r1 != r2
def test_get_passphrase_capitals(self):
# by default a passphrase contains upper case chars
phrase = get_passphrase()
assert phrase.lower() != phrase
def test_get_passphrase_no_capitals(self):
# we can turn capitals off
options = handle_options(args=[])
options.caps = False
phrase = get_passphrase(options)
assert phrase.lower() == phrase
def test_get_passphrase_specialchars(self):
# we can request special chars in passphrases
options = handle_options(args=[])
options.specials = 2
phrase = get_passphrase(options)
specials = [x for x in phrase if x in SPECIAL_CHARS]
# the 2nd special char position might be equal to 1st.
assert len(specials) > 0
def test_get_passphrase_delimiters(self):
# we can set separators
options = handle_options(args=[])
options.delimiter = " "
phrase = get_passphrase(options)
assert " " in phrase
def test_print_version(self, capsys):
# we can print version infos
print_version()
out, err = capsys.readouterr()
assert err == ''
assert __version__ in out
@pytest.mark.packaging
def test_print_version_current_year(self, capsys):
# in version infos we display the current year
print_version()
pattern = r'.*\(C\) (20[0-9]{2}([,\-] ?))*%s.*' % (
datetime.datetime.now().year)
out, err = capsys.readouterr()
assert re.match(pattern, out, re.M + re.S) is not None
def test_main(self, capsys):
# we can get a passphrase
main([]) # call with default options in place
out, err = capsys.readouterr()
assert err == '' # we got no errors
assert out[-1] == '\n' # output ends with liebreak
assert '\n' not in out[:-1] # we get one line
assert len(out) > 5 # we get at least some chars
def test_main_help(self, argv_handler, capsys):
# we can get help
sys.argv = ['diceware', '--help']
with pytest.raises(SystemExit) as exc_info:
main()
assert exc_info.value.code == 0
out, err = capsys.readouterr()
expected_path = os.path.join(
os.path.dirname(__file__), 'exp_help_output.txt')
with open(expected_path, 'r') as fd:
expected_output = fd.read()
expected_output = expected_output.replace("\n", "")
out = expected_output.replace("\n", "")
assert out == expected_output
def test_main_version(self, argv_handler, capsys):
# we can get version infos.
sys.argv = ['diceware', '--version']
with pytest.raises(SystemExit) as exc_info:
main()
assert exc_info.value.code == 0
out, err = capsys.readouterr()
assert __version__ in out
def test_main_argv(self, argv_handler):
# main() handles sys.argv if nothing is provided
sys.argv = ['diceware', '--help']
with pytest.raises(SystemExit) as exc_info:
main()
assert exc_info.value.code == 0
def test_main_infile(self, argv_handler, tmpdir, capsys):
# main() reads custom wordlist if provided
custom_path = tmpdir.join('mywordlist.txt')
custom_path.write('mysingleword\n')
tmpdir.chdir()
main(['-n', '1', 'mywordlist.txt', ])
out, err = capsys.readouterr()
assert out == 'Mysingleword\n'
def test_main_infile_stdin(self, argv_handler, capsys):
# main() also accepts input from stdin
sys.stdin = StringIO("word1\n")
sys.argv = ['diceware', '-n', '2', '-']
main()
out, err = capsys.readouterr()
assert out == 'Word1Word1\n'
def test_main_infile_nonexisting(self, argv_handler, capsys):
# main() prints error if file does not exist
# raises the exception if it's other that file not exist
sys.argv = ['diceware', 'nonexisting']
with pytest.raises(SystemExit) as exc_info:
main()
assert exc_info.value.code == 1
out, err = capsys.readouterr()
assert "The file 'nonexisting' does not exist." in err
def test_main_infile_not_a_file(self, argv_handler, tmpdir):
# give directory as input
tmpdir.mkdir("wordlist")
tmpdir.chdir()
sys.argv = ['diceware', 'wordlist']
with pytest.raises(IOError) as infile_error:
main()
assert infile_error.value.errno == EISDIR
def test_main_delimiters(self, argv_handler, capsys):
# delimiters are respected on calls to main
sys.stdin = StringIO("word1\n")
sys.argv = ['diceware', '-n', '2', '-d', 'DELIM', '-']
main()
out, err = capsys.readouterr()
assert out == 'Word1DELIMWord1\n'
def test_main_specialchars(self, argv_handler, capsys):
# number of specialchars is respected in calls to main.
sys.stdin = StringIO("word1\n")
sys.argv = ['diceware', '-n', '1', '-s', '1', '-']
main()
out, err = capsys.readouterr()
specials = [x for x in out if x in SPECIAL_CHARS]
assert len(specials) > 0
def test_main_wordlist(self, argv_handler, capsys, wordlists_dir):
# we can pick the wordlist we prefer
wordlists_dir.join('wordlist_foo.txt').write("foo\n")
wordlists_dir.join('wordlist_bar.asc').write("bar\n")
sys.argv = ['diceware', '-w', 'foo']
main()
out, err = capsys.readouterr()
assert out == 'FooFooFooFooFooFoo\n'
def test_main_can_show_wordlists(self, argv_handler, capsys, wordlists_dir):
# we can list the wordlist dirs
sys.argv = ['diceware', '--show-wordlist-dirs']
with pytest.raises(SystemExit) as exc_info:
main()
assert exc_info.value.code == 0
out, err = capsys.readouterr()
assert str(wordlists_dir) in out
diceware-1.0.1/tests/test_logger.py 0000664 0000000 0000000 00000001500 14732404111 0017317 0 ustar 00root root 0000000 0000000 import logging
from diceware.logger import logger, configure
def test_logger_exists():
# the logger does exist
assert logger is not None
def test_logger_has_handler():
# the logger has at least one handler
configure(0)
assert len(logger.handlers) > 0
def test_get_logger_by_name():
# we can get a logger directly from std lib
my_logger = logging.getLogger("ulif.diceware")
configure(0)
assert len(my_logger.handlers) > 0
def test_configure():
# we can configure the logger.
logger.setLevel(23)
my_logger = logging.getLogger("ulif.diceware")
configure(None)
assert my_logger.level == 23
configure(0)
assert my_logger.level == logging.ERROR
configure(1)
assert my_logger.level == logging.INFO
configure(2)
assert my_logger.level == logging.DEBUG
diceware-1.0.1/tests/test_main.py 0000664 0000000 0000000 00000001510 14732404111 0016765 0 ustar 00root root 0000000 0000000 #
# Tests for __main__.py
#
from diceware.__main__ import run
import pytest
def test_can_run_run(monkeypatch, capsys):
# we can call __main__.py to run diceware
monkeypatch.setattr("sys.argv", ["can_run_run", "--help"])
monkeypatch.setattr("diceware.__main__.__name__", "__main__")
with pytest.raises(SystemExit) as exc_info:
run()
assert exc_info.value.code == 0
out, err = capsys.readouterr()
assert "usage: can_run_run [-h]" in out
def test_run_respects_name(monkeypatch):
# main() will only be called when __name__ == "__main__"
monkeypatch.setattr("sys.argv", ["run_respects_name", "--help"])
monkeypatch.setattr("diceware.__main__.__name__", "NOT__main__")
try:
run()
except SystemExit:
pytest.fail("running run() without proper __name__ raised SystemExit")
diceware-1.0.1/tests/test_manpage.py 0000664 0000000 0000000 00000001224 14732404111 0017453 0 ustar 00root root 0000000 0000000 import datetime
import os
import pytest
@pytest.fixture(scope="function")
def manpage(request):
manpage_path = os.path.join(
os.path.dirname(os.path.dirname(__file__)), 'diceware.1')
with open(manpage_path, 'r') as fd:
content = fd.read()
for token, replacement in [
('\\-', '-'), ('\\fB', ''), ('\\fR', '')]:
content = content.replace(token, replacement)
return content
class TestManpage(object):
@pytest.mark.packaging
def test_manpage_contains_current_year(self, manpage):
# the current year appears at least in the manpage
assert str(datetime.datetime.now().year) in manpage
diceware-1.0.1/tests/test_random_sources.py 0000664 0000000 0000000 00000036021 14732404111 0021071 0 ustar 00root root 0000000 0000000 from __future__ import unicode_literals
import pytest
import sys
import argparse
from conftest import InputMock
from io import StringIO
from itertools import product, chain
from diceware import main, get_random_sources
from diceware.random_sources import (
SystemRandomSource, RealDiceRandomSource,
)
@pytest.fixture(scope="function")
def fake_input(request, monkeypatch):
def handler(values):
mock = InputMock(values)
monkeypatch.setattr(
"diceware.random_sources.input_func", mock)
return mock
return handler
class TestSystemRandomSource(object):
def test_options_are_stored(self):
# options passed-in are stored with SystemRandomStource instances
options = "fake_options"
src = SystemRandomSource(options)
assert src.options is options
def test_has_choice_method(self):
# SystemRandomInstances provide a choice method
src = SystemRandomSource(None)
assert hasattr(src, 'choice')
def test_registered_as_system(self):
# The SystemRandomInstance is registered as entry point with
# name 'system' in group 'diceware_random_sources'
sources_dict = get_random_sources()
assert 'system' in sources_dict
assert sources_dict['system'] == SystemRandomSource
def test_choice_accepts_lists_of_numbers(self):
# the choice() method accepts lists of numbers
src = SystemRandomSource(None)
assert src.choice([1, 2, 3]) in [1, 2, 3]
def test_choice_accepts_tuples_of_numbers(self):
# the choce() method accepts tuples of numbers
src = SystemRandomSource(None)
assert src.choice((1, 2, 3), ) in [1, 2, 3]
def test_choice_accepts_list_of_chars(self):
# the choice() method accepts lists of chars
src = SystemRandomSource(None)
assert src.choice(['a', 'b', 'c']) in ['a', 'b', 'c']
def test_choice_accepts_list_of_strings(self):
# the choice() method accepts lists of strings
src = SystemRandomSource(None)
assert src.choice(['foo', 'bar', 'baz']) in ['foo', 'bar', 'baz']
def test_choice_picks_all_items(self):
# make sure all items of a sequence are picked (in the long run)
sequence = [1, 2, 3, 4]
picked = set()
num = 10 ** 3
src = SystemRandomSource(None)
while num:
picked.add(src.choice(sequence))
if len(picked) == len(sequence):
break
num -= 1
assert num > 0
class TestRealDiceRandomSource(object):
def test_raw_input_patch_works(self, capsys, fake_input):
# make sure our fake input works. We try to fake input ('foo',
# 'bar') and make sure that output is captured.
# This test is just a hint, how input could be faked in real tests.
# It can (and should) be removed if not needed any more.
fake_input(["foo", "bar"])
# late import, because we need the patched version
from diceware.random_sources import input_func
result1 = input_func("Enter some values: ")
assert result1 == "foo"
result2 = input_func("Enter more values: ")
assert result2 == "bar"
out, err = capsys.readouterr() # captured stdout/stderr
assert out == "Enter some values: foo\nEnter more values: bar\n"
def test_options_are_stored(self):
# options passed-in are stored with RealDiceRandomSource instances
options = "fake_check"
src = RealDiceRandomSource(options)
assert src.options is options
def test_has_choice_method(self):
# RealDiceRandomSource instances provide a choice method
src = RealDiceRandomSource(None)
assert hasattr(src, 'choice')
def test_registered_as_realdice(self):
# The RealDiceRandomSource is registered as entry point with
# name 'realdice' in group 'diceware_random_sources'
sources_dict = get_random_sources()
assert 'realdice' in sources_dict
assert sources_dict['realdice'] == RealDiceRandomSource
def test_choice_accepts_lists_of_numbers(self, fake_input):
# the choice() method accepts lists of numbers
fake_input(["1"])
src = RealDiceRandomSource(None)
assert src.choice([11, 12, 13, 14, 15, 16]) == 11
def test_choice_accepts_tuples_of_numbers(self, fake_input):
# the choice() method accepts tuples of numbers
fake_input(["1"])
src = RealDiceRandomSource(None)
assert src.choice((11, 12, 13, 14, 15, 16), ) == 11
def test_choice_accepts_list_of_chars(self, fake_input):
# the choice() method accepts lists of chars
fake_input(["1"])
src = RealDiceRandomSource(None)
assert src.choice(['a', 'b', 'c', 'd', 'e', 'f']) == 'a'
def test_choice_accepts_list_of_strings(self, fake_input):
# the choice() method accepts lists of strings
fake_input(["1"])
src = RealDiceRandomSource(None)
assert src.choice(
['val1', 'val2', 'val3', 'val4', 'val5', 'val6']) == "val1"
def test_choice_num_of_dice_for_seq_len36(self, fake_input):
# choice() requires two dice for a sequence len of 6**2
fake_input(["1 2"])
src = RealDiceRandomSource(None)
sequence = list(range(6 ** 2))
expected_index = 6 * (1 - 1) + (2 - 1) # = 6 x roll_1 + roll_2 - 1
assert src.choice(sequence) == sequence[expected_index]
def test_choice_num_of_dice_for_seq_len216(self, fake_input):
# choice() requires three dice for a sequence len of 6**3
fake_input(["1 2 3"])
src = RealDiceRandomSource(None)
sequence = list(range(6 ** 3)) # 216
# = 6^2 * (roll_1 - 1) + 6^1 * (roll_2 - 1) + (roll_3 - 1)
expected_index = 0 + 6 + 3 - 1
assert src.choice(sequence) == sequence[expected_index]
def test_choice_copes_with_non_digit_separators(self, fake_input):
# choice() requires three dice for a sequence len of 6**3
fake_input(["1,2,3"])
src = RealDiceRandomSource(None)
sequence = list(range(6 ** 3)) # 216
# = 6^2 * (roll_1 - 1) + 6^1 * (roll_2 - 1) + (roll_3 - 1)
expected_index = 0 + 6 + 3 - 1
assert src.choice(sequence) == sequence[expected_index]
def test_choice_copes_with_leading_separator(self, fake_input):
# choice() requires three dice for a sequence len of 6**3
fake_input([",1,2,3"])
src = RealDiceRandomSource(None)
sequence = list(range(6 ** 3)) # 216
# = 6^2 * (roll_1 - 1) + 6^1 * (roll_2 - 1) + (roll_3 - 1)
expected_index = 0 + 6 + 3 - 1
assert src.choice(sequence) == sequence[expected_index]
def test_choice_copes_with_trailing_separator(self, fake_input):
# choice() requires three dice for a sequence len of 6**3
fake_input(["1,2,3,"])
src = RealDiceRandomSource(None)
sequence = list(range(6 ** 3)) # 216
# = 6^2 * (roll_1 - 1) + 6^1 * (roll_2 - 1) + (roll_3 - 1)
expected_index = 0 + 6 + 3 - 1
assert src.choice(sequence) == sequence[expected_index]
def test_choice_copes_with_multicharacter_separator(self, fake_input):
# choice() requires three dice for a sequence len of 6**3
fake_input(["1,,2 3"])
src = RealDiceRandomSource(None)
sequence = list(range(6 ** 3)) # 216
# = 6^2 * (roll_1 - 1) + 6^1 * (roll_2 - 1) + (roll_3 - 1)
expected_index = 0 + 6 + 3 - 1
assert src.choice(sequence) == sequence[expected_index]
def test_hint_if_entropy_is_decreased(self, fake_input, capsys):
# if len of choice is not a multiple of 6, entropy is decreased
# (not the whole sequence is taken into consideration). We get
# a warning in that case.
fake_input(["1"])
src = RealDiceRandomSource(None)
picked = src.choice([1, 2, 3, 4, 5, 6, 7])
assert picked == 1
out, err = capsys.readouterr()
assert "entropy is reduced" in out
assert "Using only first 6 of 7 words" in out
assert err == ""
def test_no_hint_if_entropy_is_not_decreased(self, fake_input, capsys):
# we do not issue the entropy warning if not neccessary
fake_input(["1", "1 1", "1 1 1"])
src = RealDiceRandomSource(None)
picked1 = src.choice([1, 2, 3, 4, 5, 6])
picked2 = src.choice(range(1, 6 ** 2 + 1))
picked3 = src.choice(range(1, 6 ** 3 + 1))
assert picked1 == 1
assert picked2 == 1
assert picked3 == 1
out, err = capsys.readouterr()
assert "entropy is reduced" not in out
assert err == ""
def test_non_numbers_as_input_are_rejected(self, fake_input):
# Users might input non-numbers. We ask again then.
fake_input(["no-number", "", "1"])
src = RealDiceRandomSource(None)
assert src.choice([1, 2, 3, 4, 5, 6]) == 1
def test_choice_input_lower_value_borders(self, fake_input):
# choice() does not accept "0" but it accepts "1"
fake_input(["0", "1"])
src = RealDiceRandomSource(None)
sequence = (1, 2, 3, 4, 5, 6)
assert src.choice(sequence) == 1
def test_choice_input_upper_value_borders(self, fake_input):
# choice() does not accept "7" but it accepts "6"
fake_input(["7", "6"])
src = RealDiceRandomSource(None)
sequence = (1, 2, 3, 4, 5, 6)
assert src.choice(sequence) == 6
def test_pre_check_no_rolls_cause_exception(self):
# we cannot pick zero items of a sequence
src = RealDiceRandomSource(None)
with pytest.raises(ValueError):
src.pre_check(0, list(range(6)))
def test_pre_check_warn_if_not_all_seq_items_used(self, capsys):
# we issue a warning if not all sequence items will be used
src = RealDiceRandomSource(None)
src.dice_sides = 10
src.pre_check(1, list(range(10)))
out, err = capsys.readouterr()
assert "entropy is reduced" not in out
src.pre_check(1, list(range(11)))
out, err = capsys.readouterr()
assert "entropy is reduced" in out
def test_pre_check_requests_rolling_dice(self, capsys):
# we request the user to roll dice
src = RealDiceRandomSource(None)
src.pre_check(5, ['doesntmatter'])
out, err = capsys.readouterr()
assert "Please roll 5 dice (or a single dice 5 times)." in out
def test_choice_copes_with_sequence_len_1(self, capsys, fake_input):
# choice copes with sequences of len 1
src = RealDiceRandomSource(None)
fake_input(["1"])
picked = src.choice([1])
out, err = capsys.readouterr()
assert "roll" not in out
assert picked == 1
def test_choice_copes_with_small_sequences(self, capsys, fake_input):
# We handle sequences correctly, that have less elements than the used
# dice sides.
src = RealDiceRandomSource(None)
src.dice_sides = 6
# A length of 2,3 only requires 1 roll
for choice_length in (2, 3):
fake_input(["1"])
picked = src.choice(range(1, choice_length + 1))
out, err = capsys.readouterr()
assert "roll 1 dice" in out
assert picked == 1
# A length of 4,5 requires 2 rolls
for choice_length in (4, 5):
fake_input(["1", "2"])
picked = src.choice(range(1, choice_length + 1))
out, err = capsys.readouterr()
assert "roll 1 dice" in out
assert picked == 1
def test_choice_distributes_equally_on_short_seq(self, fake_input):
# we distribute equally over sequences shorter than
# dice_sides**n
src = RealDiceRandomSource(None)
src.dice_sides = 4
dist = [0, 0, 0]
# a list of pairs in a row: 4-4 - 4-3 - 4-2 - ... - 1-3 - 1-2 - 1-1
rolled_values = list(chain.from_iterable(
product(["4", "3", "2", "1"], repeat=2)))
# 4 is not a valid roll value, must do a new roll then
num_valid = len(rolled_values) - rolled_values.count("4")
fake_input(rolled_values)
for x in range(num_valid):
picked = src.choice([1, 2, 3])
dist[picked - 1] += 1
assert dist == [8, 8, 8]
def test_choice_prints_hint_on_repeated_rolls(self, capsys, fake_input):
# on short sequences (shorter than number of dice sides)
# we give users hints to repeat dice rolls
src = RealDiceRandomSource(None)
src.dice_sides = 4
fake_input(["2", "3"]) # no value out of bounds (> 3)
picked = src.choice([1, 2, 3])
out, err = capsys.readouterr()
assert picked == 2
assert out.count("Please roll dice again") == 0
fake_input(["4", "4", "1"])
picked = src.choice([1, 2, 3])
out, err = capsys.readouterr()
assert picked == 1
assert out.count("Please roll dice again") == 2
def test_choice_distributes_equally(self, fake_input):
# we distribute nearly equally over sequences sized
# dice_sides**n
src = RealDiceRandomSource(None)
src.dice_sides = 3
dist = [0, 0, 0]
fake_input(["1", "2", "3"])
for x in range(3):
picked = src.choice([1, 2, 3])
dist[picked - 1] += 1
assert dist == [1, 1, 1]
def test_choice_distributes_equally_on_long_seq(self, fake_input):
# we distribute nearly equally over sequences longer than
# dice_sides**n
src = RealDiceRandomSource(None)
src.dice_sides = 2
dist = [0, 0, 0]
fake_input(["1", "1", "1", "2", "2", "1", "2", "2"])
for x in range(8):
picked = src.choice([1, 2, 3])
dist[picked - 1] += 1
assert dist == [4, 4, 0]
def test_choice_respects_dice_sides(self, capsys, fake_input):
# we use the number of dice sides given by options dict.
fake_input(["1 2"])
# A Namespace, not a dict, is passed to the constructor.
options = argparse.Namespace(dice_sides=2) # a coin
src = RealDiceRandomSource(options)
picked = src.choice(['a', 'b', 'c', 'd'])
out, err = capsys.readouterr()
# must throw a coin 2 times to pick one out of 4 items
assert "Please roll 2 dice" in out
assert picked == 'b'
def test_get_num_rolls(self):
# we can compute the number of rolls required for a given sequence
# length.
src = RealDiceRandomSource(argparse.Namespace(dice_sides=2))
assert src.get_num_rolls(2) == 1
assert src.get_num_rolls(2**12) == 12
assert src.get_num_rolls(3) == 1
assert src.get_num_rolls(2**12 + 1) == 12
def test_main_with_realdice_source(
self, argv_handler, capsys, fake_input):
# we can run main with `realdice` source of randomness
fake_input(["1", "3"])
sys.stdin = StringIO("w1\nw2\nw3\nw4\nw5\nw6\n")
sys.argv = ['diceware', '-r', 'realdice', '-n', '2', '-d', '#', '-']
main()
out, err = capsys.readouterr()
assert out.endswith('W1#W3\n')
diceware-1.0.1/tests/test_wordlist.py 0000664 0000000 0000000 00000037250 14732404111 0017722 0 ustar 00root root 0000000 0000000 import math
import os
import pytest
import sys
from io import StringIO
from diceware.wordlist import (
get_wordlist_dirs, get_wordlists_dir, RE_WORDLIST_NAME,
RE_NUMBERED_WORDLIST_ENTRY, RE_VALID_WORDLIST_FILENAME, get_wordlist_path,
get_wordlist_names, WordList,
)
@pytest.fixture(scope="function")
def wordlist(request, tmpdir):
"""A fixture that delivers a simple WordList instance.
"""
path = tmpdir.join("mylist.txt")
path.write("foo\nbar\n")
w_list = WordList(str(path))
return w_list
class TestWordlistModule(object):
def test_get_wordlist_dirs(self, home_dir):
# We can get a list of valid wordlist dirs even w/o home
mydir = os.path.abspath(os.path.dirname(__file__))
local_wlist_dir = os.path.join(os.path.dirname(mydir), "diceware", "wordlists")
assert get_wordlist_dirs() == [
local_wlist_dir,
str(home_dir / ".local" / "share" / "diceware"),
"/usr/local/share/diceware",
"/usr/share/diceware",
]
def test_get_wordlist_dirs_considers_xdg_data_home(self, home_dir, monkeypatch):
# We consider $XDG_DATA_HOME when determining dirs
monkeypatch.setenv("XDG_DATA_HOME", str(home_dir))
wlists = get_wordlist_dirs()
assert str(home_dir / "diceware") in wlists
assert str(home_dir / ".local" / "share" / "diceware") not in wlists
def test_get_wordlist_dirs_considers_xdg_data_dirs(self, home_dir, monkeypatch):
# We consider $XDG_DATA_DIRS when determining dirs
monkeypatch.setenv("XDG_DATA_DIRS", "/foo:/bar")
wlists = get_wordlist_dirs()
assert "/usr/share/diceware" not in wlists
assert "/foo/diceware" == wlists[-2]
assert "/bar/diceware" == wlists[-1]
def test_re_wordlist_name(self):
# RE_WORDLIST_NAME really works
# valid stuff
assert RE_WORDLIST_NAME.match('de') is not None
assert RE_WORDLIST_NAME.match('DE') is not None
assert RE_WORDLIST_NAME.match('vb') is not None
assert RE_WORDLIST_NAME.match('8k') is not None
assert RE_WORDLIST_NAME.match('original') is not None
assert RE_WORDLIST_NAME.match('with_underscore') is not None
assert RE_WORDLIST_NAME.match('u') is not None
assert RE_WORDLIST_NAME.match('with-hyphen') is not None
# invalid stuff
assert RE_WORDLIST_NAME.match('with space') is None
assert RE_WORDLIST_NAME.match('"with-quotation-marks"') is None
assert RE_WORDLIST_NAME.match("'with-quotation-marks'") is None
assert RE_WORDLIST_NAME.match('with.dot') is None
assert RE_WORDLIST_NAME.match('with/slash') is None
def test_re_numbered_wordlist_entry(self):
# we accept numbers (optionally separated by single dashes) in
# wordlist lines
#
# valid stuff
assert RE_NUMBERED_WORDLIST_ENTRY.match('11111 a') is not None
assert RE_NUMBERED_WORDLIST_ENTRY.match('1-2-2-11 1') is not None
assert RE_NUMBERED_WORDLIST_ENTRY.match(
'11111 a').groups() == (None, 'a', )
assert RE_NUMBERED_WORDLIST_ENTRY.match('12211\t 1') is not None
assert RE_NUMBERED_WORDLIST_ENTRY.match(
'12211\t 1').groups() == (None, '1', )
assert RE_NUMBERED_WORDLIST_ENTRY.match(
'1-2-2-1-1\t 1-1').groups()[1] == '1-1'
# invalid stuff
assert RE_NUMBERED_WORDLIST_ENTRY.match('12a11 foo') is None
assert RE_NUMBERED_WORDLIST_ENTRY.match('12--11 foo') is None
assert RE_NUMBERED_WORDLIST_ENTRY.match('1211- foo') is None
assert RE_NUMBERED_WORDLIST_ENTRY.match('-1211 foo') is None
assert RE_NUMBERED_WORDLIST_ENTRY.match('foo bar') is None
def test_re_valid_wordlist_filename(self):
# RE_VALID_WORDLIST_FILENAME really detects filenames we allow
# Valid filenames
regexp = RE_VALID_WORDLIST_FILENAME
assert regexp.match("wordlist_foo.txt") is not None
assert regexp.match("wordlist_foo_bar.asc") is not None
assert regexp.match("wordlist_name-withdots.txt.asc") is not None
assert regexp.match("wordlist_en.txt") is not None
assert regexp.match("wordlist_en_eff.txt") is not None
assert regexp.match("wordlist_en_orig.asc") is not None
assert regexp.match("wordlist_en_securedrop.asc") is not None
# We can get the internal wordlist name
assert regexp.match("wordlist_foo.txt").groups()[0] == "foo"
assert regexp.match(
"wordlist_foo_bar.asc").groups()[0] == "foo_bar"
assert regexp.match(
"wordlist_name-with.dots.txt.asc").groups()[0] == "name-with"
# Invalid names
assert regexp.match("wordlist-without-underscore.txt") is None
assert regexp.match("wordlist_invalid_ch=r.txt") is None
assert regexp.match("wordlist_without_dot_txt") is None
assert regexp.match("nowordlist_foo.txt") is None
assert regexp.match("wordlist_name.") is None
assert regexp.match("wordlist_name.txt.") is None
assert regexp.match("wordlist_name.txt..") is None
assert regexp.match("wordlist_name.txt/..") is None
assert regexp.match("wordlist_.txt") is None
def test_get_wordlist_path(self, wordlists_dir):
# we can get valid wordlist paths
path1 = wordlists_dir.join("wordlist_foo.txt")
path1.write("foo\n")
path2 = wordlists_dir.join("wordlist_bar.asc")
path2.write("bar\n")
assert get_wordlist_path('foo') == path1
assert get_wordlist_path('bar') == path2
assert get_wordlist_path('zz') is None
def test_get_wordlist_path_ignores_subdirs(self, wordlists_dir):
# we subdirs are ignored, when looking for wordlists.
path1 = wordlists_dir.mkdir('wordlist_subdir1.txt')
path2 = wordlists_dir.join('wordlist_subdir2.txt')
path2.write('foo\n')
assert os.path.isdir(str(path1))
assert os.path.isfile(str(path2))
assert get_wordlist_path('subdir1') is None
assert get_wordlist_path('subdir2') == str(path2)
def test_get_wordlist_path_accepts_any_ext(self, wordlists_dir):
# we cope with any filename extension, not only .txt
path1 = wordlists_dir.join("wordlist_foo.txt")
path1.write("foo\n")
path2 = wordlists_dir.join("wordlist_bar.asc")
path2.write("bar\n")
path3 = wordlists_dir.join("wordlist_baz.txt.asc")
path3.write("baz\n")
assert get_wordlist_path("foo") == str(path1)
assert get_wordlist_path("bar") == str(path2)
assert get_wordlist_path("baz") == str(path3)
assert get_wordlist_path("not-existing") is None
def test_get_wordlist_path_requires_ascii(self):
# non ASCII alphabet chars are not accepted in language specifier
with pytest.raises(ValueError) as exc_info:
get_wordlist_path('../../tmp')
assert exc_info.value.args[0].startswith(
'Not a valid wordlist name')
def test_get_wordlist_path_copes_w_nonexistant_dirs(self, wordlists_dir, monkeypatch):
path1 = wordlists_dir.join("wordlist_foo.txt")
path1.write("foo\n")
assert get_wordlist_path("foo") == path1
# now we remove the wordlist and its path
path1.remove()
wordlists_dir.remove()
assert get_wordlist_path("foo") is None
def test_get_wordlist_names(self, wordlists_dir):
# we can get wordlist names also if directory is empty.
wlist_path = wordlists_dir.join('wordlist_my_en.txt')
wlist_path.write("some\nirrelevant\nwords")
assert get_wordlist_names() == ['my_en']
def test_get_wordlist_names_files_only(self, wordlists_dir):
# non-files are ignored when looking for wordlist names
sub_dir = wordlists_dir.mkdir('subdir') # a subdir
sub_dir.join("somfile_name.txt").write("Some\ntext") # and a file in
assert get_wordlist_names() == []
def test_get_wordlist_names_requires_underscore(self, wordlists_dir):
# we only recognize wordlist files with underscore in name
wordlists_dir.join("file-without-underscore.txt").write("a\nb\n")
assert get_wordlist_names() == []
def test_get_wordlist_names_requires_dot(self, wordlists_dir):
# we only recognize wordlist files with dot in name
wordlists_dir.join("file_without_dot-in-name").write("a\nb\n")
assert get_wordlist_names() == []
class TestWordList(object):
def test_create_wordlist(self, tmpdir):
# we can create `WordList` objects.
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("foo\n")
w_list = WordList(str(in_file))
assert w_list is not None
assert hasattr(w_list, "path")
assert hasattr(w_list, "fd")
assert hasattr(w_list, "signed")
def test_create_opens_file(self, tmpdir):
# if we pass-in a path, the file will be opened for reading.
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("foo\n")
w_list = WordList(str(in_file))
assert w_list.fd is not None
def test_file_simple(self, tmpdir):
# we handle simple files correctly
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("foo\nbar\n\nbaz\n")
w_list = WordList(in_file.strpath)
assert tuple(w_list) == ("foo", "bar", "baz")
def test_detect_unsigned_wordlists(self, tmpdir):
# we can detect unsigned wordlist files.
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("foo\n")
w_list = WordList(str(in_file))
assert w_list.signed is False
def test_detect_signed_wordlists(self):
# we can detect signed wordlist files.
in_path = os.path.join(
os.path.dirname(__file__), "sample_signed_wordlist.asc")
w_list = WordList(in_path)
assert w_list.signed is True
def test_wordlists_are_generators(self, tmpdir):
# WordList instances act like generators.
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("foo\nbar\n")
w_list = WordList(str(in_file))
assert list(w_list) == ["foo", "bar"]
def test_wordlist_from_signed_file(self):
# we can get an iterator from signed wordlist.
in_path = os.path.join(
os.path.dirname(__file__), "sample_signed_wordlist.asc")
w_list = WordList(in_path)
assert list(w_list) == ["foo", "bar", "-dash-at-start", "baz"]
def test_wordlist_en_securedrop(self):
# we can get a list of words out of securedrop english 8k wordlist.
wordlists_dir = get_wordlists_dir()
en_src = os.path.join(wordlists_dir, 'wordlist_en_securedrop.asc')
w_list = WordList(en_src)
long_list = list(w_list)
assert long_list[0] == "0"
assert long_list[-1] == "zurich"
assert len(long_list) == 8192
def test_wordlist_en_eff(self):
# we can get a list of words out of the EFF-maintained wordlist.
wordlists_dir = get_wordlists_dir()
en_src = os.path.join(wordlists_dir, 'wordlist_en_eff.txt')
w_list = list(WordList(en_src))
assert w_list[0] == "abacus"
assert w_list[-1] == "zoom"
assert len(w_list) == 7776
def test_wordlists_len(self):
# ensure, all wordlists have an expected length (2^x or 6^x)
wordlists_dir = get_wordlists_dir()
for name in os.listdir(wordlists_dir):
src = os.path.join(wordlists_dir, name)
w_list = list(WordList(src))
length = len(w_list)
log2, log6 = math.log(length, 2), math.log(length, 6)
assert (6**int(log6) == length) or (2**int(log2) == length)
def test_get_wordlist_simple(self, tmpdir):
# simple wordlists can be created
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("a\nb\n")
result = list(WordList(str(in_file)))
assert ['a', 'b'] == result
def test_get_wordlist_stdin(self, argv_handler):
# we can get a wordlist from stdin
def broken_seek(num):
raise IOError("Illegal seek")
fd = StringIO(b"foo\nbar\n".decode('utf-8'))
fd.seek = broken_seek
sys.stdin = fd
w_list = WordList("-")
assert list(w_list) == ['foo', 'bar']
def test_get_wordlist_ignore_empty_lines(self, tmpdir):
# we ignore empty lines in wordlists
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("\n\na\n\n")
result = list(WordList(str(in_file)))
assert ['a'] == result
def test_get_signed_wordlist_handles_clearsigned_files(self):
# we can process cryptogrphically signed files
in_path = os.path.join(
os.path.dirname(__file__), "sample_signed_wordlist.asc")
result = list(WordList(in_path))
assert ["foo", "bar", "-dash-at-start", "baz"] == result
def test_get_signed_wordlist_ignore_empty_lines(self):
# we ignore empty lines in wordlists
in_path = os.path.join(
os.path.dirname(__file__), "sample_signed_wordlist.asc")
w_list = WordList(in_path)
result = list(w_list)
assert '' not in result
def test_can_get_wordlist_multiple_times(self, tmpdir):
# we can get a wordlist several times
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("\n\na\n\n")
w_list = WordList(str(in_file))
list1 = list(w_list)
list2 = list(w_list)
assert list1 == list2
def test_can_get_wordlist_multiple_times_from_fd(self, tmpdir):
# we can get a wordlist several times also if it is a fd.
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("foo\nbar\n")
w_list = WordList(in_file.strpath)
list1 = list(w_list)
list2 = list(w_list)
assert list1 == list2
def test_is_signed_detects_signed_files(self):
# we recognize signed wordlists
in_path = os.path.join(
os.path.dirname(__file__), "sample_signed_wordlist.asc")
w_list = WordList(in_path)
assert w_list.is_signed() is True
def test_is_signed_detects_unsigned_files(self, tmpdir):
# we can tell if a wordlist is not signed
in_file = tmpdir.mkdir("work").join("mywordlist")
in_file.write("a\nb\n")
w_list = WordList(in_file.strpath)
assert w_list.is_signed() is False
def test_refine_entry_strips(self, wordlist):
# we strip() entries
assert wordlist.refine_entry("foo") == "foo"
assert wordlist.refine_entry(" foo \n") == "foo"
assert wordlist.refine_entry(" foo bar \n") == "foo bar"
def test_refine_entry_handles_numbered(self, wordlist):
# we transform numbered lines
assert wordlist.refine_entry("11111\tfoo") == "foo"
def test_refine_entry_handles_dash_quotes_when_signed(
self, wordlist):
# we handle dash-escaped lines correctly when in signed mode
assert wordlist.refine_entry("- foo") == "- foo"
wordlist.signed = True
assert wordlist.refine_entry("- foo") == "foo"
def test_refine_entry_strips_also_dash_quoted(self, wordlist):
# also dash-escaped lines in signed wordlistgs are stripped.
wordlist.signed = True
assert wordlist.refine_entry("- \tfoo\n") == "foo"
def test_refine_entry_strips_also_numbered(self, wordlist):
# also numbered entries are stripped
assert wordlist.refine_entry("11111 \t foo\n") == "foo"
def test_refine_entry_can_handle_all_at_once(self, wordlist):
# we can do all the things above at once and in right order.
wordlist.signed = True
assert wordlist.refine_entry("- 11111 foo \n") == "foo"
diceware-1.0.1/tox.ini 0000664 0000000 0000000 00000001773 14732404111 0014614 0 ustar 00root root 0000000 0000000 [tox]
env_list = clean,py27,py34,py35,py36,py37,py38,py39,py310,py311,py312,lint,report,pkg
# only older virtualenvs support creating of virtualenvs < py36
requires = virtualenv<20.22.0
[pytest]
markers =
packaging: mark tests to be purely packaging related.
addopts = --doctest-modules --doctest-glob='*.rst' -m 'not packaging'
diceware tests docs README.rst
[testenv]
deps =
pytest
commands = pytest {posargs}
depends =
{py27,py39}: clean
report: py27,py39
[testenv:{py27,py39}]
deps =
pytest
pytest-cov
commands = pytest --cov --cov-append --cov-report= {posargs}
[testenv:report]
deps =
coverage
skip_install = true
commands =
coverage report -m --fail-under=100 --precision=1 --include="diceware/*"
coverage html
[testenv:clean]
deps =
coverage
skip_install = true
commands = coverage erase
[testenv:lint]
deps =
ruff
commands = ruff check diceware tests
[testenv:pkg]
# run only tests marked as 'packaging'-related
commands =
pytest -m 'packaging'