From 3d7e39cfd2ac5c617c0d7e059d7b90a918307507 Mon Sep 17 00:00:00 2001 From: Peter McGoron Date: Thu, 13 Jun 2024 20:57:07 -0400 Subject: [PATCH] hashtable test --- examples/hashtable/Makefile | 20 + examples/hashtable/test_insert.c | 87 + examples/hashtable/testnames.h | 20002 ++++++++++++++++++++++++++ examples/hashtable/uns_hashtable.c | 254 + examples/hashtable/uns_hashtable.h | 62 + examples/string/Makefile | 2 +- examples/{string => }/test_common.c | 0 7 files changed, 20426 insertions(+), 1 deletion(-) create mode 100644 examples/hashtable/Makefile create mode 100644 examples/hashtable/test_insert.c create mode 100644 examples/hashtable/testnames.h create mode 100644 examples/hashtable/uns_hashtable.c create mode 100644 examples/hashtable/uns_hashtable.h rename examples/{string => }/test_common.c (100%) diff --git a/examples/hashtable/Makefile b/examples/hashtable/Makefile new file mode 100644 index 0000000..c06e482 --- /dev/null +++ b/examples/hashtable/Makefile @@ -0,0 +1,20 @@ +.PHONY: test clean +TESTS=test_insert.test +COMMON_OBJS=../test_common.o uns_hashtable.o +.SUFFIXES: .test +CFLAGS=-Wall -std=c89 -Werror -pedantic -fPIC -g -Iinclude + +test: $(TESTS) $(COMMON_OBJS) + for i in $(TESTS); do \ + LD_LIBRARY_PATH=$$(pwd)/../../ valgrind ./$$i || exit 1; \ + done + +test_insert.test: $(COMMON_OBJS) + +.c.test: + $(CC) -I../../include $(CFLAGS) $< $(COMMON_OBJS) -L../../ -luniversalservice -o $@ +.c.o: + $(CC) -I../../include $(CFLAGS) $< -c -o $@ + +clean: + rm -f $(TESTS) $(COMMON_OBJS) diff --git a/examples/hashtable/test_insert.c b/examples/hashtable/test_insert.c new file mode 100644 index 0000000..9a583fc --- /dev/null +++ b/examples/hashtable/test_insert.c @@ -0,0 +1,87 @@ +/* Copyright (c) 2024, Peter McGoron + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1) Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2) Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include +#include "uns.h" +#include "uns_hashtable.h" +#include "testnames.h" + +#define ARRLEN(a) (sizeof(a) /sizeof((a)[0])) + +int test(struct uns_gc *gc) +{ + /* Keys and values will be stored as NUL terminated for simplicity. */ + struct uns_ctr htbl = {0}; + struct uns_ctr str = {0}; + struct uns_ctr val = {0}; + struct uns_ctr old_value = {0}; + int i, j; + size_t slen; + + uns_root_add(gc, &htbl); + uns_root_add(gc, &str); + uns_root_add(gc, &val); + uns_root_add(gc, &old_value); + + uns_hashtable_alloc_into(gc, &htbl, 32); + + for (i = 0; i < ARRLEN(names); i++) { + printf("%d\r", i); + fflush(stdout); + + slen = strlen(names[i]); + str.p = gc->alloc(gc, slen); + val.p = gc->alloc(gc, strlen(values[i])); + strcpy(str.p, names[i]); + strcpy(val.p, values[i]); + + uns_hashtable_add(gc, &htbl, &str, slen, &val, &old_value); + assert(!old_value.p); + + for (j = 0; j < ARRLEN(names); j++) { + uns_hashtable_search(gc, &htbl, (unsigned char*)names[j], strlen(names[j]), + &val); + if (j <= i && (!val.p || strcmp(val.p, values[j]) != 0)) { + printf("\n%s, %s\n", (char *)val.p, values[j]); + printf("\n%d-%d failed\n", i, j); + exit(1); + } else if (j > i && val.p) { + printf("\n%d: %d should not exist\n", i, j); + exit(1); + } + } + } + printf("\ndone\n"); + + uns_root_remove(gc, &old_value); + uns_root_remove(gc, &val); + uns_root_remove(gc, &str); + uns_root_remove(gc, &htbl); + gc->collect(gc); + return 0; +} diff --git a/examples/hashtable/testnames.h b/examples/hashtable/testnames.h new file mode 100644 index 0000000..dba80ce --- /dev/null +++ b/examples/hashtable/testnames.h @@ -0,0 +1,20002 @@ +const char *names[] = {"anopheles", + "uniclinal", + "sarong", + "turcoman", + "corrugator", + "self-murder", + "anacardium", + "knurly", + "pock", + "neuroma", + "hawser", + "jolty", + "proterandry", + "leucic", + "petrescence", + "bathos", + "oblectation", + "overtread", + "taeniada", + "fun", + "mixer", + "blazer", + "elegist", + "conspirator", + "logicality", + "quinze", + "wobble", + "dissimulate", + "hempen", + "yahwe", + "solisequious", + "saline", + "grumose", + "stalagmite", + "sex-", + "tympanist", + "faquir", + "old-fashioned", + "rheumides", + "inquisitorial", + "pinacate bug", + "athletism", + "pyronomics", + "vague", + "advocacy", + "manhead", + "birdcage", + "reflectible", + "enfect", + "pyrothonide", + "water feather-foil", + "pastern", + "lenient", + "massage", + "owler", + "selenic", + "outnoise", + "signification", + "hover", + "sopite", + "underclothing", + "mendicate", + "overseer", + "self-torture", + "sunniness", + "inalienably", + "relaxative", + "cheap-jack", + "stabler", + "iridoline", + "advertisement", + "eloper", + "revictual", + "diphyodont", + "football", + "hiems", + "suspection", + "manequin", + "plowboy", + "mastiff", + "displume", + "post-disseizin", + "alloxanate", + "cat-rigged", + "deduce", + "alcoholometric", + "antapoplectic", + "imprudent", + "scaliola", + "vinometer", + "forbearant", + "forestay", + "storehouse", + "baccarat", + "slipperwort", + "hermit", + "consequence", + "naiad", + "questorship", + "shallow-brained", + "sahlite", + "mistakingly", + "nitrate", + "concent", + "howsoever", + "temporizingly", + "traditive", + "diastolic", + "traditionally", + "chromophane", + "electrolytical", + "tyfoon", + "ambient", + "disrealize", + "bogus", + "spinnerule", + "defect", + "enchorial", + "solemnness", + "trombone", + "brewer", + "gummer", + "fulmine", + "noctilucine", + "copiousness", + "entitative", + "sunken", + "fisetic", + "boarder", + "niobate", + "challengeable", + "yelper", + "moonbeam", + "impleader", + "stelleridan", + "zouave", + "chatty", + "triens", + "coarct", + "orthognathous", + "sometime", + "hederal", + "ginglymodi", + "anthropical", + "jurat", + "pyrosulphuric", + "jihad", + "epitome", + "charlatanism", + "dispersed", + "valorous", + "manichaeism", + "phyle", + "assentator", + "exorcist", + "grapplement", + "sirvente", + "orthographical", + "epitrite", + "infra-red", + "appropinquation", + "unstring", + "capsule", + "minimus", + "immusical", + "trashiness", + "angust", + "xenotime", + "exportable", + "train dispatcher", + "stolid", + "gadding", + "ketone", + "monopathy", + "puberulent", + "instableness", + "equivalue", + "millefiore glass", + "abstractedness", + "zylonite", + "benevolence", + "copyist", + "fierasfer", + "fog", + "mistrow", + "hosteler", + "gorcock", + "hydraulic", + "holorhinal", + "apothegmatical", + "drasty", + "-hood", + "unpaganize", + "humective", + "prelector", + "revocability", + "bibitory", + "fellowship", + "futurism", + "nucule", + "pityriasis", + "jenkins", + "reciprocornous", + "paranymph", + "subastral", + "surrogation", + "alvine", + "desirably", + "evangelize", + "bewail", + "monovalent", + "felly", + "podge", + "mustahfiz", + "inexorably", + "reduit", + "skua", + "misproud", + "dey", + "civil service commission", + "spermatooen", + "destiny", + "exposedness", + "superannuate", + "neuraxis", + "stag-horned", + "epidermic", + "aromatize", + "rompingly", + "kickable", + "outcant", + "rifling", + "intendent", + "cell", + "inadequate", + "cloyless", + "store", + "gentisin", + "brainsickly", + "galliot", + "bleareyedness", + "circumflexion", + "resuscitable", + "indolence", + "creatic", + "exurgent", + "sennet", + "eggnog", + "meiocene", + "effund", + "quadrivalent", + "pyro-", + "septuple", + "oylet", + "enhearten", + "disobediency", + "huttoning", + "canaliculated", + "empale", + "lecythis", + "retex", + "penholder", + "adrian", + "clinoid", + "inscriptive", + "pistolade", + "cynarrhodium", + "subpellucid", + "antheriferous", + "peripatetic", + "sortable", + "rhabdophora", + "beechy", + "strockle", + "palmatifid", + "antherozoid", + "uncreatedness", + "waterlandian", + "haematozoon", + "scringe", + "chirurgeonly", + "outline", + "reintegration", + "occultation", + "counter-couchant", + "cacodylic", + "gairish", + "mestling", + "gambol", + "fenks", + "controverse", + "crumpy", + "weasel", + "enthronize", + "elliptical", + "rhamphotheca", + "tibio-", + "mysterial", + "corbiestep", + "digamma", + "pig-headed", + "parka", + "variformed", + "attendement", + "pivot", + "speculative", + "synecdoche", + "introduction", + "mazdean", + "liftable", + "etherization", + "cyathophylloid", + "tetanomotor", + "preface", + "turbulent", + "paleology", + "nigh", + "beauxite", + "disorganization", + "holloa", + "spirograph", + "komenic", + "ironbark tree", + "oxygenizable", + "annex", + "accompaniment", + "megatherium", + "stainer", + "slum", + "penetrable", + "kimmerian", + "horribleness", + "supplementation", + "polybasic", + "corival", + "establisher", + "gallipoli oil", + "procuress", + "bunsen cell", + "white-ear", + "recite", + "explate", + "acroterial", + "upsilon", + "febrifugal", + "lieutenantry", + "submentum", + "mumblenews", + "trusty", + "orthotropal", + "phonograph", + "abscess", + "supposition", + "torpid", + "varicotomy", + "illusory", + "devout", + "underminer", + "baldachin", + "beta rays", + "arterialize", + "caltrap", + "russification", + "compressive", + "gone", + "maffler", + "lumber state", + "telephote", + "prothonotary", + "cassareep", + "numerically", + "mooner", + "bluish", + "caranx", + "cisatlantic", + "consolidant", + "salt-green", + "minimum", + "broadwise", + "construct", + "infantine", + "carpale", + "coiner", + "photo-epinasty", + "defatigation", + "inconsequentness", + "rorid", + "baboonery", + "diarrheal", + "manis", + "doliolum", + "lightroom", + "supercretaceous", + "bronzing", + "convolvulus", + "detachable", + "semolina", + "heroic", + "pyaemic", + "woolsey", + "polytungstic", + "theodicy", + "expectative", + "omniscious", + "shikaree", + "evaporometer", + "pleasing", + "cizar", + "inaffability", + "depolarizer", + "anemonin", + "fur", + "laelaps", + "blazonment", + "grubble", + "raceabout", + "unreverent", + "sapience", + "understrapper", + "amazon", + "oolite", + "overinform", + "tripetaloid", + "misbecome", + "able-minded", + "gestant", + "perficient", + "vomitory", + "healthlessness", + "partitive", + "foeticide", + "irrisible", + "indies", + "crustaceousness", + "freckledness", + "riddling", + "twaddle", + "balcony", + "universalism", + "polymerization", + "mallotus", + "gallows", + "benumb", + "almoner", + "wonderly", + "wels", + "doretree", + "quinia", + "triandrian", + "linnaean", + "greasiness", + "tom", + "millboard", + "dipsomaniacal", + "fireworm", + "lalo", + "moder", + "mustee", + "concludent", + "regratery", + "scare", + "margined", + "railingly", + "innocency", + "noun", + "proceeder", + "souari nut", + "subcorneous", + "beta", + "instrumentalness", + "sulcation", + "infucate", + "untrained", + "unintelligence", + "octant", + "cicisbeism", + "revengeful", + "foe", + "enjoiner", + "lecanomancy", + "pathognomy", + "allottee", + "warehouse", + "communicant", + "midding", + "misapply", + "wlatsome", + "pinacoid", + "weeping-ripe", + "palaeographic", + "pithsome", + "ready", + "dimerous", + "chilostoma", + "dizzy", + "tuille", + "disentomb", + "dispensableness", + "scrolled", + "main", + "nearctic", + "devastate", + "rack", + "mooress", + "bibacious", + "stochastic", + "palmette", + "rantism", + "huck", + "ilmenite", + "amplectant", + "denitrify", + "inhabitate", + "obumbrate", + "wilfully", + "turbant", + "foreclose", + "recrystallize", + "fissipation", + "goldfish", + "deprivable", + "ulmic", + "unreverend", + "bibliothecal", + "preventative", + "suprascalpular", + "melligo", + "sonship", + "shipless", + "battledoor", + "pacificable", + "sioux", + "drubber", + "egad", + "stealthily", + "boned", + "unchurch", + "grouser", + "docimology", + "hop", + "myoepithelial", + "self-educated", + "aspirator", + "grete", + "acritochromacy", + "trifloral", + "cuckoobud", + "virent", + "flutteringly", + "odontiasis", + "tersulphuret", + "disorganize", + "hemself", + "agistment", + "self-examination", + "desidiousness", + "fondon", + "musketoon", + "eulogistic", + "meditatist", + "bunk", + "dispair", + "packhouse", + "volutation", + "linget", + "steepish", + "mechanician", + "plantain", + "mauve", + "bemoan", + "pedestal", + "ypight", + "outbuild", + "entoblast", + "picktooth", + "naperian", + "euchlorine", + "hypozoic", + "pern", + "prog", + "pronucleus", + "curvograph", + "phosphinic", + "sursolid", + "clearwing", + "zenith", + "symptom", + "tribrach", + "blackberry", + "megascope", + "whistlewing", + "tug", + "actinolitic", + "swifter", + "glycerol", + "politicist", + "counterpart", + "teleost", + "heroical", + "sizy", + "stranger", + "ephor", + "julaceous", + "boots", + "porphyraceous", + "pothecary", + "chlorimetry", + "barbarousness", + "agreeably", + "marble", + "turriculated", + "interjoin", + "ethnological", + "chert", + "saffron", + "provect", + "chemisette", + "clubhand", + "manageability", + "infrugiferous", + "blote", + "occursion", + "jumbler", + "serjeantcy", + "tazel", + "prevoyant", + "tightly", + "anthropolatry", + "diodon", + "campus", + "cursed", + "flibustier", + "saw", + "aloofness", + "fubsy", + "monopneumona", + "ashweed", + "hague tribunal", + "mirza", + "subsecutive", + "legitimatize", + "ley", + "stern-wheel", + "calumbin", + "unreeve", + "cinemograph", + "cynical", + "executorship", + "heteroptics", + "singsong", + "lignify", + "monander", + "winkle", + "prophasis", + "rushlike", + "abusive", + "consultative", + "wagering", + "billbug", + "slept", + "pilfer", + "coxcomb", + "fabrile", + "backsight", + "jairou", + "opinionatist", + "preen", + "dermoneural", + "vanillic", + "typification", + "sea squirt", + "weive", + "creeks", + "perameles", + "beggarliness", + "fop", + "tapiser", + "melliphagous", + "felony", + "lightly", + "hydrosulphureted", + "prosoma", + "longicornia", + "unwormed", + "skeletogenous", + "blow-off", + "rente", + "fountain", + "fatherlessness", + "iracund", + "bepowder", + "hippurite", + "preferability", + "broom corn", + "mesozoic", + "helcoplasty", + "efflate", + "binoculate", + "gerboa", + "tough-head", + "wardenship", + "wooer", + "dwelt", + "snot", + "ameliorator", + "corfute", + "reissue", + "catholicon", + "cancrinite", + "lutose", + "putrify", + "odds", + "footmark", + "lauriol", + "seem", + "domiciliation", + "cashierer", + "hyalotype", + "ruling", + "stipulator", + "petuntse", + "gairishly", + "engregge", + "unguiculate", + "alalia", + "palpi", + "bob-cherry", + "philotechnical", + "flatour", + "platinous", + "fen", + "ichnoscopy", + "raftsman", + "ursa", + "presumption", + "creese", + "midday", + "impatience", + "addle", + "bitumen process", + "swagger", + "alliterator", + "param", + "covetousness", + "ablegation", + "ichthyosaurus", + "maculated", + "enteradenography", + "repletory", + "passingly", + "severity", + "shamrock", + "mandioc", + "sacculo-utricular", + "monochronic", + "procure", + "mydatoxin", + "plugging", + "heron", + "pilled", + "derelict", + "wych-hazel", + "prosopalgia", + "labyrinthal", + "howadji", + "logically", + "favor", + "combined", + "pantology", + "hilted", + "rightful", + "puffing", + "deinoceras", + "whirl-blast", + "bawsin", + "gyneceum", + "metaphosphoric", + "fridstol", + "metropolitan", + "tenth", + "gemmeous", + "temperer", + "troop", + "cookroom", + "oxyhaemoglobin", + "antorgastic", + "sworded", + "recitation", + "relais", + "trapstick", + "non liquet", + "similary", + "supercilious", + "myosis", + "avengeance", + "scincoid", + "anetic", + "sinaic", + "spanking breeze", + "obligor", + "uropygium", + "anhang", + "checkerboard", + "epignathous", + "halmas", + "masseteric", + "lifelong", + "ovalbumen", + "subumbrella", + "baksheesh", + "smitt", + "gall", + "cylinder", + "wailer", + "revealable", + "habitan", + "alnager", + "quintile", + "woodchat", + "excrementitious", + "tuxedo coat", + "seedcake", + "laxness", + "sickless", + "vinum", + "busily", + "incontinent", + "surpliced", + "dreary", + "sotil", + "piapec", + "incipiency", + "inuloid", + "sardius", + "shepherd", + "bellwort", + "tarantulated", + "oxybenzene", + "indirected", + "acacin", + "hieroglyphically", + "oligochete", + "untrowable", + "ruthenium", + "crossbow", + "pseudography", + "excommunicant", + "spece", + "areometer", + "unpossible", + "argillite", + "heliolater", + "sea snake", + "silvas", + "snowberry", + "partitionment", + "transumptive", + "unseam", + "clam", + "sixty", + "trichiurus", + "hesitate", + "principiate", + "metol", + "semiamplexicaul", + "jink", + "photoglyphic", + "receptibility", + "egotistically", + "noursle", + "impiteous", + "palo blanco", + "bourgeoisie", + "fatidical", + "phanariot", + "rubbly", + "pertinacity", + "ashler", + "frugally", + "merrily", + "langteraloo", + "petalism", + "recompensive", + "contemporariness", + "adynamic", + "huia bird", + "doublehearted", + "peripateticism", + "bunion", + "dear", + "dere", + "occultism", + "ratite", + "ploughable", + "ichthyophagist", + "columba", + "thereout", + "clash gear", + "unkingship", + "cycloid", + "catheterization", + "carvol", + "idealism", + "innocence", + "leaved", + "sleeve", + "stewartry", + "aerugo", + "asystolism", + "exception", + "deliberate", + "kefir grains", + "bromid paper", + "madge", + "preambulation", + "arrow", + "asphyxia", + "nonunionist", + "bestad", + "shampooer", + "disrudder", + "sheal", + "blockheadism", + "charitableness", + "scarceness", + "llama", + "disserve", + "ingenuously", + "tree calf", + "fecundity", + "collodium", + "sportule", + "strook", + "discoidal", + "foldless", + "burler", + "padesoy", + "acarus", + "tumultuarily", + "attagas", + "backslide", + "pirrie", + "paddlecock", + "goodly", + "significator", + "granary", + "lithargyrum", + "among", + "prescindent", + "conduct", + "husbandable", + "naufrage", + "trierarch", + "-graph", + "scrawl", + "bastardize", + "wattle", + "curfew", + "chondro-", + "mundanity", + "experimentist", + "lance", + "postoral", + "mis-", + "heterostylism", + "roinish", + "forlese", + "canter", + "pearlite", + "auntre", + "message", + "unshout", + "tinning", + "chargeableness", + "ray", + "epitheloid", + "overhigh", + "aurigation", + "yokemate", + "gobioid", + "canonicity", + "dilatation", + "inditement", + "conge", + "apophlegmatic", + "handspring", + "monotonist", + "judicature", + "bettor", + "hydr-", + "geometrical", + "carolinian", + "beal", + "yogism", + "adolescent", + "glint", + "whereto", + "cardiac", + "clove", + "errancy", + "operous", + "olecranal", + "geometrically", + "gladius", + "palladic", + "inhume", + "jehovist", + "tetradont", + "bean trefoil", + "democratize", + "fosterage", + "cantor", + "jeoparder", + "coaita", + "reticulum", + "strigine", + "vivandiere", + "boltrope", + "amateurship", + "secreness", + "suite", + "carbonic", + "puzzel", + "tammy", + "naphew", + "independency", + "lepisma", + "snigger", + "noisette", + "camphorate", + "cutlet", + "syphilis", + "primariness", + "annihilatory", + "unpracticable", + "ferme", + "blacksmith", + "disclamation", + "chaldaic", + "micro-", + "ligneous", + "myoma", + "sparge", + "opponent", + "totipalmi", + "catachrestical", + "anthrax vaccine", + "wretchedness", + "glover", + "polynucleolar", + "luwack", + "fumigant", + "beastlike", + "characterless", + "dodo", + "honey-bag", + "whirler", + "babyhood", + "recoil", + "leporine", + "standish", + "bemaze", + "sagenite", + "propense", + "shingler", + "cornetcy", + "enguard", + "toyman", + "sib", + "ultion", + "kitty", + "hydropathy", + "amphichroic", + "chasuble", + "curvilinead", + "zoophytology", + "vainly", + "imperturbable", + "duet", + "snipefish", + "immatured", + "bothy", + "redeposit", + "huffingly", + "sectarianism", + "endamageable", + "kistvaen", + "sphenoethmoidal", + "periphrastical", + "callipee", + "coafforest", + "comminatory", + "sciatical", + "tramontana", + "battue", + "underreckon", + "acetic", + "trimetrical", + "passim", + "palaestric", + "handicraft", + "patripassian", + "shufflecap", + "bleacher", + "tallower", + "atrophy", + "mulierose", + "pilose", + "harness cask", + "trias", + "harpy", + "tanager", + "mauvaniline", + "col", + "taro", + "shortly", + "atmologic", + "reprobationer", + "sugary", + "docquet", + "room", + "undertook", + "moulinet", + "excarnation", + "reassume", + "untidy", + "circumambulate", + "seethe", + "tuitionary", + "famously", + "obitual", + "diluvium", + "slugging match", + "cimbrian", + "benthamic", + "haliography", + "sesquitertial", + "pert", + "agnus", + "outskirt", + "amphibious", + "grounding", + "talmudism", + "sweeper", + "omnipercipience", + "tansy", + "unyoke", + "intervenience", + "assumably", + "tyburn ticket", + "contractibleness", + "asperne", + "incomity", + "compose", + "defedation", + "opiniated", + "vitta", + "questionability", + "scrape", + "neckar nut", + "homoeomery", + "aesthetical", + "furies", + "oratorian", + "brandling", + "paraph", + "plateau", + "prickleback", + "archonship", + "crossopterygii", + "euhemerism", + "demoniac", + "connotative", + "molesty", + "yoit", + "disparager", + "heartswelling", + "hydrometallurgical", + "diarrhoetic", + "cosignificative", + "metagenetic", + "splenial", + "auscultate", + "companiable", + "sculler", + "packwax", + "glutaconic", + "rose-water", + "sunburst", + "birdseed", + "elliptic-lanceolate", + "tenantless", + "wayk", + "disappointed", + "plastic", + "firecracker", + "redde", + "praecommissure", + "prudentialist", + "orphanotrophism", + "polyeidic", + "mountance", + "drowsy", + "magbote", + "acarina", + "alienist", + "towboat", + "heam", + "viminal", + "aiel", + "icy-pearled", + "versemonger", + "owlery", + "mero", + "hibiscus", + "tiddlywinks", + "cephalanthium", + "rhonchal", + "gnome", + "fireball", + "grazier", + "mitosis", + "sirdar", + "snet", + "ultime", + "existent", + "unconcludent", + "penang nut", + "enormous", + "monarchical", + "horrific", + "mesosiderite", + "tirralirra", + "disrespective", + "pearlins", + "instratified", + "platting", + "tussal", + "inadherent", + "plumbing", + "fenny", + "crispness", + "sutlership", + "burniebee", + "high steel", + "variometer", + "isochimal", + "ichthyopterygia", + "clematis", + "resoluble", + "tractable", + "future", + "straught", + "skulker", + "misfaith", + "mummery", + "englaimed", + "saccharimetry", + "scrimmage", + "chaussure", + "welked", + "outsell", + "septal", + "ynambu", + "langaha", + "pardie", + "melodramatic", + "fatherland", + "dambonite", + "io moth", + "angola pea", + "impoundage", + "nitro-", + "symmetrician", + "definable", + "consubstantially", + "definiteness", + "dewret", + "immaterialism", + "biennially", + "debutant", + "knobby", + "preadministration", + "annihilate", + "palmetto", + "zygospore", + "bitternut", + "cotton seed", + "placentalia", + "affreight", + "lingel", + "gelid", + "disimprovement", + "frolicly", + "coagency", + "mesel", + "nakoo", + "scotist", + "henrietta cloth", + "serrated", + "anhima", + "basic", + "white fly", + "heteromera", + "breathless", + "refractometer", + "comet-seeker", + "agroupment", + "gregge", + "endorhizal", + "rateable", + "ventriloquism", + "irredeemable", + "inequivalve", + "mobile", + "lignose", + "vermiform", + "incanting", + "shine", + "pistillody", + "dimensive", + "monandrian", + "muticous", + "barehead", + "cheep", + "revealment", + "towards", + "corybantic", + "heptagynous", + "deutoplastic", + "whitethorn", + "backboard", + "southerliness", + "phraseology", + "coneine", + "caparro", + "voluntariness", + "jagannath", + "tymp", + "semiconscious", + "ocra", + "impolicy", + "vermicide", + "gastronomist", + "since", + "methaemoglobin", + "resplendishant", + "fitz", + "bargainor", + "impetration", + "manducate", + "scene", + "reincorporate", + "behappen", + "analepsy", + "counterprove", + "beaupere", + "sliness", + "stycerin", + "exordial", + "erythraean", + "medal", + "pineaster", + "grudgeful", + "laryngologist", + "seabeach", + "vanquisher", + "sphenogram", + "doughty", + "display", + "misgovernance", + "mahdism", + "ind", + "outjuggle", + "thymene", + "em-", + "solenacean", + "shanghai", + "youl", + "trash", + "phlegmatic", + "blancmange", + "intendant", + "halves", + "gemitores", + "englishry", + "dismayedness", + "stewpot", + "sottish", + "spicknel", + "hierocracy", + "monomane", + "ungovernable", + "incongruence", + "rubbidge", + "nimble", + "conscionableness", + "terza rima", + "digladiation", + "anachronism", + "ax", + "epidermeous", + "anthropophagous", + "lucimeter", + "smartness", + "seeth", + "digitate", + "streaminess", + "cultrivorous", + "depurgatory", + "concaveness", + "underniceness", + "misframe", + "drier", + "lammergeir", + "overwork", + "cudbear", + "evangely", + "suicidical", + "matanza", + "awhape", + "semicope", + "gravery", + "plesh", + "supposal", + "veney", + "hippocrepian", + "aard-vark", + "dogday", + "cinch", + "lurch", + "sonorous", + "onionskin", + "sithens", + "tentaculite", + "feltry", + "sequacity", + "columbary", + "adscript", + "conspectus", + "cam", + "lucerne", + "mandate", + "pleomorphous", + "inviolateness", + "rhemish", + "omphalo-", + "exsiccant", + "drawbore", + "batman", + "ingravidate", + "illuminative", + "paraxial", + "concoctive", + "stonecray", + "isthmus", + "traveled", + "devilkin", + "imparalleled", + "glamour", + "water chestnut", + "reformative", + "argentite", + "birthright", + "perfunctoriness", + "sybarite", + "trustful", + "ornament", + "gordiacea", + "scratchweed", + "achromatically", + "cautionary", + "tuesday", + "ate", + "exacerbate", + "zwinglian", + "ens", + "aponeurosis", + "onomasticon", + "contest", + "supervive", + "fortifier", + "reconnoiter", + "polychord", + "capriole", + "oxymethylene", + "papalist", + "sole trader", + "universally", + "culerage", + "dualistic", + "neutrally", + "justiciable", + "uptrace", + "imrigh", + "imprevalence", + "gainly", + "homogenesis", + "armored", + "microform", + "bacterioscopic", + "hexagonal", + "sententiosity", + "leep", + "severally", + "nightertale", + "unpitied", + "fly fungus", + "binaural", + "mucamide", + "leucocytogenesis", + "nifle", + "manubrial", + "insulation", + "aphetism", + "mercurialize", + "mistrust", + "paleozooelogy", + "enneapetalous", + "conepatl", + "passe partout", + "entermise", + "resuscitation", + "sermonical", + "thecodactyl", + "enthrill", + "epical", + "delitescent", + "splasher", + "recarnify", + "physograde", + "pugnacity", + "subpyriform", + "oviparity", + "high-top", + "ambaginous", + "pendulous", + "direption", + "epizoic", + "bless", + "siliciureted", + "mahratta", + "adulterously", + "lyken", + "encyclic", + "puckish", + "kaguan", + "basined", + "scurvily", + "corncrib", + "gothamist", + "oxyrhyncha", + "bejade", + "gulgul", + "racket-tailed", + "deloul", + "premial", + "resonant", + "foreignism", + "cuish", + "refiner", + "bicycling", + "anonymously", + "mirage", + "abaxial", + "cyamellone", + "redressless", + "hoyden", + "aery", + "clarty", + "comfortable", + "pycnodontini", + "immersable", + "phylactocarp", + "tripping", + "compulsively", + "instrumentally", + "deliciate", + "kohnur", + "fartherance", + "lend", + "reflexive", + "metallization", + "promulgation", + "michaelmas", + "everduring", + "hunger", + "ixtil", + "ensober", + "wanness", + "elucidative", + "ooerial", + "choree", + "rarefaction", + "unlooked-for", + "cauponize", + "poor-willie", + "better", + "polka", + "engineer corps", + "undecylic", + "lucific", + "ganz system", + "zeekoe", + "fusel", + "nombles", + "albinism", + "nightmare", + "palliative", + "waistband", + "misotheism", + "windflower", + "organical", + "heben", + "aquosity", + "bethel", + "destitution", + "taglet", + "skimback", + "unability", + "faradization", + "lunistice", + "deicide", + "autonomasy", + "narcosis", + "disseat", + "half seas over", + "incompetence", + "avengement", + "antihydrophobic", + "underfollow", + "spinneret", + "milter", + "eyereach", + "manometer", + "spoilfive", + "succussation", + "synergy", + "whereby", + "electro-negative", + "parfourn", + "invalidate", + "staurolitic", + "toreutic", + "self-reprovingly", + "areopagus", + "poller", + "reinsure", + "againstand", + "duller", + "subindication", + "uraniscorrhaphy", + "noot", + "wagonette", + "rapid-firing", + "misrecite", + "lexiconist", + "translucid", + "maenad", + "pencil", + "duction", + "subnasal", + "belle-lettrist", + "hard-shell", + "notwheat", + "plantigrade", + "theoretics", + "knit", + "roup", + "adventurously", + "heliochromy", + "disseminate", + "saintess", + "radiculose", + "dentile", + "curialism", + "stirrup", + "toxine", + "seaweed", + "annulate", + "christless", + "may laws", + "living picture", + "cuscus", + "cheesemonger", + "onerate", + "cringeling", + "dipleidoscope", + "dallop", + "pig-eyed", + "limousine", + "undying", + "braky", + "whisker", + "zooegeny", + "monogamian", + "telenergy", + "yucca borer", + "antagonist", + "valuer", + "encourage", + "midway", + "glaucosis", + "tacket", + "volcanian", + "moltable", + "cannoned", + "adosculation", + "bote", + "dereliction", + "brabantine", + "tangent", + "chrysopa", + "aceric", + "storminess", + "vaudeville", + "versicolored", + "ignorant", + "knife-edge", + "arbored", + "whatsoever", + "matzoth", + "batrachomyomachy", + "deturbate", + "fibulare", + "junco", + "paynize", + "americanism", + "cedar", + "irrecognition", + "modalist", + "spied", + "divergingly", + "ostreaculture", + "dithecal", + "moonish", + "abbatial", + "gainpain", + "pegm", + "endocardium", + "kava", + "deathward", + "hegelianism", + "watcher", + "stey", + "disaccommodate", + "hecdecane", + "perforate", + "ante-", + "top-draining", + "cordelier", + "caoncito", + "abalone", + "decade", + "galacta-gogue", + "leatherneck", + "supereminent", + "collar bone", + "goslet", + "fondus", + "zion", + "radeau", + "mezzanine", + "zincographic", + "stook", + "clergyman", + "amenability", + "delitescence", + "fatback", + "radiotelegraphy", + "sun star", + "transhumanize", + "eery", + "interponent", + "class", + "revivify", + "vervel", + "photorelief", + "decipherable", + "sheeprack", + "lavender", + "cortege", + "interlinear", + "cirrhotic", + "surmisable", + "temperature", + "herderite", + "prefectorial", + "scuddle", + "scepsis", + "dynamite", + "nigromancien", + "helmsman", + "cesarism", + "cotyledon", + "ascertain", + "didelphous", + "capelle", + "glengarry", + "grimness", + "haemadromometry", + "lacteously", + "mycoderma", + "fluoride", + "neuropathy", + "idiot", + "silverless", + "vagrantness", + "zincite", + "ostensive", + "footbreadth", + "merluce", + "ma", + "iatric", + "ankylosis", + "par", + "bindheimite", + "quirked", + "avena", + "lacquer", + "whisket", + "antizymotic", + "coriaceous", + "fair-leader", + "venus", + "enrank", + "killdeer", + "bemock", + "cobby", + "compulsative", + "crack-loo", + "sentimental", + "cairn", + "intimidation", + "nimbiferous", + "aventine", + "ooephyte", + "perspicacy", + "brotherliness", + "supraspinate", + "drabble", + "chufa", + "ophthalmia", + "egotistical", + "perturbance", + "referential", + "flyfish", + "amharic", + "hawkey", + "inosculation", + "maian", + "knowingly", + "property", + "array", + "geological", + "cofferdam", + "giust", + "parathesis", + "fixture", + "snowslip", + "dabb", + "causelessness", + "eale", + "pocketful", + "congeneric", + "upupa", + "embryology", + "country-dance", + "fluey", + "pentathionic", + "excheator", + "inoculable", + "timbre", + "floatingly", + "kiva", + "aureate", + "tooling", + "globefish", + "zaim", + "farfet", + "sea maw", + "fuze", + "verecundity", + "gambadoes", + "rambling", + "siphonostomata", + "elevated", + "pretext", + "arietate", + "candlebomb", + "foot guards", + "spoutless", + "rubeola", + "flushboard", + "colonitis", + "apotome", + "nonchalant", + "sightful", + "solander", + "subterraneous", + "postnuptial", + "deil", + "imperatorial", + "bipinnatifid", + "blandishment", + "hebraistically", + "undercreep", + "clupeoid", + "keratode", + "damp off", + "consuetudinary", + "swanpan", + "banality", + "inantherate", + "synonymicon", + "hall-mark", + "superintend", + "stab culture", + "unsoft", + "forby", + "glochidiate", + "placation", + "touse", + "inactose", + "trihoral", + "areometric", + "faddle", + "red-tailed", + "reprieve", + "snappish", + "spink", + "trifolium", + "glimmering", + "ruinate", + "hungered", + "fuchsia", + "oversoon", + "alarm", + "bistort", + "sheep", + "bromogelatin", + "plateresque", + "warm-hearted", + "whirtle", + "autogenetic topography", + "tropically", + "try cock", + "chromatogenous", + "floured", + "involucred", + "lockram", + "hyoidean", + "brassage", + "husky", + "anserine", + "hestern", + "eviration", + "apoda", + "quayd", + "necessitude", + "lenify", + "dormitive", + "hyperion", + "molecule", + "radication", + "leveling", + "tentacle", + "mandamus", + "appertinent", + "pedlar", + "coagulated", + "sylleptic", + "blouse", + "pyrrol", + "lardon", + "prorhinal", + "morian", + "helvine", + "highty-tighty", + "post-abdomen", + "coextension", + "tabetic", + "twofold", + "phaenogam", + "tegument", + "fetidity", + "connusant", + "executory", + "episodic", + "hydrencephsloid", + "subdued", + "suwarrow", + "puler", + "exotheca", + "butyric", + "depudicate", + "epidermical", + "lepidopter", + "wealthily", + "teetotally", + "overshade", + "madisterium", + "irresponsive", + "frontiered", + "unmew", + "deckel", + "loin", + "alternator", + "rappee", + "plebiscite", + "electrophone", + "feuar", + "geotropic", + "outburst", + "banjorine", + "annalize", + "interlunar", + "rostrate", + "trieterics", + "hagioscope", + "deaconess", + "pontil", + "prothetic", + "contriver", + "conditionality", + "untaste", + "wharp", + "dame", + "hoddydoddy", + "sport", + "impostrous", + "verruculose", + "assay pound", + "horsewhip", + "prostration", + "importunator", + "homeopathic", + "volution", + "frigerate", + "reilluminate", + "nabit", + "transmigrate", + "negativeness", + "juramentum", + "disguisedness", + "untie", + "craggy", + "apt", + "septemvirate", + "godlyhead", + "spitted", + "supraspinal", + "intercurrent", + "inebriant", + "love-sick", + "decarbonization", + "overfish", + "quamoclit", + "palmister", + "flathead", + "paramere", + "scum", + "telescopy", + "rename", + "oreosoma", + "impenetrably", + "compendious", + "enmesh", + "decease", + "amplitude", + "freely", + "camembert cheese", + "mohr", + "unruffle", + "lodde", + "hanse", + "shathmont", + "sloggy", + "brogue", + "cornstarch", + "necroscopical", + "deep-sea", + "sixpenny", + "disassiduity", + "poiser", + "misrecollect", + "synoptical", + "vakeel", + "concinnity", + "crystal", + "voltaism", + "crisscross-row", + "janthina", + "announcement", + "xylographer", + "bonnet", + "tannigen", + "blatteroon", + "concertante", + "quadrennial", + "bluefin", + "urao", + "broach", + "trafficker", + "numberous", + "row", + "accurately", + "preconceive", + "jockeyship", + "latitat", + "injection", + "willet", + "postulatory", + "lanseh", + "trifoliate", + "viviparously", + "diapophysical", + "apse", + "convergence", + "malate", + "papilionaceous", + "piation", + "laudation", + "muskat", + "surmullet", + "manage", + "negligent", + "perclose", + "cassolette", + "prefatory", + "bamboozler", + "glossal", + "chimerically", + "ortolan", + "gribble", + "buttonwood", + "skylarking", + "loof", + "zaffer", + "alcoholometrical", + "azotic", + "berth", + "prod", + "primy", + "sternson", + "caesural", + "electroplate", + "full-butt", + "profane", + "circumstantiable", + "suppositive", + "ocreated", + "fubbery", + "spancel", + "laureled", + "implicatively", + "can hook", + "polypean", + "liberalistic", + "function", + "macropyramid", + "matchable", + "sparteine", + "acinaceous", + "glonoine", + "inextricably", + "mail", + "narrowly", + "taupie", + "pro", + "saltwort", + "thrombosis", + "ziphioid", + "bombilation", + "confederater", + "beaumontague", + "desirableness", + "tormenting", + "clout", + "posse comitatus", + "wyten", + "gambogic", + "nighted", + "umbery", + "bookkeeper", + "rowable", + "chesible", + "thing", + "gressorious", + "turgid", + "black-a-vised", + "dementate", + "coarctate", + "welldoer", + "anomal", + "alexipyretic", + "bell-faced", + "calicular", + "certes", + "photophony", + "capable", + "succedaneous", + "sericulture", + "tracheata", + "goulards extract", + "ideographical", + "landgravine", + "pediment", + "spoutshell", + "vesuvianite", + "check", + "self-affairs", + "periscope", + "ceterach", + "overdelighted", + "prosecution", + "feebleness", + "poverty", + "gasolene engine", + "safety", + "transportant", + "noetic", + "habnab", + "agist", + "navvy", + "deliberative", + "halometer", + "leachy", + "seafarer", + "en passant", + "xanthomatous", + "lapstreak", + "associationist", + "bastile", + "immigrate", + "tankia", + "hexametrist", + "tressed", + "quotation", + "ronyon", + "retrogradation", + "elutriation", + "unknit", + "exsertile", + "perichete", + "tussis", + "irradiate", + "sendal", + "fire beetle", + "woodsy", + "cordite", + "kentle", + "corpus", + "intended", + "aden-", + "misemploy", + "blink-eyed", + "contraversion", + "alineeation", + "cycadaceous", + "fluxibility", + "allemande", + "brimless", + "cadaver", + "hornowl", + "low-churchman", + "milkily", + "pliform", + "divinization", + "endosmometer", + "kapellmeister", + "merithal", + "tonsured", + "narwal", + "overthwart", + "designate", + "earsore", + "else", + "fico", + "torch", + "isagon", + "gargarism", + "uraniscoplasty", + "tollman", + "coronis", + "manualist", + "flanch", + "infamize", + "existence", + "conscientiously", + "viscin", + "peristome", + "notebook", + "orthophony", + "alday", + "hydrocyanide", + "purpureal", + "thespian", + "hydrostatically", + "amazonian", + "preachership", + "hamated", + "diffusively", + "phototaxy", + "puffiness", + "echinoidea", + "torso", + "disciplinable", + "ismaelian", + "pistillaceous", + "ridgingly", + "caddie", + "celibate", + "tesla transformer", + "mulligatawny", + "thallene", + "orlop", + "expiatorious", + "gusset", + "hedonics", + "pygmy", + "vaishnava", + "lapling", + "hirundine", + "dynamism", + "tranquilizing", + "concerted", + "echinozoa", + "bescratch", + "filigraned", + "uppish", + "inveterate", + "contraries", + "noctilionid", + "phylacteric", + "ay", + "uncharnel", + "uranite", + "igneous", + "circumscriptible", + "ew", + "shill", + "tarsectomy", + "dyad", + "melancholious", + "practico", + "sailfish", + "fugle", + "constitutionally", + "royalism", + "scansorial", + "blanchard lathe", + "psychrometry", + "acrophony", + "vintry", + "bo tree", + "siphonate", + "debenture stock", + "dough", + "malleation", + "evaluate", + "phalanstere", + "natantly", + "hospitium", + "misgive", + "wickered", + "blazonry", + "microscope", + "labyrinthodonta", + "planimetrical", + "ramshackle", + "suboval", + "correi", + "paleothere", + "rivage", + "personnel", + "haemapod", + "receiver", + "self-deception", + "splenitis", + "synteretic", + "unkemmed", + "bombardon", + "expel", + "moldiness", + "reformation", + "shintiyan", + "fount", + "moelline", + "bawson", + "candle coal", + "self-registering", + "toyish", + "opsiometer", + "tricky", + "yaw", + "edema", + "gyve", + "sine", + "finific", + "cronstedtite", + "defectible", + "uninucleated", + "acrid", + "lazarly", + "antitrochanter", + "pannikel", + "water ouzel", + "naivety", + "bull terrier", + "photochronograph", + "auster", + "sapper", + "worship", + "centauromachy", + "tubicolar", + "armor", + "owen", + "swellish", + "gynandromorphism", + "connascence", + "fourpence", + "inculpable", + "rhonchisonant", + "deforest", + "knor", + "omphalos", + "woohoo", + "herald", + "focalize", + "coaltit", + "numismatical", + "recession", + "ileocaecal", + "enslaver", + "declarable", + "saltie", + "savacioun", + "bicyclic", + "subangular", + "bonchretien", + "bastinade", + "ghostology", + "starosty", + "syringotome", + "dioptra", + "asp", + "baria", + "protocatechuic", + "scepticism", + "truffle", + "vocally", + "gasify", + "lighthouse", + "averroist", + "buccaneerish", + "panacean", + "hailshot", + "infester", + "sevres ware", + "repetitor", + "red-riband", + "valentinian", + "footstep", + "disfiguration", + "secrecy", + "decidence", + "cicala", + "terrienniak", + "unmeet", + "lapis lazuli", + "infidelity", + "impartial", + "insubstantial", + "compunctious", + "interpleader", + "temporaneous", + "unsubstantialize", + "muraena", + "cochleate", + "homelike", + "moroxite", + "stilton", + "slitter", + "cespitine", + "monal", + "tubulidentate", + "whitsun", + "daily", + "unilobar", + "vitalist", + "muraenoid", + "assecuration", + "water cock", + "discourse", + "intermetacarpal", + "procacity", + "suprapubian", + "polishable", + "vivency", + "fanciless", + "fand", + "tawdriness", + "selvaged", + "cockaleekie", + "scraffle", + "nightingale", + "greaten", + "hep tree", + "aggrievance", + "desecate", + "difficultness", + "scrubby", + "brahmo-somaj", + "enclavement", + "rescussee", + "exophthalmy", + "water crane", + "compassless", + "wedgy", + "jument", + "revestture", + "indifferent", + "campanularian", + "enounce", + "splutter", + "losingly", + "bookbinder", + "crossway", + "flashiness", + "complacently", + "functionate", + "leathery", + "noon", + "red-dog flour", + "protozooen", + "testudinarious", + "isabella color", + "subcontract", + "rondeau", + "doctorate", + "krokidolite", + "toothache", + "happiness", + "nereites", + "epileptiform", + "coxcombical", + "ripplet", + "patriarchship", + "raw", + "impune", + "oread", + "udderless", + "si quis", + "podotheca", + "truss", + "unshackle", + "bolivian", + "unite", + "obtrusionist", + "plausible", + "charre", + "illiterature", + "flare", + "quater-cousin", + "myrialiter", + "vouchsafement", + "palpus", + "syriac", + "addle-headed", + "germicidal", + "gnathostoma", + "mutiny", + "trimorphic", + "sideral", + "helical", + "maori", + "caudex", + "jew", + "bipalmate", + "paramours", + "alum stone", + "drumhead", + "weather-board", + "wispen", + "generability", + "meagerness", + "compositae", + "dimensity", + "trillium", + "acetimetry", + "whitworth gun", + "matronly", + "philosophy", + "pentateuch", + "elfishness", + "xylotomy", + "melanagogue", + "bettermost", + "forties", + "diminuendo", + "ghost", + "ingesta", + "squirter", + "thanatopsis", + "gradely", + "whencesoever", + "furbelow", + "eleventh", + "mesomycetes", + "euphorbia", + "ceorl", + "abbotship", + "cloke", + "jugated", + "messmate", + "eumenides", + "presbyterial", + "relevation", + "rove", + "pseudonavicula", + "extravagancy", + "coincident", + "favorer", + "tentful", + "plagal", + "ebrious", + "halteres", + "novelism", + "user", + "duel", + "windpipe", + "durga", + "youngth", + "causeless", + "unreproachable", + "bissextile", + "palmcrist", + "hepatization", + "unempirically", + "acrobatic", + "discipline", + "compilement", + "elaeolite", + "sensuality", + "oakum", + "hardener", + "nittings", + "rawhead", + "porcelain", + "hansel", + "dufrenite", + "androus", + "sugarless", + "trickery", + "evincible", + "gear", + "croisado", + "cledge", + "brawler", + "deplorer", + "geographical", + "hose", + "supply", + "woolsack", + "foolhardise", + "hoosier state", + "needscost", + "slumberless", + "slapping", + "hakim", + "altimetry", + "refrangible", + "bow-pen", + "poebird", + "entablement", + "waster", + "lectica", + "teinture", + "montgolfier", + "cephalocercal", + "bruin", + "intermediate", + "zollverein", + "hemisphere", + "brittleness", + "quiritation", + "jocular", + "trapezate", + "personalism", + "misreform", + "elaiodic", + "subtriangular", + "aeroplane", + "romanticist", + "easy-chair", + "smooth", + "pilgrim", + "ilmenium", + "hexade", + "preadamic", + "turn-sick", + "boiar", + "duumviral", + "polliniferous", + "pronged", + "strombite", + "omination", + "overgrassed", + "araneous", + "fraud", + "editress", + "credit mobilier", + "dizzily", + "horseworm", + "anorthopia", + "performance", + "glowlamp", + "coasting", + "supradecompound", + "crossing", + "sea mew", + "southernmost", + "parr", + "bes-antler", + "pantaloon", + "offendress", + "translation", + "hent", + "kadi", + "hotchkiss gun", + "sea lily", + "tantra", + "appropre", + "reasonless", + "comestible", + "wagon-roofed", + "wonderous", + "introversion", + "zebrule", + "lunged", + "dalles", + "elan", + "cental", + "upeygan", + "passableness", + "zooelatry", + "rinser", + "carelessly", + "overcount", + "excisable", + "emmet", + "predominant", + "chylific", + "cogitable", + "abiogenous", + "poikilothermic", + "razorback", + "misinformation", + "self-defence", + "pygal", + "seether", + "stang", + "anabaptistic", + "troostite", + "thaneship", + "derailment", + "veteranize", + "-ment", + "foots", + "luff", + "spatangoidea", + "inconsonancy", + "arere", + "domiciliate", + "pungent", + "stubbedness", + "countermark", + "demeanance", + "babingtonite", + "friction", + "debilitation", + "foreflow", + "obomegoid", + "grievance", + "daphnia", + "certiorari", + "country", + "gnathic", + "flint-hearted", + "sacrament", + "empassion", + "miriness", + "antilogy", + "exculpation", + "chorepiscopus", + "mactation", + "revolvable", + "teemful", + "lammergeier", + "thymus", + "penniform", + "compositive", + "elegancy", + "forget", + "mestino", + "razzia", + "lena", + "timberman", + "doucepere", + "hackbolt", + "knight baronet", + "constabulatory", + "divertive", + "encrinitical", + "entresol", + "languid", + "cackling", + "balefire", + "repleader", + "rawness", + "sophistication", + "eider", + "transformer", + "inarticulate", + "tsung tu", + "theology", + "enlumine", + "hexamerous", + "smirch", + "quattrocento", + "compliable", + "interpolation", + "intransmissible", + "eglandulous", + "aviseful", + "claudication", + "emodin", + "porcelainized", + "exterior", + "scaphopoda", + "gurglet", + "subgovernor", + "duster", + "cowslip", + "patter", + "menial", + "immoment", + "perfuncturate", + "lodged", + "perversive", + "utriculate", + "cobaltine", + "judge-made", + "stealthlike", + "merostomata", + "salpian", + "lumping", + "canary bird", + "heterodont", + "lampblack", + "swordsmanship", + "benumbment", + "cattish", + "meroblast", + "reincrease", + "vanguard", + "territorially", + "notate", + "avoutrie", + "pannus", + "weather-fend", + "phosphor", + "privy", + "octaemeron", + "esurient", + "gustoso", + "memory", + "reddition", + "slaughterer", + "heddle", + "electric", + "epigynous", + "trysting", + "attaint", + "foretell", + "mummichog", + "naif", + "indigence", + "renowme", + "subbrachiales", + "crofter", + "philippic", + "inhere", + "earthboard", + "depressive", + "octosyllabical", + "lorcha", + "unvisibly", + "instimulate", + "unerringly", + "anecdotist", + "palpebral", + "anaerobia", + "halation", + "salad", + "by-past", + "two-sided", + "oad", + "holothure", + "lathe", + "atypic", + "mira", + "apercu", + "cerebrin", + "lunule", + "xanthium", + "homograph", + "ducker", + "chromospheric", + "beatifical", + "cashbook", + "idiotry", + "nightish", + "swarthiness", + "demidevil", + "limitless", + "passiflora", + "supravisor", + "cottagely", + "cosmolabe", + "hodmandod", + "espringal", + "moreland", + "pirai", + "adactylous", + "embarrassment", + "fallible", + "moria", + "bardish", + "cephalotripsy", + "scholiaze", + "sauce aux hatelets", + "apteryges", + "distracting", + "gastritis", + "restore", + "proditory", + "arragonite", + "mahdiism", + "cowbird", + "succulency", + "london", + "selfsame", + "dancette", + "earthdin", + "laminar", + "backwards", + "alternativeness", + "denization", + "unbeliever", + "gaure", + "tailstock", + "diphthong", + "geth", + "quinquefid", + "thuggee", + "gain", + "squarely", + "chondrin", + "plebification", + "lexicographical", + "divisionary", + "dumb", + "tendrilled", + "donative", + "lithocarp", + "nilotic", + "aweless", + "eloin", + "orchitis", + "retractor", + "imbiber", + "cerebellum", + "oceanus", + "trothplight", + "unfurl", + "expanse", + "overpower", + "stinkweed", + "hemitrope", + "dotage", + "digestedly", + "rabdoidal", + "alkazar", + "infirmly", + "dodecahedron", + "turioniferous", + "apodeictical", + "umbilication", + "pichiciago", + "circumvallate", + "lobosa", + "brandish", + "chylaqueous", + "tapered", + "assecution", + "anatomy", + "bicycler", + "calc-spar", + "mayhap", + "declaim", + "-mere", + "emissory", + "truand", + "yachter", + "pentadecylic", + "tided", + "philanthropist", + "milleporite", + "counterbuff", + "stepper", + "inconcinne", + "double-tonguing", + "edam", + "clothespin", + "septifluous", + "enterorrhaphy", + "antipathetical", + "uncurrent", + "clean-timbered", + "isolatedly", + "wreaken", + "gulaund", + "autokinetic", + "philatelist", + "doom", + "spousal", + "engagedly", + "perspicacious", + "monomerous", + "peristoma", + "thowel", + "selch", + "arduously", + "catelectrotonus", + "shily", + "blend", + "reexchange", + "monstrousness", + "meekly", + "supplemental", + "continent", + "accelerate", + "academic", + "ledgement", + "redhead", + "poriness", + "re-", + "homonomous", + "whiteblow", + "prolixious", + "liquefaction", + "enallage", + "detach", + "pantable", + "plea", + "dukeship", + "dandy", + "sedulous", + "arundinaceous", + "knock-out drops", + "offensible", + "turbinaceous", + "morse code", + "crossette", + "sacristy", + "firring", + "imperviable", + "spade", + "nonylenic", + "perishably", + "picotine", + "acerbity", + "indiligent", + "potassic", + "roestone", + "harpsichon", + "boodh", + "guaiac", + "prerequire", + "bunchiness", + "vaccina", + "exolve", + "tappet rod", + "disproval", + "lean-to", + "surling", + "morningtide", + "propaedeutical", + "dolabriform", + "megalops", + "fracid", + "hydrated", + "preappointment", + "somniloquist", + "plumbaginous", + "intricately", + "lithonthriptic", + "penumbra", + "ceratobranchia", + "hail-fellow", + "desport", + "bacchus", + "skene", + "lancet", + "old-maidish", + "infraction", + "ascertainment", + "neatly", + "toothing", + "camerade", + "patricidal", + "catalogize", + "zosterops", + "scuffle", + "mingledly", + "catholicos", + "amacratic", + "feel", + "protogine", + "dumose", + "roration", + "saxonist", + "secretaryship", + "siderography", + "gazet", + "intensitive", + "absorptivity", + "transmigrant", + "willowy", + "zooephilist", + "plasterer", + "forleave", + "wreathless", + "reengrave", + "monastically", + "septi-", + "barbiers", + "undermine", + "pistillation", + "scholarship", + "starthroat", + "third-penny", + "observation", + "committal", + "janissary", + "dextrogerous", + "pacifier", + "olein", + "aristotype", + "siderostat", + "pexity", + "exanimation", + "atlantes", + "epistemology", + "pacifiable", + "caviare", + "milk vetch", + "objuration", + "supposable", + "pontificality", + "lampoon", + "semiannual", + "disappoint", + "instaurator", + "hemstitch", + "fetlock", + "blessed", + "physiognommonic", + "beplaster", + "edematose", + "garage", + "peddler", + "bear-trap dam", + "smear dab", + "tregetour", + "anient", + "belletristical", + "clypeastroid", + "govern", + "repartee", + "monist", + "inclamation", + "phasma", + "pumiced", + "caryatid", + "regicidal", + "strain", + "vivda", + "co-mate", + "pennigerous", + "mulberry-faced", + "antediluvial", + "putrilage", + "naumachy", + "pleiades", + "calymene", + "phalangid", + "top-armor", + "whirlicote", + "unballasted", + "tribunitious", + "unlodge", + "argus shell", + "irate", + "licking", + "adjudge", + "tibiotarsal", + "touch-needle", + "triluminous", + "yeel", + "crown", + "heard", + "tartrazine", + "ovate-rotundate", + "attune", + "globard", + "sclerodermic", + "ant egg", + "gynandrous", + "boxberry", + "jersey", + "tropologize", + "fighting", + "elaolite", + "metacromion", + "cacophonic", + "prematurity", + "hip lock", + "corroborative", + "cliffy", + "doctoral", + "feuilltonist", + "adversarious", + "carbanil", + "nephrite", + "religiosity", + "unisonal", + "nastiness", + "apostrophize", + "ominate", + "bonhommie", + "twitcher", + "aceldama", + "stercorarian", + "areca", + "penal", + "devotion", + "latinism", + "hypothecator", + "diminishingly", + "post-captain", + "croys", + "bearbind", + "crocodility", + "flear", + "prelusorily", + "hot-blooded", + "condemnable", + "solary", + "gremial", + "enterotomy", + "plumularian", + "tinkling", + "advoke", + "quindecemvir", + "temptable", + "crankiness", + "embassadorial", + "nailery", + "chalet", + "telegram", + "below", + "provection", + "banewort", + "jube", + "nonconcluding", + "spareness", + "constituter", + "carline thistle", + "hypermetropy", + "angio-", + "inartificial", + "cubo-octahedral", + "eyewitness", + "eversive", + "refurbish", + "indecimable", + "entrail", + "derivative", + "caverned", + "magnetizee", + "conformableness", + "tellership", + "spattling-poppy", + "antepenultima", + "nuthatch", + "cherup", + "imbricative", + "duboisine", + "reyse", + "ryal", + "mortmal", + "caoutchouc", + "pseudostella", + "preapprehension", + "motto", + "daddy longlegs", + "grilse", + "flight", + "cingle", + "planet-struck", + "forensical", + "determinateness", + "manswear", + "shopen", + "remollient", + "biland", + "ovate-oblong", + "quebracho", + "recidivation", + "pantheistic", + "vesicularia", + "fluor", + "harrage", + "displace", + "swinery", + "philhellenic", + "schizont", + "emissive", + "tonical", + "tyran", + "confirm", + "cacao", + "perambulator", + "hegelism", + "dialogite", + "sherris", + "hygroscopicity", + "harmine", + "flyblow", + "nutritious", + "nonjurorism", + "amnesty", + "azureous", + "cottontail", + "impendency", + "perimetric", + "bicapsular", + "gelding", + "stibonium", + "misgovernment", + "prolificate", + "conterminable", + "mahometism", + "bedpost", + "evocate", + "unitarianism", + "septiferous", + "accrete", + "altarage", + "astrometer", + "fusted", + "reformatory", + "waggish", + "pomelo", + "alleluiah", + "ethnography", + "rater", + "bacillus", + "orycterope", + "turdiformes", + "jeg", + "outbleat", + "odium", + "diagonial", + "dodge", + "implicate", + "brawner", + "gaingiving", + "seating", + "linguistics", + "wart", + "calice", + "reasoner", + "upstay", + "inefficaciously", + "menispermine", + "watteau", + "hermogenian", + "protect", + "selenitical", + "wire-pulling", + "succeeder", + "quilting", + "yockel", + "retinophoral", + "pirogue", + "astound", + "hammerable", + "intercitizenship", + "phaeton", + "pike", + "plant-eating", + "classicalism", + "tupaiid", + "livre", + "creaght", + "chidester", + "cordwain", + "empiricism", + "inexpectation", + "admonisher", + "skeel", + "outlier", + "sethen", + "tirwit", + "biseye", + "suberize", + "lesbian", + "digenea", + "top-dress", + "half-tongue", + "dorsale", + "amboyna wood", + "clotweed", + "insinuation", + "coppery", + "nutrient", + "raduliform", + "fibreless", + "improvisate", + "stercoranism", + "sparpoil", + "superexaltation", + "plathelminthes", + "spinozist", + "scleroskeleton", + "clutch", + "undeck", + "recognization", + "mutoscope", + "spirality", + "patronate", + "bonair", + "circumfusile", + "zygosperm", + "sanded", + "tentaculiform", + "colp", + "insuccess", + "scalar", + "tussuck", + "hochepot", + "elaterium", + "sneerer", + "gonangium", + "objectify", + "block signal", + "languet", + "omnipresence", + "globose", + "orthoclastic", + "calcite", + "notableness", + "amidogen", + "wreckfish", + "crepitus", + "nicene", + "cubebic", + "unicursal", + "morion", + "pyritaceous", + "planipetalous", + "ramean", + "vicine", + "sophic", + "glucinic", + "cicatrizant", + "acreage", + "radish", + "easy", + "velverd", + "amoebiform", + "ciborium", + "pleonast", + "burrock", + "inoppressive", + "nurseryman", + "solanaceous", + "indelicate", + "maharajah", + "atmolyzation", + "witticism", + "anchorable", + "blet", + "impregnate", + "timelessly", + "turlupin", + "anorthite", + "magnifical", + "pseudocoelia", + "bepaint", + "reapply", + "zorilla", + "tesla coil", + "horripilation", + "chignon", + "cannot", + "epiplooen", + "citrus", + "porphyrite", + "unsorted", + "encollar", + "overflutter", + "stratography", + "zoetrope", + "block", + "nix", + "derogatoriness", + "reclination", + "albertite", + "air gap", + "christom", + "discongruity", + "janty", + "almadie", + "retinol", + "heliolatry", + "lovelock", + "angulation", + "meteorous", + "undetermination", + "huffy", + "water engine", + "winkingly", + "axinomancy", + "besmut", + "oophytic", + "sight-seeing", + "sabine", + "transmeable", + "codlin", + "management", + "compasses", + "prolongable", + "uniparous", + "junto", + "raddle", + "unsatiable", + "badger state", + "blunging", + "indin", + "enwoman", + "belleek ware", + "isabel color", + "raking", + "simplistic", + "flaccidity", + "immaterial", + "eucalyn", + "goldilocks", + "emulatively", + "imputable", + "uncleship", + "verbatim", + "lagnappe", + "good-bye", + "bossism", + "correctional", + "mash", + "pemmican", + "brewery", + "pick", + "reliquidation", + "foxery", + "regulation", + "pachuca tank", + "tactic", + "thunderstorm", + "cystoidea", + "curvature", + "mandible", + "mown", + "self-indulgence", + "frizette", + "acceptableness", + "thwartly", + "assertion", + "clomp", + "eugh", + "triangular", + "apical", + "gimp", + "flabbily", + "bucket", + "water sparrow", + "scibboleth", + "crowkeeper", + "saucy", + "unwist", + "anaglyph", + "rainy", + "hint", + "diffusion", + "tontine", + "iberian", + "abhorrence", + "unkind", + "tympanize", + "spatchcock", + "aphides", + "corncrake", + "unvisible", + "aerosphere", + "topek", + "wintergreen", + "dissimilar", + "paspy", + "silk", + "quas", + "sharock", + "wikke", + "defeasance", + "dead-reckoning", + "phalangister", + "ricochet", + "armisonant", + "decalitre", + "incomprehense", + "regenerator", + "legerdemainist", + "sapient", + "perpetration", + "supportless", + "chalybeous", + "spathulate", + "superlucration", + "acoustical", + "phytographical", + "spirituality", + "hamal", + "inactivity", + "reseizure", + "arborical", + "attemperment", + "cobishop", + "chorometry", + "scyphomedusae", + "sea boy", + "statuette", + "brass-visaged", + "modest", + "dentate-sinuate", + "alchemist", + "swingletail", + "disfellowship", + "dephlegmedness", + "overshoot", + "turnhalle", + "assail", + "epanody", + "hard-mouthed", + "bedagat", + "elvanite", + "hysterogenic", + "fragmentarily", + "gormandize", + "zincographer", + "pan", + "fillip", + "curship", + "interval", + "girdler", + "disarm", + "limicoline", + "choral", + "edriophthalmous", + "dispositively", + "croker", + "skinner", + "wolf", + "compulsion", + "te deum", + "featherly", + "seiches", + "faithed", + "circler", + "corallite", + "meconium", + "affirmation", + "sucre", + "unlike", + "mistaker", + "centesimal", + "originalness", + "stablish", + "contradistinctive", + "protein", + "fumage", + "physique", + "quirinal", + "genethlialogy", + "bray", + "rammel", + "mudsucker", + "nomothete", + "vigoroso", + "curvicaudate", + "diphyozooid", + "buccinoid", + "chiliast", + "jacobin", + "clincher", + "empoverish", + "kshatruya", + "misapprehension", + "rotal", + "exanthem", + "constrict", + "poor", + "falanaka", + "underground insurance", + "symphyseotomy", + "abash", + "chebacco", + "kamichi", + "abelian", + "really", + "artfulness", + "fright", + "inflatus", + "alkalizate", + "rescind", + "impingement", + "entertake", + "allumette", + "sea kale", + "house", + "multifariously", + "concretely", + "saltpetre", + "puritanic", + "raphaelesque", + "tonsor", + "esloin", + "illation", + "primer", + "mucksy", + "rosaceous", + "inalienableness", + "phlebitis", + "gastroscope", + "stratigraphic", + "counterrolment", + "funny", + "kidde", + "argil", + "collaud", + "oxyquinoline", + "deuthydroguret", + "galipot", + "petaline", + "scaldic", + "sagitta", + "unspin", + "lib", + "outgrow", + "cutaway", + "torques", + "shrubbery", + "carlin", + "opinionate", + "pyroxene", + "kimnel", + "selenonium", + "transitionary", + "socage", + "transposal", + "vacuum", + "kail", + "passee", + "memorist", + "setula", + "indelible", + "ephialtes", + "hansom", + "kist", + "incommodement", + "harborough", + "slanting", + "phonolite", + "rutilant", + "exceptless", + "sold", + "sug", + "manchet", + "bisector", + "antero-", + "encrinoidea", + "corrosible", + "ochreated", + "apogamy", + "soapsuds", + "embarge", + "cesspool", + "incubiture", + "gaudless", + "cardecu", + "concurrency", + "match game", + "alterative", + "crystallographic", + "apriority", + "ironwort", + "pulverization", + "scotchman", + "resider", + "rekne", + "dioptre", + "arenilitic", + "bungling", + "ungka", + "stagnant", + "customarily", + "figurehead", + "stethoscopist", + "learn", + "viable", + "mousseline", + "gleety", + "immortelle", + "titillation", + "corporeality", + "haemadynamometer", + "gaud-day", + "refrigeration", + "androgynous", + "droyle", + "sinter", + "saccharone", + "indicavit", + "antidotical", + "appeasement", + "neutrophile", + "prebendate", + "disjudication", + "mistura", + "nervosity", + "disgestion", + "approvement", + "scolytid", + "inordination", + "zoutch", + "alloxantin", + "postulatum", + "disagreement", + "esexual", + "osmiamate", + "smash", + "dispensatory", + "suffruticose", + "prurigo", + "victuals", + "convival", + "gesticulation", + "dumdum bullet", + "nebulation", + "cagmag", + "ghess", + "matriarch", + "sea pike", + "consummative", + "indigest", + "subspecies", + "hardware", + "samurai", + "inboard", + "faint", + "reciproque", + "provoke", + "ambitus", + "absinthate", + "referendary", + "high-proof", + "oxy-", + "errable", + "pawnor", + "double-headed", + "dextrality", + "nullifier", + "bombasine", + "microtomy", + "sublimely", + "strategical", + "green-leek", + "crudely", + "thrack", + "profitless", + "discolorate", + "faciend", + "vanity", + "coagulant", + "ampliate", + "water lime", + "drum", + "spumescence", + "sexennial", + "sulphone", + "swingeing", + "polyconic", + "croup", + "dartle", + "water back", + "disroof", + "evesdropper", + "griddle", + "tribune", + "closehanded", + "cosmographer", + "epacris", + "ottrelite", + "ulva", + "ribaudy", + "ferrandine", + "prevene", + "exserted", + "kindless", + "excogitation", + "zetetic", + "necessitarian", + "conimene", + "trustee stock", + "erase", + "caper", + "chrysanthemum", + "multungulate", + "squillitic", + "pelf", + "podded", + "cymous", + "nereis", + "obediently", + "romanize", + "serapis", + "trispaston", + "palmitone", + "soubah", + "rostelliform", + "fameless", + "sneath", + "stewpan", + "water screw", + "pictorical", + "cranioclast", + "smartweed", + "implacably", + "perspectively", + "whistly", + "dilated", + "ductible", + "clift", + "astragal", + "childship", + "mesaticephalous", + "saintish", + "thysanopteran", + "monamide", + "hemispherical", + "self-aggrandizement", + "counterfeiter", + "machine", + "discoure", + "anomalously", + "alcyonium", + "moneron", + "feldspathose", + "stirious", + "verrucose", + "tank vessel", + "couch grass", + "dragonish", + "reposure", + "moldery", + "complicacy", + "chromid", + "ancome", + "hyoglossal", + "nosel", + "toothless", + "tike", + "deathbird", + "evanishment", + "rheocrat", + "yellowshanks", + "fibula", + "oppositely", + "capitolian", + "sclavonian", + "perfidious", + "hemigamous", + "post-obit bond", + "nakedly", + "chop-logic", + "binominal", + "weir", + "retaliate", + "mahl-stick", + "trama", + "aestivation", + "arioso", + "sear", + "stepdame", + "tune", + "quahaug", + "butchering", + "saturnine", + "fin keel", + "vernage", + "admonitioner", + "laity", + "paracorolla", + "lutherism", + "practisant", + "disvalue", + "stalk-eyed", + "fluxure", + "sexteyn", + "meticulous", + "uddered", + "wynn", + "persic", + "burglar", + "ferrugineous", + "ovate", + "primary", + "thoria", + "assailer", + "minutely", + "ruralize", + "expectoration", + "lactometer", + "simultaneity", + "enfeoffment", + "self-defensive", + "pessimize", + "nummulitic", + "sororal", + "exchangeably", + "sotto voce", + "contravene", + "gyre", + "turbidity", + "cyclostome", + "dowl", + "unicolorous", + "illuminator", + "zoccolo", + "appulsion", + "hot blast", + "pendant", + "em", + "trackwalker", + "low-churchism", + "honorific", + "evulsion", + "gasification", + "arachnoidal", + "circumdenudation", + "chassis", + "jelly", + "abolishment", + "gane", + "directress", + "platitudinize", + "slape", + "quinqueangled", + "tuning", + "triddler", + "anhele", + "enharmonical", + "prepare", + "miseasy", + "excursion", + "overrule", + "giddiness", + "stand-by", + "instinct", + "putter-on", + "stramineous", + "tubal", + "omegoid", + "osspringer", + "pollinate", + "sea urchin", + "tunk", + "trigeminal", + "nameless", + "sudoriferous", + "sextodecimo", + "polycotyledonary", + "uncoif", + "fritinancy", + "pestalozzian", + "polyphonic", + "circularity", + "outraze", + "accomplish", + "selvedged", + "rivality", + "almner", + "intestate", + "screamer", + "billy", + "electro-ballistic", + "sitten", + "temporal", + "beamily", + "simious", + "coalite", + "raki", + "geothermometer", + "acritude", + "calcographer", + "postural", + "preemptioner", + "anomalistic", + "rouleau", + "bogwood", + "euphonium", + "abecedary", + "phagedenical", + "culture myth", + "compensatory", + "pumpet", + "abranchial", + "height", + "rareness", + "uranographist", + "cob", + "tauricornous", + "aladinist", + "derma", + "trottoir", + "weightiness", + "tetramethylene", + "aciniform", + "mesmeric", + "repentless", + "campaned", + "nep", + "epicele", + "curvilinearity", + "freethinker", + "bereave", + "muslin", + "posttertiary", + "forswearer", + "slick", + "waterishness", + "clogging", + "scorper", + "phakoscope", + "bastardy", + "pulselessness", + "systemic", + "epispadias", + "quech", + "morland", + "netify", + "overween", + "meloplasty", + "solution", + "subpena", + "spirochaeta", + "viscountcy", + "isohyetose", + "way", + "translatitious", + "knowing", + "averruncate", + "corinthiac", + "deictic", + "patness", + "behold", + "fidicinal", + "water breather", + "ebriety", + "agrief", + "nunciature", + "fellow", + "high-low", + "barse", + "faded", + "professionalist", + "quoif", + "ecthoreum", + "muzzle-loader", + "invisibly", + "traphole", + "deturb", + "reblossom", + "havener", + "enigma", + "leonine", + "alcohate", + "sea quail", + "retell", + "emblement", + "sexly", + "cambrian", + "dislive", + "revive", + "hostile", + "egilopical", + "romaic", + "backbite", + "tinkering", + "interanimate", + "lasket", + "falsehood", + "sanious", + "clayish", + "suberone", + "exculpate", + "naggy", + "sea chickweed", + "jargonic", + "glandular", + "mesocoele", + "skinless", + "polytheize", + "subarctic", + "blackness", + "jingling", + "awaken", + "picene", + "myodynamics", + "substitute", + "hypnologist", + "illaqueable", + "disenslave", + "in esse", + "livingness", + "hangnest", + "hyblaean", + "irremoval", + "sciatherical", + "drone bee", + "picea", + "undermasted", + "zoneless", + "clivers", + "nanny", + "recompose", + "lens", + "deliverable", + "neoplasia", + "douter", + "obscurantism", + "neuralgia", + "eudiometry", + "enarration", + "syndesmology", + "apperil", + "appose", + "firewood", + "chlorocruorin", + "vehiculatory", + "vindicator", + "gyro-pigeon", + "durukuli", + "superiorly", + "supervise", + "praecipe", + "i-", + "disengagement", + "quartan", + "horrisonant", + "blow", + "dur", + "sloughing", + "tetrarchical", + "scutibranchian", + "epigraphy", + "react", + "ambulation", + "phalaena", + "linum", + "awreak", + "numerative", + "spellbind", + "antitheist", + "weariless", + "assessor", + "enoptomancy", + "philosophizer", + "jacobaean lily", + "titularity", + "pluri-", + "sorrowless", + "intelligently", + "antiochian", + "burgess", + "brilliance", + "enhancer", + "dropping", + "pillowed", + "swelltoad", + "romancer", + "araguato", + "pitcher", + "drysalter", + "unturned", + "athleticism", + "polythelism", + "cambistry", + "herborist", + "ethiop", + "laic", + "histographical", + "justness", + "traded", + "phonetically", + "embolismatic", + "concert", + "professedly", + "beknave", + "categorize", + "exhereditation", + "flock", + "impoliticness", + "danseuse", + "echinoderm", + "tiring-house", + "one-sided", + "pariah", + "civility", + "whally", + "albuminin", + "couple", + "glycoluric", + "centrale", + "gryphaea", + "modillion", + "myxa", + "mockery", + "undercrest", + "attainable", + "eleuthero-petalous", + "endosarc", + "revaluation", + "celsiture", + "virtuosoship", + "religieuse", + "taedium", + "concerto", + "tributary", + "toman", + "lawnd", + "autoecious", + "avision", + "inquirable", + "flative", + "ashes", + "balm", + "impatiens", + "margarodite", + "piewipe", + "pigmented", + "verbalism", + "desultorily", + "pulvillus", + "exoptable", + "inexpansible", + "parapet", + "joyless", + "gnu", + "subscript", + "sweepstakes", + "catarrh", + "neck", + "spectant", + "zircon light", + "hastener", + "namation", + "neal", + "outness", + "tentaculated", + "delightous", + "antipyretic", + "circuitous", + "norwegian", + "paneling", + "bulbar", + "barrulet", + "accountantship", + "creditrix", + "futtock", + "collagenous", + "oreography", + "perichondritis", + "conglomeration", + "slewed", + "autostability", + "petrolatum", + "gaysome", + "claro-obscuro", + "here", + "grizzle", + "pterosaurian", + "ten-strike", + "malmag", + "preacquaintance", + "odelet", + "masque", + "prore", + "jaw-fallen", + "top rake", + "ghyll", + "ravishingly", + "twankay", + "mechanic", + "water-closet", + "lawer", + "saltpetrous", + "corridor train", + "obtusely", + "physical", + "siderolite", + "thermostat", + "halm", + "aidant", + "bark", + "bollandists", + "loving-kindness", + "yttro-tantalite", + "jadery", + "trimestral", + "nucament", + "foreappointment", + "seasonable", + "slammerkin", + "switchy", + "quinogen", + "tyne", + "odalwoman", + "drumly", + "indictive", + "olived", + "saan", + "consideringly", + "popish", + "gyropigeon", + "stout", + "putrifacted", + "coprolite", + "unabsorbable", + "gendarmery", + "flatulently", + "consignification", + "communion", + "croak", + "gradate", + "therewith", + "math", + "headrope", + "retinal", + "cocaine", + "podalgia", + "athwart", + "sirocco", + "preparator", + "ambrosial", + "determinate", + "inquinate", + "misfortuned", + "catechumenical", + "dosimetry", + "pit-hole", + "strictly", + "bean caper", + "saurognathous", + "misgiving", + "exsanguine", + "expedition", + "harmonize", + "discompany", + "kain", + "flabbergast", + "astrofell", + "fozy", + "mainpernor", + "mawmish", + "chartless", + "relumine", + "unconcerning", + "full-blown", + "weyle", + "characterize", + "languorous", + "boomkin", + "amphibian", + "drowse", + "mesonephric", + "screenings", + "gutturo-", + "perpetuate", + "psalmodic", + "vigesimo-quarto", + "termine", + "rest cure", + "thymiatechny", + "stiffness", + "bout", + "depurate", + "elysium", + "lardacein", + "shadow", + "adjutage", + "bluey", + "credible", + "autohypnotic", + "sangaree", + "gesture", + "spritefully", + "unjoin", + "dishonor", + "diabolify", + "arguable", + "inceptor", + "spinstry", + "latibulum", + "prettiness", + "coppering", + "cress", + "sustainable", + "chese", + "gland", + "countersway", + "zooegamous", + "mainsheet", + "noctilucous", + "churchgoer", + "cerotin", + "ephemerist", + "sea onion", + "theomachist", + "fat-witted", + "halidom", + "materially", + "perturbative", + "beet", + "air gas", + "libral", + "numismatology", + "discretional", + "elinguation", + "castor and pollux", + "robust", + "trepidity", + "warehouseman", + "inaniloquous", + "imposer", + "rogatory", + "dodecastyle", + "pers", + "swagman", + "solarium", + "laager", + "ungrate", + "filch", + "inobservation", + "osteomere", + "rethoryke", + "concurring", + "augur", + "eardrum", + "gotten", + "fumy", + "leet", + "launcegaye", + "briny", + "tea", + "oily", + "gipoun", + "problem", + "bayou state", + "opposeless", + "coldness", + "homilist", + "classify", + "sopranist", + "traditional", + "ebony", + "phratry", + "try-square", + "myricin", + "nymphish", + "panegyrize", + "dry dock", + "unsincerity", + "crunodal", + "healthiness", + "sparble", + "doorsill", + "serenade", + "carrack", + "exoration", + "leyden phial", + "manation", + "flammulated", + "astray", + "essoin", + "citizeness", + "roquefort cheese", + "stoping", + "blameworthy", + "water tender", + "cohesibility", + "equate", + "camelry", + "contemplate", + "castlet", + "linden", + "lacunous", + "mythologue", + "wearily", + "meagerly", + "immutation", + "incommodity", + "glumella", + "strong-water", + "solvend", + "strigose", + "aparithmesis", + "coquet", + "ormuzd", + "shallow-bodied", + "redemptory", + "equinox", + "protooerganism", + "seminification", + "tethydan", + "bromine", + "garran", + "ooetocoid", + "ataman", + "chaplain", + "pneumonia", + "father", + "horologiographer", + "solemness", + "skonce", + "vaporous", + "carlot", + "thirstle", + "galvanist", + "meterage", + "socket", + "homology", + "up-over", + "sarcel", + "chelidonic", + "teamster", + "underhanded", + "mint", + "marteline", + "encaenia", + "ratihabition", + "finicky", + "murther", + "swung", + "waiting", + "longly", + "powp", + "amphigonous", + "pyruvil", + "foinery", + "weber", + "matronhood", + "percept", + "courier", + "veneration", + "extravagantly", + "spinnaker", + "undreamed", + "andiron", + "armadillo", + "lyencephala", + "creaturize", + "cerastes", + "hopbind", + "yearling", + "trichord", + "aclinic", + "regrator", + "cotyloid", + "incorporeally", + "ovococcus", + "ungain", + "ethnographic", + "apostolic", + "vehme", + "scunner", + "crib", + "sunflower", + "courche", + "advanced", + "globulous", + "woodcutter", + "flemish", + "phyllo-", + "frightful", + "invariable", + "knoppern", + "puncher", + "chromatoscope", + "adjectitious", + "coda", + "snotty", + "humiliation", + "heathendom", + "overcareful", + "pessimistical", + "electrometer", + "clodhopper", + "ptyalism", + "commutator", + "integrability", + "crengle", + "alveated", + "nitrobenzol", + "quebrith", + "indissipable", + "braggadocio", + "fuero", + "xanthodontous", + "nebulizer", + "nitre", + "overlarge", + "cavil", + "unman", + "velocipede", + "antiquate", + "conicoid", + "apishly", + "zinky", + "bewreck", + "gregarine", + "imminution", + "snakeneck", + "amylogen", + "enfranchisement", + "fidgetiness", + "hagiographal", + "paseng", + "liquefiable", + "apodixis", + "timer", + "self-willed", + "drowsily", + "agenesic", + "tesseral", + "polygraphical", + "crapulence", + "diuretical", + "hyp", + "reduction", + "dethronize", + "biuret", + "ordinate", + "caliphate", + "centrolecithal", + "tornado", + "trochee", + "hazeless", + "afoul", + "vox angelica", + "conductory", + "peppermint", + "subovated", + "comforter", + "eupittone", + "dreadnaught", + "miseducate", + "hemastatical", + "insinuative", + "weather-beaten", + "decemviral", + "trifoliolate", + "extensionist", + "arachnid", + "armure", + "ambrosian", + "lymphadenoma", + "bouncing", + "staminode", + "brachycatalectic", + "retain", + "panduriform", + "preacquaint", + "furry", + "peeping hole", + "obbe", + "ulteriorly", + "angelize", + "stail", + "adjournal", + "halieutics", + "pali", + "wretchful", + "incontiguous", + "residual", + "scrobicula", + "parturious", + "gelable", + "donation", + "encephalotomy", + "invict", + "tristigmatose", + "apocynaceous", + "fustiness", + "numeration", + "somatist", + "tropidine", + "iodize", + "spicily", + "conformer", + "pospolite", + "remonetization", + "dayspring", + "subintestinal", + "eocene", + "greenhood", + "lanthopine", + "zoochemical", + "exigendary", + "oleandrine", + "venue", + "remarry", + "hydropult", + "areolar", + "wool-hall", + "halichondriae", + "implorer", + "inapprehensive", + "muggard", + "philosophe", + "rampageous", + "behn", + "savin", + "unifollilate", + "orography", + "incommunicating", + "levity", + "repertory", + "standpipe", + "eggery", + "ascendible", + "itinerant", + "rhetic", + "exposure", + "humblehead", + "overdevelop", + "astoop", + "ouze", + "terra incognita", + "elaeagnus", + "methodistical", + "spermologist", + "ureameter", + "silvern", + "emulable", + "transplace", + "inchant", + "endless", + "reenact", + "baudekin", + "ornithotomical", + "incontestability", + "header", + "dug", + "heteromorphy", + "intervary", + "homopterous", + "husking", + "invision", + "zooelogy", + "crisscross", + "imbrangle", + "gameful", + "gamophyllous", + "bottony", + "uranin", + "epigrammatize", + "neologic", + "accustomary", + "chemotaxis", + "epipolism", + "politicalism", + "democracy", + "engiscope", + "conviviality", + "secondary", + "air shaft", + "shafting", + "ventilator", + "assembly", + "bibliograph", + "insupportable", + "disbodied", + "mathesis", + "persulphocyanate", + "browning", + "intersocial", + "negatively", + "bilk", + "octandrian", + "immortalist", + "leeangle", + "aplanogamete", + "chattel", + "conjugally", + "spinthariscope", + "rectitude", + "traction", + "jointweed", + "unchristian", + "protestantical", + "gairfowl", + "nuciferous", + "antiptosis", + "wagnerite", + "diclinous", + "aphrasia", + "grower", + "oxford", + "unsacrament", + "plumbeous", + "metabolic", + "adunation", + "emplunge", + "leucosphere", + "pearmain", + "semaphore", + "plane", + "camping", + "murkily", + "orthotomy", + "self-assertion", + "turnsole", + "butt hinge", + "lettuce", + "woolgathering", + "bionomy", + "prelatism", + "lamarckianism", + "muscoid", + "inescate", + "these", + "spiraeic", + "inclusa", + "deciliter", + "sea elephant", + "emmenagogue", + "over", + "unessentially", + "weaponed", + "corah", + "dakota group", + "afforestation", + "benzoline", + "discoverable", + "pi cloth", + "usher", + "concinnous", + "pasigraphical", + "exercent", + "octogamy", + "mezzo-relievo", + "enigmatize", + "inimaginable", + "eudemon", + "leptology", + "macilent", + "ingrediency", + "slushy", + "tegmentum", + "chronophotograph", + "technical", + "injuria", + "-poda", + "cousinhood", + "ornamentally", + "uptrain", + "web-footed", + "incorrigibly", + "hypochondry", + "opitulation", + "sexed", + "sceneman", + "anthrenus", + "baptization", + "assuetude", + "scale", + "schizorhinal", + "uplean", + "valued policy", + "jacksmith", + "trigonous", + "camis", + "outright", + "ablutionary", + "indices", + "growse", + "unafiled", + "cruentous", + "carmagnole", + "fondling", + "spoliatory", + "habituation", + "amyl", + "stare", + "ferforthly", + "theism", + "bodock", + "pindarist", + "catastrophist", + "ponderable", + "ferreter", + "unadulterated", + "underwitted", + "misconfident", + "scat", + "cerotic", + "ladylove", + "ophidian", + "anchorage", + "filibusterism", + "draffy", + "station", + "counterwheel", + "paludism", + "funded", + "theurgic", + "acater", + "orchestric", + "bushman", + "stew", + "concentrator", + "unvoluntary", + "encrinal", + "peaceful", + "unmarry", + "abscession", + "crag", + "anaphrodisiac", + "simagre", + "harefoot", + "cirriferous", + "sprinkler", + "cometary", + "accension", + "accompt", + "adar", + "thurst", + "upsodown", + "pseudo-symmetric", + "oscillate", + "relaxant", + "unaccomplished", + "amir", + "coverer", + "griffon", + "undergraduate", + "tollbooth", + "king-post", + "chariotee", + "compromise", + "sodamide", + "utility", + "unharness", + "nom", + "pteropappi", + "tarsier", + "donya", + "pentoic", + "poetize", + "lame", + "hijera", + "impedite", + "hispidulous", + "impeachment", + "loud-voiced", + "pretenceful", + "ootype", + "hatting", + "semicubical", + "saliency", + "canny", + "platycephalic", + "subnotochordal", + "subterfluous", + "mother", + "thick-winded", + "effect", + "viscerate", + "inseparably", + "cocoanut", + "zooephagous", + "tampon", + "papabote", + "embody", + "blustering", + "malignancy", + "versability", + "hangbird", + "dog-fox", + "felicity", + "sacchulmic", + "silver state", + "damageable", + "ineffervescible", + "anagraph", + "unpreach", + "dissepiment", + "oblite", + "affectionateness", + "disastrous", + "appellancy", + "picard", + "tirade", + "bedim", + "sugariness", + "synagogical", + "staves", + "incalculability", + "commigrate", + "baggage master", + "metrological", + "veratric", + "hexoic", + "hostilely", + "rit", + "marron", + "overwax", + "squamulose", + "capivi", + "congruity", + "weasel-faced", + "game fowl", + "misrepute", + "sciascope", + "pulsate", + "lyra", + "subtleness", + "unfolder", + "in-", + "acrospore", + "undervaluation", + "grayback", + "andromede", + "hobnob", + "biforked", + "spoon", + "water hare", + "stubbed", + "pantascopic", + "graille", + "oryctography", + "sufficiency", + "seraphine", + "double-shade", + "statoblast", + "informed", + "suffocation", + "plastid", + "beach", + "caulicle", + "mydaus", + "nereidian", + "alimentariness", + "saponul", + "anticous", + "catapasm", + "beaconage", + "seemingly", + "devil", + "variously", + "willow", + "delegacy", + "gige", + "phoronomics", + "interfascicular", + "scortatory", + "brunswick green", + "stercorin", + "eyeball", + "full-blooded", + "balbutiate", + "feria", + "misprint", + "ferricyanic", + "ticketing", + "petrohyoid", + "bolus", + "hutch", + "dough-baked", + "dice", + "come", + "faintish", + "triliteralness", + "novaculite", + "thy", + "equibalance", + "irpe", + "ugrian", + "filing", + "antinational", + "sagittate", + "proverbialist", + "brooklime", + "unalienable", + "teetotal", + "adjusting surface", + "clong", + "tripodian", + "defend", + "accommodating", + "gazetteer", + "uncontestable", + "chainlet", + "indiscerptible", + "ostler", + "laryngotracheal", + "bicostate", + "threatener", + "epiglottidean", + "photosphere", + "squatter", + "blur", + "ransomless", + "swashbuckler", + "coot", + "tripartite", + "uxorial", + "simblot", + "chute", + "common", + "rasp", + "dorse", + "arbuscular", + "sphincter", + "pelvis", + "furciferous", + "kingbird", + "hyalescence", + "deadly", + "changeless", + "task wage", + "moira", + "uroxanthin", + "instructible", + "titano-", + "linguiform", + "diurna", + "soliloquize", + "lethargic", + "bedrug", + "goatish", + "proboscidian", + "kibed", + "numerary", + "pun", + "case system", + "gowdnook", + "fantom", + "alkaloid", + "imposingness", + "yestern", + "productus", + "orthodromic", + "bulb", + "cheirotherium", + "startfulness", + "unspilt", + "alguazil", + "lawbreaker", + "verisimilous", + "hiveless", + "two-cycle", + "bugle horn", + "mum-chance", + "playful", + "leafed", + "seise", + "unappropriated", + "centrebit", + "epure", + "incorpse", + "calamander wood", + "oldish", + "egotize", + "absterge", + "transcript", + "gruntingly", + "algometer", + "parelectronomy", + "triplite", + "glycin", + "cocking", + "gaul", + "adenographic", + "unfool", + "illimitable", + "piccadil", + "rhinoplastic", + "turndown", + "verily", + "determinative", + "unmentionables", + "treenail", + "foreread", + "delusional", + "fleen", + "paramountly", + "rigel", + "chouka", + "unio", + "venulose", + "carling", + "whimsical", + "tax certificate", + "ennead", + "noncontent", + "unsparing", + "sedum", + "adherer", + "zumbooruk", + "electary", + "fernticle", + "clatter", + "scorpiodea", + "stalagmitical", + "innocent", + "aecidium", + "tibrie", + "lyrie", + "bridestake", + "ottawas", + "quadrinomical", + "speediness", + "miscredent", + "impressive", + "formula", + "enecate", + "jesus", + "stereochromy", + "tubful", + "alarmedly", + "wooyen", + "circulatory", + "measle", + "naze", + "republican", + "lichenic", + "forelift", + "water dressing", + "headpan", + "bighorn", + "rumkin", + "cage", + "syphilodermatous", + "fangle", + "aggressor", + "land-poor", + "incorrupt", + "antivivisectionist", + "bantling", + "chestnut", + "wedge", + "bronchotome", + "demilance", + "besmoke", + "wood-note", + "contrapuntal", + "paleographical", + "liberality", + "adaptly", + "commonwealth", + "hawaiian", + "lask", + "blue book", + "uprising", + "lignite", + "luminiferous", + "hydrocephalus", + "tun-dish", + "emmew", + "entity", + "unfounded", + "woolhead", + "ad valorem", + "fornicator", + "malic", + "bibber", + "croupous", + "garlandless", + "rontgenize", + "smuggle", + "clasper", + "electro-metallurgy", + "igasurine", + "anticonvulsive", + "incogitantly", + "disennoble", + "delibrate", + "armipotence", + "priming", + "salal-berry", + "subcontracted", + "bird-eyed", + "calculary", + "cargo", + "troublous", + "well-meaning", + "tonicity", + "water elder", + "brokenness", + "gleeman", + "hortative", + "turpitude", + "generality", + "plumber block", + "adeniform", + "pleasantness", + "unparadise", + "wren", + "strangely", + "besieger", + "bebirine", + "dataria", + "spiracular", + "unruliment", + "harle", + "chitterlings", + "tidings", + "electro-biologist", + "anamnesis", + "a cheval", + "innovator", + "medalet", + "propulsive", + "adrogation", + "sporiferous", + "ursal", + "vickers-maxim automatic machine gun", + "raiser", + "branchiate", + "lascivient", + "ignescent", + "be-all", + "brumous", + "commandry", + "core loss", + "trendle", + "pharisaical", + "porosity", + "coulter", + "flammability", + "illumine", + "efficient", + "decussate", + "chromoplastid", + "encradle", + "pleonaste", + "emendately", + "flang", + "jewbush", + "glyoxaline", + "sinapoline", + "insure", + "dogal", + "microphthalmia", + "synedral", + "antre", + "raton", + "historiette", + "formaldehyde", + "grudgingly", + "knosp", + "wox", + "antitoxin", + "manie", + "tarquinish", + "arraignment", + "delit", + "tramrail", + "paresis", + "socratically", + "acne", + "superimpregnation", + "priscillianist", + "xanthoprotein", + "yern", + "shide", + "aphrodisiac", + "medium-sized", + "tannable", + "repand", + "quib", + "complexus", + "bacharach", + "rooftree", + "isocrymal", + "oolong", + "mania", + "sea-gate", + "concerned", + "parley", + "oversell", + "nubilose", + "luter", + "convulse", + "scripturalness", + "unglue", + "feigning", + "cultrated", + "enstore", + "pensible", + "stateswoman", + "artocarpeous", + "conceptional", + "infraorbital", + "pockiness", + "unhitch", + "glidingly", + "lyncher", + "ravissant", + "draughts", + "expediency", + "vagarious", + "multinominous", + "immemorial", + "drupe", + "karvel", + "unintermission", + "lithotomist", + "thunderbird", + "decime", + "gloss", + "oxalethyline", + "unkennel", + "bestialize", + "water moccasin", + "shilfa", + "amiably", + "cinquecentist", + "merchantman", + "stuttering", + "doob grass", + "copesmate", + "gros", + "octosyllable", + "inapplicable", + "ooze leather", + "elvish", + "fatalism", + "hobbly", + "militarily", + "plaintiff", + "wordsman", + "torbernite", + "cloth", + "elder", + "rug-gowned", + "same", + "poachy", + "bulldoze", + "ptilopaedic", + "bounteous", + "embark", + "condensate", + "bolar", + "girandole", + "tarditation", + "xerophthalmia", + "codicillary", + "slew", + "lifeless", + "unijugate", + "denominationalism", + "extender", + "loris", + "duces tecum", + "eager", + "redoubted", + "inflammation", + "leechcraft", + "shoo", + "dazzlingly", + "marmorosis", + "chelifer", + "effront", + "cestuy", + "escaper", + "logan", + "hymenoptera", + "waking", + "earing", + "domicile", + "evection", + "mattowacca", + "sphalerite", + "swinker", + "hip tree", + "candidature", + "assoil", + "gristle", + "seditionary", + "radicant", + "elapine", + "bunn", + "methylic", + "thermotensile", + "marconigram", + "blood", + "monodimetric", + "bagworm", + "impressibility", + "interminableness", + "southeastern", + "testator", + "venomous", + "whirlpit", + "decree", + "lye", + "incorresponding", + "tetraspaston", + "ceresin", + "crawl", + "lugworm", + "maleo", + "noematical", + "swale", + "froufrou", + "villose", + "rigolette", + "speiss", + "apologize", + "perigonium", + "interungulate", + "inamovable", + "mab", + "logroller", + "reparably", + "cloy", + "enlight", + "hoofbound", + "squander", + "warmness", + "diurnally", + "dodd", + "aqueity", + "entomostracan", + "fallen", + "aret", + "dislikeful", + "individualize", + "nodation", + "resubjection", + "investigable", + "textuary", + "illocality", + "unbreast", + "superannuation", + "soliform", + "prentice", + "furring", + "matricide", + "cuspidated", + "moth", + "solpugid", + "symbiotic", + "typesetting", + "rheochord", + "opuntia", + "disputacity", + "prolocutorship", + "breakman", + "garrulous", + "hieron", + "supplicatory", + "stultiloquence", + "covering", + "eschalot", + "flea-beetle", + "nougat", + "obedible", + "kabala", + "urodela", + "spy", + "conifer", + "daubing", + "vatican", + "woodmeil", + "cornu", + "falsism", + "algaroth", + "juglandine", + "postdiluvian", + "primateship", + "praxinoscope", + "norna", + "impunctuality", + "stirt", + "pharisee", + "xyst", + "articulateness", + "non-", + "laurinol", + "rabious", + "subreligion", + "cooperate", + "merus", + "wastrel", + "repulsory", + "scorie", + "skaith", + "protogynous", + "laccin", + "orthogon", + "innocuity", + "angiography", + "suit", + "volborthite", + "discus", + "musa", + "nonet", + "glassmaker", + "water motor", + "hederiferous", + "loir", + "exclude", + "paronym", + "roam", + "rhabarbarin", + "co-sufferer", + "strategic", + "worldly-wise", + "trichromatic", + "desert", + "festally", + "osseter", + "avoirdupois", + "him", + "absent", + "atheize", + "thermolyze", + "quinquangular", + "organzine", + "tepor", + "approacher", + "roundly", + "hematophilia", + "kynurenic", + "simplist", + "hemal", + "neutral", + "pococurantism", + "echauguette", + "bluing", + "monking", + "provided", + "nightdress", + "southernliness", + "unspirit", + "brachiopod", + "suburb", + "ranunculaceous", + "employer", + "haired", + "twistical", + "line", + "ravener", + "strategetical", + "myologist", + "fixation", + "muneration", + "sithen", + "proser", + "beechnut", + "lactodensimeter", + "culmination", + "glomuliferous", + "proletaire", + "evil-minded", + "slangy", + "erin", + "hairpin", + "huntsmanship", + "kelp", + "hypochondriasm", + "offspring", + "illimitation", + "nectariferous", + "matie", + "appellee", + "spectrograph", + "aeruginous", + "polyphore", + "armor-plated", + "wet plate", + "piperidine", + "fulmar", + "white-foot", + "redemand", + "quoll", + "scandent", + "puy", + "serjeant", + "limn", + "ouphen", + "neaped", + "bursa", + "pin-tailed", + "kyke", + "oreographic", + "allantoin", + "theanthropical", + "reviver", + "bash", + "discovenant", + "foy", + "munific", + "shone", + "dicentra", + "portigue", + "anticlinal", + "indorsable", + "serio-comical", + "apiked", + "graafian", + "lanary", + "aerological", + "taglioni", + "amido", + "discoid", + "genialness", + "experientialism", + "facade", + "alveary", + "paradox", + "isicle", + "viscus", + "shaps", + "drome", + "grazer", + "quarry", + "egotism", + "sacchulmin", + "algor", + "vermilion", + "santoninate", + "supertragical", + "bilinguist", + "aread", + "maid", + "scutage", + "spook", + "geochemistry", + "tenderness", + "praemunire", + "atoll", + "rectifiable", + "knifeboard", + "macho", + "confus", + "ejecta", + "tintometer", + "fluent", + "fielden", + "cinematics", + "meliorator", + "nucleolus", + "nonelectric", + "semble", + "insidiate", + "affecter", + "listerize", + "hyemation", + "auricularly", + "mountain specter", + "outgoer", + "ceremonially", + "rouk", + "escribed", + "cretacic", + "aggravate", + "nationalist", + "sabulose", + "amoebean", + "nosology", + "diureide", + "accordance", + "melaconite", + "spine-tailed", + "crincum", + "salacious", + "gorcrow", + "cassioberry", + "insuppressible", + "psarolite", + "water thyme", + "destituent", + "fatner", + "piliferous", + "quahog", + "homer", + "white person", + "purse", + "cantiniere", + "nonylic", + "serotinous", + "zander", + "dribblet", + "domableness", + "nuisance", + "israelite", + "hypothenar", + "alizari", + "bedplate", + "nide", + "fictitious", + "harmonics", + "cracker", + "monotocous", + "obliquely", + "smicker", + "taliacotian", + "lectern", + "velvety", + "inwrap", + "arousal", + "morainic", + "chondrule", + "palmin", + "unhouse", + "polarimeter", + "richweed", + "ugly", + "carbolize", + "candescence", + "notionality", + "tachyscope", + "palmately", + "wype", + "idolatress", + "rawish", + "disthene", + "envassal", + "hexastichon", + "communicability", + "protozooenite", + "tabler", + "mediacy", + "cantonment", + "melanterite", + "crinatory", + "fallowness", + "sinusoid", + "stannel", + "pression", + "beguinage", + "myselven", + "whin", + "sequential", + "preoblongata", + "scorbutic", + "eavesdropping", + "incondensibility", + "undulated", + "collitigant", + "etymon", + "sinusoidal", + "outshine", + "tore", + "dibranchiata", + "chutnee", + "ironmaster", + "liberalize", + "temperately", + "sontag", + "mahwa tree", + "metely", + "electro-vital", + "alibility", + "unbox", + "parentless", + "subderivative", + "replevin", + "actinomere", + "borate", + "casuistic", + "coinstantaneous", + "loathsome", + "psychotherapeutics", + "quab", + "grayness", + "subcutaneous", + "subalpine", + "intellectual", + "zany", + "ascidiform", + "sylvicoline", + "antithesis", + "shoveler", + "whitewasher", + "anisostemonous", + "injuriousness", + "bluebill", + "bilamellated", + "cynoidea", + "planary", + "pluckily", + "heathery", + "advenient", + "torpor", + "tuberculocidin", + "elater", + "lustic", + "demicannon", + "subdelegate", + "hexagram", + "cabalism", + "incubatory", + "mower", + "revivalistic", + "embroglio", + "sheriffwick", + "obnoxious", + "steer", + "adeption", + "paramalic", + "tobacconing", + "putid", + "suffragette", + "rascal", + "rascaless", + "avoyer", + "asterism", + "coppled", + "protomerite", + "thermoscope", + "legatee", + "solipedous", + "carpologist", + "fusileer", + "reengage", + "beached", + "shorlaceous", + "superpolitic", + "tamaric", + "tipsify", + "outform", + "coffin", + "pompeian", + "buff", + "clairaudience", + "manograph", + "sclerodermous", + "session", + "aptly", + "gamogenesis", + "mannered", + "cabalize", + "vanadate", + "pinniform", + "potentially", + "lentigo", + "sorriness", + "conceiver", + "drying", + "myriarch", + "myeloplax", + "twank", + "unarted", + "redisseizin", + "heterocercal", + "dolioform", + "vinnewed", + "deodorize", + "conscience", + "kindle", + "black hole", + "scandia", + "agonic", + "cosmical", + "flimflam", + "malacostomous", + "flysch", + "parchmentize", + "scenery", + "ant-bear", + "cesarean", + "barmcloth", + "tangle", + "hugger", + "confessedly", + "courant", + "overlong", + "hives", + "pliability", + "renunciatory", + "earsh", + "wormed", + "ectocuniform", + "pericardial", + "abannation", + "reel", + "digynian", + "self-adjusting", + "without", + "nitromethane", + "squiry", + "disgage", + "urith", + "tresor", + "astone", + "vitiate", + "inconfusion", + "perivitelline", + "cornopean", + "intestine", + "scission", + "restrictive", + "tracheotomy", + "mucilaginous", + "transenne", + "dumb-bell", + "asphaltum", + "broadpiece", + "repercussive", + "deviceful", + "analepsis", + "collectedly", + "resplendishing", + "fiber-faced", + "importuous", + "heedful", + "pampas", + "dactylar", + "lanifical", + "chargeable", + "indigogen", + "scantle", + "pendence", + "taxation", + "usurp", + "dry-stone", + "bezzle", + "ethylidene", + "utopia", + "vesture", + "impostury", + "putrescent", + "suppositor", + "catoptric", + "colorature", + "panton", + "pythonic", + "revigorate", + "catapuce", + "counterplot", + "harier", + "malignant", + "amplificatory", + "supinator", + "swoln", + "translative", + "etrurian", + "backbiting", + "depeach", + "promptitude", + "designative", + "amply", + "ploughman", + "vorticella", + "zonaria", + "sandyx", + "schistous", + "asbestos", + "pantisocracy", + "glaucoma", + "divineness", + "dreamland", + "sarse", + "damascene", + "dualism", + "autokinetic system", + "ctenocyst", + "overwrestle", + "tubularia", + "disordinately", + "quadra", + "dyestuff", + "garbel", + "biblically", + "meagre", + "endamagement", + "ghostless", + "foumart", + "grandpapa", + "contuse", + "biliousness", + "scratchbrush", + "firmament", + "irrecognizable", + "paracelsist", + "abelite", + "mesohepar", + "re-formation", + "splutterer", + "suffumigation", + "cartbote", + "ayegreen", + "diamonded", + "guipure", + "bulkhead", + "boarding", + "cleronomy", + "whisky", + "ifere", + "hardiment", + "supersalt", + "unoperative", + "corporalship", + "skirl", + "foundery", + "undecent", + "unequalness", + "kerchered", + "pacific", + "gumboil", + "roostcock", + "exopodite", + "marlaceous", + "hurtful", + "aim", + "culler", + "false", + "disseminated", + "disblame", + "cauterize", + "unpleat", + "eructation", + "mistletoe", + "hemistichal", + "irresuscitable", + "relievement", + "inquirer", + "eerily", + "epitapher", + "remoulade", + "entrance", + "mesopterygium", + "obese", + "quarreling", + "appear", + "prenatal", + "sos", + "pinking", + "foolfish", + "gingerly", + "refutatory", + "self-denial", + "caustic", + "suctorian", + "mustard", + "nondevelopment", + "pectus", + "cadger", + "chitinization", + "nonmoral", + "nourishable", + "mimosa", + "windowed", + "appointer", + "anastrophe", + "cutch", + "hardhack", + "incase", + "profound", + "unmanhood", + "whimsicalness", + "baggala", + "reckling", + "celebration", + "claudent", + "yeldhall", + "rivered", + "onely", + "burthen", + "pleadings", + "apprest", + "quadrinominal", + "trial balance", + "intertubular", + "wondered", + "jumelle", + "boracite", + "peanut", + "slough", + "unappropriate", + "rosmarine", + "mesymnicum", + "orient", + "spend", + "confrication", + "earlap", + "fatherless", + "hydrargochloride", + "walleteer", + "cabesse", + "indignance", + "ingluvies", + "biennial", + "escharine", + "foiningly", + "ihvh", + "solecist", + "veadar", + "cayugas", + "illegitimatize", + "ardurous", + "stanchness", + "liman", + "goggled", + "drail", + "tot", + "favosites", + "carbureted", + "rebreathe", + "neuropathic", + "fibre-faced", + "cancellated", + "twinlike", + "backwoodsman", + "melee", + "reluctancy", + "chthonophagia", + "gender", + "conversant", + "stackyard", + "acoustic", + "acromion", + "polythalamia", + "etna", + "irregular", + "shieldtail", + "lecanorin", + "moodily", + "mystification", + "turbidly", + "plouter", + "cabalist", + "mansionry", + "revalescent", + "spoonful", + "tong", + "microscopist", + "pegador", + "unsensible", + "aquiparous", + "disentail", + "polychoerany", + "fayence", + "chely", + "naeve", + "rubiginous", + "radicalism", + "lithogenous", + "ballistics", + "stab", + "indispensableness", + "adreamed", + "threpsology", + "rulingly", + "ferula", + "finery", + "monophysite", + "britzska", + "carnose", + "new", + "onto", + "agama", + "superintendency", + "dismay", + "netsuke", + "arrach", + "candle power", + "plectospondyli", + "marginal", + "conscionably", + "complexion", + "frank-law", + "title-page", + "pairing", + "condiment", + "aerostatical", + "archaistic", + "safe", + "ebullient", + "supernacular", + "ventriloquy", + "bullfaced", + "deforcement", + "interpenetrate", + "foursome", + "revellent", + "scotia", + "entitle", + "filiety", + "legend", + "ponibility", + "annexationist", + "bryological", + "renerve", + "spathose", + "tiddle", + "indescribable", + "sawfly", + "galvanic", + "farmery", + "pneumonophora", + "hander", + "neife", + "superfluous", + "drogher", + "dimeran", + "connotatively", + "obtruncation", + "tabu", + "cranioscopist", + "dapatical", + "parade", + "defendress", + "distemperate", + "guarana", + "deambulation", + "prism glass", + "richness", + "unprotestantize", + "personality", + "jugata", + "water monitor", + "doctorly", + "tillandsia", + "backless", + "malposition", + "innodate", + "warsaw", + "naples yellow", + "unblushing", + "astrologian", + "mortify", + "risquee", + "copeck", + "circumscriptive", + "courteousness", + "porcate", + "soc", + "tidewaiter", + "abrenounce", + "daker", + "mucusin", + "disavowance", + "overpamper", + "corrobory", + "dispassioned", + "paraffin", + "strategist", + "bezel", + "whippletree", + "chapfallen", + "iris diaphragm", + "pultesse", + "coco palm", + "mutation", + "congressional", + "crossbar", + "curtsy", + "dolphin", + "malleus", + "solan goose", + "splenization", + "implicity", + "limosis", + "bear", + "liguliflorous", + "methodios", + "bopeep", + "cannibalism", + "reign", + "finite", + "vagary", + "neurochordal", + "sumptuous", + "hypallelomorph", + "stocah", + "slatternly", + "nonplane", + "bagman", + "kiddyish", + "ventuse", + "anthropomancy", + "orchestrion", + "scritch", + "interceder", + "echinodermata", + "shutter", + "erythrochroic", + "chinch", + "tintie", + "baffler", + "viscoidal", + "gern", + "froze", + "disfranchisement", + "annexation", + "ouranographist", + "delver", + "fetal", + "replenishment", + "holder-forth", + "mastology", + "rankness", + "tetterous", + "bouk", + "choir", + "avoset", + "pink-sterned", + "spurry", + "enthetic", + "chaffern", + "placoidian", + "starvation", + "isorropic", + "accessariness", + "tophet", + "polycystidea", + "paraplegia", + "elsin", + "cotarnine", + "pory", + "inhabitancy", + "metope", + "supersaliency", + "vegetable", + "vernant", + "aerie", + "southwestwardly", + "gat", + "elfish", + "anacrusis", + "whatever", + "impersonally", + "metropolis", + "osmiamic", + "customariness", + "haemomanometer", + "bickford fuze", + "second-sighted", + "armpit", + "whoremonger", + "primordiate", + "euisopoda", + "proteose", + "extendant", + "mascotte", + "greenness", + "throp", + "merchantry", + "epistler", + "bridemaid", + "dysentery", + "assuredness", + "friskal", + "vicarian", + "wottest", + "swarth", + "trutination", + "mismanagement", + "inebrious", + "rower", + "ambition", + "beatitude", + "dry-boned", + "fantasm", + "olympiad", + "tyrannous", + "gainstand", + "stoichiometry", + "stimulate", + "tocher", + "troilite", + "blemishment", + "whipworm", + "welkin", + "bobbish", + "grainer", + "ascitical", + "sleepily", + "palilogy", + "grotesqueness", + "brachiate", + "damask", + "drapery", + "boggle", + "straitly", + "thomaism", + "commote", + "intentionally", + "mastoid", + "nival", + "evermore", + "palmate", + "gastrostomy", + "totteringly", + "valinch", + "convene", + "marshal", + "pured", + "creel", + "pluralism", + "euonymin", + "oxygenation", + "medicinally", + "ornithon", + "throw-off", + "giddy", + "forlornly", + "barmote", + "jakwood", + "gentle-hearted", + "folding", + "nicking", + "ration", + "synapta", + "coranto", + "uroerythrin", + "proverbial", + "deliracy", + "holophotal", + "talking", + "guttatrap", + "foresee", + "whoremasterly", + "conditionate", + "caligation", + "blea", + "stercorianism", + "austrian", + "cheerry", + "autunite", + "outwing", + "privateersman", + "balmoral", + "choreic", + "blackball", + "astrut", + "retoucher", + "embryonate", + "rosselly", + "biestings", + "biferous", + "beside", + "wis", + "concessionnaire", + "milldam", + "dicyemata", + "demise", + "acidic", + "altarwise", + "neo-kantian", + "eviternal", + "leavings", + "thraw", + "besieging", + "affiliation", + "abaft", + "riffraff", + "submetallic", + "obey", + "army", + "rapid-fire", + "nascal", + "nitter", + "bedchamber", + "lign-aloes", + "philosophaster", + "stomacher", + "overnumerous", + "metallographic", + "droil", + "knitter", + "angulous", + "berretta", + "protege", + "staving", + "heliacal", + "heliconia", + "approvable", + "monthly", + "water rate", + "misrepresenter", + "micraster", + "detersion", + "exhaustible", + "esophagal", + "tuscaroras", + "recurviroster", + "regentship", + "jugular", + "shew", + "cure", + "covert baron", + "droplight", + "precessional", + "awkly", + "cirrhiferous", + "bouilli", + "prospectless", + "contraindicate", + "tituled", + "statarianly", + "anthraconite", + "supersaturation", + "riprap", + "assurgency", + "attainture", + "sassaby", + "dentex", + "inequitate", + "deplume", + "etymological", + "zealant", + "kinate", + "phenix", + "sobranje", + "tringa", + "gnatworm", + "acanth", + "soda", + "rebeller", + "gloomy", + "rent", + "imblazon", + "forwarding", + "toothlet", + "semimetallic", + "weave", + "engulfment", + "perpetrable", + "bramble", + "circumventor", + "indocibility", + "senge", + "clinically", + "ambitiousness", + "pruriginous", + "delete", + "futurity", + "bread", + "high", + "windfallen", + "forty-spot", + "masturbation", + "mop", + "shod", + "deanery", + "bicallous", + "zonal", + "cheerily", + "point", + "nupson", + "filamentous", + "gynno", + "synocil", + "falsity", + "naphtha", + "eczema", + "advancer", + "vaginant", + "homological", + "commorant", + "deictically", + "conciator", + "water pheasant", + "proratable", + "broad", + "worst", + "extraarticular", + "present value", + "entreatance", + "indulto", + "mammiferous", + "perspire", + "surcle", + "druidism", + "schizognathous", + "elastical", + "rarity", + "cumulostratus", + "ecchymose", + "iguanian", + "scary", + "actinometric", + "seedless", + "liflode", + "ravishment", + "cuppy", + "domesman", + "ypres lace", + "existimation", + "kinglet", + "quidam", + "burst", + "regrate", + "groveling", + "makeless", + "tentaculifera", + "interchain", + "bronchitic", + "melanosperm", + "pandemic", + "scapulo-", + "atticism", + "biddery ware", + "bland", + "civicism", + "chaldee", + "sickening", + "deanship", + "colour", + "oppugn", + "relatively", + "mullein", + "valkyria", + "cinque-pace", + "gently", + "echoer", + "redhorn", + "indulgiate", + "swimmingness", + "canonicals", + "inflame", + "independent", + "prognathous", + "unconsonant", + "ashore", + "flewed", + "alpigene", + "excrementitial", + "arenicolite", + "epithelial", + "water junket", + "nephalist", + "concupiscibleness", + "undersecretary", + "tubulibranchiata", + "cleavable", + "hin", + "disappendent", + "barmy", + "masser", + "hypothenuse", + "obole", + "oboval", + "prattle", + "ripper act", + "brunette", + "medioxumous", + "vesica", + "self-communicative", + "panelwork", + "lyceum", + "manes", + "eparchy", + "water plate", + "chronoscope", + "cripply", + "affamishment", + "clancularly", + "closehauled", + "semiacid", + "teratoid", + "hyacine", + "vexillary", + "trental", + "vaccinate", + "sulphuration", + "conjunctional", + "mortgager", + "reassignment", + "dioxide", + "funnel", + "furnishment", + "lycanthrope", + "napkin", + "allotropy", + "mortifyingly", + "nipping", + "luny", + "jenneting", + "cower", + "brush", + "inseparate", + "hayrack", + "solar parallax", + "submerge", + "footstool", + "defuse", + "furnisher", + "thank", + "defoedation", + "malevolent", + "decagon", + "penalize", + "minuteness", + "transcalent", + "heterogeneous", + "puzzler", + "bifilar", + "swap", + "dreadless", + "maranta", + "prolatum", + "kettledrum", + "saikyr", + "stigmata", + "jesse", + "incaverned", + "morsitation", + "disquisition", + "cautel", + "dactylist", + "outpace", + "photochromic", + "municipalize", + "toxaemia", + "bristle-pointed", + "emigrate", + "whoobub", + "synonymous", + "stoutly", + "debellation", + "realliance", + "sea crawfish", + "dittology", + "firmamental", + "rechabite", + "haemostatic", + "metabolite", + "nonsexual", + "anchor escapement", + "panto-", + "handy-dandy", + "misdistinguish", + "overtroubled", + "alkalization", + "prevenient", + "subagency", + "chequer", + "reillumination", + "roominess", + "inbreathe", + "star-spangled", + "unkent", + "orthographize", + "swather", + "almsfolk", + "enquire", + "slows", + "westerner", + "coannex", + "wingy", + "morceau", + "noctivagation", + "inherence", + "insignment", + "thermo-", + "vang", + "rosen", + "vanadous", + "thievish", + "escritorial", + "haddock", + "burgher", + "oxygen", + "thyroideal", + "deliberately", + "hals", + "suspend", + "consulter", + "jards", + "slouching", + "chorister", + "cirrigrade", + "evocator", + "stufa", + "unravelment", + "deltohedron", + "atomician", + "herpetological", + "imbrute", + "schismatize", + "oscan", + "bestrode", + "bicorned", + "palmaceous", + "nithing", + "icosandrian", + "peritoneal", + "felspathic", + "ambry", + "miscredulity", + "passable", + "subzonal", + "giffard injector", + "corsage", + "membered", + "dinarchy", + "halloysite", + "rapper", + "affirmer", + "age", + "platonist", + "symbolics", + "grindlet", + "unrevenued", + "forestal", + "costate", + "aboriginally", + "vehemently", + "aesthesis", + "supplely", + "unpinion", + "cursores", + "stitchwort", + "worsted", + "cittern", + "thematic", + "counterpole", + "aboriginal", + "blackbirding", + "eye-splice", + "symphytism", + "cervical", + "anbury", + "arhizal", + "snively", + "pedantocracy", + "unfit", + "parochial", + "computer", + "mahumetan", + "authorial", + "snuffle", + "tranquilization", + "claymore", + "regardless", + "envy", + "incomplex", + "advantage", + "roundhouse", + "metoposcopy", + "broad-brimmed", + "erythrogen", + "often", + "tron", + "mesothelium", + "copped", + "finochio", + "brontometer", + "glassware", + "pantograph", + "popularize", + "antlered", + "formidability", + "misavize", + "unquietude", + "drug", + "episodial", + "tractation", + "steller", + "enhydrous", + "devi", + "cliff limestone", + "guardianless", + "spial", + "oriskany", + "insouciant", + "pistoleer", + "unplight", + "bedwarf", + "homotypical", + "jacqueminot", + "undefeasible", + "sich", + "phanerogamian", + "yesterweek", + "furtherer", + "affixion", + "wowe", + "landskip", + "afflux", + "ankus", + "anoxemia", + "uneared", + "postcornu", + "rash", + "intendancy", + "monarcho", + "torticollis", + "spectator", + "triandrous", + "subesophageal", + "lave", + "horometrical", + "branchiferous", + "dry goods", + "struthio", + "capercailzie", + "vouchsafe", + "excitability", + "derm", + "grandfather", + "outgate", + "civilized", + "vedette", + "retinitis", + "cascabel", + "electro-gilding", + "unscrupulous", + "wormul", + "categorematic", + "autotheist", + "clearage", + "chalchihuitl", + "nauscopy", + "dry", + "hallucinate", + "barruly", + "pantologist", + "anglicity", + "enthuse", + "deesis", + "brobdingnagian", + "bridle", + "reciprok", + "interlard", + "patroness", + "recto-uterine", + "sepsin", + "statued", + "alexandrine", + "interwove", + "gnomically", + "slaughterous", + "disinteressment", + "votarist", + "overturn", + "zink", + "sceptre", + "atheistical", + "viduation", + "miny", + "pentylic", + "boggy", + "substile", + "protectionist", + "overmultiply", + "dahoon", + "fistulose", + "prepossessor", + "been", + "relique", + "assaying", + "outbabble", + "eventual", + "anallantoic", + "bellybound", + "factitious", + "westing", + "legislator", + "innovationist", + "phonotypy", + "ambiguously", + "ventiduct", + "jejune", + "crural", + "condog", + "epidermoid", + "milord", + "shut", + "ellingeness", + "cookmaid", + "godwit", + "galloping", + "deducive", + "peasant", + "inexactly", + "phycomycetes", + "ineffective", + "catarrhous", + "undeify", + "duodecuple", + "spodumene", + "cognize", + "ascian", + "bilingualism", + "unwrite", + "godlike", + "ebrauke", + "highbinder", + "soja", + "pluviameter", + "harbor", + "lyam", + "moldwarp", + "flowery", + "woo", + "outwhore", + "dendrology", + "cirrate", + "oatcake", + "epimachus", + "pricky", + "grapeshot", + "princeling", + "outluster", + "washable", + "turquois", + "cassia", + "whereof", + "tun-bellied", + "grinting", + "ignominiously", + "cream-fruit", + "metallicly", + "grantable", + "compassing", + "governing", + "wheeze", + "quaestor", + "stylohyal", + "interjectionally", + "kingfisher", + "immediacy", + "anangular", + "endemial", + "intersternal", + "cryptogamous", + "milligram", + "flagrance", + "subsensible", + "epicoele", + "gravely", + "hypural", + "elocation", + "leucocythaemia", + "immaturity", + "syndactylic", + "bractea", + "alectorides", + "chaus", + "squireling", + "sourwood", + "rhigolene", + "ctenoidean", + "iridosmine", + "opercle", + "gemul", + "suffixion", + "coffeeroom", + "enrange", + "brazil nut", + "parrock", + "rencounter", + "devilism", + "nerka", + "pigmentous", + "met-", + "workable", + "studiedly", + "flavorless", + "polyphase", + "blirt", + "candent", + "crossjack", + "leme", + "conditory", + "dandy-cock", + "dankish", + "slinky", + "july", + "fotmal", + "gael", + "desirousness", + "monstrosity", + "statarian", + "convexo-convex", + "given", + "imputably", + "frisette", + "lithophosphor", + "osteocolla", + "subtrude", + "exarticulation", + "uncouth", + "malacostracology", + "credulousness", + "discovery", + "decrown", + "shepherdling", + "unyoked", + "unforgettable", + "pongee", + "comatose", + "spindrift", + "ventriculous", + "vesuvine", + "inurement", + "yumas", + "crofton system", + "fretwork", + "podostomata", + "birdbolt", + "ripple-marked", + "chatterer", + "scotticize", + "conjunctively", + "chazy epoch", + "infeasible", + "ganesa", + "pratincole", + "molar", + "cuculoid", + "bullyrock", + "antispasmodic", + "salpid", + "almendron", + "weightily", + "physics", + "gonfalon", + "caroche", + "behavior", + "crabby", + "birthnight", + "cementation", + "oneiroscopy", + "coacervate", + "bloomy", + "panicled", + "equery", + "self-knowledge", + "desiccate", + "prickshaft", + "rink", + "stilpnomelane", + "epicarp", + "spectrally", + "precative", + "unawares", + "addle-patedness", + "eugetic", + "dinosaur", + "torpedo", + "wretch", + "frondiferous", + "investigate", + "paedogenesis", + "spermatoon", + "acidimeter", + "fewel", + "peppergrass", + "proportionable", + "dicastery", + "keratose", + "rousing", + "massoola boat", + "globule", + "pipewood", + "sharebone", + "flatteringly", + "dantesque", + "fairhood", + "vertebrated", + "wadset", + "provisionary", + "thyrohyal", + "aries", + "blinding", + "interopercular", + "interfere", + "nosocomial", + "dichlamydeous", + "reprisal", + "landlord", + "misrepeat", + "respirational", + "sequestral", + "archdukedom", + "allectation", + "mosque", + "ounded", + "coptic church", + "emulousness", + "representatively", + "vickers-maxim gun", + "yid", + "guerdonable", + "shode", + "tellurite", + "tube-shell", + "curve", + "apoise", + "resetter", + "plagiarist", + "helleborin", + "elogist", + "bereaver", + "modulus", + "wardian", + "puritan", + "snaphead", + "cabinetwork", + "uniformal", + "libretto", + "polyatomic", + "unciform", + "garnet", + "corked", + "bashfully", + "ducat", + "fielded", + "lawny", + "hungrily", + "radium", + "behindhand", + "lapps", + "colitis", + "lifen", + "incertum", + "vizcacha", + "extinguisher", + "kinesipathy", + "sanskritic", + "trematoid", + "mercurify", + "cyme", + "perennibranchiate", + "splendorous", + "debris", + "earl marshal", + "immolate", + "predispose", + "cannula", + "ennui", + "gnathidium", + "psychomachy", + "tipula", + "consociation", + "printer", + "dietary", + "sea perch", + "loculose", + "cramoisy", + "sensible", + "soutane", + "corrugant", + "pipra", + "revocatory", + "scath", + "stirrer", + "fustigation", + "iconomania", + "weatherly", + "tatt", + "norroy", + "starchedness", + "oozy", + "sea needle", + "washer", + "correctify", + "bockelet", + "dint", + "wive", + "arthrogastra", + "insolvency", + "passegarde", + "alchemize", + "altarist", + "disqualification", + "abortionist", + "diskless", + "horseshoe", + "seditious", + "fluework", + "rhonchus", + "statured", + "theroid", + "unworship", + "detective", + "polygony", + "lingering", + "peabird", + "entomoid", + "present", + "caisson disease", + "screak", + "dermatography", + "quintessence", + "supersubstantial", + "cokenay", + "hexdecyl", + "red-short", + "angora", + "tannage", + "reannex", + "creed", + "expediently", + "kiss", + "bidden", + "securipalp", + "presention", + "hogo", + "basidiospore", + "bull moose", + "neckcloth", + "zoanthacea", + "hawked", + "thirty", + "phenician", + "uvular", + "zend-avesta", + "irrigation", + "aldermanlike", + "convulsively", + "diffame", + "hypospadias", + "carnalize", + "concubinacy", + "impatronize", + "capistrate", + "septifragal", + "veritas", + "paard", + "distermination", + "droppingly", + "hooper", + "pulpy", + "charqui", + "tergite", + "wayworn", + "protestancy", + "kaique", + "cereous", + "hamesecken", + "apostolically", + "sabre", + "polylogy", + "practisour", + "acaulous", + "beeswax", + "festivous", + "hypochondriacal", + "durion", + "lambaste", + "administrant", + "shattery", + "camously", + "endecane", + "jointing", + "dakoity", + "wise-hearted", + "disintegrable", + "kerf", + "tympanitis", + "colfox", + "tead", + "phlebolite", + "repaid", + "gasiform", + "youngger", + "para nut", + "farmer", + "breeches", + "fughetta", + "magdeburg", + "septicidal", + "glassite", + "limpingly", + "umbe", + "tremendous", + "baudrick", + "persiennes", + "unkempt", + "ruche", + "smooch", + "lace-winged", + "phylactered", + "urocerata", + "exornation", + "cornigerous", + "-ana", + "fag", + "fuming", + "underprize", + "popple", + "lodgment", + "acetaldehyde", + "shamanic", + "budger", + "ovally", + "money-maker", + "pectose", + "replete", + "sthenic", + "triblet", + "diuretic", + "nettles", + "respectless", + "setfoil", + "disfranchise", + "decatoic", + "maleyl", + "crowner", + "metavanadic", + "near beer", + "herringbone", + "inoxidizable", + "trochilus", + "deputable", + "invulnerate", + "croquante", + "zealous", + "similitudinary", + "modestly", + "meslin", + "vaulting", + "solidly", + "freight", + "unhele", + "accentuate", + "retrim", + "impregnable", + "scoldingly", + "battalia", + "exceptor", + "inimicality", + "waldgrave", + "groschen", + "swedenborgian", + "rhodian", + "appeacher", + "jongler", + "support", + "johannes", + "prescriptible", + "inconstantly", + "abdicate", + "salvific", + "looping", + "wayfarer", + "punt-out", + "startlish", + "haemolysis", + "interference", + "atelier", + "discernible", + "full-hot", + "hausen", + "natch", + "alamort", + "shoring", + "accite", + "steadfastness", + "implicitness", + "aeroclub", + "chondritic", + "rufous", + "politically", + "concealable", + "moanful", + "resolvedness", + "entocuniform", + "ywar", + "assyriologist", + "structural", + "subinduce", + "persistency", + "sue", + "phytolithologist", + "maistry", + "coachdog", + "disembowel", + "lima", + "bewailing", + "serranoid", + "slake", + "parergy", + "zoochlorella", + "lodemanage", + "hot-brained", + "underpeep", + "gavage", + "chioppine", + "propagative", + "pillowy", + "epipodial", + "successively", + "interlining", + "rangle", + "legibility", + "footfall", + "gambist", + "incarnate", + "balneation", + "becurl", + "farmstead", + "endolymphatic", + "cover", + "exhibitioner", + "jole", + "atellan", + "waterproof", + "imbracery", + "sarsaparilla", + "castlebuilder", + "covenant", + "menagerie", + "tarsal", + "uchees", + "hickup", + "geten", + "erne", + "zulus", + "dervish", + "half-ray", + "osculatrix", + "quorum", + "match-coat", + "misexpound", + "just", + "side", + "confidant", + "sinful", + "columnar", + "crispin", + "witch-hazel", + "anarchist", + "cow parsley", + "galliwasp", + "synecdochical", + "pullback", + "bee", + "alkalamide", + "devotionalist", + "bootikin", + "jungermannia", + "poplitic", + "maki", + "digitize", + "kicksy-wicksy", + "requitable", + "basswood", + "widespread", + "syllabicate", + "thermally", + "fluently", + "exoplasm", + "mormondom", + "amphigory", + "elasmobranchiate", + "latently", + "subagitation", + "epigeum", + "interplay", + "basipodite", + "joss", + "remediate", + "spillet fishing", + "kier", + "mensurate", + "perioeci", + "hymnist", + "phonoscope", + "rabbinist", + "magnifiable", + "aeolus", + "amphilogism", + "dolomize", + "ribaldish", + "pentachord", + "mariner", + "recombine", + "dowse", + "sensori-volitional", + "ratoon", + "fling", + "tumored", + "detached", + "tersulphide", + "acrisia", + "biodynamical", + "water plant", + "sanguigenous", + "movent", + "cursorily", + "formulary", + "archchamberlain", + "fringilline", + "hippophagist", + "arbalister", + "creant", + "incursion", + "siderographical", + "poor-john", + "undecisive", + "usself", + "cassinette", + "giggyng", + "astrometry", + "franklinic", + "quits", + "almain", + "janus-faced", + "orbulina", + "carthaginian", + "dent", + "angoumois moth", + "sealer", + "huckster", + "zarthe", + "eldership", + "leafage", + "outlook", + "pittance", + "uplandish", + "oracle", + "actinometer", + "parapeptone", + "insufficient", + "horsefly", + "intercostal", + "abbreviatory", + "reprehension", + "monism", + "rethor", + "redisburse", + "branchiogastropoda", + "umbratious", + "incense-breathing", + "-ster", + "quadrigeminal", + "embattled", + "gradation", + "illustrator", + "localize", + "myrtiform", + "gyn", + "acidific", + "limewater", + "weldable", + "hare brained", + "flip", + "fourscore", + "olfactive", + "multiaxial", + "nullification", + "monocle", + "friendlily", + "parcase", + "accelerando", + "petitor", + "lignous", + "saut", + "cheiropterygium", + "janitrix", + "ichthyotomy", + "intervention", + "water thrush", + "transpadane", + "coenoecium", + "cofferer", + "heartfelt", + "bilaminar", + "nook-shotten", + "havened", + "heterotropal", + "poecilopod", + "zooemorphic", + "biostatistics", + "macroural", + "catso", + "periderm", + "bristle", + "offend", + "ab-", + "glossly", + "graffito", + "inaniloquent", + "cates", + "steedless", + "tightener", + "perfecter", + "balmily", + "reproachablr", + "caducean", + "omnipresent", + "disincarcerate", + "dodkin", + "pedantize", + "forwhy", + "sken", + "subpolar", + "vortex tube", + "astragalomancy", + "dissidently", + "roysterer", + "inductor", + "fabricatress", + "clayes", + "torsion", + "had", + "evite", + "geophagist", + "irrevocable", + "resistive", + "aard-wolf", + "phenology", + "puppy", + "assimilation", + "worshipability", + "insurrection", + "basso-rilievo", + "extruct", + "epulotic", + "kithara", + "booming", + "falcade", + "ingenite", + "intemperant", + "punicial", + "electrum", + "vent", + "specification", + "vinewed", + "sustentacular", + "misarrangement", + "percurrent", + "bronchic", + "pauciloquent", + "definition", + "hydride", + "undersign", + "depredable", + "voluntary", + "cephalaspis", + "scheik", + "faultful", + "spendthrift", + "dejected", + "devilwood", + "verein", + "wroken", + "shepherdly", + "rejuvenize", + "transact", + "exolution", + "scuff", + "thundrous", + "vaporimeter", + "coursed", + "current", + "kaleidophone", + "loss", + "displicency", + "multiped", + "articulus", + "winninish", + "effusion", + "polyclinic", + "disavowal", + "proleg", + "monochromatic", + "oxyhaemacyanin", + "crenulation", + "sculk", + "underhangman", + "charmless", + "nummular", + "striatum", + "degu", + "problematic", + "trochilidist", + "mabolo", + "orthoptera", + "plumage", + "turn", + "degeneration", + "insatiateness", + "gavel", + "rurality", + "sauria", + "telephotographic", + "brushwood", + "panslavonian", + "myrobalan", + "haunter", + "thave", + "inactuation", + "blackstrap", + "unauspicious", + "poltroonish", + "goff", + "sned", + "electro-physiology", + "balkingly", + "fainthearted", + "cut-out", + "extend", + "island", + "espiaille", + "iatromathematical", + "ra-", + "incensed", + "plantigrada", + "reredemain", + "aline", + "can", + "whitsunday", + "fairyland", + "unmutable", + "metastatic", + "desultoriness", + "fissility", + "gritstone", + "hyporhachis", + "hurry-skurry", + "erythronium", + "lazyback", + "sclerous", + "restaurateur", + "water thermometer", + "analemma", + "burg", + "calumniation", + "mangrove", + "crakeberry", + "tetraptote", + "vestibular", + "botuliform", + "spooler", + "cyma", + "toff", + "nutter", + "coloboma", + "rostellar", + "nitty", + "trimmer", + "amazedness", + "append", + "housework", + "crotalum", + "pastorless", + "spotted", + "utlary", + "pichurim bean", + "shortage", + "enaunter", + "incivilization", + "powderflask", + "rasse", + "rocking", + "receptary", + "thereafter", + "nematelmia", + "inexist", + "synpelmous", + "tormentress", + "wonderstruck", + "public-minded", + "fetuous", + "mustac", + "silversmith", + "nares", + "subhyoidean", + "mister", + "recoin", + "jeopardize", + "glisteringly", + "perfection", + "vivacity", + "pedagog", + "atamasco lily", + "forewarn", + "midweek", + "cymar", + "tuberculated", + "liquescency", + "flyte", + "soot", + "capitule", + "rationality", + "natant", + "estafet", + "inveigle", + "intently", + "logos", + "easter", + "qualified", + "aphrodisian", + "subdolous", + "tolerant", + "mathematics", + "maintop", + "eagerly", + "phylactery", + "water sail", + "incapsulate", + "prepensely", + "ake", + "bink", + "schismless", + "witing", + "cephalosome", + "weaver", + "anthypochondriac", + "xylotomist", + "shallow", + "metallograph", + "scarmage", + "aster", + "classis", + "diagnostic", + "paraguay tea", + "smallsword", + "sludger", + "araeosystyle", + "leggy", + "foreshorten", + "smuggler", + "semioval", + "terete", + "attenuation", + "magenta", + "osmidrosis", + "detectable", + "quizzism", + "drub", + "wafer", + "babbitt", + "posting", + "text-hand", + "outfitter", + "profundity", + "mischief-maker", + "aqua", + "tryster", + "supercilium", + "triangled", + "deliber", + "recremental", + "blore", + "ten", + "lister", + "norie", + "mouth", + "bilboquet", + "hypnotizer", + "warm-blooded", + "caned", + "unknight", + "incompetent", + "purl", + "goodlyhood", + "spit-venom", + "positive", + "attagen", + "mise", + "brawl", + "parrel", + "equator", + "yeorling", + "ambush", + "euritic", + "paleographic", + "ephod", + "dijudicate", + "punkling", + "swimming", + "revealability", + "crustation", + "ruination", + "windrow", + "acquaint", + "grangerism", + "overscrupulous", + "indiscovery", + "hylozoism", + "risen", + "merlon", + "vitelline", + "bank-sided", + "ferric", + "intelligential", + "adamantine", + "tiling", + "gula", + "puncticular", + "despeed", + "weeder", + "moonglade", + "reenjoyment", + "sempervive", + "grasper", + "presentiality", + "valetudinous", + "bittacle", + "amburry", + "pyemia", + "concealer", + "primigenous", + "mammodis", + "paxwax", + "manteau", + "pitheci", + "fin de siecle", + "magnificent", + "mammetry", + "strabismus", + "triumvir", + "ettle", + "innixion", + "this", + "misstep", + "superjacent", + "achlamydate", + "relieving", + "bactericidal", + "immanence", + "serrifera", + "verine", + "cops", + "unsay", + "abolitionism", + "costiveness", + "intime", + "invisibility", + "underlying", + "deprivation", + "miscreancy", + "plagiocephaly", + "quacksalver", + "pommage", + "astylar", + "cyamelide", + "herr", + "gigue", + "inheritable", + "infraposition", + "parmesan", + "enucleate", + "splenoid", + "haemotachometry", + "siesta", + "mercership", + "desistive", + "conjurement", + "domesticate", + "vaulty", + "topical", + "demibrigade", + "morus", + "disinthrallment", + "denounce", + "embracery", + "protuberous", + "rant", + "dew-point", + "subsphenoidal", + "malapropism", + "pitch-faced", + "stillhouse", + "rimple", + "roynish", + "crafty", + "yellow book", + "theosophize", + "zinnia", + "conclavist", + "landscape", + "hyperbolically", + "fluviometer", + "examinership", + "koel", + "mounch", + "cast-iron", + "huer", + "disinvestiture", + "rabat", + "naid", + "hematin", + "mediaevals", + "epistolize", + "twinkling", + "disprivilege", + "enteric", + "ideology", + "satanical", + "bailee", + "unfertile", + "onagga", + "northeaster", + "populacy", + "turmeric", + "ode", + "swampy", + "oscines", + "rationally", + "seniority", + "topet", + "sematrope", + "sarkin", + "tarrier", + "greeter", + "corrival", + "miner", + "sequestration", + "invigoration", + "usitative", + "fresh-water", + "imbroglio", + "vicinage", + "rob", + "polyhedrical", + "stereogram", + "teaze-hole", + "ding", + "ethenyl", + "lionship", + "outcry", + "betterness", + "shittim wood", + "phyllodineous", + "sabianism", + "clansman", + "abovesaid", + "zoantharia", + "cacodoxical", + "budding", + "woodlander", + "water elephant", + "jangling", + "mechanicalize", + "terpsichore", + "moonstruck", + "yajur-veda", + "machining", + "heterodromous", + "genuflect", + "pens", + "sarlyk", + "consentaneous", + "inspirationist", + "lope", + "gleg", + "apprehension", + "imperfectness", + "rice-shell", + "horn-mad", + "symmetrize", + "thuja", + "safeness", + "torpedo tube", + "widower", + "elinguate", + "turtling", + "estrange", + "monosaccharid", + "crackajack", + "fluosilicate", + "gyp", + "apologetical", + "fotive", + "sexangularly", + "beloochee", + "contractility", + "cooperative", + "theriacal", + "melne", + "spherulate", + "cornamute", + "roller bearing", + "advantageously", + "photo-electrical", + "foreship", + "slipstring", + "christen", + "acetize", + "inspired", + "tithonic", + "angler", + "helena", + "antiquary", + "overmast", + "miserableness", + "sigmoid", + "lunitidal", + "infilter", + "mendiant", + "recoup", + "sepal", + "blay", + "semiology", + "renitency", + "bish", + "peruse", + "adminicular", + "interlaminar", + "inhumanity", + "mountlet", + "lottery", + "throw", + "ocellated", + "mannish", + "thaumaturgist", + "bilaminate", + "entasia", + "lantern-jawed", + "stagehouse", + "dinosauria", + "bankrupt", + "caboodle", + "supawn", + "contradictoriness", + "racemed", + "electro-positive", + "matriarchate", + "lantanium", + "centumvir", + "farstretched", + "abstersive", + "oundy", + "dactylopterous", + "potency", + "bureaucracy", + "contradicter", + "arbitrariness", + "iconize", + "fritillaria", + "justle", + "tableman", + "coreopsis", + "demagogy", + "pargeboard", + "syntonic", + "relaxable", + "serpentine", + "underbuilding", + "photonephograph", + "bel-accoyle", + "mungoos", + "profanation", + "blotting paper", + "tidal", + "cerargyrite", + "presbyterate", + "chemosynthesis", + "discloak", + "quinquevalvular", + "masorite", + "ernestful", + "afflict", + "-ably", + "cremosin", + "pard", + "reverentially", + "gowk", + "omnigraph", + "pardoning", + "skillet", + "discipless", + "marcian", + "whitleather", + "backsettler", + "soler", + "tidily", + "waxwork", + "accredit", + "fantast", + "psilanthropist", + "environment", + "translocation", + "velivolant", + "parietine", + "molder", + "pronely", + "tongue-pad", + "antinomist", + "monte-acid", + "pernicious", + "zamia", + "inequity", + "demency", + "revest", + "foussa", + "transporting", + "hendy", + "longtail", + "renascent", + "inculpate", + "exacerbation", + "allegorical", + "distressing", + "oust", + "decipherer", + "sheldrake", + "winkle-hawk", + "almond furnace", + "crept", + "medicamental", + "cortex", + "forger", + "arest", + "hence", + "amaritude", + "shrank", + "gainsome", + "progressist", + "presignify", + "hema-", + "haematothermal", + "rebate", + "diorama", + "variably", + "overbend", + "inflex", + "vidual", + "intercourse", + "marquetry", + "cyclas", + "nonmetallic", + "set-off", + "tonsure", + "chlorite", + "centifolious", + "warrie", + "s", + "rustless", + "lignin", + "calumny", + "epichorial", + "climacteric", + "clave", + "nominalism", + "bund", + "earable", + "bowery", + "inverness", + "evolation", + "sea gull", + "microbacteria", + "rattlemouse", + "suspecter", + "attone", + "ambassadorial", + "sweaty", + "tricornigerous", + "irefulness", + "copelata", + "rim", + "ascititious", + "amatorial", + "sustentate", + "hardwareman", + "adhesion", + "puttier", + "diarchy", + "obstructionist", + "alkahest", + "sadiron", + "destination", + "prosaicism", + "saxhorn", + "low-churchmanship", + "aphyllous", + "maturation", + "tithly", + "southmost", + "denote", + "twist", + "cirripedia", + "hollowness", + "facient", + "inhabitation", + "phenakistoscope", + "opinable", + "gibe", + "mongoos", + "animative", + "kissing strings", + "auriphrygiate", + "ebullition", + "souter", + "photolithographic", + "pecora", + "precipitant", + "manuducent", + "teste", + "cable", + "monstrously", + "trachelorrhaphy", + "flexible", + "bathybius", + "abegge", + "acidify", + "attendance", + "equitation", + "analogicalness", + "latirostres", + "stramazoun", + "excommunicator", + "fricace", + "gallstone", + "algerine", + "psychozoic", + "senescence", + "pilwe", + "rudderless", + "embryogenic", + "supercelestial", + "sealing wax", + "depart", + "barbarian", + "lexicon", + "garboil", + "ruff", + "lincture", + "obsignatory", + "isocyanuric", + "clumpy", + "kismet", + "soupcon", + "stomatoscope", + "aketon", + "crump", + "atomic", + "phoebe", + "ptenoglossate", + "meccawee", + "quadriceps", + "pragmatize", + "e-", + "sticked", + "inorganical", + "press revise", + "carron oil", + "disappointment", + "ipecac", + "relessee", + "dilaniation", + "ethereally", + "oestrian", + "desertrix", + "appropriament", + "disobliger", + "oblateness", + "dissilient", + "anagrammatic", + "astacus", + "demure", + "berate", + "tanka", + "antipodagric", + "way shaft", + "laundering", + "hydrophid", + "irreligiousness", + "virgo", + "gamogenetic", + "mavournin", + "denomination", + "terrestrify", + "facingly", + "religionism", + "disenchant", + "tolylene", + "hatchettite", + "whisperously", + "overhaste", + "antinomian", + "dwale", + "-one", + "lactim", + "foxlike", + "forlie", + "breathe", + "nexus", + "cadastral", + "youthly", + "incensebreathing", + "sain", + "decalcify", + "movement", + "incommiscible", + "decalcification", + "coiffeur", + "sanctimony", + "destructively", + "unde", + "biogenist", + "heptylene", + "inharmony", + "travesty", + "dross", + "disfancy", + "local", + "jacksaw", + "pumpernickel", + "negligence", + "moon-eye", + "nauseate", + "imperiously", + "witwal", + "fatuous", + "pinetum", + "brayer", + "crustal", + "dern", + "rhizine", + "salep", + "concatenate", + "banisher", + "clatch", + "moreness", + "misy", + "zoographer", + "eared", + "fructiferuos", + "ornithologist", + "vociferant", + "coll", + "bass-relief", + "fissiparism", + "divertible", + "sleuth", + "turatt", + "counterirritate", + "sleight", + "imbrocata", + "auricular", + "moot-house", + "ret", + "tupian", + "edentalous", + "huckstress", + "palesie", + "esophagus", + "malign", + "typal", + "miscomfort", + "sauvegarde", + "combustibleness", + "disobedience", + "fleam", + "granger stocks", + "cafenet", + "amorosity", + "transcendence", + "turko", + "sulphocyanogen", + "roman", + "backsaw", + "-mancy", + "bestrew", + "patent-hammered", + "jugger", + "petong", + "trubtall", + "vulnerary", + "scrimpness", + "benzile", + "ptyxis", + "agnostic", + "gynecology", + "bonbon", + "murrelet", + "tride", + "panspermic", + "amends", + "dawe", + "gorgonize", + "fabric", + "demolisher", + "hornfish", + "lucidly", + "rightwisely", + "tene", + "crossruff", + "anthology", + "disarrayment", + "nitro-chloroform", + "anybody", + "virgularian", + "pneumogastric", + "bayard", + "levigable", + "penetratingly", + "bullfighting", + "snarler", + "bismuthine", + "piprine", + "misesteem", + "pyrocoll", + "compound control", + "lymphated", + "heroess", + "stultiloquy", + "boroughmongering", + "panshon", + "indeliberated", + "urn-shaped", + "intemperament", + "directly", + "pasteurize", + "upgaze", + "summersault", + "glumpy", + "toged", + "gerah", + "way-going", + "alluring", + "box-iron", + "intent", + "presphenoid", + "principality", + "loathy", + "reflexed", + "fan-nerved", + "lagarto", + "countryman", + "alkargen", + "klamaths", + "redemptive", + "coinheritor", + "crocin", + "portuary", + "whim", + "sea heath", + "volatility", + "sopition", + "mete", + "abnegator", + "violin", + "striate", + "gawntree", + "frondation", + "terma", + "cenogamy", + "glauberite", + "annotine", + "fiacre", + "hemiditone", + "carnin", + "demosthenic", + "tasty", + "smoke", + "bondholder", + "incurvity", + "caudate", + "whitworth ball", + "alphabetics", + "bilsted", + "quadratrix", + "strategetics", + "soullessly", + "labiatifloral", + "margaritiferous", + "bullweed", + "blowse", + "subserous", + "preteriteness", + "gue", + "mortifying", + "clearing", + "refringency", + "suffocating", + "jeremiad", + "champ", + "ferity", + "enseam", + "fonge", + "kirmess", + "mispend", + "rock shaft", + "schemist", + "symmetry", + "ungracious", + "summerliness", + "syrian", + "chivy", + "thermoneurosis", + "porbeagle", + "eat", + "divedapper", + "curialist", + "metoche", + "pruner", + "vanadium", + "skein", + "nidorous", + "sienite", + "lanyer", + "impounder", + "testaceography", + "vasoformative", + "newfangle", + "knopweed", + "wardship", + "froggy", + "gasoline", + "trifoliated", + "crail", + "exoteric", + "bordeller", + "preconcerted", + "holostomate", + "sklere", + "homoorgan", + "rallentando", + "benzoate", + "mirificent", + "ospray", + "abiogenesis", + "inturbidate", + "cultural", + "otozoum", + "spilth", + "vex", + "disquieter", + "lingam", + "welsher", + "nard", + "caloriduct", + "symphyla", + "block system", + "couch", + "inserted", + "adnoun", + "excerp", + "surety", + "harken", + "versal", + "vinatico", + "discurrent", + "beete", + "disquietive", + "dalf", + "capitan pacha", + "ossiculum", + "catpipe", + "quet", + "agronomics", + "hippocentaur", + "nondecane", + "metallurgical", + "contract system", + "manurable", + "parallactic", + "ascensive", + "cowslipped", + "ablastemic", + "bivious", + "dead-stroke", + "procerebrum", + "sleep-charged", + "interlucation", + "loricate", + "preconcert", + "subquinquefid", + "cetacea", + "gasalier", + "warp knitting", + "postdiluvial", + "debenture", + "sophism", + "strewn", + "spongin", + "bedel", + "quillback", + "dickcissel", + "freebootery", + "photolithography", + "tentacular", + "calceiform", + "centrum", + "circulary", + "whiskey ring", + "vitrify", + "motherland", + "sloat", + "lustless", + "quarrellous", + "nigritic", + "belamy", + "zooeloger", + "suberate", + "wizard", + "actiniform", + "draconic", + "erasion", + "pregravate", + "raid", + "contestingly", + "saveloy", + "sneck", + "decedent", + "pavilion", + "surstyle", + "inhibition", + "turtle", + "pestilence", + "comfrey", + "internuncius", + "orthotropic", + "woul", + "crownlet", + "apheliotropic", + "bom", + "mexicanize", + "sedulity", + "intendedly", + "congeries", + "externality", + "myomancy", + "twin", + "festucous", + "ignatius bean", + "semiovate", + "shadowish", + "textural", + "hunter", + "cabiri", + "exhibit", + "sepon", + "cyclostomi", + "countersecure", + "emu", + "spinulous", + "whiggism", + "smeller", + "censorial", + "luting", + "transit", + "indevotion", + "ministry", + "cowhage", + "loathful", + "sidesaddle", + "ossiferous", + "asoak", + "anatron", + "consummate", + "axiomatical", + "trolley wire", + "sarracenia", + "revisable", + "heptachord", + "nof", + "easting", + "fat-kidneyed", + "proverbialize", + "lardry", + "eschaunge", + "geloscopy", + "lysis", + "unsceptered", + "unsonable", + "vastidity", + "elul", + "bipinnate", + "truthful", + "lethargize", + "geogony", + "megaric", + "peccantly", + "rajpoot", + "oscillating", + "foxish", + "temptability", + "wrawness", + "impartment", + "respire", + "timmer", + "trustily", + "dispauper", + "itchiness", + "parqueted", + "reclining", + "forgetful", + "defence", + "held", + "sniveler", + "topic", + "prelect", + "arguer", + "discretionally", + "barger", + "recouch", + "snowy", + "fiducially", + "bogie engine", + "sordid", + "defoul", + "doko", + "melodize", + "squintifego", + "retrocession", + "contumacy", + "sea room", + "velours", + "trey", + "esthesiometer", + "toponymy", + "pessimist", + "phenicious", + "undergrub", + "wringer", + "offscouring", + "free-minded", + "blackcap", + "refragate", + "inodorous", + "nomen", + "dustpan", + "fertilize", + "cathead", + "parallelogrammic", + "plain-spoken", + "treasure-trove", + "duskiness", + "projectment", + "terminer", + "engrain", + "unto", + "metate", + "nodosarine", + "osiery", + "zygobranchiate", + "irrelation", + "cataphysical", + "tonguester", + "except", + "hyndreste", + "pyrotic", + "dislikelihood", + "mistook", + "garlic", + "canadian", + "hike", + "mulattress", + "slightful", + "gazelle", + "amentiferous", + "cerebro-spinal", + "involuntariness", + "acquirer", + "clinker-built", + "experiencer", + "gyrose", + "octoate", + "subscriber", + "jar", + "mugginess", + "ubiquist", + "toxiphobia", + "inducteous", + "goblet", + "scathless", + "ancestress", + "stage director", + "ultraviolet", + "klipdachs", + "britannic", + "pseudo-", + "transduction", + "skun", + "cespititious", + "admirably", + "fungilliform", + "evergreen state", + "incompetency", + "ulcuscle", + "hunkers", + "sick-brained", + "ulluco", + "electrolyzation", + "reflected", + "volador", + "organific", + "perturber", + "granitoid", + "opisthoglypha", + "matt", + "embower", + "discontinuee", + "ecclesiology", + "above-mentioned", + "overcoming", + "viscidity", + "alphabet", + "wrap", + "pott", + "ecrasement", + "nucellus", + "dysenteric", + "fisk", + "various", + "barbicel", + "partisanship", + "abalienation", + "shiraz", + "piqueerer", + "timidity", + "acromial", + "shipbuilder", + "combinate", + "intext", + "systole", + "althorn", + "momentally", + "angina", + "water leg", + "enterdeal", + "orientness", + "dartoid", + "defiler", + "ataunt", + "spitalhouse", + "nobbler", + "epitrope", + "jantu", + "clavated", + "buttonball", + "abraxas", + "luffa", + "presential", + "uterus", + "aurate", + "girasole", + "labrus", + "eruption", + "prothorax", + "diffluency", + "tameless", + "cudgeler", + "rehypothecate", + "allhallowtide", + "permit", + "roommate", + "bowsprit", + "recognizable", + "coulomb meter", + "achylous", + "weather-bit", + "curricle", + "millioned", + "knitch", + "surbased", + "evolute", + "sarcasm", + "alto-cumulus", + "presswork", + "crare", + "fred", + "beefy", + "craftsman", + "apocryphalness", + "jet-black", + "pyrotechnian", + "ruffler", + "foreshow", + "outguard", + "parfitly", + "veinless", + "earshot", + "twey", + "tetradynamous", + "debauchness", + "reaumur", + "naphthalate", + "mammonize", + "shanny", + "stereoelectric", + "sabrebill", + "holour", + "meerschaum", + "cloudiness", + "nundinate", + "gaudful", + "irreversibly", + "crisply", + "piccage", + "resorcylic", + "lackaday", + "obtainable", + "zygapophysis", + "ethiopian", + "bearable", + "bimedial", + "rejuvenation", + "tussocky", + "rebuttal", + "climacter", + "frostbow", + "invertible", + "apathist", + "owch", + "roundfish", + "glucinum", + "coalsack", + "nonalienation", + "waterflood", + "perstreperous", + "exterraneous", + "alife", + "siderealize", + "left-off", + "difficile", + "cleverish", + "ambulatorial", + "unimpeachable", + "mentionable", + "fellness", + "bethlehem", + "chronical", + "palladiumize", + "astronomer", + "supratrochlear", + "betrust", + "planimetry", + "shern", + "fuliginously", + "gradin", + "dactylitis", + "reliant", + "ochery", + "village", + "threepence", + "improvvisatrice", + "emancipist", + "unguinous", + "blague", + "stringiness", + "third rail", + "van-courier", + "clumsiness", + "pack", + "weetless", + "conferree", + "loyally", + "radicate", + "reiteratedly", + "upskip", + "scrat", + "mercaptide", + "alecost", + "artiad", + "participant", + "faradize", + "mandingos", + "spary", + "thetine", + "uncorrect", + "spectatress", + "punctually", + "snuff", + "semi-pelagianism", + "hydrosulphuret", + "meroistic", + "polystyle", + "orology", + "costlewe", + "dinosaurian", + "gad", + "sea ginger", + "boughten", + "heraud", + "auditive", + "fint", + "wesh", + "rowel", + "soberness", + "squamella", + "prepared", + "vulcanism", + "null", + "water hammer", + "idioelectric", + "esculin", + "nurl", + "cacaemia", + "autocrat", + "capsulitis", + "morphonomy", + "spectrology", + "anthocyanin", + "fulgurate", + "athrepsia", + "orvietan", + "jowler", + "cark", + "regressively", + "dibble", + "subdiversify", + "sea fight", + "proces verbal", + "martingal", + "egoism", + "footrope", + "otorrhoea", + "sowle", + "sciential", + "magneto-electricity", + "eros", + "spiculispongiae", + "jailer", + "psychian", + "insearch", + "libel", + "hamel", + "refined", + "crispate", + "glyoxal", + "reductively", + "sangreal", + "miscreated", + "roscoelite", + "vitellus", + "cropper", + "basilisk", + "jutlander", + "meed", + "xenelasia", + "chap", + "croise", + "imitate", + "contrariness", + "upflow", + "imperatively", + "tairn", + "pentalpha", + "neoterist", + "benthos", + "cross-pawl", + "cirrose", + "ecballium", + "autograph", + "abluvion", + "flix", + "hirling", + "strouding", + "lophophore", + "steeple", + "aguise", + "digestor", + "wellhead", + "coinitial", + "martlet", + "barmecidal", + "aleutic", + "bovey coal", + "prelatically", + "syndic", + "tenebrificous", + "vexillation", + "awkward", + "assentive", + "planometry", + "bdellomorpha", + "curly", + "lactucin", + "lambdoid", + "eisteddfod", + "pustulate", + "shortcoming", + "clod", + "orthoceratite", + "ejector", + "gangliform", + "word method", + "colonist", + "inhibitory-motor", + "hesperid", + "vilayet", + "dairymaid", + "sea lettuce", + "scratcher", + "appliable", + "shuttle", + "immorality", + "subrogation", + "bona peritura", + "kendal", + "tu-whoo", + "shearer", + "seemly", + "incrassate", + "peristyle", + "taking", + "trivalve", + "panurgic", + "tipple", + "writative", + "carucate", + "fluorescent", + "shiner", + "slope", + "leontodon", + "autophony", + "thallus", + "isoperimetry", + "lactobutyrometer", + "separate", + "interpubic", + "pavonine", + "volti", + "photochemical", + "prolicide", + "arboretum", + "evincement", + "kernel", + "blindness", + "polander", + "anabranch", + "fast", + "ambitionless", + "moistureless", + "clangous", + "heartener", + "garniture", + "eyesore", + "sauerkraut", + "safely", + "smaragd", + "conicalness", + "spatial", + "counterchanged", + "fossane", + "inclaudent", + "neuron", + "thak", + "worriment", + "arthrodynia", + "a-", + "zygodactylic", + "oftenness", + "birthwort", + "sublapsarianism", + "prick", + "hun", + "zenik", + "liberate", + "arsenic", + "gutwort", + "galactophagous", + "exceptioner", + "perpend stone", + "purplewood", + "trapeze", + "coleperch", + "edgingly", + "frenzied", + "extrusive", + "clubbish", + "cisleithan", + "ametropia", + "inquination", + "tralatitiously", + "tuner", + "well-seen", + "theiform", + "gemellipa-rous", + "ultroneous", + "decision", + "taskwork", + "suave", + "forepast", + "malkin", + "ghastliness", + "sonant", + "bashi-bazouk", + "paralogism", + "femme", + "anthropophagic", + "euclidian", + "photozincography", + "pitahaya", + "alatern", + "lovesome", + "wurraluh", + "kinepox", + "methodic", + "commencement", + "coincidently", + "distributary", + "endoblastic", + "experimentarian", + "beastlihead", + "semiquintile", + "paternity", + "elongate", + "gipsy", + "probator", + "enrobe", + "winter-rig", + "interfusion", + "trigintal", + "skimmington", + "impetus", + "sacculus", + "mugger", + "pythagorical", + "cucurbitive", + "exoterics", + "ductile", + "sumpitan", + "apocalyptic", + "interviewer", + "corsak", + "strict", + "redfish", + "carbonatation", + "trimyarian", + "rhopalic", + "convallamarin", + "glaringness", + "lengthiness", + "impersonate", + "boughty", + "malleableize", + "reculement", + "uppertendom", + "bristol", + "wishedly", + "intextured", + "mnemosyne", + "hagiology", + "inopportunely", + "speck", + "sey", + "carnation", + "parasiticide", + "hypocaust", + "valerianate", + "paradoxer", + "broadaxe", + "desquamative", + "urinator", + "buffoonly", + "deconcentrate", + "stunning", + "anchored", + "self-righteousness", + "volatilize", + "doleritic", + "almagest", + "casuarina", + "somniative", + "bloodshedding", + "concrescive", + "affamish", + "imposthume", + "postumous", + "subtilty", + "underthing", + "sorely", + "murder", + "teaseling", + "hydrostat", + "jesuitism", + "communication", + "philosophical", + "implantation", + "exotery", + "preventional", + "galvanize", + "herisson", + "hollowly", + "multiplicative", + "prief", + "dependancy", + "maieutical", + "spouse", + "foundry", + "bruit", + "peirastic", + "diorism", + "consubstantial", + "pinery", + "scripturian", + "mortiferous", + "incorporative", + "unethes", + "ectomere", + "assertive", + "teg", + "base", + "leden", + "profilist", + "externalize", + "emasculate", + "warlockry", + "wealthiness", + "width", + "argumentable", + "contrariously", + "protocol", + "-ish", + "atheroma", + "water ordeal", + "yare", + "demirelievo", + "associative", + "measure", + "deauration", + "misadvertence", + "colophony", + "pipefish", + "reduct", + "trindle", + "gradatory", + "maidenly", + "embodiment", + "zillah", + "delirancy", + "exhaustibility", + "splenius", + "unsad", + "benzonaphthol", + "greco-roman", + "cornbind", + "octagonal", + "thermovoltaic", + "topgallant", + "hegelian", + "obtend", + "cipherer", + "monembryony", + "bandana", + "consistorial", + "spew", + "maleconformation", + "cuteness", + "multiversant", + "pericranial", + "sebiparous", + "-blast", + "apostemate", + "cross-birth", + "tripody", + "deinotherium", + "scincoidian", + "comprobation", + "rown", + "nefand", + "peremptorily", + "vexillar", + "disbend", + "pericarditus", + "bywork", + "knee-crooking", + "dispute", + "ekaluminium", + "tenace", + "mescal", + "overlooker", + "quinquevir", + "pteridologist", + "bitterish", + "columbium", + "dab", + "vicuna", + "radii", + "sote", + "pictura", + "rebound", + "maundy money", + "tappis", + "inquietation", + "handfastly", + "philo-", + "scaffolding", + "tallwood", + "hypethral", + "grinte", + "mebles", + "spongiose", + "suradanni", + "easy-going", + "mykiss", + "apara", + "perspicacity", + "aryanize", + "featherness", + "blunt-witted", + "presumptuously", + "impressionability", + "speckt", + "glockenspiel", + "hoopoo", + "hesperus", + "parting", + "hygienics", + "concluder", + "radiatiform", + "undulant", + "centimetre", + "oysterling", + "photoheliograph", + "propend", + "rubellite", + "incloud", + "anisopetalous", + "clubfist", + "bheesty", + "martyrologe", + "slidegroat", + "levitate", + "entertissued", + "pathos", + "tough-cake", + "urethroscope", + "seraphina", + "apozemical", + "basommatophora", + "dissiliency", + "orectic", + "canard", + "hydramine", + "physically", + "apostemation", + "thewy", + "mushroom", + "youngish", + "spoondrift", + "margaritic", + "drachma", + "lankly", + "underjoin", + "both", + "abirritate", + "ramoon", + "cacogastric", + "montant", + "sea pudding", + "unbeat", + "catechumenist", + "eradicate", + "swingdevil", + "theriaca", + "brand", + "fantasticly", + "epithumetical", + "overlogical", + "convictive", + "binding post", + "diprismatic", + "van", + "sundart", + "pressing", + "aphthoid", + "uncoffle", + "horsefish", + "lapidify", + "connascent", + "ragnarok", + "gunocracy", + "geotropism", + "racemose", + "anecdotic", + "apocrisiary", + "oxyphenic", + "tenuirostral", + "skunkhead", + "accumb", + "xanthorhamnin", + "bluecap", + "dyspepsia", + "unrealize", + "bregma", + "vineyard", + "disquietous", + "buz", + "obscurer", + "tobacco", + "relight", + "sanskrit", + "unstrained", + "glyphography", + "periwinkle", + "notself", + "service", + "synesis", + "bloodwit", + "alternately", + "knap", + "floriferous", + "splendor", + "forspent", + "uncombine", + "eurasian", + "demarch", + "fly-catching", + "catagmatic", + "volyer", + "ablepsy", + "sincere", + "perineum", + "roughsetter", + "geometrician", + "myroxylon", + "choking coil", + "whisking", + "pooh-pooh", + "cleanlily", + "exclusionary", + "girth", + "monomorphic", + "chopboat", + "pyrite", + "acauline", + "pastureless", + "enerve", + "cold-short", + "novennial", + "slazy", + "denay", + "ejaculate", + "inch", + "street", + "hedonist", + "ingeniosity", + "hairdresser", + "sherbet", + "vulturine", + "denudation", + "necessarianism", + "omer", + "corky", + "nymphal", + "contemplance", + "isotrimorphic", + "trophic", + "waldenses", + "square", + "inclemently", + "recenter", + "antecede", + "reorganize", + "mineralist", + "rouse", + "tetanization", + "summerset", + "staminate", + "playtime", + "defense", + "sudorous", + "mentum", + "bittersweet", + "arid", + "deprehension", + "circularly", + "pestilential" +}; +const char *values[] = {"A genus of mosquitoes which are secondary hosts of the malaria parasites, and whose bite is the usual, if not the only, means of infecting human beings with malaria", + "See Nonoclinal", + "A sort of petticoat worn by both sexes in Java and the Malay Archipelago", + "1", + "A muscle which contracts the skin of the forehead into wrinkles", + "Suicide", + "A genus of plants including the cashew tree", + "Full of knots; hard; tough; hence, capable of enduring or resisting much", + "A pustule raised on the surface of the body in variolous and vaccine diseases", + "A tumor developed on, or connected with, a nerve, esp", + "A large rope made of three strands each containing many yarns", + "That jolts; as, a jolty coach", + "The condition of being proterandrous", + "Pertaining to, or designating, an acid obtained from leucin, and called also oxycaproic acid", + "The process of changing into stone; petrification", + "A ludicrous descent from the elevated to the low, in writing or speech; anticlimax", + "The act of pleasing highly; the state of being greatly pleased; delight", + "To tread over or upon", + "Same as Tænioidea", + "Sport; merriment; frolicsome amusement", + "One who, or that which, mixes", + "One who spreads reports or blazes matters abroad", + "A write of elegies", + "One who engages in a conspiracy; a plotter", + "Logicalness", + "A game at cards in which the object is to make fifteen points", + "See Wabble", + "Feigning; simulating; pretending", + "1", + "A modern transliteration of the Hebrew word translated Jehovah in the Bible; -- used by some critics to discriminate the tribal god of the ancient Hebrews from the Christian Jehovah", + "Following the course of the sun; as, solisequious plants", + "1", + "Clustered in grains at intervals; grumous", + "A deposit more or less resembling an inverted stalactite, formed by calcareous water dropping on the floors of caverns; hence, a similar deposit of other material", + "A combining form meaning six; as, sexdigitism; sexennial", + "One who beats a drum", + "See Fakir", + "Formed according to old or obsolete fashion or pattern; adhering to old customs or ideas; as, an old-fashioned dress, girl", + "The class of skin disease developed by the dartrous diathesis", + "1", + "Any of several clumsy, wingless beetles of the genus Eleodes, found in the Pacific States", + "The state or practice of an athlete; the characteristics of an athlete", + "The science of heat", + "1", + "The act of pleading for or supporting; work of advocating; intercession", + "Manhood", + "A cage for confining birds", + "Capable of being reflected, or thrown back; reflexible", + "Contaminated with illegality", + "A kind of empyreumatic oil produced by the combustion of textures of hemp, linen, or cotton in a copper vessel, -- formerly used as a remedial agent", + "The water violet (Hottonia palustris); also, the less showy American plant H", + "1", + "1", + "A rubbing or kneading of the body, especially when performed as a hygienic or remedial measure", + "One who owls; esp", + "Of or pertaining to selenium; derived from, or containing, selenium; specifically, designating those compounds in which the element has a higher valence as contrasted with selenious compounds", + "To exceed in noise; to surpass in noisiness", + "1", + "A cover; a shelter; a protection", + "To lay asleep; to put to sleep; to quiet", + "Same as Underclothes", + "To beg", + "One who oversees; a superintendent; a supervisor; as, an overseer of a mill; specifically, one or certain public officers; as, an overseer of the poor; an overseer of highways", + "The act of inflicting pain on one's self; pain inflicted on one's self", + "The quality or state of being sunny", + "In a manner that forbids alienation; as, rights inalienably vested", + "Having the quality of relaxing; laxative", + "A seller of low-priced or second goods; a hawker", + "A stable keeper", + "A nitrogenous base C10H9N, extracted from coal-tar naphtha, as an oily liquid", + "1", + "One who elopes", + "To victual again", + "Having two successive sets of teeth (deciduous and permanent), one succeeding the other; as, a diphyodont mammal; diphyodont dentition; -- opposed to monophyodont", + "An inflated ball to be kicked in sport, usually made in India rubber, or a bladder incased in Leather", + "Winter", + "Suspicion", + "An artist's model of wood or other material", + "A boy that drives or guides a team in plowing; a young rustic", + "A breed of large dogs noted for strength and courage", + "To strip of, or as of, a plume, or plumes; to deprive of decoration; to dishonor; to degrade", + "A subsequent disseizin committed by one of lands which the disseizee had before recovered of the same disseizor; a writ founded on such subsequent disseizin, now abolished", + "A combination of alloxanic acid and a base or base or positive radical", + "Rigged like a catboat", + "1", + "Relating to the alcoholometer or alcoholometry", + "Good against apoplexy", + "Not prudent; wanting in prudence or discretion; indiscreet; injudicious; not attentive to consequence; improper", + "Same as Scagliola", + "An instrument for determining the strength or purity of wine by measuring its density", + "Forbearing", + "A large, strong rope, reaching from the foremast head to the bowsprit, to support the mast", + "1", + "A French game of cards, played by a banker and punters", + "See Calceolaria", + "1", + "1", + "1", + "The office, or the term of office, of a questor", + "Weak in intellect; foolish; empty-headed", + "See Salite", + "Erroneously", + "A salt of nitric acid", + "1", + "1", + "In a temporizing or yielding manner", + "Transmitted or transmissible from father to son, or from age, by oral communication; traditional", + "Of or pertaining to diastole", + "In a traditional manner", + "A general name for the several coloring matters, red, green, yellow, etc", + "Pertaining to electrolysis; as, electrolytic action", + "See Typhoon", + "Encompassing on all sides; circumfused; investing", + "To divest of reality; to make uncertain", + "Spurious; fictitious; sham; -- a cant term originally applied to counterfeit coin, and hence denoting anything counterfeit", + "One of the numerous small spinning tubes on the spinnerets of spiders", + "1", + "Belonging to, or used in, a country; native; domestic; popular; common; -- said especially of the written characters employed by the common people of ancient Egypt, in distinction from the hieroglyphics", + "The state or quality of being solemn; solemnity; impressiveness; gravity; as, the solemnness of public worship", + "1", + "One who brews; one whose occupation is to prepare malt liquors", + "A punch-cutting tool, or machine for deepening and enlarging the spaces between the teeth of a worn saw", + "To thunder", + "Of or pertaining to Noctiluca", + "The state or quality of being copious; abudance; plenty; also, diffuseness in style", + "Considered as pure entity; abstracted from all circumstances", + "Lying on the bottom of a river or other water; sunk", + "Pertaining to fustet or fisetin", + "1", + "Same as Columbate", + "That may be challenged", + "An animal that yelps, or makes a yelping noise", + "A ray of light from the moon", + "One who prosecutes or sues another", + "A starfish, or brittle star", + "(a) One of an active and hardy body of soldiers in the French service, originally Arabs, but now composed of Frenchmen who wear the Arab dress", + "Given to light, familiar talk; talkative", + "A Roman copper coin, equal to one third of the as", + "1", + "Having the front of the head, or the skull, nearly perpendicular, not retreating backwards above the jaws; -- opposed to Ant: prognathous", + "1", + "Of or pertaining to ivy", + "An order of ganoid fishes, including the modern gar pikes and many allied fossil forms", + "Like or related to man; human", + "1", + "Pertaining to, or designating, an acid called also disulphuric acid) obtained by distillation of certain sulphates, as a colorless, thick, oily liquid, H2S2O7 resembling sulphuric acid", + "A religious war against infidels or Mohammedan heretics; also, any bitter war or crusade for a principle or belief", + "1", + "Charlatanry", + "Scattered", + "Possessing or exhibiting valor; brave; courageous; valiant; intrepid", + "The doctrines taught, or system of principles maintained, by the Manichæans", + "A local division of the people in ancient Athens; a clan; a tribe", + "An obsequious; a flatterer", + "1", + "A grappling; close fight or embrace", + "A peculiar species of poetry, for the most part devoted to moral and religious topics, and commonly satirical, -- often used by the troubadours of the Middle Ages", + "1", + "A foot consisting of three long syllables and one short syllable", + "Lying outside the visible spectrum at its red end; -- said of rays less refrangible than the extreme red rays", + "A drawing nigh; approach", + "1", + "1", + "1", + "Inharmonious; unmusical; discordant", + "The quality or state of being trashy", + "Narrow; strait", + "A native phosphate of yttrium occurring in yellowish-brown tetragonal crystals", + "Suitable for exportation; as, exportable products", + "An official who gives the orders on a railroad as to the running of trains and their right of way", + "Hopelessly insensible or stupid; not easily aroused or excited; dull; impassive; foolish", + "Going about much, needlessly or without purpose", + "One of a large class of organic substances resembling the aldehydes, obtained by the distillation of certain salts of organic acids and consisting of carbonyl (CO) united with two hydrocarbon radicals", + "Suffering or sensibility in a single organ or function", + "Very minutely downy", + "Instability; unstableness", + "To put an equal value upon; to put (something) on a par with another thing", + "Slender rods or tubes of colored glass fused together and embedded in clear glass; -- used for paperweights and other small articles", + "The state of being abstracted; abstract character", + "Celluloid", + "1", + "A copier; a transcriber; an imitator; a plagiarist", + "A genus of small, slender fishes, remarkable for their habit of living as commensals in other animals", + "(a) A second growth of grass; aftergrass", + "To think wrongly", + "1", + "The moor cock, or red grouse", + "Of or pertaining to hydraulics, or to fluids in motion; conveying, or acting by, water; as, an hydraulic clock, crane, or dock", + "Having the nasal bones contiguous", + "Pertaining to, or in the manner of, an apotghem; sententious; pithy", + "Filthy; worthless", + "A termination denoting state, condition, quality, character, totality, as in manhood, childhood, knighthood, brotherhood", + "To cause to cease to be pagan; to divest of pagan character", + "Tending to moisten", + "A reader of lectures or discourses; a lecturer", + "The quality of being revocable; as, the revocability of a law", + "Of or pertaining to drinking or tippling", + "1", + "A movement or phase of post-impressionism (which see, below)", + "Same as Nutlet", + "A superficial affection of the skin, characterized by irregular patches of thin scales which are shed in branlike particles", + "name of contempt for a flatterer of persons high in social or official life; as, the Jenkins employed by a newspaper", + "Having horns turning backward and then forward, like those of a ram", + "1", + "Beneath the stars or heavens; terrestrial", + "The act of substituting one person in the place of another", + "Of, from, in, or pertaining to, the belly or the intestines; as, alvine discharges; alvine concretions", + "In a desirable manner", + "To instruct in the gospel; to preach the gospel to; to convert to Christianity; as, to evangelize the world", + "To express deep sorrow for, as by wailing; to lament; to wail over", + "Having a valence of one; univalent", + ", adv", + "1", + "See Army organization, above", + "In an inexorable manner; inflexibly", + "A central or retired work within any other work", + "Any jager gull; especially, the Megalestris skua; -- called also boatswain", + "Viciously proud", + "A servant who has charge of the dairy; a dairymaid", + "In the United States, a commission appointed by the President, consisting of three members, not more than two of whom may be adherents of the same party, which has the control, through examinations, of appointments and promotions in the classified civil service", + "A spermoblast", + "1", + "The state of being exposed, laid open, or unprotected; as, an exposedness to sin or temptation", + "1", + "See Axis cylinder, under Axis", + "Having the mandibles large and palmate, or branched somewhat like the antlers of a stag; -- said of certain beetles", + "Epidermal; connected with the skin or the bark", + "To impregnate with aroma; to render aromatic; to give a spicy scent or taste to; to perfume", + "In a romping manner", + "Capable or deserving of being kicked", + "To surpass in canting", + "(a) The act or process of making the grooves in a rifled cannon or gun barrel", + "See Intendant, n", + "1", + "Not adequate; unequal to the purpose; insufficient; deficient; as, inadequate resources, power, conceptions, representations, etc", + "That does not cloy", + "1", + "A tasteless, yellow, crystalline substance, obtained from the gentian; -- called also gentianin", + "In a brainsick manner", + "See Galiot", + "The state of being blear-eyed", + "1", + "Capable of resuscitation; as, resuscitable plants", + "1", + "Relating to, or produced by, flesh or animal food; as, creatic nausea", + "Arising; coming to light", + "A signal call on a trumpet or cornet for entrance or exit on the stage", + "A drink consisting of eggs beaten up with sugar, milk, and (usually) wine or spirits", + "See Miocene", + "To pour out", + "Having a valence of four; capable of combining with, being replaced by, or compared with, four monad atoms; tetravalent; -- said of certain atoms and radicals; thus, carbon and silicon are quadrivalent elements", + "Combining forms designating fire or heat; specifically (Chem", + "Seven times as much; multiplied by seven; sevenfold", + "1", + "To give heart to; to fill with courage; to embolden", + "Disobedience", + "Forcible manipulation of a dislocated, stiff, or painful joint", + "Having a channel or groove, as in the leafstalks of most palms", + "To make pale", + "A genus of gigantic trees, chiefly Brazilian, of the order Myrtaceæ, having woody capsules opening by an apical lid", + "To annual, as orders", + "A handle for a pen", + "Pertaining to the Adriatic Sea; as, Adrian billows", + "Like a bed; -- applied to several processes on the inner side of the sphenoid bone", + "Bearing inscription; of the character or nature of an inscription", + "A pistol shot", + "A fruit like that of the rose, consisting of a cup formed of the calyx tube and receptacle, and containing achenes", + "Somewhat pellucid; nearly pellucid", + "(a) Producing anthers, as plants", + "1", + "1", + "An extinct division of Hydrozoa which includes the graptolities", + "Of or relating to beeches", + "A shovel with a turned-up edge, for frit, sand, etc", + "Palmate, with the divisions separated but little more than halfway to the common center", + "One of the mobile male reproductive bodies in the antheridia of cryptogams", + "The quality or state of being uncreated", + "One of a body of Dutch Anabaptists who separated from the Mennonites in the sixteenth century; -- so called from a district in North Holland denominated Waterland", + "A parasite inhabiting the blood; esp", + "To cringe", + "Surgically", + "1", + "A renewing, or making whole again", + "1", + "Lying down, with their heads in opposite directions; -- said of animals borne in a coat of arms", + "Of, pertaining to, or derived from, cacodyl", + "Same as Garish, Garishly, Garishness", + "A kind of brass", + "A skipping or leaping about in frolic; a hop; a sportive prank", + "The refuse whale blubber, used as a manure, and in the manufacture of Prussian blue", + "Controversy", + "Brittle; crisp", + "Any one of various species of small carnivores belonging to the genus Putorius, as the ermine and ferret", + "To place on a throne; hence, to induct into office, as a bishop", + "1", + "The horny covering of the bill of birds", + "A combining form used in anatomy to indicate connection with, or relation to, the tibia; as, tibiotarsus, tibiofibular", + "Mysterious", + "One of the steps in which a gable wall is often finished in place of a continuous slope; -- also called crowstep", + "A letter ( Note: This form identifies it with the Latin F, though in sound it is said to have been nearer V", + "Having a head like a pig; hence, figuratively: stupidity obstinate; perverse; stubborn", + "An outer garment made of the skins of birds or mammals, worn by Eskimos, etc", + "Formed with different shapes; having various forms; variform", + "Intent", + "1", + "1", + "A figure or trope by which a part of a thing is put for the whole (as, fifty sail for fifty ships), or the whole for a part (as, the smiling year for spring), the species for the genus (as, cutthroat for assassin), the genus for the species (as, a creature for a man), the name of the material for the thing made, etc", + "1", + "Of or pertaining to Ahura-Mazda, or Ormuzd, the beneficent deity in the Zoroastrian dualistic system; hence, Zoroastrian", + "Such as can be lifted", + "(a) The administration of ether to produce insensibility", + "Like, or pertaining to, the family Cyathophyllidæ", + "An instrument from tetanizing a muscle by irritating its nerve by successive mechanical shocks", + "1", + "1", + "The study or knowledge of antiquities, esp", + "1", + "A ferruginous hydrate of alumina", + "1", + "Same as Hollo", + "An instrument for recording the respiratory movements, as the sphygmograph does those of the pulse", + "Of or pertaining to, or designating, an acid derived from meconic acid", + "The Australian Eucalyptus Sideroxylon, used largely by carpenters and shipbuilders; -- called also ironwood", + "Oxidizable", + "1", + "That which accompanies; something that attends as a circumstance, or which is added to give greater completeness to the principal thing, or by way of ornament, or for the sake of symmetry", + "An extinct gigantic quaternary mammal, allied to the ant-eaters and sloths", + "1", + "1", + "Capable of being penetrated, entered, or pierced", + "See Cimmerian", + "The state or quality of being horrible; dreadfulness; hideousness", + "The act of supplementing", + "Capable of neutralizing, or of combining with, several molecules of a monacid base; having several hydrogen atoms capable of being replaced by basic radicals; -- said of certain acids; as, sulphuric acid is polybasic", + "A rival; a corrival", + "One who establishes", + "An inferior kind of olive oil, brought from Gallipoli, in Italy", + "A female procurer, or pander", + "A zinc-carbon cell in which the zinc (amalgamated) is surrounded by dilute sulphuric acid, and the carbon by nitric acid or a chromic acid mixture, the two plates being separated by a porous cup", + "The wheatear", + "1", + "To explain; to unfold", + "Pertaining to an acroterium; as, ornaments", + "The 20th letter (U, u) of the Greek alphabet, a vowel having originally the sound of oo as in room, becoming before the 4th century b", + "Having the quality of mitigating or curing fever", + "See Lieutenancy", + "The basal part of the labium of insects", + "A talebearer", + "1", + "Having the axis of an ovule or seed straight from the hilum and chalaza to the orifice or the micropyle; atropous", + "1", + "A collection of pus or purulent matter in any tissue or organ of the body, the result of a morbid process", + "1", + "1", + "Excision of a varicosity", + "Deceiving, or tending of deceive; fallacious; illusive; as, illusory promises or hopes", + "1", + "One who undermines", + "1", + "Penetrating rays readily deflected by a magnetic or electric field, emitted by radioactive substances, as radium", + "To transform, as the venous blood, into arterial blood by exposure to oxygen in the lungs; to make arterial", + "1", + "The act or process of being Russified", + "Compressing, or having power or tendency to compress; as, a compressive force", + "p", + "A stammerer", + "Maine; -- a nickname", + "A telelectric apparatus for producing images of visible objects at a distance", + "1", + "A condiment made from the sap of the bitter cassava (Manihot utilissima) deprived of its poisonous qualities, concentrated by boiling, and flavored with aromatics", + "In a numerical manner; in numbers; with respect to number, or sameness in number; as, a thing is numerically the same, or numerically different", + "One who abstractedly wanders or gazes about, as if moonstruck", + "Somewhat blue; as, bluish veins", + "A genus of fishes, common on the Atlantic coast, including the yellow or goldon mackerel", + "On this side of the Atlantic Ocean; -- used of the eastern or the western side, according to the standpoint of the writer", + "Serving to unite or consolidate; having the quality of consolidating or making firm", + "Sea-green in color", + "The least quantity assignable, admissible, or possible, in a given case; hence, a thing of small consequence; -- opposed to Ant: maximum", + "Breadthwise", + "1", + "Infantile; childish", + "One of the bones or cartilages of the carpus; esp", + "1", + "A disproportionately rapid growth of the upper surface of dorsiventral organs, such as leaves, through the stimulus of exposure to light", + "Weariness; fatigue", + "Inconsequence", + "Dewy; bedewed", + "Baboonish behavior", + "Of or pertaining to diarrhea; like diarrhea", + "A genus of edentates, covered with large, hard, triangular scales, with sharp edges that overlap each other like tiles on a roof", + "A genus of freeswimming oceanic tunicates, allied to Salpa, and having alternate generations", + "A small room from which the magazine of a naval vessel is lighted, being separated from the magazine by heavy glass windows", + "Same as Supracretaceous", + "1", + "A large genus of plants having monopetalous flowers, including the common bindweed (C", + "That can be detached", + "The fine, hard parts of wheat, rounded by the attrition of the millstones, -- used in cookery", + "1", + "Of or pertaining to pyæmia; of the nature of pyæmia", + "Linsey-woolsey", + "Containing several tungsten atoms or radicals; as, polytungstic acid", + "1", + "Constituting an object of expectation; contingent", + "All-knowing", + "A sportsman; esp", + "An instrument for ascertaining the quantity of a fluid evaporated in a given time; an atmometer", + "Giving pleasure or satisfaction; causing agreeable emotion; agreeable; delightful; as, a pleasing prospect; pleasing manners", + "To clip with scissors", + "Want of affability or sociability; reticence", + "A substance used to prevent polarization, as upon the negative plate of a voltaic battery", + "An acrid, poisonous, crystallizable substance, obtained from some species of anemone", + "1", + "A genus of huge, carnivorous, dinosaurian reptiles from the Cretaceous formation of the United States", + "The act or blazoning; blazoning; emblazonment", + "To feel or grope in the dark", + "A small sloop-rigged racing yacht carrying about six hundred square feet of sail, distinguished from a knockabout by having a short bowsprit", + "Irreverent", + "The quality of being sapient; wisdom; sageness; knowledge", + "A petty fellow; an inferior agent; an underling", + "1", + "A variety of limestone, consisting of small round grains, resembling the roe of a fish", + "To inform, fill, or animate, excessively", + "Having the form or appearance of three petals; appearing as if furnished with three petals", + "Not to become; to suit ill; not to befit or be adapted to", + "Having much intellectual power", + "Bearing within; laden; burdened; pregnant", + "Making or doing throughly; efficient; effectual", + "Causing vomiting; emetic; vomitive", + "The state of being health", + "Denoting a part; as, a partitive genitive", + "Same as Feticide", + "Not risible", + "A name designating the East Indies, also the West Indies", + "The state or quality of being crustaceous or having a crustlike shell", + "The state of being freckled", + "Speaking in a riddle or riddles; containing a riddle", + "To talk a weak and silly manner, like one whose faculties are decayed; to prate; to prattle", + "1", + "The doctrine or belief that all men will be saved, or made happy, in the future state", + "The act or process of changing to a polymeric form; the condition resulting from such change", + "A genus of small Arctic fishes", + "1", + "To make torpid; to deprive of sensation or sensibility; to stupefy; as, a hand or foot benumbed by cold", + "One who distributes alms, esp", + "Wonderfully; wondrously", + "The sheatfish; -- called also waller", + "A doorpost", + "Quinine", + "Of or pertaining to the Triandria; having three distinct and equal stamens in the same flower", + "Of or pertaining to Linnæus, the celebrated Swedish botanist", + "The quality or state of being greasy, oiliness; unctuousness; grossness", + "The knave of trumps at gleek", + "A kind of stout pasteboard", + "Of or pertaining to dipsomania", + "The larva of a small tortricid moth which eats the leaves of the cranberry, so that the vines look as if burned; -- called also cranberry worm", + "The powdered leaves of the baobab tree, used by the Africans to mix in their soup, as the southern negroes use powdered sassafras", + "1", + "See Mestee", + "Bringing to a close; decisive; conclusive", + "The act or practice of regrating", + "To frighten; to strike with sudden fear; to alarm", + "1", + "With scoffing or insulting language", + "Innocence", + "A word used as the designation or appellation of a creature or thing, existing in fact or in thought; a substantive", + "One who proceeds", + "The large edible nutlike seed of a tall tropical American tree (Caryocar nuciferum) of the same natural order with the tea plant; -- also called butternut", + "(a) Situated under a horny part or layer", + "The second letter of the Greek alphabet, B, b", + "Usefulness or agency, as means to an end; instrumentality", + "A channel or furrow", + "To stain; to paint; to daub", + "1", + "Absence or lack of intelligence; unwisdom; ignorance", + "1", + "The state or conduct of a cicisbeo", + "Full of, or prone to, revenge; vindictive; malicious; revenging; wreaking revenge", + "See Fiend, and cf", + "One who enjoins", + "divination practiced with water in a basin, by throwing three stones into it, and invoking the demon whose aid was sought", + "Expression of the passions; the science of the signs by which human passions are indicated", + "One to whom anything is allotted; one to whom an allotment is made", + "A storehouse for wares, or goods", + "1", + "Same as Midden", + "To apply wrongly; to use for a wrong purpose; as, to misapply a name or title; to misapply public money", + "Loathsome; disgusting; hateful", + "A plane parallel to two of the crystalline axes", + "Ripe for weeping; ready to weep", + "See Paleographer, Paleographic, etc", + "Pithy; robust", + "1", + "Composed of, or having, two parts of each kind", + "An extensive suborder of marine Bryozoa, mostly with calcareous shells", + "1", + "In plate armor, a suspended plate in from of the thigh", + "To take out from a tomb; a disinter", + "Quality of being dispensable", + "Formed like a scroll; contained in a scroll; adorned with scrolls; as, scrolled work", + "1", + "Of or pertaining to a region of the earth's surface including all of temperate and arctic North America and Greenland", + "To lay waste; to ravage; to desolate", + "Same as Arrack", + "A female Moor; a Moorish woman", + "Addicted to drinking", + "Conjectural; able to conjecture", + "A floral ornament, common in Greek and other ancient architecture; -- often called the honeysuckle ornament", + "Ranterism", + "To higgle in trading", + "Titanic iron", + "Clasping a support; as, amplectant tendrils", + "To deprive of, or free from, nitrogen", + "To inhabit", + "To shade; to darken; to cloud", + "See Willful, Willfully, and Willfulness", + "A turban", + "To shut up or out; to preclude; to stop; to prevent; to bar; to exclude", + "To crystallize again", + "Reproduction by fission; fissiparism", + "(a) A small domesticated cyprinoid fish (Carassius auratus); -- so named from its color", + "Capable of being, or liable to be, deprived; liable to be deposed", + "Pertaining to ulmin; designating an acid obtained from ulmin", + "1", + "Belonging to a library", + "That which prevents; -- incorrectly used instead of preventive", + "Situated above, or on the anterior side of, the scapula", + "Honeydew", + "The state of being a son, or of bearing the relation of a son; filiation", + "Destitute of ships", + "1", + "Placable", + "See Dakotas", + "One who drubs", + "An exclamation expressing exultation or surprise, etc", + "In a stealthy manner", + "1", + "1", + "(Dredging, Pile Driving, etc", + "A treatise on the art of testing, as in assaying metals, etc", + "1", + "1", + "Educated by one's own efforts, without instruction, or without pecuniary assistance from others", + "1", + "Great", + "Color blindness; achromatopsy", + "Three-flowered; having or bearing three flowers; as, a triflorous peduncle", + "A species of Ranunculus (R", + "Green; not withered", + "In a fluttering manner", + "Cutting of the teeth; dentition", + "A trisulphide", + "To destroy the organic structure or regular system of (a government, a society, a party, etc", + "Themselves; -- used reflexively", + "(a) Formerly, the taking and feeding of other men's cattle in the king's forests", + "An examination into one's own state, conduct, and motives, particularly in regard to religious feelings and duties", + "The state or quality of being desidiose, or indolent", + "A large copper vessel used for hot amalgamation", + "1", + "Of or pertaining to eulogy; characterized by eulogy; bestowing praise; panegyrical; commendatory; laudatory; as, eulogistic speech or discourse", + "One who is given to meditation", + "1", + "To separate (a pair)", + "Warehouse for storing goods", + "A rolling of a body; a wallowing", + "An ingot", + "Somewhat steep", + "One skilled in the theory or construction of machines; a machinist", + "1", + "A color of a delicate purple, violet, or lilac", + "To express deep grief for by moaning; to express sorrow for; to lament; to bewail; to pity or sympathize with", + "1", + "See Pight", + "To exceed in building, or in durability of building", + "The inner germ layer; endoderm", + "A toothpick", + "Of, pertaining to, or discovered by, Napier, or Naper", + "A yellow or greenish yellow gas, first prepared by Davy, evolved from potassium chlorate and hydrochloric acid", + "Anterior in age to the lowest rocks which contain organic remains", + "To take profit of; to make profitable", + "1", + "One of the two bodies or nuclei (called male and female pronuclei) which unite to form the first segmentation nucleus of an impregnated ovum", + "An arcograph", + "Pertaining to, or designating, certain acids analogous to the phosphonic acids, but containing two hydrocarbon radicals, and derived from the secondary phosphines by oxidation", + "The fifth power of a number; as, a is the sursolid of a, or 32 that of 2", + "A lepidop terous insect with partially transparent wings, of the family Ægeriadæ, of which the currant and peach-tree borers are examples", + "1", + "1", + "A poetic foot of three short syllables, as, mèlì\'dcs", + "The fruit of several species of bramble (Rubus); also, the plant itself", + "A modification of the magic lantern, used esp", + "The American golden-eye", + "1", + "Of the nature of, or containing, actinolite", + "(a) A rope used to retain the bars of the capstan in their sockets while men are turning it", + "Same as Glycerin", + "A political writer", + "1", + "One of the Teleosti", + "Heroic", + "Sizelike; viscous; glutinous; as, sizy blood", + "1", + "A magistrate; one of a body of five magistrates chosen by the people of ancient Sparta", + "Like an ament, or bearing aments; amentaceous", + "A servant at a hotel or elsewhere, who cleans and blacks the boots and shoes", + "Porphyritic", + "An apothecary", + "See Chlorometry", + "The quality or state of being barbarous; barbarity; barbarism", + "1", + "1", + "Furnished with, or formed like, a small turret or turrets; somewhat turreted", + "To join mutually; to unite", + "Of or pertaining to ethnology", + "An impure, massive, flintlike quartz or hornstone, of a dull color", + "1", + "Carried forward; advanced", + "An under-garment, worn by women, usually covering the neck, shoulders, and breast", + "A short, distorted hand; also, the deformity of having such a hand", + "The state or quality of being manageable; manageableness", + "Not bearing fruit; not fructiferous", + "To cure, as herrings, by salting and smoking them; to bloat", + "A meeting; a clash; a collision", + "One who confuses things", + "See Sergeant, Sergeantcy, etc", + "The teasel", + "Foreseeing; prescient", + "In a tight manner; closely; nearly", + "Man worship", + "1", + "The principal grounds of a college or school, between the buildings or within the main inclosure; as, the college campus", + "Deserving a curse; execrable; hateful; detestable; abominable", + "A buccaneer; an American pirate", + "imp", + "State of being aloof", + "Plump; chubby; short and stuffy; as a fubsy sofa", + "A suborder of Dipnoi, including the Ceratodus", + "Goutweed", + "The permanent court of arbitration created by the International Convention for the Pacific Settle of International Disputes", + "The common title of honor in Persia, prefixed to the surname of an individual", + "Following in a train or succession", + "To legitimate", + ", & i", + "Having a paddle wheel at the stern; as, a stern-wheel steamer", + "A bitter principle extracted as a white crystalline substance from the calumba root", + "To withdraw, or take out, as a rope from a block, thimble, or the like", + "An integrating anemometer", + "1", + "The office of an executor", + "False optics", + "1", + "To convert into wood or into a ligneous substance", + "One of the Monandria", + "(a) Any periwinkle", + "Foreknowledge of a disease; prognosis", + "Resembling a rush; weak", + "1", + "Pertaining to consultation; having the privilege or right of conference", + "Hazarding; pertaining to the act of one who wagers", + "A weevil or curculio of various species, as the corn weevil", + "imp", + "To steal in small quantities, or articles of small value; to practice petty theft", + "1", + "Pertaining to a workman, or to work in stone, metal, wood etc", + "The reading of the leveling staff in its unchanged position when the leveling instrument has been taken to a new position; a sight directed backwards to a station previously occupied", + "The ahu or Asiatic gazelle", + "An opinionist", + "A forked tool used by clothiers in dressing cloth", + "Pertaining to, or in relation with, both dermal and neural structures; as, the dermoneural spines or dorsal fin rays of fishes", + "Pertaining to, or derived from, vanilla or vanillin; resembling vanillin; specifically, designating an alcohol and an acid respectively, vanillin being the intermediate aldehyde", + "The act of typifying, or representing by a figure", + "An ascidian", + "See Waive", + "A tribe or confederacy of North American Indians, including the Muskogees, Seminoles, Uchees, and other subordinate tribes", + "Any marsupial of the genus Perameles, which includes numerous species found in Australia", + "The quality or state of being beggarly; meanness", + "One whose ambition it is to gain admiration by showy dress; a coxcomb; an inferior dandy", + "A maker of tapestry; an upholsterer", + "See Meliphagous", + "1", + "1", + "Combined with hydrogen sulphide", + "The anterior of the body of an animal, as of a cephalopod; the thorax of an arthropod", + "A division of beetles, including a large number of species, in which the antennæ are very long", + "Not wormed; not having had the worm, or lytta, under the tongue cut out; -- said of a dog", + "Forming or producing parts of the skeleton", + "1", + "In France, interest payable by government on indebtedness; the bonds, shares, stocks, etc", + "1", + "The state of being without a father", + "Irascible; choleric", + "To sprinkle or cover with powder; to powder", + "A fossil bivalve mollusk of the genus Hippurites, of many species, having a conical, cup-shaped under valve, with a flattish upper valve or lid", + "The quality or state of being preferable; preferableness", + "A variety of Sorghum vulgare, having a joined stem, like maize, rising to the height of eight or ten feet, and bearing its seeds on a panicle with long branches, of which brooms are made", + "Belonging, or relating, to the secondary or reptilian age, or the era between the Paleozoic and Cenozoic", + "The act or process of repairing lesions made by ulcers, especially by a plastic operation", + "To fill with breath; to puff up", + "Having two eyes", + "The jerboa", + "The ruddy duck", + "The office or jurisdiction of a warden", + "One who wooes; one who courts or solicits in love; a suitor", + "of Dwell", + "1", + "One who ameliorates", + "A native or inhabitant of Corfu, an island in the Mediterranean Sea", + "To issue a second time", + "A remedy for all diseases; a panacea", + "A mineral occurring in hexagonal crystals, also massive, generally of a yellow color, containing silica, alumina, lime, soda, and carbon dioxide", + "Covered with clay; miry", + "To putrefy", + "1", + "A footprint; a track or vestige", + "Spurge laurel", + "To appear, or to appear to be; to have a show or semblance; to present an appearance; to look; to strike one's apprehension or fancy as being; to be taken as", + "The act of domiciliating; permanent residence; inhabitancy", + "One who rejects, discards, or dismisses; as, a cashierer of monarchs", + "A photographic picture copied from the negative on glass; a photographic transparency", + "1", + "One who stipulates, contracts, or covenants", + "Powdered fledspar, kaolin, or quartz, used in the manufacture of porcelain", + "Same as Garish, Garishly, Garishness", + "To aggravate; to make worse; to lie heavy on", + "One of the Unguiculata", + "Inability to utter articulate sounds, due either to paralysis of the larynx or to that form of aphasia, called motor, or ataxis, aphasia, due to loss of control of the muscles of speech", + "pl", + "A play among children, in which a cherry, hung so as to bob against the mouth, is to be caught with the teeth", + "Fond of the arts", + "A flatterer", + "Of, pertaining to, or containing, platinum; -- used specifically to designate those compounds in which the element has a lower valence, as contrasted with the platinic compounds; as, platinous chloride (PtCl2)", + "Low land overflowed, or covered wholly or partially with water, but producing sedge, coarse grasses, or other aquatic plants; boggy land; moor; marsh", + "The search for the traces of anything", + "A man engaged in rafting", + "Either one of the Bears", + "1", + "A dagger or short sword used by the Malays, commonly having a serpentine blade", + "The middle part of the day; noon", + "The quality of being impatient; want of endurance of pain, suffering, opposition, or delay; eagerness for change, or for something expected; restlessness; chafing of spirit; fretfulness; passion; as, the impatience of a child or an invalid", + "1", + "Any process in which advantage is taken of the fact that prepared bitumen is rendered insoluble by exposure to light, as in photolithography", + "1", + "One who alliterates", + "A white crystalline nitrogenous substance (C2H4N4); -- called also dicyandiamide", + "1", + "The act of sending abroad", + "An extinct genus of marine reptiles; -- so named from their short, biconcave vertebræ, resembling those of fishes", + "Having spots or blotches; maculate", + "A treatise upon, or description of, the intestinal glands", + "Repletive", + "Exceedingly", + "The quality or state of being severe", + "A trifoliate plant used as a national emblem by the Irish", + "See Manioc", + "Pertaining to the sacculus and utriculus of the ear", + "Existing at the same time; contemporaneous", + "1", + "A poisonous amido acid, C6H13NO2, separated by Brieger from decaying horseflesh", + "1", + "Any wading bird of the genus Ardea and allied genera, of the family Ardeidæ", + "Stripped of hair; scant of hair; bald", + "1", + "The wych-elm; -- so called because its leaves are like those of the hazel", + "Facial neuralgia", + "Pertaining to, or resembling, a labyrinth; intricate; labyrinthian", + "1", + "In a logical manner; as, to argue logically", + "1", + "United closely; confederated; chemically united", + "A systematic view of all branches of human knowledge; a work of universal information", + "Having a hilt; -- used in composition; as, basket-hilted, cross-hilted", + "1", + "a", + "See Dinoceras", + "A whirling blast or wind", + "1", + "See Gynæceum", + "Pertaining to, or designating, a monobasic acid, HPO3, analogous to nitric acid, and, by heating phosphoric acid, obtained as a crystalline substance, commonly called glacial phosphoric acid", + "A seat in churches near the altar, to which offenders formerly fled for sanctuary", + "1", + "1", + "Pertaining to gems; of the nature of gems; resembling gems", + "One who, or that which, tempers; specifically, a machine in which lime, cement, stone, etc", + "1", + "A room for cookery; a kitchen; the galley or caboose of a ship", + "See Hemoglobin", + "See Antiorgastic", + "Girded with a sword", + "1", + "A narrow space between the foot of the rampart and the scarp of the ditch, serving to receive the earth that may crumble off or be washed down, and prevent its falling into the ditch", + "A stick used in playing the game of trapball; hence, fig", + "It is not clear; -- a verdict given by a jury when a matter is to be deferred to another day of trial", + "Similar", + "Lofty with pride; haughty; dictatorial; overbearing; arrogant; as, a supercilious officer; asupercilious air; supercilious behavior", + "Long-continued contraction of the pupil of the eye", + "Vengeance", + "Of or pertaining to the family Scincidæ, or skinks", + "Soothing", + "Of or pertaining to Mount Sinai; given or made at Mount Sinai; as, the Sinaitic law", + "a strong breeze", + "The person who binds himself, or gives his bond to another", + "The prominence at the posterior extremity of a bird's body, which supports the feathers of the tail; the rump; -- sometimes called pope's nose", + "To hang", + "A board with sixty-four squares of alternate color, used for playing checkers or draughts", + "Hook-billed; having the upper mandible longer than the lower", + "The feast of All Saints; Hallowmas", + "Of or pertaining to the masseter", + "Lasting or continuing through life", + "The albumin from white of eggs; egg albumin; -- in distinction from serum albumin", + "The integument of the under surface of the bell, or disk-shaped body, of a jellyfish", + "Same as Backsheesh", + "Fine clay or ocher made up into balls, used for marking sheep", + "1", + "1", + "One who wails or laments", + "Capable of being revealed", + "Same as Habitant, 2", + "A measure by the ell; formerly a sworn officer in England, whose duty was to inspect act measure woolen cloth, and fix upon it a seal", + "The aspect of planets when separated the fifth part of the zodiac, or 72º", + "(a) Any one of several species of Asiatic singing birds belonging to the genera Ianthia and Larvivora", + "Pertaining to, or consisting of, excrement; of the nature of excrement", + "A kind of black coat for evening dress made without skirts; -- so named after a fashionable country club at Tuxedo Park, New York", + "A sweet cake or cooky containing aromatic seeds, as caraway", + "The state of being lax; laxity", + "Free from sickness", + "Wine, --chiefly used in Pharmacy in the name of solutions of some medicinal substance in wine; as: vina medicata, medicated wines; vinum opii, wine of opium", + "In a busy manner", + "1", + "Wearing a surplice", + "1", + "Subtile", + "A West African pie (Ptilostomus Senegalensis)", + "Beginning; commencement; incipient state", + "A substance resembling inulin, found in the unripe bulbs of the dahila", + "A precious stone, probably a carnelian, one of which was set in Aaron's breastplate", + "1", + "A genus of plants (Uvularia) with yellowish bell-shaped flowers", + "Bitten by a tarantula; affected with tarantism", + "Hydroxy benzene", + "Not directed; aimless", + "Gum arabic", + "In hieroglyphics", + "Of or pertaining to the Oligochæta", + "Incredible", + "A rare element of the light platinum group, found associated with platinum ores, and isolated as a hard, brittle steel-gray metal which is very infusible", + "A weapon, used in discharging arrows, formed by placing a bow crosswise on a stock", + "False writing; forgery", + "One who has been excommunicated", + "Species; kind", + "An instrument for measuring the specific gravity of fluids; a form hydrometer", + "Impossible", + "Argillaceous schist or slate; clay slate", + "A worshiper of the sun", + "Any one of many species of venomous aquatic snakes of the family Hydrophidæ, having a flattened tail and living entirely in the sea, especially in the warmer parts of the Indian and Pacific Oceans", + "Vast woodland plains of South America", + "A name of several shrubs with white berries; as, the Symphoricarpus racemosus of the Northern United States, and the Chiococca racemosa of Florida and tropical America", + "The act of partitioning", + "Taking from one to another; metaphorical", + "To open the seam or seams of; to rip; to cut; to cut open", + "1", + "Six times ten; fifty-nine and one more; threescore", + "A genus of fishes comprising the hairtails", + "1", + "To begin; to initiate", + "A whitish soluble powder used as a developer in photography", + "Partially amplexicaul; embracing the stem half round, as a leaf", + "1", + "Pertaining to the art of engraving by the action of light", + "1", + "With egotism", + "To nurse; to rear; to bring up", + "Pitiless; cruel", + "(a) A western American hackberry (Celtis reticulata), having light- colored bark", + "The French middle class, particularly such as are concerned in, or dependent on, trade", + "Having power to foretell future events; prophetic; fatiloquent; as, the fatidical oak", + "One of the Greeks of Constantinople who after the Turkish conquest became powerful in clerical and other offices under Turkish patronage", + "Relating to, or containing, rubble", + "The quality or state of being pertinacious; obstinacy; perseverance; persistency", + "1", + "Thriftily; prudently", + "In a merry manner; with mirth; with gayety and laughter; jovially", + "An old game at cards", + "A form of sentence among the ancient Syracusans by which they banished for five years a citizen suspected of having dangerous influence or ambition", + "Of the nature of recompense; serving to recompense", + "Existence at the same time; contemporaneousness", + "1", + "A New Zealand starling (Heteralocha acutirostris), remarkable for the great difference in the form and length of the bill in the two sexes, that of the male being sharp and straight, that of the female much longer and strongly curved", + "Having a false heart; deceitful; treacherous", + "The doctrines or philosophical system of the peripatetics", + "Same as Bunyon", + "1", + "To hurt; to harm; to injure", + "A certain Oriental system of theosophy", + "Of or pertaining to the Ratitæ", + "Capable of being plowed; arable", + "One who eats, or subsists on, fish", + "See Calumba", + "1", + "A change-speed gear in which the gears are changed by sliding endwise", + "The quality or condition of being unkinged; abolition of monarchy", + "A curve generated by a point in the plane of a circle when the circle is rolled along a straight line, keeping always in the same plane", + "The operation of introducing a catheter", + "One of a species of aromatic oils, resembling carvacrol", + "1", + "1", + "Bearing, or having, a leaf or leaves; having folds; -- used in combination; as, a four-leaved clover; a two-leaved gate; long- leaved", + "See Sleave, untwisted thread", + "1", + "The rust of any metal, esp", + "The state or symptoms characteristic of asystole", + "1", + "1", + "Small hard yellowish aggregations found in the Caucasus region, and containing various yeasts and bacteria", + "A sensitized paper coated with gelatin impregnated with bromide of silver, used in contact printing and in enlarging", + "(a) The barn owl", + "1", + "A missile weapon of offense, slender, pointed, and usually feathered and barbed, to be shot from a bow", + "Apparent death, or suspended animation; the condition which results from interruption of respiration, as in suffocation or drowning, or the inhalation of irrespirable gases", + "One who does not belong, or refuses to belong, to a trades union", + "Beset; put in peril", + "One who shampoos", + "To deprive of the rudder, as a ship", + "Same as Sheeling", + "That which characterizes a blockhead; stupidity", + "The quality of being charitable; the exercise of charity", + "The quality or condition of being scarce; smallness of quantity in proportion to the wants or demands; deficiency; lack of plenty; short supply; penury; as, a scarcity of grain; a great scarcity of beauties", + "A South American ruminant (Auchenia llama), allied to the camels, but much smaller and without a hump", + "To fail to serve; to do injury or mischief to; to damage; to hurt; to harm", + "In an ingenuous manner; openly; fairly; candidly; artlessly", + "A bright brown polished calfskin binding of books, stained with a conventional treelike design", + "1", + "See Collodion", + "A charitable gift or contribution; a gift; an alms; a dole; a largess; a sportula", + "imp", + "Disk-shaped; discoid", + "Having no fold", + "One who burls or dresses cloth", + "See Paduasoy", + "A genus including many species of small mites", + "In a tumultuary manner", + "A species of sand grouse (Syrrghaptes Pallasii) found in Asia and rarely in southern Europe", + "To slide back; to fall away; esp", + "A rough gale of wind", + "The lumpfish", + "Excellently", + "One who, or that which, signifies", + "A storehouse or repository for grain, esp", + "Crystallized litharge, obtained by fusion in the form of fine yellow scales", + "1", + "Cutting off; abstracting", + "1", + "Capable of being husbanded, or managed with economy", + "Shipwreck; ruin", + "(a) The commander of a trireme", + "A suffix signifying something written, a writing; also, a writer; as autograph, crystograph, telegraph, photograph", + "See Crawl", + "1", + "1", + "1", + "A combining form meaning a grain, granular, granular cartilage, cartilaginous; as, the chondrocranium, the cartilaginous skull of the lower vertebrates and of embryos", + "Worldliness", + "An experimenter", + "1", + "Situated behind, or posterior to, the mouth", + "A prefix used adjectively and adverbially in the sense of amiss, wrong, ill, wrongly, unsuitably; as, misdeed, mislead, mischief, miscreant", + "The condition of being heterostyled", + "See Roynish", + "To lose utterly", + "1", + "A glassy volcanic rock of a grayish color and pearly luster, often having a spherulitic concretionary structure due to the curved cracks produced by contraction in cooling", + "To venture; to dare", + "1", + "To recall what is done by shouting", + "1", + "The quality of being chargeable or expensive", + "1", + "Epithelioid", + "Too high", + "The act of driving a chariot or a carriage", + "Same as Yokefellow", + "Like, or pertaining to, the goby, or the genus Gobius", + "The state or quality of being canonical; agreement with the canon", + "1", + "The act of inditing", + "To take leave with the customary civilities; to bow or courtesy", + "Designed to facilitate discharges of phlegm or mucus from mouth or nostrils", + "A somersault made with the assistance of the hands placed upon the ground", + "One who talks in the same strain or on the same subject until weariness is produced", + "1", + "One who bets; a better", + "", + "Pertaining to, or according to the rules or principles of, geometry; determined by geometry; as, a geometrical solution of a problem", + "A native or inhabitant of north or South Carolina", + "A small inflammatory tumor; a pustule", + "Yoga, or its practice", + "Growing; advancing from childhood to maturity", + "A glimpse, glance, or gleam", + "1", + "1", + "imp", + "A wandering; state of being in error", + "Operose", + "Of or pertaining to the olecranon", + "According to the rules or laws of geometry", + "The internal shell, or pen, of cephalopods like the squids", + "Of, pertaining to, or derived from, palladium; -- used specifically to designate those compounds in which the element has a higher valence as contrasted with palladious compounds", + "1", + "1", + "See Tetrodont", + "A leguminous shrub of southern Europe, with trifoliate leaves (Anagyris foetida)", + "To render democratic", + "The care of a foster child; the charge of nursing", + "A singer; esp", + "One who puts in jeopardy", + "The native name of certain South American monkeys of the genus Ateles, esp", + "(a) The second stomach of ruminants, in which folds of the mucous membrane form hexagonal cells; -- also called the honeycomb stomach", + "Of or pertaining to owls; owl-like", + "In Continental armies, especially in the French army, a woman accompanying a regiment, who sells provisions and liquor to the soldiers; a female sutler", + "A rope stitched to the edges of a sail to strengthen the sail", + "The quality or character of an amateur", + "Secrecy; privacy", + "1", + "Of, pertaining to, or obtained from, carbon; as, carbonic oxide", + "A harlot; a drab; a hussy", + "1", + "See Navew", + "1", + "A genus of wingless thysanurous insects having an elongated flattened body, covered with shining scales and terminated by seven unequal bristles", + "See Snicker", + "A hybrid rose produced in 1817, by a French gardener, Noisette, of Charleston, South Carolina, from the China rose and the musk rose", + "To impregnate or treat with camphor", + "A piece of meat, especially of veal or mutton, cut for broiling", + "The pox, or venereal disease; a chronic, specific, infectious disease, usually communicated by sexual intercourse or by hereditary transmission, and occurring in three stages known as primary, secondary, and tertiary syphilis", + "The quality or state of being primary, or first in time, in act, or in intention", + "Annihilative", + "Impracticable; not feasible", + "Rent for a farm; a farm; also, an abode; a place of residence; as, he let his land to ferm", + "1", + "A disavowing or disowning", + "Of or pertaining to Chaldes", + "A combining form signifying: (a) Small, little, trivial, slight; as, microcosm, microscope", + "Made of wood; consisting of wood; of the nature of, or resembling, wood; woody", + "A tumor consisting of muscular tissue", + "To sprinkle; to moisten by sprinkling; as, to sparge paper", + "Situated in front; opposite; hence, opposing; adverse; antagonistic", + "A division of swimming birds including those that have totipalmate feet", + "Belonging to, or in the manner of, a catachresis; wrested from its natural sense or form; forced; far-fatched", + "A fluid vaccine obtained by growing a bacterium (Bacterium anthracis) in beef broth", + "1", + "One whose trade it is to make or sell gloves", + "Having more than one nucleolus", + "See Paradoxure", + "Fuming", + "Like a beast", + "Destitute of any distinguishing quality; without character or force", + "A large, extinct bird (Didus ineptus), formerly inhabiting the Island of Mauritius", + "The receptacle for honey in a honeybee", + "One who, or that which, whirls", + "The state or period of infancy", + "1", + "Of or pertaining to a hare; like or characteristic of, a hare", + "A stand, or case, for pen and ink", + "To bewilder", + "Acicular rutile occurring in reticulated forms imbedded in quartz", + "Leaning toward, in a moral sense; inclined; disposed; prone; as, women propense to holiness", + "1", + "The commission or rank of a cornet", + "To surround as with a guard", + "One who deals toys", + "A blood relation", + "The act of taking vengeance; revenge", + "1", + "The water cure; a mode of treating diseases by the copious and frequent use of pure water, both internally and externally", + "Exhibiting or producing two colors, as substances which in the color test may change red litmus to blue and blue litmus to red", + "The outer vestment worn by the priest in saying Mass, consisting, in the Roman Catholic Church, of a broad, flat, back piece, and a narrower front piece, the two connected over the shoulders only", + "An instrument for drawing curved lines", + "The natural history zoöphytes", + "In a vain manner; in vain", + "Incapable of being disturbed or disconcerted; as, imperturbable gravity", + "A composition for two performers, whether vocal or instrumental", + "(a) The bellows fish", + "Immature", + "A wooden hut or humble cot, esp", + "To deposit again", + "Blusteringly; arrogantly", + "The quality or character of a sectarian; devotion to the interests of a party; excess of partisan or denominational zeal; adherence to a separate church organization", + "Capable of being damaged, or injured; damageable", + "A Celtic monument, commonly known as a dolmen", + "Sphenethmoid", + "Expressing, or expressed, in more words than are necessary; characterized by periphrase; circumlocutory", + "See Calipee", + "To convert into, or add to, a forest", + "Threatening or denouncing punishment; as, comminatory terms", + "Sciatic", + "A dry, cold, violent, northerly wind of the Adriatic", + "(a) The act of beating the woods, bushes, etc", + "To reckon below what is right or proper; to underrate", + "(a) Of a pertaining to vinegar; producing vinegar; producing vinegar; as, acetic fermentation", + "Same as Trimeter", + "Here and there; everywhere; as, this word occurs passim in the poem", + "See Palestric", + "1", + "One of a body of believers in the early church who denied the independent preëxistent personality of Christ, and who, accordingly, held that the Father suffered in the Son; a monarchian", + ",", + "One who whitens, or whose occupation is to whiten, by bleaching", + "An animal which produces tallow", + "A wasting away from want of nourishment; diminution in bulk or slow emaciation of the body or of any part", + "Fond of woman", + "1", + "A tub lashed to a vessel's deck and containing salted provisions for daily use; -- called also harness tub", + "The formation situated between the Permian and Lias, and so named by the Germans, because consisting of three series of strata, which are called in German the Bunter sandstein, Muschelkalk, and Keuper", + "1", + "Any one of numerous species of bright-colored singing birds belonging to Tanagra, Piranga, and allied genera", + "See Mauve aniline, under Mauve", + "- (with, together", + "A name for several aroid plants (Colocasia antiquorum, var", + "1", + "Of or pertaining to atmology", + "One who believes in reprobation", + "1", + "See Docket", + "1", + "imp", + "1", + "The act of depriving or divesting of flesh; excarnification; -- opposed to incarnation", + "To assume again or anew; to resume", + "1", + "To walk round about", + "To decoct or prepare for food in hot liquid; to boil; as, to seethe flesh", + "Of or pertaining to tuition", + "In a famous manner; in a distinguished degree; greatly; splendidly", + "Of or pertaining to obits, or days when obits are celebrated; as, obitual days", + "A deposit of superficial loam, sand, gravel, stones, etc", + "(a) A boxing match or prize fight marked rather by heavy hitting than skill", + "Of or pertaining to the Cimbri", + "Of or pertaining to Bentham or Benthamism", + "Description of the sea; the science that treats of the sea", + "Sesquitertian", + "1", + "Agnus Dei", + "A part remote from the center; outer edge; border; -- usually in the plural; as, the outskirts of a town", + "1", + "The act, method, or process of laying a groundwork or foundation; hence, elementary instruction; the act or process of applying a ground, as of color, to wall paper, cotton cloth, etc", + "The teachings of the Talmud, or adherence to them", + "One who, or that which, sweeps, or cleans by sweeping; a sweep; as, a carpet sweeper", + "Perception of everything", + "1", + "1", + "Intervention; interposition", + "By way of assumption", + "A certificate given to one who prosecutes a felon to conviction, exempting him from certain parish and ward offices", + "Contractibility", + "To spurn; to despise", + "Want of comity; incivility; rudeness", + "1", + "The act of making foul; pollution", + "Opinionated", + "1", + "The state or condition of being questionable", + "1", + "See Nicker nut", + "Same as Homoeomeria", + "Of or Pertaining to æsthetics; versed in æsthetics; as, æsthetic studies, emotions, ideas, persons, etc", + "See Fury, 3", + "Oratorical", + "Same as Branlin, fish and worm", + "A flourish made with the pen at the end of a signature", + "1", + "The stickleback", + "The office of an archon", + "An order of ganoid fishes including among living species the bichir (Polypterus)", + "The theory, held by Euhemerus, that the gods of mythology were but deified mortals, and their deeds only the amplification in imagination of human acts", + "1", + "1", + "Molestation", + "The European yellow-hammer", + "One who disparages or dishonors; one who vilifies or disgraces", + "Rankling in, or swelling, the heart", + "Of or pertaining to hydrometallurgy; involving the use of liquid reagents in the treatment or reduction of ores", + "Producing diarrhea, or a purging", + "Having the same signification", + "Of or pertaining to metagenesis", + "(a) Designating the splenial bone", + "To practice auscultation; to examine by auscultation", + "Companionable; sociable", + "1", + "Same as Paxwax", + "Pertaining to, or derived from, an acid intermediate between glutaric and aconitic acids", + "Having the odor of rose water; hence, affectedly nice or delicate; sentimental", + "A burst of sunlight", + "Canary seed, hemp, millet or other small seeds used for feeding caged birds", + "Having a form intermediate between elliptic and lanceolate", + "Having no tenants; unoccupied; as, a tenantless mansion", + "Weak", + "1", + "1", + "See Cracker", + "obs", + "A transverse commissure in the anterior part of the third ventricle of the brain; the anterior cerebral commissure", + "One who is governed by, or acts from, prudential motives", + "The care and support of orphans", + "Passing through several distinct larval forms; -- having several distinct kinds of young", + "Amount; sum; quantity; extent", + "1", + "Compensation for the injury done by slaying a kinsman", + "The group of Arachnida which includes the mites and ticks", + "One who treats diseases of the mind", + "1", + "The afterbirth or secundines of a beast", + "Of or pertaining to twigs; consisting of twigs; producing twigs", + "See Ayle", + "Spangled with ice", + "A writer of verses; especially, a writer of commonplace poetry; a poetaster; a rhymer; -- used humorously or in contempt", + "An abode or a haunt of owls", + "Any of several large groupers of warm seas, esp", + "A genus of plants (herbs, shrubs, or trees), some species of which have large, showy flowers", + "Same as Tiddledywinks", + "Same as Anthodium", + "Rhonchial", + "1", + "(a) (Mil", + "One who pastures cattle, and rears them for market", + "See Karyokinesis", + "A native chief in Hindostan; a headman", + "The fat of a deer", + "Ultimate; final", + "Having being or existence; existing; being; occurring now; taking place", + "Inconclusive", + "The betel nut", + "1", + "Of or pertaining to a monarch, or to monarchy", + "Causing horror; frightful", + "See the Note under Meteorite", + "A verbal imitation of a musical sound, as of the note of a lark or a horn", + "Showing want of respect; disrespectful", + "A kind of lace of silk or thread", + "Interstratified", + "Plaited strips or bark, cane, straw, etc", + "Pertaining to, or manifested by, cough", + "1", + "1", + "Pertaining to, or inhabiting, a fen; abounding in fens; swampy; boggy", + "The state or quality of being crisp", + "The condition or occupation of a sutler", + "The ladybird", + "Steel containing a high percentage of carbon; high-carbon steel", + "An instrument for comparing magnetic forces, esp", + "Pertaining to, having the nature of, or making, isocheims; as, an isocheimal line; an isocheimal chart", + "See Ichthyosauria", + "A genus of flowering plants, of many species, mostly climbers, having feathery styles, which greatly enlarge in the fruit; -- called also virgin's bower", + "Admitting of being resolved; resolvable; as, bodies resoluble by fire", + "1", + "That is to be or come hereafter; that will exist at any time after the present; as, the next moment is future, to the present", + "imp", + "One who, or that which, skulks", + "Want of faith; distrust", + "1", + "Clammy", + "The act, process or method of determining the amount and kind of sugar present in sirup, molasses, and the like, especially by the employment of polarizing apparatus", + "1", + "A foot covering of any kind", + "See Whelked", + "1", + "Of or pertaining to a septum or septa, as of a coral or a shell", + "A South American tinamou (Rhynchotus rufescens); -- called also perdiz grande, and rufous tinamou", + "A curious colubriform snake of the genus Xyphorhynchus, from Madagascar", + "Certainly; surely; truly; verily; -- originally an oath", + "Of or pertaining to melodrama; like or suitable to a melodrama; unnatural in situation or action", + "One's native land; the native land of one's fathers or ancestors", + "A white crystalline, sugary substance obtained from an African caotchouc", + "A large and handsome American moth (Hyperchiria Io), having a large, bright-colored spot on each hind wing, resembling the spots on the tail of a peacock", + "A tropical plant (Cajanus indicus) and its edible seed, a kind of pulse; -- so called from Angola in Western Africa", + "1", + "1", + "Same as Symmetrian", + "Capable of being defined, limited, or explained; determinable; describable by definition; ascertainable; as, definable limits; definable distinctions or regulations; definable words", + "In a consubstantial manner; with identity of substance or nature", + "The state of being definite; determinateness; precision; certainty", + "To ret or rot by the process called dewretting", + "1", + "Once in two years", + "A person who makes his (or her) first appearance before the public", + "1", + "Previous administration", + "1", + "A name given to palms of several genera and species growing in the West Indies and the Southern United States", + "(a) Same as Zygosperm", + "The swamp hickory (Carya amara)", + "The seed of the cotton plant", + "A division of Mammalia including those that have a placenta, or all the orders above the marsupials", + "To hire, as a ship, for the transportation of goods or freight", + "1", + "Cold; very cold; frozen", + "Reduction from a better to a worse state; as, disimprovement of the earth", + "In a frolicsome manner; with mirth and gayety", + "Agency in common; joint agency or agent", + "A leper", + "The gavial", + "A follower of (Joannes) Duns Scotus, the Franciscan scholastic (d", + "A fine wide wooled fabric much used for women's dresses", + "1", + "A South American aquatic bird; the horned screamer or kamichi (Palamedea cornuta)", + "1", + "Any one of numerous small injurious hemipterous insects of the genus Aleyrodes, allied to scale insects", + "A division of Coleoptera, having heteromerous tarsi", + "1", + "A contrivance for exhibiting and measuring the refraction of light", + "A telescope of low power, having a large field of view, used for finding comets", + "See Aggroupment", + "To make heavy; to increase", + "Having the radicle of the embryo sheathed by the cotyledon, through which the embryo bursts in germination, as in many monocotyledonous plants", + "See Ratable", + "The act, art, or practice of speaking in such a manner that the voice appears to come, not from the person speaking, but from some other source, as from the opposite side of the room, from the cellar, etc", + "Not redeemable; that can not be redeemed; not payable in gold or silver, as a bond; -- used especially of such government notes, issued as currency, as are not convertible into coin at the pleasure of the holder", + "Having unequal valves, as the shell of an oyster", + "1", + "Ligneous", + "Resembling a worm in form or motions; vermicular; as, the vermiform process of the cerebellum", + "Enchanting", + "1", + "The metamorphosis of other organs into pistils", + "Without dimensions; marking dimensions or the limits", + "Same as Monandrous", + "Without a point or pointed process; blunt", + "Having the head uncovered; as, a bareheaded girl", + "To chirp, as a young bird", + "Act of revealing", + "1", + "Of, pertaining to, or resembling, the Corybantes or their rites; frantic; frenzied; as, a corybantic dance", + "Having seven pistils", + "Pertaining to, or composed of, deutoplasm", + "The hawthorn", + "1", + "The quality or state of being southerly; direction toward the south", + "1", + "See Conine", + "A large South American monkey (Lagothrix Humboldtii), with prehensile tail", + "The quality or state of being voluntary; spontaneousness; specifically, the quality or state of being free in the exercise of one's will", + "A particular form of Vishnu, or of Krishna, whose chief idol and worship are at Puri, in Orissa", + "A hollow water-cooled iron casting in the upper part of the archway in which the dam stands", + "Half conscious; imperfectly conscious", + "See Okra", + "The quality of being impolitic; inexpedience; unsuitableness to the end proposed; bads policy; as, the impolicy of fraud", + "A medicine which destroys intestinal worms; a worm killer", + "A gastromomer", + "1", + "A stable crystalline compound obtained by the decomposition of hemoglobin", + "Resplendent; brilliant", + "A son; -- used in compound names, to indicate paternity, esp", + "One who makes a bargain, or contracts with another; esp", + "1", + "To masticate; to chew; to eat", + "1", + "To incorporate again", + "To happen to", + "(a) Recovery of strength after sickness", + "To take a counter proof of, or a copy in reverse, by taking an impression directly from the face of an original", + "1", + "See Slyness", + "A triacid alcohol, related to glycerin, and obtained from certain styryl derivatives as a yellow, gummy, amorphous substance; - - called also phenyl glycerin", + "Pertaining to the exordium of a discourse: introductory", + "Red in color", + "A piece of metal in the form of a coin, struck with a device, and intended to preserve the remembrance of a notable event or an illustrious person, or to serve as a reward", + "See Pinaster", + "Full of grudge; envious", + "One who applies himself to laryngology", + "A beach lying along the sea", + "One who, or that which, vanquishes", + "A cuneiform, or arrow-headed, character", + "Able; strong; valiant; redoubtable; as, a doughty hero", + "1", + "Misgovernment; misconduct; misbehavior", + "Belief in the coming of the Mahdi; fanatical devotion to the cause of the Mahdi or a pretender to that title", + "India", + "To surpass in juggling", + "A liquid terpene obtained from oil of thyme", + "A prefix", + "Any species of marine bivalve shells belonging to the family Solenidæ", + "To intoxicate and ship (a person) as a sailor while in this condition", + "To yell; to yowl", + "1", + "1", + "A preparation for desserts, etc", + "One who has the charge, direction, or management of some public business; a superintendent; as, an intendant of marine; an intendant of finance", + "pl", + "A division of birds including the true pigeons", + "1", + "A state of being dismayed; dejection of courage; dispiritedness", + "A pot used for stewing", + "Like a sot; doltish; very foolish; drunken", + "An umbelliferous herb (Meum Athamanticum) having finely divided leaves, common in Europe; -- called also baldmoney, mew, and bearwort", + "Government by ecclesiastics; a hierarchy", + "A monomaniac", + "Not governable; not capable of being governed, ruled, or restrained; licentious; wild; unbridled; as, ungovernable passions", + "Want of congruence; incongruity", + "Rubbish", + "Light and quick in motion; moving with ease and celerity; lively; swift", + "The quality of being conscionable; reasonableness", + "A peculiar and complicated system of versification, borrowed by the early Italian poets from the Troubadours", + "Act of digladiating", + "A misplacing or error in the order of time; an error in chronology by which events are misplaced in regard to each other, esp", + "A tool or instrument of steel, or of iron with a steel edge or blade, for felling trees, chopping and splitting wood, hewing timber, etc", + "Epidermal", + "Feeding on human flesh; cannibal", + "an instrument for measuring the intensity of light; a photometer", + "The quality or state of being smart", + "imp", + "To point out as with the finger", + "The state of being streamy; a trailing", + "Devouring knives; swallowing, or pretending to swallow, knives; -- applied to persons who have swallowed, or have seemed to swallow, knives with impunity", + "Serving to purge; tending to cleanse or purify", + "Hollowness; concavity", + "A want of niceness; indelicacy; impropriety", + "To frame wrongly", + "1", + "A very large vulture (Gypaëtus barbatus), which inhabits the mountains of Southern Europe, Asia, and Northern Africa", + "1", + "1", + "Evangel", + "Suicidal", + "A place where animals are slaughtered for their hides and tallow", + "To confound; to terrify; to amaze", + "A short cope, or an inferier kind of cope", + "The act, process, or art, of graving or carving; engraving", + "A pool; a plash", + "The act of supposing; also, that which is supposed; supposition; opinion", + "A bout; a thrust; a venew", + "One of an order of fresh-water Bryozoa, in which the tentacles are on a lophophore, shaped like a horseshoe", + "An edentate mammal, of the genus Orycteropus, somewhat resembling a pig, common in some parts of Southern Africa", + "One of the dog days", + "1", + "To swallow or eat greedily; to devour; hence, to swallow up", + "1", + "A kind of thin translucent paper with a glossy finish", + "Since", + "Any one of numerous species of small, conical fossil shells found in Paleozoic rocks", + "See Felt, n", + "Quality or state of being sequacious; sequaciousness", + "A dovecote; a pigeon house", + "Held to service as attached to the soil; -- said of feudal serfs", + "A general sketch or outline of a subject; a synopsis; an epitome", + "1", + "See Lucern, the plant", + "1", + "Having the property of pleomorphism", + "The state of being inviolate", + "Of or pertaining to Rheimis, or Reima, in France", + "A combining form indicating connection with, or relation to, the umbilicus, or navel", + "Having the quality of drying up; causing a drying up", + "A hole bored through a tenon nearer to the shoulder than the holes through the cheeks are to the edge or abutment against which the shoulder is to rest, so that a pin or bolt, when driven into it, will draw these parts together", + "A weight used in the East, varying according to the locality; in Turkey, the greater batman is about 157 pounds, the lesser only a fourth of this; at Aleppo and Smyrna, the batman is 17 pounds", + "To impregnate", + "Tending to illuminate or illustrate; throwing light; illustrative", + "On either side of the axis of the skeleton", + "Having the power of digesting or ripening; digestive", + "A distemper in hawks", + "A neck or narrow slip of land by which two continents are connected, or by which a peninsula is united to the mainland; as, the Isthmus of Panama; the Isthmus of Suez, etc", + "Having made journeys; having gained knowledge or experience by traveling; hence, knowing; experienced", + "A little devil; a devilet", + "Unparalleled", + "1", + "The fruit of Trapa natans and Trapa bicornis, Old World water plants bearing edible nutlike fruits armed with several hard and sharp points; also, the plant itself; -- called also water caltrop", + "Forming again; having the quality of renewing form; reformatory", + "Sulphide of silver; -- also called vitreous silver, or silver glance", + "Any right, privilege, or possession to which a person is entitled by birth, such as an estate descendible by law to an heir, or civil liberty under a free constitution; esp", + "The quality or state of being perfunctory", + "A person devoted to luxury and pleasure; a voluptuary", + "1", + "That which embellishes or adorns; that which adds grace or beauty; embellishment; decoration; adornment", + "A division of nematoid worms, including the hairworms or hair eels (Gordius and Mermis)", + "Cleavers", + "In an achromatic manner", + "1", + "The third day of the week, following Monday and preceding Wednesday", + "the preterit of Eat", + "To render more violent or bitter; to irriate; to exasperate; to imbitter, as passions or disease", + "Of or pertaining to Ulric Zwingli (1481-1531), the reformer of German Switzerland, who maintained that in the Lord's Supper the true body of Christ is present by the contemplation of faith but not in essence or reality, and that the sacrament is a memorial without mystical elements", + "1", + "Any one of the thicker and denser of the deep fasciæ which cover, invest, and the terminations and attachments of, many muscles", + "A collection of names and terms; a dictionary; specif", + "1", + "To survive; to outlive", + "One who, or that which, fortifies, strengthens, supports, or upholds", + "1", + "Having many strings", + "1", + "Formic aldehyde, regarded as a methylene derivative", + "A papist", + "A feme sole trader", + "In a universal manner; without exception; as, God's laws are universally binding on his creatures", + "See Culrage", + "Consisting of two; pertaining to dualism or duality", + "In a neutral manner; without taking part with either side; indifferently", + "Proper to be examined in a court of justice", + "To trace up or out", + "A peculiar strong soup or broth, made in Scotland", + "Want of prevalence", + "Handily; readily; dexterously; advantageously", + "That method of reproduction in which the successive generations are alike, the offspring, either animal or plant, running through the same cycle of existence as the parent; gamogenesis; -- opposed to heterogenesis", + "Clad with armor", + "A microscopic form of life; an animal or vegetable organism microscopic size", + "Relating to bacterioscopy; as, a bacterioscopic examination", + "Having six sides and six angles; six-sided", + "The quality or state of being sententious", + "of Leap", + "Separately; distinctly; apart from others; individually", + "period of night; nighttime", + "1", + "A poisonous mushroom (Amanita muscaria, syn", + "Of or pertaining to, or used by, both ears", + "The acid amide of mucic acid, obtained as a white crystalline substance", + "The formation of leucocytes", + "A trifle", + "Of or pertaining to a manubrium; shaped like a manubrium; handlelike", + "1", + "An aphetized form of a word", + "1", + "Want of confidence or trust; suspicion; distrust", + "The science of extinct animals, a branch of paleontology", + "Having nine petals, or flower leaves", + "The skunk", + "1", + "Mediation", + "The act of resuscitating, or state of being resuscitated", + "Like, or appropriate to, a sermon; grave and didactic", + "Any one of a group of lizards of the Gecko tribe, having the toes broad, and furnished with a groove in which the claws can be concealed", + "To pierce; to thrill", + "Epic", + "Lying hid; concealed", + "1", + "To convert again into flesh", + "Any siphonophore which has an air sac for a float, as the Physalia", + "Inclination or readiness to fight; quarrelsomeness", + "Somewhat pyriform", + "Generatuon by means of ova", + "A ship's masthead", + "Ambagious", + "1", + "The act of plundering, despoiling, or snatching away", + "Living upon the exterior of another animal; ectozoic; -- said of external parasites", + "1", + "Combined or impregnated with silicon", + "One of a numerous people inhabiting the southwestern part of India", + "In an adulterous manner", + "To please; -- chiefly used impersonally", + "Sent to many persons or places; intended for many, or for a whole order of men; general; circular; as, an encyclical letter of a council, of a bishop, or the pope", + "Resembling Puck; merry; mischievous", + "The colugo", + "Inclosed in a basin", + "In a scurvy manner", + "A crib for storing corn", + "A wiseacre; a person deficient in wisdom; -- so called from Gotham, in Nottinghamshire, England, noted for some pleasant blunders", + "The maioid crabs", + "To jade or tire", + "A cement made in India from sea shells, pulverized and mixed with oil, and spread over a ship's bottom, to prevent the boring of worms", + "Having long and spatulate, or racket-shaped, tail feathers", + "A special breed of the dromedary used for rapid traveling; the swift camel; -- called also herire, and maharik", + "Serving to reward; rewarding", + "Returning, or capable of returning, sound; fitted to resound; resounding; echoing back", + "Anything peculiar to a foreign language or people; a foreign idiom or custom", + "Defensive armor for the thighs", + "One who, or that which, refines", + "The use of a bicycle; the act or practice of riding a bicycle", + "In an anonymous manner; without a name", + "An optical effect, sometimes seen on the ocean, but more frequently in deserts, due to total reflection of light at the surface common to two strata of air differently heated", + "Away from the axis or central line; eccentric", + "A complex derivative of cyanogen, regarded as an acid, and known chiefly in its salts; -- called also hydromellonic acid", + "Not having redress; such as can not be redressed; irremediable", + "Same as Hoiden", + "An aerie", + "Sticky and foul; muddy; filthy; dirty", + "1", + "An extinct order of ganoid fishes", + "See Immersible", + "A branch of a plumularian hydroid specially modified in structure for the protection of the gonothecæ", + "1", + "By compulsion; by force", + "1", + "To delight one's self; to indulge in feasting; to revel", + "A famous diamond, surrendered to the British crown on the annexation of the Punjab", + "See Furtherence", + "1", + "1", + "The act or process of metallizing", + "The act of promulgating; publication; open declaration; as, the promulgation of the gospel", + "The feat of the archangel Michael, a church festival, celebrated on the 29th of September", + "Everlasting", + "1", + "The fine, soft fiber of the bromeliaceous plant Bromelia sylvestris", + "To make sober", + "The quality or state of being wan; a sallow, dead, pale color; paleness; pallor; as, the wanness of the cheeks after a fever", + "Making clear; tending to elucidate; as, an elucidative note", + "A wild, bearded sheep inhabiting the Ladakh mountains", + "See Choreus", + "The act or process of rarefying; the state of being rarefied; - - opposed to condensation; as, the rarefaction of air", + "Not looked for; unexpected; as, an unlooked-for event", + "To sell wine or victuals", + "The bar-tailed godwit", + "1", + "1", + "(a) In the United States army, the Corps of Engineers, a corps of officers and enlisted men consisting of one band and three battalions of engineers commanded by a brigadier general, whose title is Chief of Engineers", + "Related to, derived from, or containing, undecyl; specifically, designating that member of the fatty acids which corresponds to undecane, and is obtained as a white crystalline substance, C11H22O2", + "Producing light", + "A haulage system for canal boats, in which an electric locomotive running on a monorail has its adhesion materially increased by the pull of the tow rope on a series of inclined gripping wheels", + "A hippopotamus", + "A hot, acrid, oily liquid, accompanying many alcoholic liquors (as potato whisky, corn whisky, etc", + "The entrails of a deer; the umbles", + "The state or condition of being an albino: abinoism; leucopathy", + "1", + "Serving to palliate; serving to extenuate or mitigate", + "1", + "Hatred of God", + "The anemone; -- so called because formerly supposed to open only when the wind was blowing", + "Organic", + "Ebony", + "The condition of being wet or watery; wateriness", + "1", + "The state of being deprived of anything; the state or condition of being destitute, needy, or without resources; deficiency; lack; extreme poverty; utter want; as, the inundation caused general destitution", + "A little tag", + "The quillback", + "Inability", + "The treatment with faradic or induced currents of electricity for remedial purposes", + "The farthest point of the moon's northing and southing, in its monthly revolution", + "1", + "The use of a word of common or general signification for the name of a particular thing; as, He has gone to town, for, He has gone to London", + "Privation of sense or consciousness, due to a narcotic", + "To unseat", + "Half drunk", + "1", + "The inflicting of retributive punishment; satisfaction taken", + "Counteracting or preventing hydrophobia", + "To follow closely or immediately after", + "One of the special jointed organs situated on the under side, and near the end, of the abdomen of spiders, by means of which they spin their webs", + "A male fish", + "The range or reach of the eye; eyeshot", + "An instrument for measuring the tension or elastic force of gases, steam, etc", + "A certain game at cards in which, if no player wins three of the five tricks possible on any deal, the game is said to be spoiled", + "1", + "Combined action; especially (Med", + "1", + "(a) Having the property of being attracted by an electro-positive body, or a tendency to pass to the positive pole in electrolysis, by the law that opposite electricities attract each other", + "To perform", + "To render invalid; to weaken or lessen the force of; to destroy the authority of; to render of no force or effect; to overthrow; as, to invalidate an agreement or argument", + "Of or pertaining to staurolite; resembling or containing staurolite", + "In relief; pertaining to sculpture in relief, especially of metal; also, pertaining to chasing such as surface ornamentation in metal", + "In a self-reproving way", + "The highest judicial court at Athens", + "One who polls; specifically: (a) One who polls or lops trees", + "1", + "To withstand", + "One who, or that which, dulls", + "The act of indicating by signs; a slight indication", + "Suture of the palate", + "See lst Not", + "A kind of pleasure wagon, uncovered and with seats extended along the sides, designed to carry six or eight persons besides the driver", + "(a) (Gun", + "To recite erroneously", + "A writer of a lexicon", + "Translucent", + "1", + "1", + "Guidance", + "Situated under the nose; as, the subnasal point, or the middle point of the inferior border of the anterior nasal aperture", + "One versed in belleslettres", + "Unyielding; insensible to argument; uncompromising; strict", + "Wheat not bearded", + "(a) Walking on the sole of the foot; pertaining to the plantigrades", + "The speculative part of a science; speculation", + "1", + "To cry or shout; hence, to sell by auction", + "In an adventurous manner; venturesomely; boldly; daringly", + "The art of producing photographs in color", + "1", + "A female saint", + "Producing numerous radicles, or rootlets", + "A small tooth, like that of a saw", + "The wiew or doctrins of the ultramontane party in the Latin Church", + "1", + "A poisonous product formed by pathogenic bacteria, as a toxic proteid or poisonous ptomaine", + "1", + "One of the Annulata", + "Without faith in Christ; unchristian", + "1", + "A tableau in which persons take part; also, specif", + "A soft grass (Pennisetum typhoideum) found in all tropical regions, used as food for men and cattle in Central Africa", + "One who deals incheese", + "To load; to burden", + "One who cringes meanly; a fawner", + "An instrument for determining the time of apparent noon", + "A tuft or clump", + "Having small, deep-set eyes", + "An automobile body with seats and permanent top like a coupé, and with the top projecting over the driver and a projecting front; also, an automobile with such a body", + "Not dying; imperishable; unending; immortal; as, the undying souls of men", + "Full of brakes; abounding with brambles, shrubs, or ferns; rough; thorny", + "1", + "The doctrine of the formation of living beings", + "1", + "Display of force or energy at a distance, or without contact; - - applied to mediumistic phenomena", + "(a) A California boring weevil (Yuccaborus frontalis)", + "1", + "One who values; an appraiser", + "To give courage to; to inspire with courage, spirit, or hope; to raise, or to increase, the confidence of; to animate; enhearten; to incite; to help forward; -- the opposite of discourage", + "The middle of the way or distance; a middle way or course", + "Same as Glaucoma", + "A small, broad-headed nail", + "Volcanic", + "Capable of assuming a molten state; meltable; fusible", + "Furnished with cannon", + "Impregnation by external contact, without intromission", + "(a) Compensation; amends; satisfaction; expiation; as, man bote, a compensation or a man slain", + "1", + "Pertaining to Brabant, an ancient province of the Netherlands", + "A tangent line curve, or surface; specifically, that portion of the straight line tangent to a curve that is between the point of tangency and a given line, the given line being, for example, the axis of abscissas, or a radius of a circle produced", + "A genus of neuropterous insects", + "Pertaining to, or obtained from, the maple; as, aceric acid", + "The state of being stormy; tempestuousness; biosteruousness; impetuousness", + "1", + "Having various colors; changeable in color", + "1", + "A piece of steel sharpened to an acute edge or angle, and resting on a smooth surface, serving as the axis of motion of a pendulum, scale beam, or other piece required to oscillate with the least possible friction", + "Furnished with an arbor; lined with trees", + "Whatever", + "A cake of unleavened bread eaten by the Jews at the feast of the Passover", + "The battle between the frogs and mice; -- a Greek parody on the Iliad, of uncertain authorship", + "To evict; to remove", + "The bone or cartilage of the tarsus, which articulates with the fibula, and corresponds to the calcaneum in man and most mammals", + "Any bird of the genus Junco, which includes several species of North American finches; -- called also snowbird, or blue snowbird", + "To treat or preserve, as wood, by a process resembling kyanizing", + "1", + "The name of several evergreen trees", + "A failure to recognize; absence of recognition", + "One who regards Father, Son, and Spirit as modes of being, and not as persons, thus denying personal distinction in the Trinity", + "imp", + "In a diverging manner", + "The artificial cultivation of oysters", + "Having two thecæ, cells, or compartments", + "Like the moon; variable", + "Belonging to an abbey; as, abbatial rights", + "Bread-gainer; -- a term applied in the Middle Ages to the sword of a hired soldier", + "A sort of moving machine employed in the old pageants", + "The membrane lining the cavities of the heart", + "A species of Macropiper (M", + "Toward death", + "The system of logic and philosophy set forth by Hegel, a German writer (1770-1831)", + "One who watches; one who sits up or continues; a diligent observer; specifically, one who attends upon the sick during the night", + "See Stee", + "To put to inconvenience; to incommode", + "A white, semisolid, spermaceti-like hydrocarbon, C16H34, of the paraffin series, found dissolved as an important ingredient of kerosene, and so called because each molecule has sixteen atoms of carbon; -- called also hexadecane", + "To bore through; to pierce through with a pointed instrument; to make a hole or holes through by boring or piercing; to pierce or penetrate the surface of", + "A Latin preposition and prefix; akin to Gr", + "The act or practice of drining the surface of land", + "1", + "1", + "A univalve mollusk of the genus Haliotis", + "A group or division of ten; esp", + "An agent exciting secretion of milk", + "The sordid friar bird of Australia (Tropidorhynchus sordidus)", + "Eminent in a superior degree; surpassing others in excellence; as, a supereminent divine; the supereminent glory of Christ", + "The clavicle", + "One of several species of pygmy geese, of the genus Nettepus", + "A style of printing calico, paper hangings, etc", + "1", + "A float; a raft", + "(a) Same as Entresol", + "Of or pertaining to zincography; as, zincographic processes", + "A small collection of sheaves set up in the field; a shock; in England, twelve sheaves", + "An ordained minister; a man regularly authorized to peach the gospel, and administer its ordinances; in England usually restricted to a minister of the Established Church", + "The quality of being amenable; amenableness", + "1", + "The menhaden", + "Telegraphy using the radiant energy of electrical (Hertzian) waves; wireless telegraphy; -- the term adopted for use by the Radiotelegraphic Convention of 1912", + "See Sun star, under Sun", + "To make more than human; to purity; to elevate above humanity", + "1", + "One who, or that which, interposes; an interloper, an opponent", + "1", + "To cause to revive", + "See Varvel", + "A printing surface in relief, obtained by photographic means and subsequent manipulations", + "Capable of being deciphered; as, old writings not decipherable", + "The starling", + "1", + "A train of attendants; a procession", + "Contained between lines; written or inserted between lines already written or printed; containing interlineations; as, an interlinear manuscript, translation, etc", + "Pertaining to, caused by, or affected with, cirrhosis; as, cirrhotic degeneration; a cirrhotic liver", + "Capable of being surmised; as, a surmisable result", + "1", + "A rare fluophosphate of glucina, in small white crystals", + "Of or pertaining to a prefect", + "To run hastily; to hurry; to scuttle", + "Skepticism; skeptical philosophy", + "An explosive substance consisting of nitroglycerin absorbed by some inert, porous solid, as infusorial earth, sawdust, etc", + "A necromancer", + "The man at the helm; a steersman", + "See Cæsarism", + "1", + "1", + "Didelphic", + "The private orchestra or band of a prince or of a church", + "A kind of Highland Scotch cap for men, with straight sides and a hollow top sloping to the back, where it is parted and held together by ribbons or strings", + "Fierceness of look; sternness; crabbedness; forbiddingness", + "Same as Hemadrometry", + "In a lacteous manner; after the manner of milk", + "1", + "A binary compound of fluorine with another element or radical", + "An affection of the nervous system or of a nerve", + "1", + "Having no silcver; hence, without money; impecunious", + "State of being vagrant; vagrancy", + "Native zinc oxide; a brittle, translucent mineral, of an orange-red color; -- called also red zinc ore, and red oxide of zinc", + "Showing; exhibiting", + "The breadth of a foot; -- used as a measure", + "The European hake; -- called also herring hake and sea pike", + "1", + "Of or pertaining to medicine, or to medical men", + "1", + "See Parr", + "An amorphous antimonate of lead, produced from the alteration of other ores, as from jamesonite", + "Having, or formed with, a quirk or quirks", + "A genus of grasses, including the common oat (Avena sativa); the oat grasses", + "A varnish, consisting of a solution of shell-lac in alcohol, often colored with gamboge, saffron, or the like; -- used for varnishing metals, papier-maché, and wood", + "1", + "Preventing fermentation or decomposition", + "1", + "A block, or ring, serving as a guide for the running rigging or for any rope", + "1", + "To place in ranks or in order", + "A small American plover (Ægialitis vocifera)", + "To mock; to ridicule", + "1", + "Compulsatory", + "A kind of gambling game consisting in pitching coins to or towards the ceiling of a room so that they shall fall as near as possible to a certain crack in the floor", + "1", + "1", + "The act of making timid or fearful or of deterring by threats; the state of being intimidated; as, the voters were kept from the polls by intimidation", + "Serving to bring clouds or stormy weather", + "Pertaining to Mons Aventinus, one of the seven hills on which Rome stood", + "Any plant of a proposed class or grand division (collectively termed oöphytes or Oöphyta), which have their sexual reproduction accomplished by motile antherozoids acting on oöspheres, either while included in their oögonia or after exclusion", + "Perspicacity", + "The state or quality of being brotherly", + "Situated above a spine or spines; especially, situated above, or on the dorsal side of, the neural spines of the vertebral column, or above, or in front of, the spine of the scapula", + "To draggle; to wet and befoul by draggling; as, to drabble a gown or cloak", + "A sedgelike plant (Cyperus esculentus) producing edible tubers, native about the Mediterranean, now cultivated in many regions; the earth almond", + "An inflammation of the membranes or coats of the eye or of the eyeball", + "Addicted to, or manifesting, egotism", + "Disturbance; perturbation", + "Containing a reference; pointing to something out of itself; as, notes for referential use", + "A California scorpænoid fish (Sebastichthys rhodochloris), having brilliant colors", + "Of or pertaining to Amhara, a division of Abyssinia; as, the Amharic language is closely allied to the Ethiopic", + "See Hockey", + "The junction or connection of vessels, channels, or passages, so that their contents pass from one to the other; union by mouths or ducts; anastomosis; intercommunication; as, inosculation of veins, etc", + "Any spider crab of the genus Maia, or family Maiadæ", + "1", + "1", + "1", + "Of or pertaining to geology, or the science of the earth", + "A water-tight inclosure, as of piles packed with clay, from which the water is pumped to expose the bottom (of a river, etc", + "Same as Joust", + "1", + "1", + "A large mass or avalanche of snow which slips down the side of a mountain, etc", + "A large, spine-tailed lizard (Uromastix spinipes), found in Egypt, Arabia, and Palestine; -- called also dhobb, and dhabb", + "The state of being causeless", + "Ale", + "As much as a pocket will hold; enough to fill a pocket; as, pocketfuls of chestnuts", + "Belonging to the same genus; allied in origin, nature, or action", + "A genus of birds which includes the common hoopoe", + "The science which relates to the formation and development of the embryo in animals and plants; a study of the gradual development of the ovum until it reaches the adult stage", + "See Contradance", + "Downy; fluffy", + "Pertaining to, or designating, an acid of sulphur obtained by leading hydrogen sulphide into a solution of sulphur dioxide; -- so called because it contains five atoms of sulphur", + "See Escheator", + "Capable of being inoculated; capable of communicating disease, or of being communicated, by inoculation", + "See 1st Timber", + "In a floating manner", + "A large chamber built under, or in, the houses of a Pueblo village, used as an assembly room in religious rites or as a men's dormitory", + "Golden; gilded", + "Work perfomed with a tool", + "A plectognath fish of the genera Diodon, Tetrodon, and allied genera", + "A Turkish chief who supports a mounted militia bearing the same name", + "Farfetched", + "The sea mew", + "A tube, filled with combustible matter, for exploding a shell, etc", + "The quality or state of being verecund; modesty", + "Same as Gamashes", + "Roving; wandering; discursive; as, a rambling fellow, talk, or building", + "(a) A tribe of parasitic copepod Crustacea including a large number of species that are parasites of fishes, as the lerneans", + "Uplifted; high; lofty; also, animated; noble; as, elevated thoughts", + "Ostensible reason or motive assigned or assumed as a color or cover for the real reason or motive; pretense; disguise", + "To butt, as a ram", + "1", + "Infantry soldiers belonging to select regiments called the Guards", + "Having no spout", + "(a) the measles", + "Same as Flashboard", + "See Colitis", + "1", + "Indifferent; careless; cool", + "Easily or clearly seen; distinctly visible; perspicuous", + "See Sallenders", + "Being or lying under the surface of the earth; situated within the earth, or under ground; as, subterranean springs; a subterraneous passage", + "Being or happening after marriage; as, a postnuptial settlement on a wife", + "Devil; -- spelt also deel", + "1", + "Doubly pinnatifid", + "The act of blandishing; a word or act expressive of affection or kindness, and tending to win the heart; soft words and artful caresses; cajolery; allurement", + "In a Hebraistic sense or form", + "To creep secretly or privily", + "Of or pertaining to the Herring family", + "See Keratose", + "To decay and perish through excessive moisture", + "Customary", + "The Chinese abacus; a schwanpan", + "Something commonplace, hackneyed, or trivial; the commonplace, in speech", + "Not bearing anthers; -- said of sterile stamens", + "A dictionary of synonyms", + "The official stamp of the Goldsmiths' Company and other assay offices, in the United Kingdom, on gold and silver articles, attesting their purity", + "To have or exercise the charge and oversight of; to oversee with the power of direction; to take care of with authority; to supervise; as, an officer superintends the building of a ship or the construction of a fort", + "A culture made by inoculating a solid medium, as gelatin, with the puncture of a needle or wire", + "Not soft; hard; coarse; rough", + "Near; hard by; along; past", + "Having barbs; as, glochidiate bristles", + "The act of placating", + "To pull; to haul; to tear; to worry", + "A variety of sugar, found in certain plants", + "Occurring once in every three hours", + "Pertaining to, or measured by, an areometer", + "To trifle; to toy", + "Having a red tail", + "1", + "1", + "The chaffinch", + "A genus of leguminous herbs with densely spiked flowers and usually trifoliate leaves; trefoil", + "1", + "1", + "Hungry; pinched for food", + "A genus of flowering plants having elegant drooping flowers, with four sepals, four petals, eight stamens, and a single pistil", + "Too soon", + "1", + "An herbaceous plant of the genus Polygonum, section Bistorta; snakeweed; adderwort", + "1", + "Designating or pertaining to, a process of preparing dry plates with an emulsion of bromides and silver nitrate in gelatin", + "Resembling silver plate; -- said of certain architectural ornaments", + "Having strong affection; cordial; sincere; hearty; sympathetic", + "A perforated steel die through which wires or tubes are drawn to form them", + "A system of land forms produced by the free action of rain and streams on rocks of uniform texture", + "In a tropical manner; figuratively; metaphorically", + "A cock for withdrawing a small quantity of liquid, as for testing", + "Producing color", + "Finely granulated; -- said of quicksilver which has been granulated by agitation during the amalgamation process", + "Having an involucre, as umbels, heads, etc", + "A kind of linen cloth anciently used in England, originally imported from Brittany", + "Same as Hyoid, a", + "A sum formerly levied to pay the expense of coinage; -- now called seigniorage", + "Abounding with husks; consisting of husks", + "1", + "Pertaining to yesterday", + "Castration", + "(a) A group of cirripeds, destitute of footlike organs", + "p", + "1", + "To assuage; to soften; to Bacon", + "Causing sleep; as, the dormitive properties of opium", + "The god of the sun; in the later mythology identified with Apollo, and distinguished for his beauty", + "1", + "1", + "1", + "A more or less elongated process or organ, simple or branched, proceeding from the head or cephalic region of invertebrate animals, being either an organ of sense, prehension, or motion", + "A writ issued by a superior court and directed to some inferior tribunal, or to some corporation or person exercising authority, commanding the performance of some specified duty", + "Belonging; appertaining", + "See Peddler", + "Changed into, or contained in, a coagulum or a curdlike mass; curdled", + "Of or pertaining to a syllepsis; containing syllepsis", + "A light, loose over-garment, like a smock frock, worn especially by workingmen in France; also, a loose coat of any material, as the undress uniform coat of the United States army", + "A nitrogenous base found in coal tar, bone oil, and other distillates of organic substances, and also produced synthetically as a colorless liquid, C4H5N, having on odor like that of chloroform", + "A bit of fat pork or bacon used in larding", + "Situated in front of the nasal chambers", + "A Moor", + "A mineral of a yellowish color, consisting chiefly of silica, glucina, manganese, and iron, with a little sulphur", + "Hoity-toity", + "That part of a crustacean behind the cephalothorax; -- more commonly called abdomen", + "The act of extending equally, or the state of being equally extended", + "Of or pertaining to tabes; of the nature of tabes; affected with tabes; tabid", + "Double; duplicate; multiplied by two; as, a twofold nature; a twofold sense; a twofold argument", + "Any plant of the class Phænogamia", + "1", + "Fetidness", + "See Cognizant", + "1", + "Of or pertaining to an episode; adventitious", + "Same as Hydrocephaloid", + "1", + "The giant cactus (Cereus giganteus); -- so named by the Indians of Arizona", + "One who pules; one who whines or complains; a weak person", + "The tissue which fills the interspaces between the costæ of many madreporarian corals, usually consisting of small transverse or oblique septa", + "Pertaining to, or derived from, butter", + "To deflour; to dishonor", + "Epidermal", + "One of the Lepidoptera", + "In a wealthy manner; richly", + "Entirely; totally", + "To cover with shade; to render dark or gloomy; to overshadow", + "An instrument to extract hairs", + "Not responsive; not able, ready, or inclined to respond", + "Placed on the frontiers", + "To release from confinement or restraint", + "Same as Deckle", + "That part of a human being or quadruped, which extends on either side of the spinal column between the hip bone and the false ribs", + "An electric generator or dynamo for producing alternating currents", + "A pungent kind of snuff made from the darker and ranker kinds of tobacco leaves", + "A vote by universal male suffrage; especially, in France, a popular vote, as first sanctioned by the National Constitution of 1791", + "An instrument for producing sound by means of electric currents", + "One who holds a feu", + "Relating to, or showing, geotropism", + "A bursting forth", + "A kind of banjo, with a short neck, tuned a fourth higher than the common banjo; -- popularly so called", + "To record in annals", + "Belonging or pertaining to the time when the moon, at or near its conjunction with the sun, is invisible", + "1", + "Festival games celebrated once in three years", + "An opening made in the interior walls of a cruciform church to afford a view of the altar to those in the transepts; -- called, in architecture, a squint", + "A female deacon; as: (a) (Primitive Ch", + "Same as Pontee", + "Of or pertaining to prothesis; as, a prothetic apparatus", + "One who contrives, devises, plans, or schemas", + "The quality of being conditional, or limited; limitation by certain terms", + "To deprive of a taste for a thing", + "A kind of fine sand from the banks of the Trent, used as a polishing powder", + "1", + "An awkward or foolish person", + "1", + "Characterized by imposture; deceitful", + "Minutely verrucose; as, a verruculose leaf or stalk", + "A small standard weight used in assaying bullion, etc", + "A whip for horses", + "1", + "One who importunes; an importuner", + "Of or pertaining to homeopathy; according to the principles of homeopathy", + "1", + "To make cool", + "To enlighten again; to reillumine", + "Pulverized sugar candy", + "1", + "The quality or state of being negative", + "An oath", + "The state of being disguised", + "1", + "Full of crags; rugged with projecting points of rocks; as, the craggy side of a mountain", + "1", + "The office of septemvir; a government by septimvirs", + "Goodness", + "1", + "(a) Situated above the vertebral column", + "1", + "Intoxicating", + "1", + "The action or process of depriving a substance of carbon", + "To fish to excess", + "Formerly, a genus of plants including the cypress vine (Quamoclit vulgaris, now called Ipomoea Quamoclit)", + "One who practices palmistry Bp", + "Characterized by flatness of head, especially that produced by artificial means, as a certain tribe of American Indians", + "One of the symmetrical halves of any one of the radii, or spheromeres, of a radiate animal, as a starfish", + "1", + "The art or practice of using or making telescopes", + "To give a new name to", + "A genus of small oceanic fishes, remarkable for the large conical tubercles which cover the under surface", + "In an impenetrable manner or state; imperviously", + "Containing the substance oe general principles of a subject or work in a narrow compass; abridged; summarized", + "To catch or entangle in, or as in, meshes", + "Departure, especially departure from this life; death", + "1", + "In a free manner; without restraint or compulsion; abundantly; gratuitously", + "A kind of soft, unpressed cream cheese made in the vicinity of Camembert, near Argentan, France; also, any cheese of the same type, wherever made", + "A West African gazelle (Gazella mohr), having horns on which are eleven or twelve very prominent rings", + "To cease from being ruffled or agitated", + "The capelin", + "That part of an elliptical or many-centered arch which has the shorter radius and immediately adjoins the impost", + "A shaftment", + "Sluggish", + "1", + "Starch made from Indian corn, esp", + "Or or relating to post-mortem examinations", + "Of or pertaining to the deeper parts of the sea; as, a deep-sea line (i", + "Of the value of, or costing, sixpence; as, a sixpenny loaf", + "Want of as siduity or care", + "The balancer of dipterous insects", + "To have an erroneous remembrance of; to suppose erroneously that one recollects", + "Affording a general view of the whole, or of the principal parts of a thing; as, a synoptic table; a synoptical statement of an argument", + "A native attorney or agent; also, an ambassador", + "Internal harmony or fitness; mutual adaptation of parts; elegance; -- used chiefly of style of discourse", + "1", + "That form of electricity which is developed by the chemical action between metals and different liquids; voltaic electricity; also, the science which treats of this form of electricity; -- called also galvanism, from Galvani, on account of his experiments showing the remarkable influence of this agent on animals", + "See Christcross-row", + "See Ianthina", + "The act of announcing, or giving notice; that which announces; proclamation; publication", + "One who practices xylography", + "1", + "A compound obtained as a yellowish gray powder by the action of acetyl chloride or acetic anhydride or ordinary tannic acid", + "A senseless babbler or boaster", + "A concert for two or more principal instruments, with orchestral accompaniment", + "1", + "A species of whitefish (Coregonus nigripinnis) found in Lake Michigan", + "See Trona", + "1", + "One who traffics, or carries on commerce; a trader; a merchant", + "Numerous", + "Rough; stern; angry", + "In an accurate manner; exactly; precisely; without error or defect", + "To conceive, or form an opinion of, beforehand; to form a previous notion or idea of", + "The art, character, or position, of a jockey; the personality of a jockey", + "A writ based upon the presumption that the person summoned was hiding", + "1", + "A large North American snipe (Symphemia semipalmata); -- called also pill-willet, will-willet, semipalmated tattler, or snipe, duck snipe, and stone curlew", + "Of the nature of a postulate", + "The small, whitish brown fruit of an East Indian tree (Lansium domesticum)", + "Having three leaves or leaflets, as clover", + "In a viviparous manner", + "Pertaining to a diapophysis", + "1", + "The condition or quality of converging; tendency to one point", + "A salt of malic acid", + "1", + "The act of making atonement; expiation", + "The act of lauding; praise; high commendation", + "See Muscat", + "Any one of various species of mullets of the family Millidæ, esp", + "The handling or government of anything, but esp", + "Apt to neglect; customarily neglectful; characterized by negligence; careless; heedless; culpably careless; showing lack of attention; as, disposed in negligent order", + "1", + "a box, or vase with a perforated cover to emit perfumes", + "Pertaining to, or of the nature of, a preface; introductory to a book, essay, or discourse; as, prefatory remarks", + "A swindler; one who deceives by trickery", + "Of or pertaining to the tongue; lingual", + "Wildy; vainly; fancifully", + "(a) A European singing bird (Emberiza hortulana), about the size of the lark, with black wings", + "A small marine isopod crustacean (Limnoria lignorum or L", + "The Platanus occidentalis, or American plane tree, a large tree, producing rough balls, from which it is named; -- called also buttonball tree, and, in some parts of the United States, sycamore", + "The act of running about the rigging of a vessel in sport; hence, frolicking; scuffing; sporting; carousing", + "The spongelike fibers of the fruit of a cucurbitaceous plant (Luffa Ægyptiaca); called also vegetable sponge", + "A pigment obtained, usually by roasting cobalt glance with sand or quartz, as a dark earthy powder", + "Relating to the alcoholometer or alcoholometry", + "Pertaining to azote, or nitrogen; formed or consisting of azote; nitric; as, azotic gas; azotic acid", + "1", + "1", + "Being in its prime", + "The end of a ship's keelson, to which the sternpost is bolted; -- called also stern knee", + "Of or pertaining to a cæsura", + "To plate or cover with a coating of metal, usually silver, nickel, or gold, by means of electrolysis", + "With direct and violentop position; with sudden collision", + "1", + "Capable of being circumstantiated", + "Including or implying supposition, or hypothesis; supposed", + "Same as Ochreate, Ochreated", + "Cheating; deception", + "A rope used for tying or hobbling the legs of a horse or cow", + "Crowned with laurel, or with a laurel wreath; laureate", + "By implication", + "A device consisting of a short rope with flat hooks at each end, for hoisting casks or barrels by the ends of the staves", + "Of or pertaining to a polyp, or polyps", + "Pertaining to, or characterized by, liberalism; as, liberalistic opinions", + "1", + "See Macroprism", + "Capable of being matched; comparable on equal conditions; adapted to being joined together; correspondent", + "A narcotic alkaloid extracted from the tops of the common broom (Cytisus scoparius, formerly Spartium scoparium), as a colorless oily liquid of aniline-like odor and very bitter taste", + "Containing seeds or stones of grapes, or grains like them", + "1", + "In an inextricable manner", + "A spot", + "1", + "A foolish or thoughtless young person, esp", + "A Latin preposition signifying for, before, forth", + "A name given to several plants which grow on the seashore, as the Batis maritima, and the glasswort", + "The obstruction of a blood vessel by a clot formed at the site of obstruction; -- distinguished from embolism, which is produced by a clot or foreign body brought from a distance", + "See Xiphioid", + "A humming sound; a booming", + "A confederate", + "A cement used in making joints, filling cracks, etc", + "The quality of being desirable", + "Causing torment; as, a tormenting dream", + "1", + "1", + "pl", + "Pertaining to, resembling, or containing, gamboge", + "1", + "Of or pertaining to umber; like umber; as, umbery gold", + "One who keeps accounts; one who has the charge of keeping the books and accounts in an office", + "That may be rowed, or rowed upon", + "See Chasuble", + "1", + "Adapted for walking; anisodactylous; as the feet of certain birds and insects", + "1", + "Dark-visaged; swart", + "Deprived of reason", + "1", + "One who does well; one who does good to another; a benefactor", + "Anything anomalous", + "Serving to drive off fever; antifebrile", + "Having the striking surface convex; -- said of hammers", + "Relating to, or resembling, a cup; also improperly used for calycular, calyculate", + "Certainly; in truth; verily", + "The art or practice of using the photophone", + "1", + "Pertaining to, or acting as, a succedaneum; supplying the place of something else; being, or employed as, a substitute for another", + "The raising of silkworms", + "An extensive division of arthropods comprising all those which breathe by tracheæ, as distinguished from Crustacea, which breathe by means of branchiæ", + "An aqueous solution of the subacetate of lead, used as a lotion in cases of inflammation", + "Of or pertaining to an ideogram; representing ideas by symbols, independently of sounds; as, 9 represents not the word nine, but the idea of the number itself", + "The wife of a landgrave", + "Originally, in classical architecture, the triangular space forming the gable of a simple roof; hence, a similar form used as a decoration over porticoes, doors, windows, etc", + "Any marine gastropod shell of the genus Apporhais having an elongated siphon", + "A mineral occurring in tetragonal crystals, and also massive, of a brown to green color, rarely sulphur yellow and blue", + "1", + "One's own affairs; one's private business", + "A general or comprehensive view", + "A species of fern with fronds (Asplenium Ceterach)", + "Delighted beyond measure", + "1", + "The quality or condition of being feeble; debility; infirmity", + "1", + "A kind of internal-combustion engine; -- in British countries called usually petrol engine", + "1", + "Transporting; as, transportant love", + "Of or pertaining to the intellect; intellectual", + "By chance", + "To take to graze or pasture, at a certain sum; -- used originally of the feeding of cattle in the king's forests, and collecting the money for the same", + "Originally, a laborer on canals for internal navigation; hence, a laborer on other public works, as in building railroads, embankments, etc", + "Pertaining to deliberation; proceeding or acting by deliberation, or by discussion and examination; deliberating; as, a deliberative body", + "An instrument for measuring the forms and angles of salts and crystals; a goniometer", + "Permitting liquids to pass by percolation; not capable of retaining water; porous; pervious; -- said of gravelly or sandy soils, and the like", + "One who follows the sea as a business; a mariner; a sailor", + "In passing; in the course of any procedure; -- said specif", + "Of or pertaining to xanthoma", + "Made with boards whose edges lap one over another; clinker- built; -- said of boats", + "One who explains the higher functions and relations of the soul by the association of ideas; e", + "1", + "To come into a country of which one is not a native, for the purpose of permanent residence", + "See Tanka", + "One who writes in hexameters", + "1", + "1", + "A mangy or scabby creature", + "1", + "The process of elutriating; a decanting or racking off by means of water, as finer particles from heavier", + "To undo or unravel what is knitted together", + "Capable of being thrust out or protruded", + "Same as Perichæth", + "A cough", + "1", + "A light thin stuff of silk", + "A very brilliantly luminous beetle (Pyrophorus noctilucus), one of the elaters, found in Central and South America; -- called also cucujo", + "Of or pertaining to the woods or forest", + "A smokeless powder composed of nitroglycerin, guncotton, and mineral jelly, and used by the British army and in other services", + "A hundred weight; a quintal", + "A body, living or dead; the corporeal substance of a thing", + "1", + "Combining forms of the Greek word for gland; -- used in words relating to the structure, diseases, etc", + "To employ amiss; as, to misemploy time, advantages, talents, etc", + "Habitually winking", + "A turning to the opposite side; antistrophe", + "Alignment; position in a straight line, as of two planets with the sun", + "Pertaining to, or resembling, an order of plants like the palms, but having exogenous wood", + "The quality of being fluxible", + "1", + "Having no brim; as, brimless caps", + "A dead human body; a corpse", + "See Horned Owl", + "One who holds low-church principles", + "In a milky manner", + "In the form of a ply, fold, or doubling", + "A making divine", + "An instrument for measuring the force or amount of endosmotic action", + "See Capellmeister", + "Same as Internode", + "Having the tonsure; shaven; shorn; clipped; hence, bald", + "See Narwhal", + "1", + "Designated; appointed; chosen", + "An annoyance to the ear", + "Other; one or something beside; as, Who else is coming What else shall I give Do you expect anything else Bastards and else", + "A fig; an insignificant trifle, no more than the snap of one's thumb; a sign of contempt made by the fingers, expressing", + "A light or luminary formed of some combustible substance, as of resinous wood; a large candle or flambeau, or a lamp giving a large, flaring flame", + "A figure or polygon whose angles are equal", + "A gargle", + "The process of forming an artificial palate", + "One who receives or collects toll; a toll gatherer", + "1", + "One who works wi", + "1", + "To make infamous; to defame", + "1", + "In a conscientious manner; as a matter of conscience; hence; faithfully; accurately; completely", + "A clear, viscous, tasteless substance extracted from the mucilaginous sap of the mistletoe (Viscum album), holly, etc", + "1", + "1", + "The art of correct articulation; voice training", + "Continually", + "A compound of hydrocyanic acid with a base; -- distinguished from a cyanide, in which only the cyanogen so combines", + "Of a purple color; purple", + "Of or pertaining to Thespis; hence, relating to the drama; dramatic; as, the Thespian art", + "According to hydrostatics, or to hydrostatic principles", + "1", + "The office of a preacher", + "Hooked, or set with hooks; hamate", + "In a diffusive manner", + "The influence of light on the movements of low organisms, as various infusorians, the zoöspores of certain algæ, etc", + "The quality or state of being puffy", + "The class Echinodermata which includes the sea urchins", + "The human body, as distinguished from the head and limbs; in sculpture, the trunk of a statue, mutilated of head and limbs; as, the torso of Hercules", + "1", + "One of a sect of Mohammedans who favored the pretensions of the family of Mohammed ben Ismael, of the house Ali", + "Growing on, or having nature of, the pistil; of or pertaining to a pistil", + "So as to form ridges", + "A Scotch errand boy, porter, or messenger", + "1", + "A transformer without iron, for high frequency alternating or oscillating currents; an oscillation transformer", + "See Mullagatawny", + "A hydrocarbon obtained from coal-tar residues, and remarkable for its intense yellowish green fluorescence", + "The lowest deck of a vessel, esp", + "Of an expiatory nature; expiatory", + "1", + "That branch of moral philosophy which treats of the relation of duty to pleasure; the science of practical, positive enjoyment or pleasure", + "Of or pertaining to a pygmy; resembling a pygmy or dwarf; dwarfish; very small", + "A worshiper of the god Vishnu in any of his incarnations", + "One who has been fondled to excess; one fond of ease and sensual delights; -- a term of contempt", + "Like or pertaining to the swallows", + "The doctrine of Leibnitz, that all substance involves force", + "Making tranquil; calming", + "Mutually contrived or planned; agreed on; as, concerted schemes, signals", + "The Echinodermata", + "To tear with the nails; to cover with scratches", + "See Filigreed", + "Proud; arrogant; assuming; putting on airs of superiority", + "1", + "Propositions which directly and destructively contradict each other, but of which the falsehood of one does not establish the truth of the other", + "A South American bat of the genus Noctilio, having cheek pouches and large incisor teeth", + "Of or pertaining to phylacteries", + "Ah! alas! Ay me! I fondly dream `Had ye been there", + "To remove from a charnel house; to raise from the grave; to exhume", + "A general term for the uranium phosphates, autunite, or lime uranite, and torbernite, or copper uranite", + "1", + "Capable of being circumscribed or limited by bounds", + "A yew", + "To shell", + "The operation of excising one or more of the bones of the tarsus", + "1", + "Melancholy", + "A guide", + "(a) The banner fish, or spikefish (Histiophorus", + "To maneuver; to move hither and thither", + "1", + "the principles or conduct of royalists", + "(a) Capable of climbing; as, the woodpecker is a scansorial bird; adapted for climbing; as, the scansorial foot", + "A kind of wood-turning lathe for making noncircular and irregular forms, as felloes, gun stocks, lasts, spokes, etc", + "Hygrometry", + "The use of a picture symbol of an object to represent phonetically the initial sound of the name of the object", + "A place where wine is sold", + "The peepul tree; esp", + "1", + "The debt or series of debts, collectively, represented by a series of debentures; a debt secured by a trust deed of property for the benefit of the holders of shares in the debt or of a series of debentures", + "1", + "The act or process of beating into a plate, sheet, or leaf, as a metal; extension by beating", + "To fix the value of; to rate; to appraise", + "A phalanstery", + "In a floating manner; swimmingly", + "1", + "1", + "Made of, secured by, or covered with, wickers or wickerwork", + "1", + "An optical instrument, consisting of a lens, or combination of lenses, for making an enlarged image of an object which is too minute to be viewed by the naked eye", + "An extinct order of Amphibia, including the typical genus Labyrinthodon, and many other allied forms, from the Carboniferous, Permian, and Triassic formations", + "Of or pertaining to planimetry", + "Loose; disjointed; falling to pieces; out of repair", + "Somewhat oval; nearly oval", + "A hollow in the side of a hill, where game usually lies", + "Any species of Paleotherium", + "1", + "The body of persons employed in some public service, as the army, navy, etc", + "An hæmapodous animal", + "1", + "Self-deceit", + "Inflammation of the spleen", + "Preserving health; prophylactic", + "Unkempt", + "Originally, a deep-toned instrument of the oboe or bassoon family; thence, a bass reed stop on the organ", + "1", + "The state of being moldy", + "1", + "A kind of wide loose drawers or trousers worn by women in Mohammedan countries", + "A font", + "An unguent for the hair", + "1", + "See Cannel coal", + "Registering itself; -- said of any instrument so contrived as to record its own indications of phenomena, whether continuously or at stated times, as at the maxima and minima of variations; as, a self-registering anemometer or barometer", + "1", + "An instrument for measuring the limits of distincts vision in different individuals, and thus determiming the proper focal length of a lens for correcting imperfect sight", + "Given to tricks; practicing deception; trickish; knavish", + "To rise in blisters, breaking in white froth, as cane juice in the clarifiers in sugar works", + "Same as oedema", + "A shackle; especially, one to confine the legs; a fetter", + "(a) The length of a perpendicular drawn from one extremity of an arc of a circle to the diameter drawn through the other extremity", + "A limiting element or quality", + "A mineral consisting principally of silicate of iron, and crystallizing in hexagonal prisms with perfect basal cleavage; -- so named from the Swedish mineralogist Cronstedt", + "Liable to defect; imperfect", + "Possessed of but a single nucleus; as, a uninucleated cell", + "1", + "Full of sores; leprous", + "An articular surface on the ilium of birds against which the great trochanter of the femur plays", + "The brainpan, or skull; hence, the crest", + "Any one of several species of small insessorial birds of the genus Cinclus (or Hydrobates), especially the European water ousel (C", + ", n", + "A breed of dogs obtained by crossing the bulldog and the terrier", + "1", + "The south wind", + "One who saps; specifically (Mil", + "1", + "A fight in which centaurs take part, -- a common theme for relief sculpture, as in the Parthenon metopes", + "Tubicolous", + "1", + "Own", + "Dandified; stylish", + "An abnormal condition of certain animals, in which one side has the external characters of the male, and the other those of the female", + "1", + "1", + "Faultless; blameless; innocent", + "Making a snorting noise; snorting", + "To clear of forests; to dis U", + "See Knur", + "The navel", + "The sailfish", + "1", + "To bring to a focus; to focus; to concentrate", + "A small European titmouse (Parus ater), so named from its black color; -- called also coalmouse and colemouse", + "Of or pertaining to coins; relating to the science of coins or medals", + "The act of receding or withdrawing, as from a place, a claim, or a demand", + "Pertaining to the ileum and cæcum", + "One who enslaves", + "Capable of being declared", + "The European dab", + "Salvation", + "Relating to bicycles", + "Slightly angular", + "A name given to several kinds of pears", + "See Bastinado, n", + "Ghost lore", + "A castle and domain conferred on a nobleman for life", + "A small blunt-pointed bistoury, -- used in syringotomy", + "An optical instrument, invented by Hipparchus, for taking altitudes, leveling, etc", + "Same as Aspen", + "Baryta", + "Pertaining to, derived from, or designating, an organic acid which is obtained as a white crystalline substance from catechin, asafetida, oil of cloves, etc", + "etc", + "Any one of several kinds of roundish, subterranean fungi, usually of a blackish color", + "1", + "To convert into gas, or an aëriform fluid, as by the application of heat, or by chemical processes", + "A tower or other building with a powerful light at top, erected at the entrance of a port, or at some important point on a coast, to serve as a guide to mariners at night; a pharos", + "One of a sect of peripatetic philosophers, who appeared in Italy before the restoration of learning; so denominated from Averroes, or Averrhoes, a celebrated Arabian philosopher", + "Like a buccaneer; piratical", + "Having the properties of a panacea", + "Small shot which scatter like hailstones", + "One who, or that which, infests", + "Porcelain manufactured at Sèvres, France, ecpecially in the national factory situated there", + "A private instructor", + "The European red band fish, or fireflame", + "One of a school of Judaizing Gnostics in the second century; -- so called from Valentinus, the founder", + "1", + "The act of disfiguring, or the state of being disfigured; defacement; deformity; disfigurement", + "1", + "A falling off", + "A cicada", + "The arctic fox", + "Not meet or fit; not proper; unbecoming; unsuitable; -- usually followed by for", + "An albuminous mineral of a rich blue color", + "1", + "Not partial; not favoring one more than another; treating all alike; unprejudiced; unbiased; disinterested; equitable; fair; just", + "Unsubstantial; not real or strong", + "Of the nature of compunction; caused by conscience; attended with, or causing, compunction", + "1", + "Temporarity", + "To make unsubstantial", + "A genus of large eels of the family Mirænidæ", + "Having the form of a snail shell; spiral; turbinated", + "Like a home; comfortable; cheerful; cozy; friendly", + "A variety of apatite of a greenish blue color", + "A peculiarly flavored unpressed cheese made from milk with cream added; -- so called from the village or parish of Stilton, England, where it was originally made", + "One who, or that which, slits", + "An oil obtained by distillation of peat, and containing various members of the pyridine series", + "Any Asiatic pheasant of the genus Lophophorus, as the Impeyan pheasant", + "Having teeth traversed by canals; -- said of certain edentates", + "Of, pertaining to, or observed at, Whitsuntide; as, Whitsun week; Whitsun Tuesday; Whitsun pastorals", + "Happening, or belonging to, each successive day; diurnal; as, daily labor; a daily bulletin", + "Consisting of a single lobe", + "A believer in the theory of vitalism; -- opposed to physicist", + "Like or pertaining to the genus Muræna, or family Murænidæ", + "Assurance; certainty", + "A large gallinule (Gallicrex cristatus) native of Australia, India, and the East Indies", + "1", + "Between the metacarpal bones", + "Forwardness; pertness; petulance", + "Situated above, or anterior to, the pubic bone", + "Capable of being polished", + "Manner of supporting or continuing life or vegetation", + "Having no fancy; without ideas or imagination", + "imp", + "Quality or state of being tawdry", + "Having a selvage", + "A favorite soup in Scotland, made from a capon highly seasoned, and boiled with leeks and prunes", + "To scramble or struggle; to wrangle; also, to be industrious", + "1", + "To make great; to aggrandize; to cause to increase in size; to expand", + "The wild dog-rose", + "Oppression; hardship; injury; grievance", + "To cut, as with a scythe; to mow", + "Difficulty", + "Of the nature of scrub; small and mean; stunted in growth; as, a scrubby cur", + "A modern reforming theistic sect among the Hindos", + "The state of being an enclave", + "The party in whose favor a rescue is made", + "Exophthalmia", + "A goose-neck apparatus for supplying water from an elevated tank, as to the tender of a locomotive", + "Having no compass", + "Like a wedge; wedge-shaped", + "A beast; especially, a beast of burden", + "Vesture", + "1", + "A hydroid of the family ampanularidæ, characterized by having the polyps or zooids inclosed in bell-shaped calicles or hydrothecæ", + "1", + "To speak hastily and confusedly; to sputter", + "In a manner to incur loss", + "One whose occupation is to bind books", + "See Crossroad", + "The quality of being flashy", + "In a complacent manner", + "To execute or perform a function; to transact one's regular or appointed business", + "Resembling leather in appearance or consistence; tough", + "No", + "The lowest grade of flour in milling", + "(a) One of the Protozoa", + "Of or pertaining to the shell of a tortoise; resembling a tortoise shell; having the color or markings of a tortoise shell", + "A brownish yellow color", + "A contract under, or subordinate to, a previous contract", + "1", + "The degree, title, or rank, of a doctor", + "See Crocidolite", + "Pain in a tooth or in the teeth; odontalgia", + "1", + "Fossil tracks of annelids", + "Resembling epilepsy", + "Befitting or indicating a coxcomb; like a coxcomb; foppish; conceited", + "A small ripple", + "A patriarchate", + "1", + "Unpunished", + "One of the nymphs of mountains and grottoes", + "1", + "A notification by a candidate for orders of his intention to inquire whether any impediment may be alleged against him", + "The scaly covering of the foot of a bird or reptile", + "1", + "To loose from shackles or bonds; to set free from restraint; to unfetter", + "Of or pertaining to Bolivia", + "1", + "One who practices or excuses obtrusion", + "1", + "See Charge, n", + "Want of learning; illiteracy", + "1", + "A cousin within the first four degrees of kindred", + "A metric measure of capacity, containing ten thousand liters", + "The act of vouchsafing, or that which is vouchsafed; a gift or grant in condescension", + "A feeler; especially, one of the jointed sense organs attached to the mouth organs of insects, arachnids, crustaceans, and annelids; as, the mandibular palpi, maxillary palpi, and labial palpi", + "Of or pertaining to Syria, or its language; as, the Syriac version of the Pentateuch", + "Dull-witted; stupid", + "Germicide", + "A comprehensive division of vertebrates, including all that have distinct jaws, in contrast with the leptocardians and marsipobranchs (Cyclostoma), which lack them", + "1", + "Of, pertaining to, or characterized by, trimorphism; -- contrasted with monomorphic, dimorphic, and polymorphic", + "1", + "Of or pertaining to, or in the form of, a helix; spiral; as, a helical staircase; a helical spring", + "One of the aboriginal inhabitants of New Zealand; also, the original language of New Zealand", + "The sterm of a tree", + "Originally, one belonging to the tribe or kingdom of Judah; after the return from the Babylonish captivity, any member of the new state; a Hebrew; an Israelite", + "Palmately branched, with the branches again palmated", + "By or with love, esp", + "A subsulphate of alumina and potash; alunite", + "1", + "To nail boards upon so as to lap one over another, in order to exclude rain, snow, etc", + "Formed of a wisp, or of wisp; as, a wispen broom", + "Capability of being generated", + "The state or quality of being meager; leanness; scantiness; barrenness", + "A large family of dicotyledonous plants, having their flowers arranged in dense heads of many small florets and their anthers united in a tube", + "Dimension", + "A genus of liliaceous plants; the three-leaved nightshade; -- so called because all the parts of the plant are in threes", + "The act or method of ascertaining the strength of vinegar, or the proportion of acetic acid contained in it", + "A form of rifled cannon and small arms invented by Sir Joseph Whitworth, of Manchester, England", + "1", + "1", + "The first five books of the Old Testament, collectively; -- called also the Law of Moses, Book of the Law of Moses, etc", + "The quality of being elfish", + "Art of preparing sections (transverse, tangential, or radial) of wood, esp", + "A medicine supposed to expel black bile or choler", + "Best", + "See Forty", + "In a gradually diminishing manner; with abatement of tone; decrescendo; -- expressed on the staff by Dim", + "1", + "That which is introduced into the body by the stomach or alimentary canal; -- opposed to egesta", + "One who, or that which, squirts", + "A view of death; a meditation on the subject of death", + "Decent; orderly", + "From what place soever; from what cause or source soever", + "A plaited or gathered flounce on a woman's garment", + "1", + "One of the three classes into which the fungi are divided in Brefeld's classification", + "Spurge, or bastard spurge, a genus of plants of many species, mostly shrubby, herbaceous succulents, affording an acrid, milky juice", + "A freeman of the lowest class; one not a thane or of the servile classes; a churl", + "The state or office of an abbot", + "See Cloak", + "Coupled together", + "An associate in a mess", + "A euphemistic name for the Furies of Erinyes", + "Presbyterian", + "A raising or lifting up", + "1", + "One of the minute spindle-shaped embryos of Gregarinæ and some other Protozoa", + "Extravagance", + "Having coincidence; occupying the same place; contemporaneous; concurrent; -- followed by with", + "One who favors; one who regards with kindness or friendship; a well-wisher; one who assists or promotes success or prosperity", + "As much, or as many, as a tent will hold", + "Having a scale running from the dominant to its octave; -- said of certain old church modes or tunes, as opposed to those called authentic, which ran from the tonic to its octave", + "Inclined to drink to excess; intoxicated; tipsy", + "Balancers; the rudimentary hind wings of Diptera", + "Innovation", + "1", + "A combat between two persons, fought with deadly weapons, by agreement", + "The passage for the breath from the larynx to the lungs; the trachea; the weasand", + "Same as Doorga", + "Youth", + "1", + "Not liable to be reproached; irreproachable", + "Leap year; every fourth year, in which a day is added to the month of February on account of the excess of the tropical year (365 d", + "The palma Christi", + "1", + "Not empirically; without experiment or experience", + "Pertaining to an acrobat", + "1", + "Compilation", + "A variety of hephelite, usually massive, of greasy luster, and gray to reddish color", + "The quality or state of being sensual; devotedness to the gratification of the bodily appetites; free indulgence in carnal or sensual pleasures; luxuriousness; voluptuousness; lewdness", + "1", + "One who, or that which, hardens; specif", + "The refuse of good ore", + "A specter mentioned to frighten children; as, rawhead and bloodybones", + "Purslain", + "See Handsel", + "A mineral of a blackish green color, commonly massive or in nodules", + "A terminal combining form: Having a stamen or stamens; staminate; as, monandrous, with one stamen; polyandrous, with many stamens", + "Without sugar; free from sugar", + "The art of dressing up; artifice; stratagem; fraud; imposture", + "Capable of being proved or clearly brought to light; demonstrable", + "1", + "A holy war; a crusade", + "The upper stratum of fuller's earth", + "One that brawls; wrangler", + "One who deplores", + "Of or pertaining to geography", + "1", + "1", + "A sack or bag of wool; specifically, the seat of the lord chancellor of England in the House of Lords, being a large, square sack of wool resembling a divan in form", + "Foolhardiness", + "Indiana; -- a nickname of obscure origin", + "Of necessity", + "Without slumber; sleepless", + "Very large; monstrous; big", + "A wise man; a physician, esp", + "The art of measuring altitudes, or heights", + "Capable of being refracted, or turned out of a direct course, in passing from one medium to another, as rays of light", + "Bow-compasses carrying a drawing pen", + "The parson bird", + "See Entablature", + "1", + "A kind of litter or portable couch", + "Color; tinge; tincture", + "A balloon which ascends by the buoyancy of air heated by a fire; a fire balloon; -- so called from two brothers, Stephen and Joseph Montgolfier, of France, who first constructed and sent up a fire balloon", + "Relating to the long axis of the body", + "A bear; -- so called in popular tales and fables", + "Lying or being in the middle place or degree, or between two extremes; coming or done between; intervening; interposed; interjacent; as, an intermediate space or time; intermediate colors", + "Literally, a customs union; specifically, applied to the several customs unions successively formed under the leadership of Prussia among certain German states for establishing liberty of commerce among themselves and common tariff on imports, exports, and transit", + "1", + "Aptness to break; fragility", + "A crying for help", + "1", + "Having the form of a trapezium; trapeziform", + "The quality or state of being personal; personality", + "To reform wrongly or imperfectly", + "Derived from castor oil; ricinoleic; as, elaiodic acid", + "Nearly, but not perfectly, triangular", + "A flying machine, or a small plane for experiments on flying, which floats in the air only when propelled through it", + "One who advocates romanticism in modern literature", + "An armichair for ease or repose", + "1", + "1", + "A supposed element claimed to have been discovered by R", + "A series of six numbers", + "Prior to Adam", + "Giddy", + "See Boyar", + "Of or belonging to the duumviri or the duumvirate", + "Producing pollen; polleniferous", + "Having prongs or projections like the tines of a fork; as, a three-pronged fork", + "A fossil shell of the genus Strombus", + "The act of ominating; presaging", + "Overstocked, or overgrown, or covered, with grass", + "Cobweblike; extremely thin and delicate, like a cobweb; as, the araneous membrane of the eye", + "1", + "A female editor", + "A joint stock company, formed for general banking business, or for the construction of public works, by means of loans on personal estate, after the manner of the crédit foncier on real estate", + "In a dizzy manner or state", + "The larva of a botfly", + "Distorted vision, in which straight lines appear bent", + "The act of performing; the carrying into execution or action; execution; achievement; accomplishment; representation by action; as, the performance of an undertaking of a duty", + "1", + "Sailing along or near a coast, or running between ports along a coast", + "More than decompound; divided many times", + "1", + "A gull; the mew", + "Farthest south", + "(a) A young salmon in the stage when it has dark transverse bands; -- called also samlet, skegger, and fingerling", + "Same as Bez-antler", + "1", + "A woman who offends", + "1", + "To seize; to lay hold on; to catch; to get", + "A Turkish judge", + "A built-up, rifled, rapid-fire gun of oil-tempered steel, having a rectangular breechblock which moves horizontally or vertically in a mortise cut completely through the jacket", + "A crinoid", + "A ceremonial treatise related to Puranic and magic literature; esp", + "To appropriate", + "1", + "Suitable to be eaten; eatable; esculent", + "Having a roof, or top, shaped like an inverted U; wagon-headed", + "Same as Wondrous", + "The act of introverting, or the state of being introverted; the act of turning the mind inward", + "A cross between a male zebra and a female horse", + "Having lungs, or breathing organs similar to lungs", + "A rapid, esp", + "Ardor inspired by passion or enthusiasm", + "A weight of one hundred pounds avoirdupois; -- called in many parts of the United States a Hundredweight", + "The borele", + "The quality of being passable", + "The worship of animals", + "One who, or that which, rinses", + "In a careless manner", + "To rate too high; to outnumber", + "Liable or subject to excise; as, tobacco in an excisable commodity", + "An ant", + "Having the ascendency over others; superior in strength, influence, or authority; prevailing; as, a predominant color; predominant excellence", + "Chylifactive", + "Capable of being brought before the mind as a throught or idea; conceivable; thinkable", + "Produced by spontaneous generation", + "Having a varying body temperature", + "The rorqual", + "Untrue or incorrect information", + "See Self-defense", + "Situated in the region of the rump, or posterior end of the backbone; -- applied especially to the posterior median plates in the carapace of chelonians", + "A pot for boiling things; a boiler", + "imp", + "Relating or attributed to the Anabaptists, or their doctrines", + "Willemite", + "The state or dignity of a thane; thanehood; also, the seignioralty of a thane", + "The act of going off, or the state of being off, the rails of a railroad", + "To reënlist for service as a soldier", + "A suffix denoting that which does a thing; an act or process; the result of an act or process; state or condition; as, aliment, that which nourishes, ornament, increment; fragment, piece broken, segment; abridgment, act of abridging, imprisonment, movement, adjournment; amazement, state of being amazed, astonishment", + "The settlings of oil, molasses, etc", + "(a) The side of a ship toward the wind", + "An order of irregular sea urchins, usually having a more or less heart-shaped shell with four or five petal-like ambulacra above", + "Want of consonance or harmony of sound, action, or thought; disagreement", + "See Arear", + "1", + "1", + "The quality or state of being stubbed", + "1", + "Demeanor", + "A mineral occurring in triclinic crystals approaching pyroxene in angle, and of a greenish black color", + "1", + "The act or process of debilitating, or the condition of one who is debilitated; weakness", + "To flow before", + "Obversely omegoid", + "1", + "A genus of the genus Daphnia", + "A writ issuing out of chancery, or a superior court, to call up the records of a inferior court, or remove a cause there depending, in order that the party may have more sure and speedy justice, or that errors and irreguarities may be corrected", + "1", + "Of or pertaining to the jaw", + "Hard-hearted", + "1", + "To move with passion; to affect strongly", + "The quality of being miry", + "A contradiction between any words or passages in an author", + "The act of exculpating from alleged fault or crime; that which exculpates; excuse", + "A country or suffragan bishop, appointed in the ancient church by a diocesan bishop to exercise episcopal jurisdiction in a rural district", + "The act of killing a victim for sacrifice", + "That may be revolved", + "1", + "A very large vulture (Gypaëtus barbatus), which inhabits the mountains of Southern Europe, Asia, and Northern Africa", + "Of, pertaining to, or designating, the thymus gland", + "Having the form of a feather or plume", + "Having the quality of entering into composition; compounded", + "1", + "1", + "See Mestizo", + "A plundering and destructive incursion; a foray; a rai", + "A procuress", + "A man employed in placing supports of timber in a mine", + "One of the twelve peers of France, companions of Charlemagne in war", + "The greater shearwater or hagdon", + "See Baronet", + "A constabulary", + "Tending to divert; diverting; amusing; interesting", + "Pertaining to encrinites; encrinal", + "A low story between two higher ones, usually between the ground floor and the first story; mezzanine", + "1", + "The broken noise of a goose or a hen", + "A signal fire; an alarm fire", + "A second pleading, or course of pleadings; also, the right of pleading again", + "The quality or state of being raw", + "The act of sophisticating; adulteration; as, the sophistication of drugs", + "Any species of sea duck of the genus Somateria, esp", + "One who, or that which, transforms", + "1", + "A viceroy or governor-general, the highest provincial official in China, with civil and military authority over one or more provinces", + "The science of God or of religion; the science which treats of the existence, character, and attributes of God, his laws and government, the doctrines we are to believe, and the duties we are to practice; divinity; (as more commonly understood) the knowledge derivable from the Scriptures, the systematic exhibition of revealed truth, the science of Christian faith and life", + "To illumine", + "In six parts; in sixes", + "To smear with something which stains, or makes dirty; to smutch; to begrime; to soil; to sully", + "The fifteenth century, when applied to Italian art or literature; as, the sculpture of the quattrocento; quattrocento style", + "Capable of bending or yielding; apt to yield; compliant", + "1", + "Not capable of being transmitted", + "Destitute of glands", + "Watchful; circumspect", + "A halting or limping", + "An orange-red crystalline substance, C15H10O5, obtained from the buckthorn, rhubarb, etc", + "Baked like potter's lay; -- applied to clay shales that have been converted by heat into a substance resembling porcelain", + "1", + "A class of marine cephalate Mollusca having a tubular shell open at both ends, a pointed or spadelike foot for burrowing, and many long, slender, prehensile oral tentacles", + "A porous earthen jar for cooling water by evaporation", + "A subordinate or assistant governor", + "1", + "1", + "1", + "1", + "Trifling", + "To perform in a perfunctory manner; to do negligently", + "Lying down; -- used of beasts of the chase, as couchant is of beasts of prey", + "Tending to pervert", + "Resembling a bladder; swollen like a bladder; inflated; utricular", + "A mineral of a nearly silver-white color, composed of arsenic, sulphur, and cobalt", + "Created by judges or judicial decision; -- applied esp", + "Stealthy; sly", + "A class of Arthropoda, allied to the Crustacea", + "A salpa", + "Bulky; heavy", + "A small singing bird of the Finch family (Serinus Canarius), a native of the Canary Islands", + "Having the teeth differentiated into incisors, canines, and molars, as in man; -- opposed to homodont", + "The fine impalpable soot obtained from the smoke of carbonaceous substances which have been only partly burnt, as in the flame of a smoking lamp", + "The state of being a swordsman; skill in the use of the sword", + "Act of benumbing, or state of being benumbed; torpor", + "Catlike; feline Drummond", + "An ovum, as that of a mammal, only partially composed of germinal matter, that is, consisting of both a germinal portion and an albuminous or nutritive one; -- opposed to holoblast", + "To increase again", + "The troops who march in front of an army; the advance guard; the van", + "In regard to territory; by means of territory", + "Marked with spots or lines, which are often colored", + "Adultery", + "A very vascular superficial opacity of the cornea, usually caused by granulation of the eyelids", + "To defend from the weather; to shelter", + "1", + "1", + "A fast of eight days before a great festival", + "Inclined to eat; hungry; voracious", + "Tasteful; in a tasteful, agreeable manner", + "1", + "1", + "One who slaughters", + "One of the sets of parallel doubled threads which, with mounting, compose the harness employed to guide the warp threads to the lathe or batten in a loom", + "1", + "Adnate to the surface of the ovary, so as to be apparently inserted upon the top of it; -- said of stamens, petals, sepals, and also of the disk", + "An appointment; a tryst", + "1", + "To predict; to tell before occurence; to prophesy; to foreshow", + "Any one of several species of small American cyprinodont fishes of the genus Fundulus, and of allied genera; the killifishes; -- called also minnow", + "1", + "The condition of being indigent; want of estate, or means of comfortable subsistence; penury; poverty; as, helpless, indigence", + "Renown", + "A division of soft-finned fishes in which the ventral fins are situated beneath the pectorial fins, or nearly so", + "One who rents and tills a small farm or helding; as, the crofters of Scotland", + "1", + "To be inherent; to stick (in); to be fixed or permanently incorporated with something; to cleave (to); to belong, as attributes or qualities", + "The part of a plow, or other implement, that turns over the earth; the moldboard", + "Able or tending to depress or cast down", + "Consisting of or containing eight syllables", + "A kind of light vessel used on the coast of China, having the hull built on a European model, and the rigging like that of a Chinese junk", + "Invisibly", + "Not to stimulate; to soothe; to quiet", + "In an unerring manner", + "One who relates or collects anecdotes", + "Of or pertaining to the eyelids", + "Anaërobic bacteria", + "An appearance as of a halo of light, surround the edges of dark object", + "1", + "Past; gone by", + "1", + "See Woad", + "A holothurian", + "Formerly, a part or division of a county among the Anglo- Saxons", + "That has no type; devoid of typical character; irregular; unlike the type", + "A remarkable variable star in the constellation Cetus (o Ceti)", + "1", + "A nonphosphorized, nitrogenous substance, obtained from brain and nerve tissue by extraction with boiling alcohol", + "1", + "A genus of composite plants in which the scales of the involucre are united so as to form a kind of bur; cocklebur; clotbur", + "One of two or more words identical in orthography, but having different derivations and meanings; as, fair, n", + "1", + "Of or pertaining to the chromosphere", + "Having the power to impart or complete blissful enjoyment; blissful", + "A book in which is kept a register of money received or paid out", + "Idiocy", + "Of or pertaining to night", + "The quality or state of being swarthy; a dusky or dark complexion; tawniness", + "A half devil", + "Having no limits; unbounded; boundless", + "A genus of plants, including the passion flower", + "A supervisor", + "Cottagelike; suitable for a cottage; rustic", + "An instrument resembling the astrolabe, formerly used for measuring the angles between heavenly bodies; -- called also pantacosm", + "See Dodman", + "An engine of war used for throwing viretons, large stones, and other missiles; a springal", + "Moorland", + "Same as Piraya", + "(a) Without fingers or without toes", + "1", + "Liable to fail, mistake, or err; liable to deceive or to be deceived; as, all men are fallible; our opinions and hopes are fallible", + "Idiocy; imbecility; fatuity; foolishness", + "Pertaining to, or written by, a bard or bards", + "The act or operation of crushing the head of a fetus in the womb in order to effect delivery", + "To write scholia", + "A sauce (such as egg and bread crumbs) used for covering bits of meat, small birds, or fish, strung on skewers for frying", + "An order of birds, including the genus Apteryx", + "Tending or serving to distract", + "Inflammation of the stomach, esp", + "To bring back to its former state; to bring back from a state of ruin, decay, disease, or the like; to repair; to renew; to recover", + "Treacherous", + "See Aragonite", + "See Mahdism", + "The cow blackbird (Molothrus ater), an American starling", + "The quality or condition of being succulent; juiciness; as, the succulence of a peach", + "The capital city of England", + "Precisely the same; the very same; identical", + "Deeply indented; having large teeth; thus, a fess dancetté has only three teeth in the whole width of the escutcheon", + "An earthquake", + "In, or consisting of, thin plates or layers; having the form of a thin plate or lamina", + "1", + "The quality of being alternative, or of offering a choice between two", + "The act of making one a denizen or adopted citizen; naturalization", + "1", + "To gaze; to stare", + "The sliding block or support, in a lathe, which carries the dead spindle, or adjustable center", + "(a) A coalition or union of two vowel sounds pronounced in one syllable; as, ou in out, oi in noise; -- called a proper diphthong", + "the original third pers", + "Sharply cut about halfway to the middle or base into five segments; as, a quinquefid leaf or corolla", + "The practice of secret or stealthy murder by Thugs", + "A square or beveled notch cut out of a girder, binding joist, or other timber which supports a floor beam, so as to receive the end of the floor beam", + "In a square form or manner", + "A colorless, amorphous, nitrogenous substance, tasteless and odorless, formed from cartilaginous tissue by long-continued action of boiling water", + "A rendering plebeian; the act of vulgarizing", + "Of or pertaining to, or according to, lexicography", + "Divisional", + "1", + "Furnished with tendrils, or with such or so many, tendrils", + "1", + "Fossil fruit; a fruit petrified; a carpolite", + "Of or pertaining to the river Nile; as, the Nilotic crocodile", + "See Awless", + "See Eloign", + "Inflammation of the testicles", + "One who, or that which, retracts", + "One who, or that which, imbibes", + "The large lobe of the hind brain in front of and above the medulla; the little brain", + "The god of the great outer sea, or the river which was believed to flow around the whole earth", + "To betroth", + "To loose from a furled state; to unfold; to expand; to open or spread; as, to unfurl sails; to unfurl a flag", + "That which is expanded or spread out; a wide extent of space or body; especially, the arch of the sky", + "To excel or exceed in power; to cause to yield; to vanquish; to subdue; as, the light overpowers the eyes", + "Stramonium", + "Half turned round; half inverted; (Crystallog", + "1", + "In a digested or well-arranged manner; methodically", + "See Sagittal", + "See Alcazar", + "In an infirm manner", + "A solid having twelve faces", + "Producing shoots, as asparagus", + "Self-evident; intuitively true; evident beyond contradiction", + "A slight, navel-like depression, or dimpling, of the center of a rounded body; as, the umbilication of a smallpox vesicle; also, the condition of being umbilicated", + "A small, burrowing, South American edentate (Chlamyphorus truncatus), allied to the armadillos", + "To surround with a rampart or wall", + "An order of Rhizopoda, in which the pseudopodia are thick and irregular in form, as in the Amoeba", + "1", + "Consisting of chyle much diluted with water; -- said of a liquid which forms the circulating fluid of some inferior animals", + "Lighted with a taper or tapers; as, a tapered choir", + "An obtaining or acquiring", + "1", + "One who rides a bicycle", + "Same as Calcite", + "Perhaps; peradventure", + "1", + "A combining form meaning part, portion; as, blastomere, epimere", + "Same as Emissary, a", + "See Truant", + "One engaged in sailing a jacht", + "Same as Quindecylic", + "Affected by the tide; having a tide", + "One who practices philanthropy; one who loves mankind, and seeks to promote the good of others", + "A fossil millepore", + "To strike or drive back or in an opposite direction; to stop by a blow or impulse in front", + "One who, or that which, steps; as, a quick stepper", + "Dissimilar; incongruous; unsuitable", + "A peculiar action of the tongue by flute players in articulating staccato notes; also, the rapid repetition of notes in cornet playing", + "A Dutch pressed cheese of yellow color and fine flavor, made in balls weighing three or four pounds, and usually colored crimson outside; -- so called from the village of Edam, near Amsterdam", + "A forked piece of wood, or a small spring clamp, used for fastening clothes on a line", + "Flowing in seven streams; septemfluous", + "The operation of sewing up a rent in the intestinal canal", + "Having a natural contrariety, or constitutional aversion, to a thing; characterized by antipathy; -- often followed by to", + "Not current", + "Well-propotioned; symmetrical", + "In an isolated manner", + "p", + "An arctic sea bird", + "Self-moving; moving automatically", + "One versed in philately; one who collects postage stamps", + "1", + "Of or pertaining to a spouse or marriage; nuptial; matrimonial; conjugal; bridal; as, spousal rites; spousal ornaments", + "With attachment; with interest; earnestly", + "1", + "1", + "Same as Peristome", + "(a) A thole pin", + "A seal", + "In an arduous manner; with difficulty or laboriousness", + "The condition of increased irritability of a nerve in the region of the cathode or negative electrode, on the passage of a current of electricity through it", + "See Shyly", + "1", + "To exchange anew; to reverse (a previous exchange)", + "The state or quality of being monstrous, unusual, extraordinary", + "In a meek manner", + "Added to supply what is wanted; additional; being, or serving as, a supplement; as, a supplemental law; a supplementary sheet or volume", + "1", + "1", + "1", + "See Ledgment", + "1", + "Porosity", + "A prefix signifying back, against, again, anew; as, recline, to lean back; recall, to call back; recede; remove; reclaim, to call out against; repugn, to fight against; recognition, a knowing again; rejoin, to join again; reiterate, reassure", + "Of or pertaining to homonomy", + "Same as Whitlow grass, under Whitlow", + "Dilatory; tedious; superfluous", + "1", + "A substitution, as of one part of speech for another, of one gender, number, case, person, tense, mode, or voice, of the same word, for another", + "1", + ", n", + "1", + "The quality or condition of being a duke; also, the personality of a duke", + "1", + "Diligent in application or pursuit; constant, steady, and persevering in business, or in endeavors to effect an object; steadily industrious; assiduous; as, the sedulous bee", + "Of or pertaining to a reed; resembling the reed or cane", + "Drops of some drug put in one's drink to stupefy him for purpose of robbery, etc", + "That may give offense", + "Of or pertaining to peat, or turf; of the nature of peat, or turf; peaty; turfy", + "The telegraphic code, consisting of dots, dashes, and spaces, invented by Samuel B", + "(a) A return in one of the corners of the architrave of a door or window; -- called also ancon, ear, elbow", + "A apartment in a church where the sacred utensils, vestments, etc", + "See Furring", + "Not pervious; impervious", + "1", + "Of, pertaining to, related to, or designating, nonylene or its compounds; as, nonylenic acid", + "In a perishable degree or manner", + "A variety of carnation having petals of a light color variously dotted and spotted at the edges", + "1", + "Not diligent; idle; slothful", + "Pertaining to, or containing, potassium", + "Same as Oölite", + "A harpsichord", + "Same as Buddha", + "Pertaining to, or resembling, guaiacum", + "To require beforehand", + "The quality or condition of being bunchy; knobbiness", + "Vaccinia", + "To loose; to pay", + "A rod carrying a tappet or tappets, as one for closing the valves in a Cornish pumping engine", + "Act of disproving; disproof", + "Having only one slope or pitch; -- said of a roof", + "A sour, morose fellow", + "Morning time", + "Of, pertaining to, or conveying, preliminary instruction; introductory to any art or science; instructing beforehand", + "Shaped like the head of an ax or hatchet, as some leaves, and also certain organs of some shellfish", + "1", + "Rotten from being too ripe; overripe", + "Formed into a hydrate; combined with water", + "Previous appointment", + "One who talks in his sleep", + "Resembling plumbago; consisting of, or containing, plumbago; as, a plumbaginous slate", + "In an intricate manner", + "Same as Lithontriptic", + "1", + "A group of nudibranchiate Mollusca having on the back papilliform or branched organs serving as gills", + "An intimate companion", + "See Disport", + "The god of wine, son of Jupiter and Semele", + "See Skean", + "1", + "Like an old maid; prim; precise; particular", + "The act of infracting or breaking; breach; violation; nonobservance; infringement; as, an infraction of a treaty, compact, rule, or law", + "The act of ascertaining; a reducing to certainty; a finding out by investigation; discovery", + "In a neat manner; tidily; tastefully", + "1", + "See Comrade, [Obs", + "Of or pertaining to patricide; parricidal", + "To insert in a catalogue; to register; to catalogue", + "A genus of birds that comprises the white-eyes", + "1", + "Confusedly", + "The spiritual head of the Armenian church, who resides at Etchmiadzin, Russia, and has ecclesiastical jurisdiction over, and consecrates the holy oil for, the Armenians of Russia, Turkey, and Persia, including the Patriarchs of Constantinople, Jerusalem, and Sis", + "Amasthenic", + "1", + "A kind of granite or gneiss containing a silvery talcose mineral", + "1", + "A falling of dew", + "One versed in the Saxon language", + "The office, or the term of office, of a secretary", + "The art or practice of steel engraving; especially, the process, invented by Perkins, of multiplying facsimiles of an engraved steel plate by first rolling over it, when hardened, a soft steel cylinder, and then rolling the cylinder, when hardened, over a soft steel plate, which thus becomes a facsimile of the original", + "A Venetian coin, worth about three English farthings, or one and a half cents", + "Increasing the force or intensity of; intensive; as, the intensitive words of a sentence", + "Absorptiveness", + "Migrating or passing from one place or state to another; passing from one residence to another", + "1", + "A lover of animals", + "1", + "To leave off wholly", + "Destitute of a wreath", + "To engrave anew", + "In a monastic manner", + "A combining form meaning seven; as, septifolious, seven-leaved; septi-lateral, seven-sided", + "A variety of paralysis, peculiar to India and the Malabar coast; -- considered by many to be the same as beriberi in chronic form", + "1", + "The act of pounding or breaking in a mortar; pestillation", + "1", + "Any humming bird of the genus Heliomaster", + "A third part of the profits of fines and penalties imposed at the country court, which was among the perquisites enjoyed by the earl", + "1", + "The act of commiting, or the state of being committed; commitment", + "See Janizary", + "See Dextrogyrate", + "One who pacifies", + "A fat, liquid at ordinary temperatures, but solidifying at temperatures below 0° C", + "Orig", + "An apparatus consisting essentially of a mirror moved by clockwork so as to throw the rays of the sun or a star in a fixed direction; -- a more general term for heliostat", + "Nap of cloth", + "Deprivation of life or of spirits", + "Figures or half figures of men, used as columns to support an entablature; -- called also telamones", + "The theory or science of the method or grounds of knowledge", + "Capable of being pacified or appeased; placable", + "The roes of the sturgeon, prepared and salted; -- used as a relish, esp", + "A leguminous herb (Astragalus glycyphyllos) of Europe and Asia, supposed to increase the secretion of milk in goats", + "A binding by oath", + "Capable of being supposed, or imagined to exist; as, that is not a supposable case", + "The state and government of the pope; the papacy", + "A personal satire in writing; usually, malicious and abusive censure written only to reproach and distress", + "Half-yearly", + "1", + "One who renews or restores to a former condition", + "To ornament at the head of a broad hem by drawing out a few parallel threads, and fastening the cross threads in successive small clusters; as, to hemstitch a handkerchief", + "The cushionlike projection, bearing a tuft of long hair, on the back side of the leg above the hoof of the horse and similar animals", + "1", + "Physiognomic", + "To plaster over; to cover or smear thickly; to bedaub", + "Same as oedematous", + "1", + "One who peddles; a traveling trader; one who travels about, retailing small wares; a hawker", + "A kind of movable dam, in one form consisting of two leaves resting against each other at the top when raised and folding down one over the other when lowered, for deepening shallow parts in a river", + "The sand fluke (b)", + "A juggler who produces illusions by the use of elaborate machinery", + "To frustrate; to bring to naught; to annihilate", + "Occupied with, or pertaining to, belles-lettres", + "Like or related to the genus Clupeaster; -- applied to a group of flattened sea urchins, with a rosette of pores on the upper side", + "1", + "A smart, ready, and witty reply", + "A believer in monism", + "Exclamation", + "An apparition; a phantom; an appearance", + "Affected with a kind of chronic laminitis in which there is a growth of soft spongy horn between the coffin bone and the hoof wall", + "Of or pertaining to a caryatid", + "Pertaining to regicide, or to one committing it; having the nature of, or resembling, regicide", + "1", + "See Vifda", + "A companion", + "Bearing feathers or quills", + "Having a face of a mulberry color, or blotched as if with mulberry stains", + "Before the flood, or Deluge, in Noah's time", + "That which is undergoing putrefaction; the products of putrefaction", + "1", + "1", + "A genus of trilobites characteristic of the Silurian age", + "One of the Phalangoidea", + "A top railing supported by stanchions and equipped with netting", + "An open car or chariot", + "1", + "Tribunician; tribunitial", + "To dislodge; to deprive of lodgment", + "A species of shell (Cypræa argus), beautifully variegated with spots resembling those in a peacock's tail", + "Angry; incensed; enraged", + "1", + "1", + "(a) Of or pertaining to both to the tibia and the tarsus; as, the tibiotarsal articulation", + "A small bar of gold and silver, either pure, or alloyed in some known proportion with copper, for trying the purity of articles of gold or silver by comparison of the streaks made by the article and the bar on a touchstone", + "Having three lights [R", + "An eel", + "p", + "imp", + "An artificial dyestuff obtained as an orange-yellow powder, and regarded as a phenyl hydrazine derivative of tartaric and sulphonic acids", + "Having a form intermediate between that of an egg and a sphere; roundly ovate", + "1", + "A glowworm", + "(a) Having the integument, or skin, hard, or covered with hard plates", + "One of the small white egg-shaped pupæ or cocoons of the ant, often seen in or about ant-hills, and popularly supposed to be eggs", + "Having stamens inserted in the pistil; belonging to the class Gynandria", + "The wintergreern", + "1", + "To use in a tropological sense, as a word; to make a trope of", + "1", + "See Elæolite", + "A process projecting backward and downward from the acromion of the scapula of some mammals", + "Harsh-sounding", + "The quality or state of being premature; early, or untimely, ripeness; as, the prematurity of genius", + "A lock in which a close grip is obtained and a fall attempted by a heave over the hip", + "Tending to strengthen of confirm", + "Having cliffs; broken; craggy", + "Of or relating to a doctor, or to the degree of doctor", + "A writer of feuilletons", + "Hostile", + "A mobile liquid, CO", + "A hard compact mineral, of a dark green color, formerly worn as a remedy for diseases of the kidneys, whence its name; kidney stone; a kind of jade", + "The quality of being religious; religious feeling or sentiment; religiousness", + "Being in unison; unisonant", + "The quality or state of being nasty; extreme filthness; dirtiness; also, indecency; obscenity", + "1", + "To presage; to foreshow; to foretoken", + "good nature; pleasant and easy manner", + "One who, or that which, twitches", + "The potter's field, said to have lain south of Jerusalem, purchased with the bribe which Judas took for betraying his Master, and therefore called the field of blood", + "A Stercoranist", + "A genus of palms, one species of which produces the areca nut, or betel nut, which is chewed in India with the leaf of the Piper Betle and lime", + "Of or pertaining to punishment, to penalties, or to crimes and offenses; pertaining to criminal jurisprudence: as: (a) Enacting or threatening punishment; as, a penal statue; the penal code", + "1", + "A Latin idiom; a mode of speech peculiar to Latin; also, a mode of speech in another language, as English, formed on a Latin model", + "One who hypothecates or pledges anything as security for the repayment of money borrowed", + "In a manner to diminish", + "A captain of a war vessel whose name appeared, or was posted, in the seniority list of the British navy, as distinguished from a commander whose name was not so posted", + "See Cross, n", + "The bindweed (Convolvulus arvensis)", + "A caption or sophistical mode of arguing", + "See Fleer", + "In a prelusory way", + "Having hot blood; excitable; high-spirited; irritable; ardent; passionate", + "Worthy of condemnation; blamable; culpable", + "Solar", + "Of or pertaining to the lap or bosom", + "Incision of the intestines, especially in reducing certain cases of hernia", + "Any Plumularia", + "1", + "To summon; to call", + "One of a sacerdotal college of fifteen men whose chief duty was to take care of the Sibylline books", + "Capable of being tempted; liable to be tempted", + "Crankness", + "Same as Ambassadorial", + "A manufactory where nails are made", + "1", + "A message sent by telegraph; a telegraphic dispatch", + "1", + "A carrying forward, as of a final letter, to a following word; as, for example, a nickname for an ekename", + "Deadly nightshade", + "(a) chancel screen or rood screen", + "Not concluding", + "The quality or state of being lean or thin; leanness", + "One who constitutes or appoints", + "A prickly plant of the genus Carlina (C", + "A condition of the eye in which, through shortness of the eyeball or fault of the refractive media, the rays of light come to a focus behind the retina; farsightedness; -- called also hyperopia", + "A prefix, or combining form, in numerous compounds, usually relating to seed or blood vessels, or to something contained in, or covered by, a vessel", + "Not artificial; not made or elaborated by art; natural; simple; artless; as, an inartificial argument; an inartificial character", + "Presenting a combination of a cube and an octahedron", + "One who sees a thing done; one who has ocular view anything", + "Tending to evert or overthrow; subversive; with of", + "To furbish anew", + "Not decimable, or liable to be decimated; not liable to the payment of tithes", + "To interweave; to intertwine", + "Obtained by derivation; derived; not radical, original, or fundamental; originating, deduced, or formed from something else; secondary; as, a derivative conveyance; a derivative word", + "1", + "A person subjected to the influence of animal magnetism", + "The quality of being conformable; conformability", + "The office or employment of a teller", + "A kind of catchfly (Silene inflata) which is sometimes frothy from the action of captured insects", + "The last syllable of a word except two, as -syl in monosyllable", + "Any one of several species of birds of the genus Sitta, as the European species (Sitta Europæa)", + "To make a short, shrill, cheerful sound; to chirp", + "Imbricate", + "An alkaloid obtained from the leaves of an Australian tree (Duboisia myoporoides), and regarded as identical with hyoscyamine", + "To raise", + "Royal", + "See Mormal", + "A tenacious, elastic, gummy substance obtained from the milky sap of several plants of tropical South America (esp", + "Any starlike meteor or phenomenon", + "An apprehension or opinion formed before examination or knowledge", + "1", + "1", + "A young salmon after its first return from the sea", + "1", + "A girth", + "Affected by the influence of planets; blasted", + "Forensic", + "State of being determinate", + "To swear falsely", + "p", + "Mollifying; softening", + "A byland", + "Oblong", + "A Chilian apocynaceous tree (Aspidosperma Quebracho); also, its bark, which is used as a febrifuge, and for dyspnoea of the lung, or bronchial diseases; -- called also white quebracho, to distinguish it from the red quebracho, a Mexican anacardiaceous tree (Loxopterygium Lorentzii) whose bark is said to have similar properties", + "A falling back; a backsliding", + "Of or pertaining to pantheism; founded in, or leading to, pantheism", + "Any one of numerous species of marine Bryozoa belonging to Vesicularia and allied genera", + "1", + "To harass; to plunder from", + "1", + "Same as Piggery", + "Of or pertaining to philhellenism", + "In certain Sporozoa, a cell formed by the growth of a sporozoite or merozoite (in a cell or corpuscle of the host) which segment by superficial cleavage, without encystment or conjugation, into merozoites", + "Sending out; emitting; as, emissive powers", + "Tonic", + "A tyrant", + "1", + "A small evergreen tree (Theobroma Cacao) of South America and the West Indies", + "1", + "The system of logic and philosophy set forth by Hegel, a German writer (1770-1831)", + "Native carbonate of manganese; rhodochrosite", + "Sherry", + "The property possessed by vegetable tissues of absorbing or discharging moisture according to circumstances", + "An alkaloid accompanying harmaline (in the Peganum harmala), and obtained from it by oxidation", + "To deposit eggs upon, as a flesh fly does on meat; to cause to be maggoty; hence, to taint or contaminate, as if with flyblows", + "Nourishing; promoting growth, or preventing decay; alimental", + "The doctrines, or action, of the Nonjurors", + "1", + "Of a fine blue color; azure", + "The American wood rabbit (Lepus sylvaticus); -- also called Molly cottontail", + "The state of impending; also, that which impends", + "Of or pertaining to the perimeter, or to perimetry; as, a perimetric chart of the eye", + "Having two capsules; as, a bicapsular pericarp", + "A castrated animal; -- usually applied to a horse, but formerly used also of the human male", + "The hypothetical radical SbH4, analogous to ammonium; -- called also antimonium", + "Bad government; want of government", + "To make prolific; to fertilize; to impregnate", + "Having the same bounds; terminating at the same time or place; conterminous", + "See Mohammedanism", + "1", + "To call out or forth; to summon; to evoke", + "The doctrines of Unitarians", + "Bearing a partition; -- said of the valves of a capsule", + "1", + "1", + "An instrument for comparing the relative amount of the light of stars", + "Moldy; ill-smelling", + "Tending to produce reformation; reformative", + "1", + "A variety of shaddock, called also grape fruit", + "An exclamation signifying Praise ye Jehovah", + "That branch of knowledge which has for its subject the characteristics of the human family, developing the details with which ethnology as a comparative science deals; descriptive ethnology", + "One who rates or estimates", + "A variety of bacterium; a microscopic, rod-shaped vegetable organism", + "Same as Oryctere", + "A division of singing birds including the thrushes and allied kinds", + "See Jig, 6", + "To surpass in bleating", + "1", + "Diagonal; diametrical; hence; diametrically opposed", + "1", + "1", + "A boor killed for the table", + "A misgiving", + "1", + "The science of languages, or of the origin, signification, and application of words; glossology", + "1", + "See Chalice", + "One who reasons or argues; as, a fair reasoner; a close reasoner; a logical reasoner", + "To sustain; to support", + "without efficacy or effect", + "An alkaloid distinct from picrotoxin and obtained from the cocculus indicus (the fruit of Anamirta Cocculus, formerly Menispermum Cocculus) as a white, crystalline, tasteless powder; -- called also menispermina", + "Having the appearance of that which is seen in pictures by Antoine Watteau, a French painter of the eighteenth century; --said esp", + "A disciple of Hermogenes, and heretical teacher who lived in Africa near the close of the second century", + "To cover or shield from danger or injury; to defend; to guard; to preserve in safety; as, a father protects his children", + "Of or pertaining to selenite; resembling or containing selenite", + "The act of pulling the wires, as of a puppet; hence, secret influence or management, especially in politics; intrigue", + "A successor", + "1", + "The yaffle", + "Of or pertaining to retinophoræ", + "A dugout canoe; by extension, any small boat", + "Stunned; astounded; astonished", + "Capable of being formed or shaped by a hammer", + "The mutual right to civic privileges, in the different States", + "1", + "1", + "Eating, or subsisting on, plants; as, a plant-eating beetle", + "1", + "Any one of several species of East Indian and Asiatic insectivores of the family Tupaiidæ, somewhat resembling squirrels in size and arboreal habits", + "A French money of account, afterward a silver coin equal to 20 sous", + "A drove or herd", + "A female scold", + "A term used in the Middle Ages for Spanish leather (goatskin tanned and dressed), and hence, any leather handsomely finished, colored, gilded, or the like", + "1", + "Absence of expectation", + "One who admonishes", + "A shallow wooden vessel for holding milk or cream", + "1", + "See Since", + "The lapwing", + "of Besee", + "To effect suberization of", + "Of or pertaining to the island anciently called Lesbos, now Mitylene, in the Grecian Archipelago", + "A division of Trematoda in which alternate generations occur, the immediate young not resembling their parents", + "To apply a surface dressing of manureto,as land", + "A jury, for the trial of a fore foreigner, composed equally of citizens and aliens", + "Same as Dorsal, n", + "A beautiful mottled and curled wood, used in cabinetwork", + "Cocklebur", + "1", + "Mixed with copper; containing copper, or made of copper; like copper", + "Nutritious; nourishing; promoting growth", + "Rasplike; as, raduliform teeth", + "Having no fibers; destitute of fibers or fiber", + "Unpremeditated; impromptu; extempore", + "The doctrine or belief of the Stercoranists", + "To scatter; to spread; to disperse", + "Elevation above the common degree", + "Same as Platyelminthes", + "A believer in Spinozism", + "That part of the skeleton which is developed in tendons, ligaments, and aponeuroses", + "1", + "To divest of ornaments", + "Recognition", + "A simple form of moving-picture machine in which the series of views, exhibiting the successive phases of a scene, are printed on paper and mounted around the periphery of a wheel", + "The quality or states of being spiral", + "The right or duty of a patron; patronage", + "Gentle; courteous; complaisant; yielding", + "Capable of being poured or spread round", + "A spore formed by the union of the contents of two similar cells, either of the same or of distinct individual plants", + "1", + "Shaped like a tentacle", + "See Collop", + "Want of success", + "In the quaternion analysis, a quantity that has magnitude, but not direction; -- distinguished from a vector, which has both magnitude and direction", + "See Tussock", + "Hotchpot", + "A cathartic substance obtained, in the form of yellowish or greenish cakes, as the dried residue of the juice of the wild or squirting cucumber (Ecballium agreste, formerly called Momordica Elaterium)", + "One who sneers", + "See Gonotheca", + "To cause to become an object; to cause to assume the character of an object; to render objective", + "One of the danger signals or safety signals which guide the movement of trains in a block system", + "1", + "Presence in every place at the same time; unbounded or universal presence; ubiquity", + "Having a rounded form resembling that of a globe; globular, or nearly so; spherical", + "Breaking in directions at right angles to each other; -- said of the monoclinic feldspars", + "Calcium carbonate, or carbonate of lime", + "The quality of being notable", + "A compound radical, NH2, not yet obtained in a separate state, which may be regarded as ammonia from the molecule of which one of its hydrogen atoms has been removed; -- called also the amido group, and in composition represented by the form amido", + "A stone bass", + "(a) The noise produced bu a sudden discharge of wind from the bowels", + "Of or pertaining to Nice, a town of Asia Minor, or to the ecumenial council held there A", + "Pertaining to, or derived from, cubebs; as, cubebic acid (a soft olive-green resin extracted from cubebs)", + "That can be passed over in a single course; -- said of a curve when the coördinates of the point on the curve can be expressed as rational algebraic functions of a single parameter th", + "A kind of open helmet, without visor or beaver, and somewhat resembling a hat", + "Of or pertaining to pyrites", + "Having flat petals", + "A Ramist", + "Near; neighboring; vicinal", + "Teaching wisdom", + "Pertaining to, derived from, or containing, glucinum; as, glucinic oxide", + "A medicine or application that promotes the healing of a sore or wound, or the formation of a cicatrix", + "Acres collectively; as, the acreage of a farm or a country", + "The pungent fleshy root of a well-known cruciferous plant (Paphanus sativus); also, the whole plant", + "1", + "The veltfare", + "Resembling an amoeba; amoeba-shaped; changing in shape like an amoeba", + "1", + "One who is addicted to pleonasm", + "A small weir or dam in a river to direct the stream to gaps where fish traps are placed", + "Not oppressive or burdensome", + "One who cultivates or keeps a nursery, or place for rearing trees, etc", + "Of or pertaining to plants of the natural order Solanaceæ, of which the nightshade (Solanum) is the type", + "Not delicate; wanting delicacy; offensive to good manners, or to purity of mind; coarse; rude; as, an indelicate word or suggestion; indelicate behavior", + "A sovereign prince in India; -- a title given also to other persons of high rank", + "Separation by atmolysis", + "A witty saying; a sentence or phrase which is affectedly witty; an attempt at wit; a conceit", + "Fit for anchorage", + "A form of decay in fruit which is overripe", + "1", + "In a timeless manner; unseasonably", + "One of the precursors of the Reformation; -- a nickname corresponding to Lollard, etc", + "A mineral of the feldspar family, commonly occurring in small glassy crystals, also a constituent of some igneous rocks", + "Grand; splendid; illustrious; magnificent", + "The fifth ventricle in the mammalian brain", + "To paint; to cover or color with, or as with, paint", + "To apply again", + "Either one of two species of small African carnivores of the genus Ictonyx allied to the weasels and skunks", + "A transformer without iron, for high frequency alternating or oscillating currents; an oscillation transformer", + "A real or fancied bristling of the hair of the head or body, resulting from disease, terror, chilliness, etc", + "A knot, boss, or mass of hair, natural or artificial, worn by a woman at the back of the head", + "Am, is, or are, not able; -- written either as one word or two", + "See Omentum", + "A genus of trees including the orange, lemon, citron, etc", + "A rock with a porphyritic structure; as, augite porphyrite", + "1", + "To furnish or surround with a collar", + "To flutter over", + "A description of an army, or of what belongs to an army", + "An optical toy, in which figures made to revolve on the inside of a cylinder, and viewed through slits in its circumference, appear like a single figure passing through a series of natural motions as if animated or mechanically moved", + "1", + "One of a class of water spirits, commonly described as of a mischievous disposition", + "Quality of being derogatory", + "1", + "A bituminous mineral resembling asphaltum, found in the county of A", + "An air-filled gap in a magnetic or electric circuit; specif", + "See Chrisom", + "Incongruity; disagreement; unsuitableness", + "See Jaunty", + "(a) A bark canoe used by the Africans", + "A hydrocarbon oil obtained by the distillation of resin, -- used in printer's ink", + "Sun worship", + "A long lock of hair hanging prominently by itself; an earlock; -- worn by men of fashion in the reigns of Elizabeth and James I", + "A making angular; angular formation", + "Of the nature or appearance of a meteor", + "Indetermination", + "1", + "An engine to raise water; or an engine moved by water; also, an engine or machine for extinguishing fires; a fire engine", + "In a winking manner; with the eye almost closed", + "A species of divination, by means of an ax or hatchet", + "To blacken with smut; to foul with soot", + "Of or pertaining to an oöphyte", + "Engaged in, or given to, seeing sights; eager for novelties or curiosities", + "Of or pertaining to the ancient Sabines, a people of Italy", + "Capable of being passed over or traversed; passable", + "(a) An apple fit to stew or coddle", + "1", + "An instrument for describing circles, measuring figures, etc", + "Capable of being prolonged; as, life is prolongable by care", + "1", + "A secret council to deliberate on affairs of government or politics; a number of men combined for party intrigue; a faction; a cabal; as, a junto of ministers; a junto of politicians", + "1", + "Insatiable", + "Wisconsin; -- a nickname", + "The process of mixing clay in potteries with a blunger", + "A dark red crystalline substance, isomeric with and resembling indigo blue, and obtained from isatide and dioxindol", + "To endow with the qualities of a woman", + "A porcelainlike kind of decorative pottery with a high gloss, which is sometimes iridescent", + "See Isabella", + "1", + "Of or pertaining to simples, or a simplist", + "The state of being flaccid", + "1", + "An unfermentable sugar, obtained as an uncrystallizable sirup by the decomposition of melitose; also obtained from a Tasmanian eucalyptus, -- whence its name", + "Same as Goldylocks", + "In an emulative manner; with emulation", + "1", + "The office or position of an uncle", + "Word for word; in the same words; verbally; as, to tell a story verbatim as another has related it", + "In Louisiana, a trifling present given to customers by tradesmen; a gratuity", + "Farewell; a form of address used at parting", + "The rule or practices of bosses, esp", + "Tending to, or intended for, correction; used for correction; as, a correctional institution", + "A mesh", + "1", + "A brewhouse; the building and apparatus where brewing is carried on", + "1", + "A second or renewed liquidation; a renewed adjustment", + "Behavior like that of a fox; [Obs", + "1", + "A high and narrow tank, with a central cylinder for the introduction of compressed air, used in the agitation and settling of pulp (pulverized ore and water) during treatment by the cyanide process; -- so named because, though originally devised in New Zealand, it was first practically introduced in Pachuca, Mexico", + "Of or pertaining to the art of military and naval tactics", + "A storm accompanied with lightning and thunder", + "Same as Cystidea", + "1", + "1", + "Cut down by mowing, as grass; deprived of grass by mowing; as, a mown field", + "Indulgence of one's appetites, desires, or inclinations; -- the opposite of self-restraint, and self-denial", + "a fringe of hair or curls worn about the forehead by women", + "The quality of being acceptable, or suitable to be favorably received; acceptability", + "Transversely; obliquely", + "1", + "See Clamp", + "The yew", + "1", + "At or belonging to an apex, tip, or summit", + "Smart; spruce; trim; nice", + "In a flabby manner", + "1", + "(a) The reed warbler", + "Shibboleth", + "A person employed to scare off crows; hence, a scarecrow", + "1", + "1", + "Any sculptured, chased, or embossed ornament worked in low relief, as a cameo", + "Abounding with rain; wet; showery; as, rainy day or season", + "To bring to mind by a slight mention or remote allusion; to suggest in an indirect manner; as, to hint a suspicion", + "1", + "An annuity, with the benefit of survivorship, or a loan raised on life annuities with the benefit of survivorship", + "Of or pertaining to Iberia", + "Extreme hatred or detestation; the feeling of utter dislike", + "Having no race or kindred; childless", + "To drum", + "See Spitchcock", + "See Aphis", + "A bird (Crex crex or C", + "Invisible", + "The atmosphere", + "An ESkimo house made of material other than snow, esp", + "A plant which keeps its leaves green through the winter", + "Not similar; unlike; heterogeneous; as, the tempers of men are as dissimilar as their features", + "A kind of minuet, in triple time, of French origin, popular in the reign of Queen Elizabeth and for some time after; -- called also passing measure, and passymeasure", + "1", + "A kind of beer", + "An East Indian coin of the value of 12", + "Wicked", + "1", + "See under Dead, a", + "Same as Phalangist", + "A rebound or skipping, as of a ball along the ground when a gun is fired at a low angle of elevation, or of a fiat stone thrown along the surface of water", + "Rustling in arms; resounding with arms", + "A measure of capacity in the metric system; a cubic volume of ten liters, equal to about 610", + "Incomprehensible", + "1", + "One who practices sleight of hand; a prestidigitator", + "Wise; sage; discerning; -- often in irony or contempt", + "1", + "Having no support", + "Steel blue; of the color of tempered steel", + "See Spatulate", + "Excessive or extraordinary gain", + "Of or pertaining to acoustics", + "Of or pertaining to phytography", + "1", + "In Turkey and other Oriental countries, a porter or burden bearer; specif", + "1", + "A second seizure; the act of seizing again", + "Relating to trees", + "Attemperament", + "A joint or coadjutant bishop", + "The art of surveying a region or district", + "Same as Acraspeda, or Discophora", + "A boy employed on shipboard", + "A small statue; -- usually applied to a figure much less than life size, especially when of marble or bronze, or of plaster or clay as a preparation for the marble or bronze, as distinguished from a figure in terra cotta or the like", + "Impudent; bold", + "1", + "Having a form intermediate between dentate and sinuate", + "One who practices alchemy", + "The thrasher, or fox shark", + "To exclude from fellowship; to refuse intercourse with, as an associate", + "A state of being freed from water", + "1", + "A building used as a school of gymnastics", + "1", + "The abnormal change of an irregular flower to a regular form; - - considered by evolutionists to be a reversion to an ancestral condition", + "Not sensible to the bit; not easily governed; as, a hard- mouthed horse", + "The sacred books of the Buddhists in Burmah", + "The rock of an elvan vein, or the elvan vein itself; an elvan course", + "Producing hysteria; as, the hysterogenicpressure points on the surface of the body, pressure upon which is said both to produce and arrest an attack of hysteria", + "In a fragmentary manner; piecemeal", + "To eat greedily; to swallow voraciously; to feed ravenously or like a glutton", + "Am engraver on zinc", + "1", + "1", + "The state of being a cur; one who is currish", + "1", + "1", + "1", + "Shore-inhabiting; of or pertaining to the Limicolæ", + "Of or pertaining to a choir or chorus; singing, sung, or adapted to be sung, in chorus or harmony", + "Pertaining to the Edriophthalma", + "In a dispositive manner; by natural or moral disposition", + "A cultivator of saffron; a dealer in saffron", + "1", + "1", + "The act of compelling, or the state of being compelled; the act of driving or urging by force or by physical or moral constraint; subjection to force", + "1", + "Like feathers", + "Local oscillations in level observed in the case of some lakes, as Lake Geneva", + "Having faith or a faith; honest; sincere", + "A mean or inferior poet, perhaps from his habit of wandering around as a stroller; an itinerant poet", + "1", + "(a) Opium", + "1", + "A silver coin of Ecuador, worth 68 cents", + "1", + "One who mistakes", + "Hundredth", + "The quality of being original; originality", + "To settle permanently in a state; to make firm; to establish; to fix", + "having the quality of contradistinction; distinguishing by contrast", + "A body now known as alkali albumin, but originally considered to be the basis of all albuminous substances, whence its name", + "Hearth money", + "The natural constitution, or physical structure, of a person", + "Of, pertaining to, or designating, the hill Collis Quirinalis, now Monte Quirinale (one of the seven hills of Rome), or a modern royal place situated upon it", + "Divination as to the destinies of one newly born; the act or art of casting nativities; astrology", + "To pound, beat, rub, or grind small or fine", + "Refuse matter", + "A woodcock", + "A lawgiver", + "Vigorous; energetic; with energy; -- a direction to perform a passage with energy and force", + "Having a curved or crooked tail", + "One of the free-swimming sexual zooids of Siphonophora", + "Resembling the genus Buccinum, or pertaining to the Buccinidæ, a family of marine univalve shells", + "One who believes in the second coming of Christ to reign on earth a thousand years; a milllenarian", + "1", + "1", + "See Impoverish", + "The military caste, the second of the four great Hindoo castes; also, a member of that caste", + "A mistaking or mistake; wrong apprehension of one's meaning of a fact; misconception; misunderstanding", + "Relating to wheels or to rotary motion; rotary", + "Same as Exanthema", + "To draw together; to render narrower or smaller; to bind; to cramp; to contract or ause to shrink", + "1", + "A viverrine mammal of Madagascar (Eupleres Goudotii), allied to the civet; -- called also Falanouc", + "Wildcat insurance", + "The operation of dividing the symphysis pubis for the purpose of facilitating labor; -- formerly called the Sigualtian section", + "To destroy the self-possession of; to confuse or confound, as by exciting suddenly a consciousness of guilt, mistake, or inferiority; to put to shame; to disconcert; to discomfit", + "A narrow-sterned boat formerly much used in the Newfoundland fisheries; -- called also pinkstern and chebec", + "A curious South American bird (Anhima, or Palamedea, cornuta), often domesticated by the natives and kept with poultry, which it defends against birds of prey", + "One of a sect in Africa (4th century), mentioned by St", + "Royally", + "The quality of being artful; art; cunning; craft", + "1", + "A blowing or breathing into; inflation; inspiration", + "Alkaline", + "1", + "The act of impinging", + "To entertain", + "A match for lighting candles, lamps, etc", + "See under Kale", + "1", + "With great multiplicity and diversity; with variety of modes and relations", + "In a concrete manner", + "Potassium nitrate; niter, a white crystalline substance, KNO3, having a cooling saline taste, obtained by leaching from certain soils in which it is produced by the process of nitrification (see Nitrification, 2)", + "1", + "Like Raphael's works; in Raphael's manner of painting", + "A barber", + "To remove; to banish; to withdraw; to avoid; to eloign", + "The act or process of inferring from premises or reasons; perception of the connection between ideas; that which is inferred; inference; deduction; conclusion", + "One who, or that which, primes; specifically, an instrument or device for priming; esp", + "Somewhat mucky; soft, sticky, and dirty; muxy", + "1", + "The quality or state of being inalienable; inalienability", + "Inflammation of a vein", + "An instrument for viewing or examining the interior of the stomach", + "Pertaining to, or depended upon, the order or arrangement of strata; as, stratigraphical evidence", + "A counter account", + "Droll; comical; amusing; laughable", + "of Kythe", + "Clay, or potter's earth; sometimes pure clay, or alumina", + "To join in praising", + "Hydroxy quinoline; a phenol derivative of quinoline, -- called also carbostyril", + "Same as Deutohydroguret", + "An impure resin of turpentine, hardened on the outside of pine trees by the spontaneous evaporation of its essential oil", + "Pertaining to a petal; attached to, or resembling, a petal", + "Of or pertaining to the scalds of the Norsemen; as, scaldic poetry", + "1", + "To untwist, as something spun", + "To castrate", + "1", + "Having a part cut off or away; having the corners rounded or cut away", + "A cervical ring of hair or feathers, distinguished by its color or structure; a collar", + "1", + "An old woman", + "Opinionated", + "A common mineral occurring in monoclinic crystals, with a prismatic angle of nearly 90º, and also in massive forms which are often laminated", + "A tub", + "A hypothetical radical of selenium, analogous to sulphonium", + "Transitional", + "A tenure of lands and tenements by a certain or determinate service; a tenure distinct from chivalry or knight's service, in which the obligations were uncertain", + "The act of transposing, or the state of being transposed; transposition", + "1", + "1", + "Past; gone by; hence, past one's prime; worn; faded; as, a passée belle", + "One who, or that which, causes to be remembered", + "A small, short hair or bristle; a small seta", + "1", + "The nightmare", + "A light, low, two-wheeled covered carriage with the driver's seat elevated behind, the reins being passed over the top", + "A chest; hence, a coffin", + "The act of incommoded", + "A shelter", + "Oblique; sloping", + "A compact, feldspathic, igneous rock containing nephelite, haüynite, etc", + "Having a reddish glow; shining", + "Not exceptional; usual", + "imp", + "A kind of worm or larva", + "Fine white bread; a loaf of fine bread", + "One who, or that which, bisects; esp", + "A combining form meaning anterior, front; as, antero-posterior, front and back; antero-lateral, front side, anterior and at the side", + "That order of the Crinoidea which includes most of the living and many fossil forms, having jointed arms around the margin of the oral disk; -- also called Brachiata and Articulata", + "Corrodible", + "1", + "The formation of a bud in place of a fertilized ovule or oöspore", + "Suds made with soap", + "To put in a barge", + "A cistern in the course, or the termination, of a drain, to collect sedimentary or superfluous matter; a privy vault; any receptace of filth", + "Incubation", + "Destitute of ornament", + "A quarter of a crown", + "Concurrence", + "A game arranged as a test of superiority; also, one of a series of such games", + "Causing ateration", + "Pertaining to crystallography", + "The quality of being innate in the mind, or prior to experience; a priori reasoning", + "An herb of the Mint family (Sideritis), supposed to heal sword cuts; also, a species of Galeopsis", + "The action of reducing to dust or powder", + "1", + "One who resides in a place", + "To reckon", + "A unit employed by oculists in numbering glasses according to the metric system; a refractive power equal to that of a glass whose principal focal distance is one meter", + "Of or pertaining to sandstone; as, arenilitic mountains", + "Unskillful; awkward; clumsy; as, a bungling workman", + "The siamang; -- called also ungka ape", + "1", + "In a customary manner; habitually", + "1", + "One skilled in the use of the stethoscope", + "1", + "Capable of living; born alive and with such form and development of organs as to be capable of living; -- said of a newborn, or a prematurely born, infant", + "Muslin", + "Ichorous; thin; limpid", + "A plant with a conspicuous, dry, unwithering involucre, as the species of Antennaria, Helichrysum, Gomphrena, etc", + "1", + "The state of being corporeal; corporeal existence", + "Same as Hemadynamometer", + "See Gaudy, a feast", + "The act or process of refrigerating or cooling, or the state of being cooled", + "1", + "See Droil", + "Dross, as of iron; the scale which files from iron when hammered; -- applied as a name to various minerals", + "(a) A white crystalline substance, C6H8O6, obtained by the oxidation of saccharin, and regarded as the lactone of saccharonic acid", + "A writ of prohibition against proceeding in the spiritual court in certain cases, when the suit belongs to the common-law courts", + "Serving as an antidote", + "The act of appeasing, or the state of being appeased; pacification", + "One of a group of leucocytes whose granules stain only with neutral dyes", + "To invest with the office of prebendary; to present to a prebend", + "Judgment; discrimination", + "(a) A mingled compound in which different ingredients are contained in a liquid state; a mixture", + "Nervousness", + "Digestion", + "1", + "Any one of numerous species of small bark-boring beetles of the genus Scolytus and allied genera", + "Deviation from custom, rule, or right; irregularity; inordinacy", + "To stew, as flounders, eels, etc", + "A substance produced by acting upon uric with warm and very dilute nitric acid", + "A postulate", + "1", + "Sexless; asexual", + "A salt of osmiamic acid", + "To break in pieces by violence; to dash to pieces; to crush", + "Granting, or authorized to grant, dispensations", + "Woody in the lower part of the stem, but with the yearly branches herbaceous, as sage, thyme, hyssop, and the like", + "A papular disease of the skin, of which intense itching is the chief symptom, the eruption scarcely differing from the healthy cuticle in color", + "Food for human beings, esp", + "pertaining to a feast or to festivity; convivial", + "1", + "A kind of manstopping bullet; -- so named from Dumdum, in India, where bullets are manufactured for the Indian army", + "The condition of being nebulated; also, a clouded, or ill- defined, color mark", + "A tough old goose; hence, coarse, bad food of any kind", + "See Guess", + "The mother and ruler of a family or of her descendants; a ruler by maternal right", + "(a) The garfish", + "Serving to consummate; completing", + "Crude; unformed; unorganized; undigested", + "A group somewhat lessdistinct than speciesusually are, but based on characters more important than those which characterize ordinary varieties; often, a geographical variety or race", + "Ware made of metal, as cutlery, kitchen utensils, and the like; ironmongery", + "In the former feudal system of Japan, the class or a member of the class, of military retainers of the daimios, constituting the gentry or lesser nobility", + "1", + "1", + "Reciprocal", + "To call forth; to call into being or action; esp", + "1", + "A combination of absinthic acid with a base or positive radical", + "1", + "1", + "A prefix, also used adjectively, designating: (a) A compound containing oxygen", + "Liable to error; fallible", + "One who pawns or pledges anything as security for the payment of borrowed money or of a debt", + "Having two heads; bicipital", + "The state of being on the right-hand side; also, the quality of being right-handed; right-handedness", + "One who nullifies or makes void; one who maintains the right to nullify a contract by one of the parties", + "Same as Bombazine", + "The art of using the microtome; investigation carried on with the microtome", + "In a sublime manner", + "Of or pertaining to strategy; effected by artifice", + "An Australian parrakeet (Polytelis Barrabandi); -- called also the scarlet-breasted parrot", + "In a crude, immature manner", + "To load or burden; as, to thrack a man with property", + "Without profit; unprofitable", + "To discolor", + "The multiplicand", + "1", + "That which produces coagulation", + "To enlarge", + "Hydraulic lime", + "1", + "The state of being foamy; frothiness", + "Lasting six years, or happening once in six years", + "Any one of a series of compounds analogous to the ketones, and consisting of the sulphuryl group united with two hydrocarbon radicals; as, dimethyl sulphone, (CH", + "Huge; very large", + "Pertaining to, or based upon, many cones", + "The hinder part or buttocks of certain quadrupeds, especially of a horse; hence, the place behind the saddle", + "To pierce or shoot through; to dart repeatedly: -- frequentative of dart", + "See under 1st Back", + "To unroof", + "See Eavesdropper", + "1", + "1", + "Covetous; penurious; stingy; closefisted", + "One who describes the world or universe, including the heavens and the earth", + "A genus of shrubs, natives of Australia, New Zealand, etc", + "A micaceous mineral occurring in small scales", + "A genus of thin papery bright green seaweeds including the kinds called sea lettuce", + "Ribaldry", + "A stuff made of silk and wool", + "To come before; to anticipate; hence, to hinder; to prevent", + "Standing out; projecting beyond some other part; as, exsert stamens", + "Destitute of kindness; unnatural", + "The act of excogitating; a devising in the thoughts; invention; contrivance", + "Seeking; proceeding by inquiry", + "Of or pertaining to the doctrine of philosophical necessity in regard to the origin and existence of things, especially as applied to the actings or choices of the will; -- opposed to libertarian", + "Same as Olibene", + "High-grade stock in which trust funds may be legally invested", + "1", + "To leap or jump about in a sprightly manner; to cut capers; to skip; to spring; to prance; to dance", + "A genus of composite plants, mostly perennial, and of many species including the many varieties of garden chrysanthemums (annual and perennial), and also the feverfew and the oxeye daisy", + "Having many hoofs", + "Of or pertaining to squills", + "Money; riches; lucre; gain; -- generally conveying the idea of something ill-gotten or worthless", + "Having pods", + "Having the nature of a cyme, or derived from a cyme; bearing, or pertaining to, a cyme or cymes", + "1", + "In an obedient manner; with obedience", + "1", + "An Egyptian deity, at first a symbol of the Nile, and so of fertility; later, one of the divinities of the lower world", + "A machine with three pulleys which act together for raising great weights", + "The ketone of palmitic acid", + "See Subah", + "Having the form of a rostellum, or small beak", + "Without fame or renown", + "See Snath", + "A pan used for stewing", + "A screw propeller", + "Pictorial", + "An instrument for crushing the head of a fetus, to facilitate delivery in difficult eases", + "An acrid plant of the genus Polygonum (P", + "In an implacable manner", + "1", + "In a whist manner; silently", + "1", + "Capable of being drawn out [R", + "A cliff", + "1", + "The state or relation of being a child", + "Mesaticephalic", + "Somewhat saintlike; -- used ironically", + "One of the Thysanoptera", + "An amido compound with only one amido group", + "Containing, or pertaining to, a hemisphere; as, a hemispheric figure or form; a hemispherical body", + "The aggrandizement of one's self", + "1", + "1", + "To discover", + "In an anomalous manner", + "A genus of fleshy Alcyonaria, its polyps somewhat resembling flowers with eight fringed rays", + "One of the Monera", + "Pertaining to, or consisting of, feldspar", + "Resembling icicles", + "Covered with wartlike elevations; tuberculate; warty; verrucous; as, a verrucose capsule", + "A vessel fitted with tanks for the carrying of oil or other liquid in bulk", + "See Quitch grass", + "resembling a dragon", + "Rest; quiet", + "Covered or filled with mold; consisting of, or resembling, mold", + "A state of being complicate or intricate", + "One of the Chromidæ, a family of fresh-water fishes abundant in the tropical parts of America and Africa", + "A small ulcerous swelling, coming suddenly; also, a whitlow", + "(a) Pertaining to or connecting the tongue and hyodean arch; as, the hyoglossal membrane", + "To nurse; to lead or teach; to foster; to nuzzle", + "Having no teeth", + "A tick", + "Tengmalm's or Richardson's owl (Nyctale Tengmalmi); -- so called from a superstition of the North American Indians that its note presages death", + "A vanishing; disappearance", + "A kind of motor speed controller permitting of very gradual variation in speed and of reverse", + "See Yellolegs", + "1", + "In a situation to face each other; in an opposite manner or direction; adversely", + "Of or pertaining to the Capitol in Rome", + "Same as Slavonian", + "1", + "Having one of the two florets in the same spikelet neuter, and the other unisexual, whether male or female; -- said of grasses", + "A bond in which the obligor, in consideration of having received a certain sum of money, binds himself to pay a larger sum, on unusual interest, on the death of some specified individual from whom he has expectations", + "In a naked manner; without covering or disguise; manifestly; simply; barely", + "One who bandies words or is very argunentative", + "Of or pertaining to two names; binomial", + "1", + "To return the like for; to repay or requite by an act of the same kind; to return evil for (evil)", + "See Maul-stick", + "The loosely woven substance which lines the chambers within the gleba in certain Gasteromycetes", + "1", + "In the smooth and melodious style of an air; ariose", + "[OE", + "A stepmother", + "1", + "An American market clam (Venus mercenaria)", + "1", + "1", + "A projection downward from the keel of a yacht, resembling in shape the fin of a fish, though often with a cigar-shaped bulb of lead at the bottom, and generally made of metal", + "A kind of sweet wine from Italy", + "Admonisher", + "1", + "A secondary or inner corolla; a corona, as of the Narcissus", + "The doctrines taught by Luther or held by the Lutheran Church", + "An agent or confederate in treachery", + "To undervalue; to depreciate", + "Having the eyes raised on a stalk, or peduncle; -- opposed to sessile-eyed", + "1", + "A sacristan", + "Timid; fearful", + "Having an udder or udders", + "One of the runes adopted into the Anglo-Saxon, or Old English, alphabet", + "Of or relating to Persia", + "One guilty of the crime of burglary", + "Ferruginous", + "1", + "1", + "A rare white earthy substance, consisting of the oxide of thorium; -- formerly called also thorina", + "One who assails", + "In a minute manner; with minuteness; exactly; nicely", + "To render rural; to give a rural appearance to", + "1", + "An instrument for estimating the purity or richness of milk, as a measuring glass, a specific gravity bulb, or other apparatus", + "The quality or state of being simultaneous; simultaneousness", + "(a) The act of enfeoffing", + "Defending, or tending to defend, one's own person, property, or reputation", + "To hold or advocate the doctrine of pessimism", + "Of, like, composed of, containing, nummulites; as, nummulitic beds", + "Relating to a sister; sisterly", + "By way of exchange", + "1", + "1", + "A circular motion, or a circle described by a moving body; a turn or revolution; a circuit", + "Turbidness", + "A division of Bryozoa, in which the cells have circular apertures", + "Same as Dowle", + "Having the surface of a uniform color", + "1", + "Same as Socle", + "A driving or striking against; an appulse", + "See under Blast", + "1", + "The portion of a line formerly occupied by the letter m, then a square type, used as a unit by which to measure the amount of printed matter on a page; the square of the body of a type", + "A person employed to walk over and inspect a section of tracks", + "The principles of the low-church party", + "Conferring honor; tending to honor", + "The act of plucking out; a rooting out", + "The act or process of converting into gas", + "Pertaining to the arachnoid membrane; arachnoid", + "Denudation around or in the neighborhood of an object", + "A traversing base frame, or movable railway, along which the carriage of a barbette or casemate gum moves backward and forward", + "1", + "The act of abolishing; abolition; destruction", + "To yawn; to gape", + "A woman who directs", + "To utter platitudes or truisms", + "Slippery; smooth; crafty; hypocritical", + "Having five angles; quinquangular", + "a", + "The jacksnipe", + "To pant; to be breathlessly anxious or eager (for)", + "1", + "1", + "Not easy; painful", + "1", + "1", + "The quality or state of being giddy", + "One who, or that which, stands by one in need; something upon which one relies for constant use or in an emergency", + "Urged or sas, birds instinct with life", + "An instigator", + "1", + "Of or pertaining to a tube; specifically, of or pertaining to one of the Fallopian tubes; as, tubal pregnancy", + "Having the form of the Greek capital letter Omega (", + "The osprey", + "Pollinose", + "Any one of numerous species of echinoderms of the order Echinoidea", + "A sharp blow; a thump", + "Of, pertaining to, or designating, the fifth pair of cranial nerves, which divide on each side of the head into three main branches distributed to the orbits, jaws, and parts of the mouth; trifacial", + "1", + "Producing, or secreting, sweat; sudoriparous", + "Having sixteen leaves to a sheet; of, or equal to, the size of one fold of a sheet of printing paper when folded so as to make sixteen leaves, or thirty-two pages; as, a sextodecimo volume", + "Having the villi of the placenta collected into definite patches, or cotyledons", + "To deprive of the coif or cap", + "A chirping or creaking, as of a cricket", + "Belonging to, or characteristic of, a system of elementary education which combined manual training with other instruction, advocated and practiced by Jean Henri Pestalozzi (1746-1827), a Swiss teacher", + "1", + "The quality or state of being circular; a circular form", + "To obliterate", + "1", + "Having a selvage", + "1", + "An almoner", + "1", + "Any one of three species of South American birds constituting the family Anhimidæ, and the suborder Palamedeæ", + "1", + "Pertaining to electro-ballistics", + "p", + "Of or pertaining to the temple or temples; as, the temporal bone; a temporal artery", + "In a beaming manner", + "Of or pertaining to the Simian", + "To unite or coalesce", + "A kind of ardent spirits used in southern Europe and the East, distilled from grape juice, grain, etc", + "A thermometer specially constructed for measuring temperetures at a depth below the surface of the ground", + "Acridity; pungency joined with heat", + "One who practices calcography", + "Of or pertaining to posture", + "One who holds a prior to purchase certain public land", + "1", + "A little roll; a roll of coins put up in paper, or something resembling such a roll", + "The wood of trees, esp", + "A bass instrument of the saxhorn family", + "Pertaining to, or formed by, the letters of the alphabet; alphabetic; hence, rudimentary", + "Of, like, or pertaining to, phagedena; used in the treatment of phagedena; as, a phagedenic ulcer or medicine", + "A myth accounting for the discovery of arts and sciences or the advent of a higher civilization, as in the Prometheus myth", + "Serving for compensation; making amends", + "A pompet", + "Abranchiate", + "1", + "The state or quality of being rare", + "One practiced in uranography", + "1", + "Having horns like those of a bull", + "One of a sect of freethinkers among the Mohammedans", + "See Dermis", + "Footpath; pavement; sidewalk", + "The quality or state of being weighty; weight; force; importance; impressiveness", + "(a) A hypothetical hydrocarbon, C4H8, analogous to trimethylene, and regarded as the base of well-known series or derivatives", + "1", + "Of, pertaining to, or induced by, mesmerism; as, mesmeric sleep", + "Unrepentant", + "Furnished with, or bearing, campanes, or bells", + "Catnip", + "A cavity formed by the invagination of the outer wall of the body, as the atrium of an amphioxus and possibly the body cavity of vertebrates", + "The state of being curvilinear or of being bounded by curved lines", + "One who speculates or forms opinions independently of the authority of others; esp", + "1", + "A thin cotton, white, dyed, or printed", + "Following, or more recent than, the Tertiary; Quaternary", + "One who rejects of renounces upon oath; one who swears a false oath", + "See Schlich", + "The quality of being waterish", + "Anything which clogs", + "Same as Scauper", + "An instrument for studying the mechanism of accommodation", + "1", + "The state of being pulseless", + "1", + "A deformity in which the urethra opens upon the top of the penis, instead of at its extremity", + "A word occurring in a corrupt passage of Bacon's Essays, and probably meaning, to stir, to move", + "Moorland", + "To render neat; to clean; to put in order", + "To think too highly or arrogantly; to regard one's own thinking or conclusions too highly; hence, to egotistic, arrogant, or rash, in opinion; to think conceitedly; to presume", + "The process of restoring a cheek which has been destroyed wholly or in part", + "1", + "See Subpoena", + "A genus of Spirobacteria similar to Spirillum, but distinguished by its motility", + "The dignity or jurisdiction of a viscount", + "Of or pertaining to lines connecting places on the earth's surface which have a mean annual rainfall", + "Away", + "Metaphorical; tralatitious; also, foreign; exotic", + "1", + "1", + "Pertaining to Corinth", + "Direct; proving directly; -- applied to reasoning, and opposed to elenchtic or refutative", + "Fitness or appropriateness; striking suitableness; convenience", + "To have in sight; to see clearly; to look at; to regard with the eyes", + "Of or pertaining to a stringed instrument", + "Any arthropod that breathes by means of gills", + "Drunkenness; intoxication by spirituous liquors; inebriety", + "In grief; amiss", + "The office of a nuncio", + "1", + "A laced boot, ankle high", + "The common perch", + "That has lost freshness, color, or brightness; grown dim", + "professional person", + "See Coif", + "The slender, hollow thread of a nettling cell or cnida", + "A firearm which receives its charge through the muzzle, as distinguished from one which is loaded at the breech", + "In an invisible manner, Denham", + "See Trou-de-loup", + "To throw down", + "To blossom again", + "A harbor master", + "1", + "Pertaining to, or characteristic of, the lion; as, a leonine look; leonine repacity", + "Shortened forms of Alcoholate", + "The turnstone", + "To tell again", + "The growing crop, or profits of a crop which has been sown or planted; -- used especially in the plural", + "Pertaining to sex", + "1", + "To deprive of life", + "1", + "Belonging or appropriate to an enemy; showing the disposition of an enemy; showing ill will and malevolence, or a desire to thwart and injure; occupied by an enemy or enemies; inimical; unfriendly; as, a hostile force; hostile intentions; a hostile country; hostile to a sudden change", + "Pertaining to, of the nature of, or affected with, an ægilops, or tumor in the corner of the eye", + "Of or relating to modern Greece, and especially to its language", + "To wound by clandestine detraction; to censure meanly or spitefully (as absent person); to slander or speak evil of (one absent)", + "The act or work of a tinker", + "To animate or inspire mutually", + "latching", + "1", + "1", + "Partaking of the nature of clay, or containing particles of it", + "(a) The hypothetical ketone of suberic acid", + "To clear from alleged fault or guilt; to prove to be guiltless; to relieve of blame; to acquit", + "Irritable; touchy", + "A fleshy plant (Arenaria peploides) growing in large tufts in the sands of the northern Atlantic seacoast; -- called also sea sandwort, and sea purslane", + "Of or pertaining to the mineral jargon", + "Containing or supporting glands; consisting of glands; pertaining to glands", + "The cavity of the mesencephalon; the iter", + "Having no skin, or a very thin skin; as, skinless fruit", + "To adhere to, advocate, or inculcate, the doctrine of polytheism", + "Approximately arctic; belonging to a region just without the arctic circle", + "The quality or state of being black; black color; atrociousness or enormity in wickedness", + "The act or process of producing a jingle; also, the sound itself; a chink", + "To rouse from sleep or torpor; to awake; to wake", + "A hydrocarbon (C", + "The department of physiology which deals with the principles of muscular contraction; the exercise of muscular force or contraction", + "One who, or that which, is substituted or put in the place of another; one who acts for another; that which stands in lieu of something else; specifically (Mil", + "One who is versed in hypnology", + "Capable of being insnared or entrapped", + "To free from bondage or slavery; to disenthrall", + "In being; actually existing; -- distinguished from in posse, or in potentia, which denote that a thing is not, but may be", + "The state or quality of being alive; possession of energy or vigor; animation; quickening", + "1", + "Pertaining to Hybla, an ancient town of Sicily, famous for its bees", + "Absence of removal", + "Belonging to a sundial", + "The male of the honeybee; a drone", + "A genus of coniferous trees of the northen hemisphere, including the Norway spruce and the American black and white spruces", + "Having masts smaller than the usual dimension; -- said of vessels", + "Not having a zone; ungirded", + "See Cleavers", + "A diminutive of Ann or Anne, the proper name", + "1", + "A piece of glass, or other transparent substance, ground with two opposite regular surfaces, either both curved, or one curved and the other plane, and commonly used, either singly or combined, in optical instruments, for changing the direction of rays of light, and thus magnifying objects, or otherwise modifying vision", + "Capable of being, or about to be, delivered; necessary to be delivered", + "Growth or development of new material; neoplasty", + "An extinguisher for candles", + "The system or the principles of the obscurants", + "A disease, the chief symptom of which is a very acute pain, exacerbating or intermitting, which follows the course of a nervous branch, extends to its ramifications, and seems therefore to be seated in the nerve", + "The art or process of determining he constituents of a gaseous mixture by means of the eudiometer, or for ascertaining the purity of the air or the amount of oxygen in it", + "A detailed exposition; relation", + "That part of anatomy which treats of ligaments", + "Peril", + "1", + "Wood for fuel", + "A green substance, supposed to be the cause of the green color of the blood in some species of worms", + "Vehicular", + "One who vindicates; one who justifies or maintains", + "A flying object simulating a pigeon in flight, when projected from a spring trap", + "A small, nocturnal, South American monkey (Nyctipthecus trivirgatus)", + "In a superior position or manner", + "1", + "(a) A writ commanding something to be done, or requiring a reason for neglecting it", + "See Y-", + "1", + "Of or pertaining to the fourth; occurring every fourth day, reckoning inclusively; as, a quartan ague, or fever", + "Horrisonous", + "To flower; to blossom; to bloom", + "Major; in the major mode; as, C dur, that is, C major", + "The act of casting off the skin or shell, as do insects and crustaceans; ecdysis", + "Of or pertaining to a tetrarch or tetrarchy", + "One of the Scutibranchiata", + "The science of inscriptions; the art of engraving inscriptions or of deciphering them", + "To act or perform a second time; to do over again; as, to react a play; the same scenes were reacted at Rome", + "The act of walking", + "A linnæan genus which included the moths in general", + "A genus of herbaceous plants including the flax (Linum usitatissimum)", + "To avenge", + "Of or pertaining to numeration; as, a numerative system", + "To bind or hold by, or as if by, a spell or charm; to fascinate, esp", + "A disbeliever in the existence of God", + "Incapable of being wearied", + "1", + "Divination by the use of a mirror", + "One who philosophizes", + "A bulbous plant (Amaryllis, or Sprekelia, formosissima) from Mexico", + "The quality or state of being titular", + "A combining form from L", + "Free from sorrow", + "In an intelligent manner; with intelligence", + "1", + "1", + "Brilliancy", + "One who enhances; one who, or that which, raises the amount, price, etc", + "1", + "Provided with a pillow or pillows; having the head resting on, or as on, a pillow", + "A swellfish", + "One who romances", + "A South American monkey, the ursine howler (Mycetes ursinus)", + "1", + "A dealer in salted or dried meats, pickles, sauces, etc", + "Not turned; not revolved or reversed", + "The practice of engaging in athletic games; athletism", + "The condition of having more than two teats, or nipples", + "The science of exchange, weight, measures, etc", + "A herbalist", + "A native or inhabitant of Ethiopia; also, in a general sense, a negro or black man", + "Of or pertaining to a layman or the laity", + "Of or pertaining to histography", + "The quality of being just; conformity to truth, propriety, accuracy, exactness, and the like; justice; reasonableness; fairness; equity; as, justness of proportions; the justness of a description or representation; the justness of a cause", + "Professional; practiced", + "In a phonetic manner", + "Embolismic", + "1", + "By profession", + "To call knave", + "To insert in a category or list; to class; to catalogue", + "A disinheriting; disherison", + "1", + "The quality of being impolitic", + "a professional female dancer; a woman who dances at a public exhibition as in a ballet", + "One of the Echinodermata", + "A tiring-room", + "1", + "1", + "1", + "Having the iris of light color; -- said of horses", + "The substance of the cells which inclose the white of birds' eggs", + "1", + "Pertaining to, derived from, glycol and urea; as, glycoluric acid, which is called also hydantoic acid", + "The central, or one of the central, bones of the carpus or or tarsus", + "A genus of cretaceous fossil shells allied to the oyster", + "The enriched block or horizontal bracket generally found under the cornice of the Corinthian and Composite entablature, and sometimes, less ornamented, in the Ionic and other orders; -- so called because of its arrangement at regulated distances", + "The distal end of the mandibles of a bird", + "1", + "To support as a crest; to bear", + "1", + "Having the petals free, that is, entirely separate from each other; -- said of both plant and flower", + "The semifluid, granular interior of certain unicellular organisms, as the inner layer of sarcode in the amoeba; entoplasm; endoplasta", + "A second or new valuation", + "Height; altitude", + "The condition, pursuits, or occupation of a virtuoso", + "A person bound by monastic vows; a nun; a monk", + "See Tedium", + "A composition (usually in symphonic form with three movements) in which one instrument (or two or three) stands out in bold relief against the orchestra, or accompaniment, so as to display its qualities or the performer's skill", + "1", + "A money of account in Persia, whose value varies greatly at different times and places", + "See Laund", + "Passing through all its stages on one host, as certain parasitic fungi; -- contrasted with heterocious", + "Vision", + "Capable of being inquired into; subject or liable to inquisition or inquest", + "Producing wind; flatulent", + "1", + "1", + "A genus of plants, several species of which have very beautiful flowers; -- so called because the elastic capsules burst when touched, and scatter the seeds with considerable force", + "A hidrous potash mica related to muscovite", + "The lapwing, or pewit", + "Colored; specifically (Biol", + "Something expressed verbally; a verbal remark or expression", + "In a desultory manner; without method; loosely; immethodically", + "One of the minute cushions on the feet of certain insects", + "Very desirable", + "Incapable of expansion, enlargement, or extension", + "1", + "Not having joy; not causing joy; unenjoyable", + "One of two species of large South African antelopes of the genus Catoblephas, having a mane and bushy tail, and curved horns in both sexes", + "Written below or underneath; as, iota subscript", + "1", + "An inflammatory affection of any mucous membrane, in which there are congestion, swelling, and an altertion in the quantity and quality of mucus secreted; as catarrh of the stomach; catarrh of the bladder", + "1", + "Looking forward", + "A light, similar to the calcium light, produced by incandescent zirconia", + "1", + "A distraining or levying of a distress; an impounding", + "To anneal", + "1", + "Having tentacles, or organs like tentacles; tentacled", + "Delightful", + "Efficacious in preventing or allaying fever", + "Going round in a circuit; roundabout; indirect; as, a circuitous road; a circuitous manner of accompalishing an end", + "Of or pertaining to Norway, its inhabitants, or its language", + "A forming in panels; panelwork", + "Of or pertaining to bulb; especially, in medicine, pertaining to the bulb of the spinal cord, or medulla oblongata; as, bulbar paralysis", + "A diminutive of the bar, having one fourth its width", + "The office or employment of an accountant", + "A female creditor", + "One of the crooked timbers which are scarfed together to form the lower part of the compound rib of a vessel; one of the crooked transverse timbers passing across and over the keel", + "Containing or resembling collagen", + "The science of mountains; orography", + "Inflammation of the perichondrium", + "The act or process of gathering into a mass; the state of being thus collected; collection; accumulation; that which is conglomerated; a mixed mass", + "Somewhat drunk", + "Automatic stability; also, inherent stability", + "A semisolid unctuous substance, neutral, and without taste or odor, derived from petroleum by distilling off the lighter portions and purifying the residue", + "Full of gayety", + "See Chiaroscuro", + "Of them; their", + "Gray; a gray color; a mixture of white and black", + "Of or pertaining to the Pterosauria", + "1", + "The tarsius, or spectral lemur", + "Previous acquaintance or knowledge", + "A little or short ode", + "A mask; a masquerade", + "The prow or fore part of a ship", + "Dejected; chopfallen", + "The angle that the front edge of the point of a tool is set back from the normal to the surface being cut", + "A ravine", + "In a ravishing manner", + "See Note under Tea, n", + "1", + "A privy; especially, a privy furnished with a contrivance for introducing a stream of water to cleanse it", + "A lawyer", + "Pertaining to saltpeter, or partaking of its qualities; impregnated with saltpeter", + "A train whose coaches are connected so as to have through its entire length a continuous corridor, into which the compartments open", + "In an obtuse manner", + "1", + "A kind of meteorite", + "A self-acting apparatus for regulating temperature by the unequal expansion of different metals, liquids, or gases by heat, as in opening or closing the damper of a stove, or the like, as the heat becomes greater or less than is desired", + "Same as Haulm", + "Helping; helpful; supplying aid", + "1", + "The Jesuit editors of the Acta Sanctorum, or Lives of the Saints; -- named from John Bolland, who began the work", + "Tender regard; mercy; favor", + "A tantalate of uranium, yttrium, and calcium, of a brown or black color", + "The tricks of a jade", + "Trimestrial", + "A catkin or ament; the flower cluster of the hazel, pine, willow, and the like", + "Previous appointment; preordinantion", + "Occurring in good time, in due season, or in proper time for the purpose; suitable to the season; opportune; timely; as, a seasonable supply of rain", + "A slut; a slatternly woman", + "Whisking", + "A hypothetical radical of quinine and related alkaloids", + "To lose", + "A man or woman having odal, or able to share in it by inheritance", + "Turbid; muddy", + "Proclaimed; declared; public", + "Decorated or furnished with olive trees", + "Same as Bushmen", + "With consideration or deliberation", + "Of or pertaining to the pope; taught or ordained by the pope; hence, of or pertaining to the Roman Catholic Church; -- often used opprobriously", + "A flying object simulating a pigeon in flight, when projected from a spring trap", + "1", + "Putrefied", + "A piece of petrified dung; a fossil excrement", + "Not absorbable; specifically (Physiol", + "The body of gendarmes", + "In a flatulent manner; with flatulence", + "Joint signification", + "1", + "1", + "1", + "1", + "A mowing, or that which is gathered by mowing; -- chiefly used in composition; as, an aftermath", + "That part of a boltrope which is sewed to the upper edge or head of a sail", + "Of or pertaining to the retina", + "A powerful alkaloid, C17H21NO4, obtained from the leaves of coca", + "pain in the foot, due to gout, rheumatism, etc", + "1", + "An oppressive, relaxing wind from the Libyan deserts, chiefly experienced in Italy, Malta, and Sicily", + "One who prepares beforehand, as subjects for dissection, specimens for preservation in collections, etc", + "1", + "1", + "To defile; to pollute; to contaminate; to befoul", + "Unfortunate", + "Of or pertaining to catechumens; as, catechumenical instructions", + "Measurement of doses; specif", + "A pit; a pockmark", + "In a strict manner; closely; precisely", + "A deciduous plant of warm climates, generally with fleshy leaves and flowers of a yellow or whitish yellow color, of the genus Zygophyllum", + "Having the bones of the palate arranged as in saurians, the vomer consisting of two lateral halves, as in the woodpeckers", + "Evil premonition; doubt; distrust", + "Bloodless", + "1", + "1", + "To free from company; to dissociate", + "Poultry, etc", + "To astonish; to strike with wonder, esp", + "A bitter herb, probably the same as aster, or starwort", + "Spongy; soft; fat and puffy", + "A surety, under the old writ of mainprise, for a prisoner's appearance in court at a day", + "Nauseous", + "1", + "1", + "Not interesting of affecting; insignificant; not belonging to one", + "1", + "To wail", + "1", + "Producing, or tending to produce, languor; characterized by languor", + "Same as Bumkin", + "Of or pertaining to the Amphibia; as, amphibian reptiles", + "To sleep imperfectly or unsoundly; to slumber; to be heavy with sleepiness; to doze", + "Of or pertaining to the mesonephros; as, the mesonephric, or Wolffian, duct", + "The refuse left after screening sand, coal, ashes, etc", + "A combining form denoting relation to the throat; as, gutturo- nasal, having both a guttural and a nasal character; gutturo-palatal", + "To make perpetual; to cause to endure, or to be continued, indefinitely; to preserve from extinction or oblivion; to eternize", + "Relating to psalmody", + "Having twenty-four leaves to a sheet; as, a vigesimo-quarto form, book, leaf, size, etc", + "To terminate", + "Treatment of severe nervous disorder, as neurasthenia, by rest and isolation with systematic feeding and the use of massage and electricity", + "The art of employing perfumes in medicine", + "The quality or state of being stiff; as, the stiffness of cloth or of paste; stiffness of manner; stiffness of character", + "1", + "Depurated; cleansed; freed from impurities", + "1", + "A peculiar amyloid substance, colored blue by iodine and sulphuric acid, occurring mainly as an abnormal infiltration into the spleen, liver, etc", + "1", + "Same as Ajutage", + ",a", + "Capable of being credited or believed; worthy of belief; entiled to confidence; trustworthy", + "Pert", + "Wine and water sweetened and spiced, -- a favorite West Indian drink", + "1", + "See Sprightful, Sprightfully, Sprightliness, Sprightly, etc", + "To disjoin", + "1", + "To ascribed diabolical qualities to; to change into, or to represent as, a devil", + "Capable of being argued; admitting of debate", + "1", + "The business of one who spins; spinning", + "A concealed hiding place; a burrow; a lair; a hole", + "The quality or state of being pretty; -- used sometimes in a disparaging sense", + "1", + "A plant of various species, chiefly cruciferous", + "Capable of being sustained or maintained; as, the action is not sustainable", + "To choose [Obs", + "1", + "A swaying in a contrary direction; an opposing influence", + "Of or pertaining zoögamy", + "One of the ropes by which the mainsail is hauled aft and trimmed", + "Shining in the night", + "One who attends church", + "A white crystalline substance, C27H55", + "1", + "The officinal squill", + "One who fights against the gods; one who resists God of the divine will", + "Dull; stupid", + "1", + "1", + "Tending to cause perturbation; disturbing", + "1", + "See under Gas", + "Of a pound weight", + "The science which treats of coins and medals, in their relation to history; numismatics", + "Left to discretion; unrestrained except by discretion or judgment; as, an ambassador with discretionary powers", + "Punishment by cutting out the tongue", + "See Saint Elmo's fire, under Saint", + "1", + "Trepidation", + "1", + "Given to talking inanely; loquacious; garrulous", + "One who imposes", + "Seeking information; authorized to examine witnesses or ascertain facts; as, a rogatory commission", + "Having twelve columns in front", + "Light blue; grayish blue; -- a term applied to different shades at different periods", + "A bushman carrying a swag and traveling on foot; -- called also swagsman, swagger, and swaggie", + "1", + "A camp, esp", + "Displeasing; ungrateful; ingrate", + "To steal or take privily (commonly, that which is of little value); to pilfer", + "Neglect or want of observation", + "An osteocomma", + "Rhetoric", + "Agreeing", + "1", + "The tympanum", + "p", + "Producing fumes; fumous", + "of Let, to allow", + "See Langegaye", + "Of or pertaining to brine, or to the sea; partaking of the nature of brine; salt; as, a briny taste; the briny flood", + "1", + "1", + "A short cassock", + "1", + "Mississippi; -- a nickname, from its numerous bayous", + "Not to be effectually opposed; irresistible", + "The state or quality of being cold", + "One who prepares homilies; one who preaches to a congregation", + "To distribute into classes; to arrange according to a system; to arrnge in sets according to some method founded on common properties or characters", + "A treble singer", + "1", + "A hard, heavy, and durable wood, which admits of a fine polish or gloss", + "A subdivision of a phyle, or tribe, in Athens", + "An instrument used by carpenters, joiners, etc", + "A silky, crystalline, waxy substance, forming the less soluble part of beeswax, and regarded as a palmitate of a higher alcohol of the paraffin series; -- called also myricyl alcohol", + "Relating to nymphs; ladylike", + "To praise highly; to extol in a public speech; to write or deliver a panegyric upon; to eulogize", + "See under Dock", + "The quality or state of being unsincere or impure; insincerity", + "Possessing, or characterized by, a crunode; -- used of curves", + "The state of being healthy or healthful; freedom from disease", + "To scatter; to disperse; to rout", + "The sill or threshold of a door", + "(a) Music sung or performed in the open air at nights; -- usually applied to musical entertainments given in the open air at night, especially by gentlemen, in a spirit of gallantry, under the windows of ladies", + "See Carack", + "Entreaty", + "A glass jar or bottle used to accumulate electricity", + "The act of issuing or flowing out", + "Of a reddish color", + "Out of the right, either in a literal or in a figurative sense; wandering; as, to lead one astray", + "1", + "A female citizen", + "A highly flavored blue-molded cheese, made at Roquefort, department of Aveyron, France", + "The act of excavating in the form of stopes", + "Deserving blame; culpable; reprehensible", + "In the United States navy, a first-class petty officer in charge in a fireroom", + "The state of being cohesible", + "To make equal; to reduce to an average; to make such an allowance or correction in as will reduce to a common standard of comparison; to reduce to mean time or motion; as, to equate payments; to equate lines of railroad for grades or curves; equated distances", + "Troops that are mounted on camels", + "1", + "A small castle", + "(a) A handsome tree (Tilia Europæa), having cymes of light yellow flowers, and large cordate leaves", + "Furrowed or pitted; having shallow cavities or lacunæ; as, a lacunose leaf", + "A fabulous narrative; a myth", + "In a weary manner", + "Poorly; thinly", + "Change; alteration; mutation", + "Inconvenience; trouble; annoyance; disadvantage; encumbrance", + "One of the pelets or inner chaffy scales of the flowers or spikelets of grasses", + "1", + "A substance to be dissolved", + "Set with stiff, straight bristles; hispid; as, a strigose leaf", + "Enumeration of parts or particulars", + "To attempt to attract the notice, admiration, or love of; to treat with a show of tenderness or regard, with a view to deceive and disappoint", + "The good principle, or being, of the ancient Persian religion", + "Having a moderate depth of hold; -- said of a vessel", + "Paid for ransom; serving to redeem", + "1", + "An organism whose nature is so difficult to determine that it might be referred to either the animal or the vegetable kingdom", + "Propagation from seed", + "A tunicate", + "One of the elements, related in its chemical qualities to chlorine and iodine", + "See Galloway", + "A half oviparous, or an oviparous, mammal; a marsupial or monotreme", + "A hetman, or chief of the Cossacks", + "1", + "Inflammation of the lungs", + "1", + "A maker of clocks, watches, or dials", + "Solemnness", + "See Sconce", + "1", + "A churl; a boor; a peasant or countryman", + "The throstle", + "One versed in galvanism", + "The act of measuring, or the cost of measuring", + "1", + "1", + "Designating a method of shaft excavation by drifting to a point below, and then raising instead of sinking", + "One of the outer pinions or feathers of the wing of a bird, esp", + "Of, pertaining to, or derived from, the celandine", + "One who drives a team", + "1", + "The name of several aromatic labiate plants, mostly of the genus Mentha, yielding odoriferous essential oils by distillation", + "A small hammer used by marble workers and sculptors", + "= Encenia", + "Confirmation or approbation, as of an act or contract", + "Finical; unduly particular", + "Murder, n", + "imp", + "a", + "1", + "See Poop, v", + "Relating to both parents", + "A complex nitrogenous compound obtained by heating together pyruvic acid and urea", + "Thrusting with the foil; fencing with the point, as distinguished from broadsword play", + "The standard unit of electrical quantity, and also of current", + "The state of being a matron", + "That which is perceived", + "1", + "The act of venerating, or the state of being venerated; the highest degree of respect and reverence; respect mingled with awe; a feeling or sentimental excited by the dignity, wisdom, or superiority of a person, by sacredness of character, by consecration to sacred services, or by hallowed associations", + "In an extravagant manner; wildly; excessively; profusely", + "A large triangular sail set upon a boom, -- used when running before the wind", + "Not dreamed, or dreamed of; not thof", + "A utensil for supporting wood when burning in a fireplace, one being placed on each side; a firedog; as, a pair of andirons", + "(a) Any edentate animal if the family Dasypidæ, peculiar to America", + "A group of Mammalia, including the marsupials and monotremes; - - so called because the corpus callosum is rudimentary", + "To make like a creature; to degrade [Obs", + "A genus of poisonous African serpents, with a horny scale over each eye; the horned viper", + "The climbing stem of the hop", + "An animal one year old, or in the second year of its age; -- applied chiefly to cattle, sheep, and horses", + "An instrument, as a lyre or harp, having three strings", + "Without inclination or dipping; -- said the magnetic needle balances itself horizontally, having no dip", + "One guilty of regrating", + "(a) Shaped like a cup; as, the cotyloid cavity, which receives the head of the thigh bone", + "In an incorporeal manner", + "A germinal vesicle", + "Ungainly; clumsy; awkward; also, troublesome; inconvenient", + "pertaining to ethnography", + "1", + "A vehmic court", + "To cause to loathe, or feel disgust at", + "1", + "Any plant of the genus Helianthus; -- so called probably from the form and color of its flower, which is large disk with yellow rays", + "A square piece of linen used formerly by women instead of a cap; a kerchief", + "1", + "Globular; spherical; orbicular", + "1", + "Pertaining to Flanders, or the Flemings", + "A combining form from Gr", + "1", + "Not given to variation or change; unalterable; unchangeable; always uniform", + "A kind of gall produced by a gallfly on the cup of an acorn, -- used in tanning and dyeing", + "One who, or that which, punches", + "A reflecting telescope, part of which is made to rotate eccentrically, so as to produce a ringlike image of a star, instead of a point; -- used in studying the scintillation of the stars", + "Added; additional", + "A few measures added beyond the natural termination of a composition", + "Foul with snot; hence, mean; dirty", + "1", + "1", + "Too careful", + "Pessimistic", + "An instrument for measuring the quantity or intensity of electricity; also, sometimes, and less properly, applied to an instrument which indicates the presence of electricity (usually called an electroscope)", + "A rude, rustic fellow", + "Salivation, or an excessive flow of saliva", + "A piece of apparatus used for reversing the direction of an electrical current; an attachment to certain electrical machines, by means of which alternating currents are made to be continuous or to have the same direction", + "The quality of being integrable", + "See Cringle", + "Formed or vaulted like a beehive", + "See Nitrobenzene", + "Sulphur", + "Incapable o", + "1", + "(a) A code; a charter; a grant of privileges", + "Having yellow teeth", + "An atomizer", + "1", + "Too large; too great", + "To raise captious and frivolous objections; to find fault without good reason", + "1", + "A light road carriage propelled by the feet of the rider", + "To make old, or obsolete; to make antique; to make old in such a degree as to put out of use; hence, to make void, or abrogate", + "Same as Conoidal", + "In an apish manner; with servile imitation; foppishly", + "See Zincky", + "To wreck", + "An order of Protozoa, allied to the Rhizopoda, and parasitic in other animals, as in the earthworm, lobster, etc", + "A lessening; diminution; decrease", + "The snakebird, 1", + "That part of the starch granule or granulose which is soluble in water", + "1", + "Quality of being fidgety", + ", Pertaining to the hagiographa, or to sacred writings", + "The wild or bezoar goat", + "Capable of being changed from a solid to a liquid state", + "Full demonstration", + "A timekeeper; especially, a watch by which small intervals of time can be measured; a kind of stop watch", + "Governed by one's own will; not yielding to the wishes of others; obstinate", + "In a drowsy manner", + "Characterized by sterility; infecund", + "1", + "Pertaining to, or employed in, polygraphy; as, a polygraphic instrument", + "The sickness occasioned by intemperance; surfeit", + "Diuretic", + "An abbreviation of hypochonaria; -- usually in plural", + "1", + "To dethrone or unthrone", + "A white, crystalline, nitrogenous substance, C2O2N3H5, formed by heating urea", + "Well-ordered; orderly; regular; methodical", + "The office, dignity, or government of a caliph or of the caliphs", + "Having the food yolk placed at the center of the ovum, segmentation being either regular or unequal", + "A violent whirling wind; specifically (Meteorol", + "A foot of two syllables, the first long and the second short, as in the Latin word ante, or the first accented and the second unaccented, as in the English word motion; a choreus", + "Destitute of haze", + "In collision; entangled", + "An organ stop of delicate stringlike quality, having for each finger key a pair of pipes, of which one is tuned slightly sharp to give a wavy effect to their joint tone", + "Having the property of conducting", + "1", + "Subovate", + "1", + "A yellow, crystalline substance, resembling aurin, and obtained by the oxidation of pittacal; -- called also eupittonic acid", + "1", + "To educate in a wrong manner", + "Same as Hemostatic", + "1", + "Beaten or harassed by the weather; worn by exposure to the weather, especially to severe weather", + "Pertaining to the decemvirs in Rome", + "(Bot", + "One who favors or advocates extension", + "An arachnidan", + "1", + "Ambrosial", + "See Lymphoma", + "1", + "A staminodium", + "A verse wanting two syllables at its termination", + "1", + "Obovate, with a concavity in each side, like the body of a violin; fiddle-shaped; as, a panduriform leaf; panduriform color markings of an animal", + "To acquaint previously or beforehand", + "1", + "See Peephole", + "See Obi", + "More distantly or remotely", + "To raise to the state of an angel; to render angelic", + "A handle, as of a mop; a stale", + "Adjournment; postponement", + "A treatise upon fish or the art of fishing; ichthyology", + "pl", + "Wretched", + "Not contiguous; not adjoining or in contact; separate", + "Pertaining to a residue; remaining after a part is taken", + "One of the smooth areas surrounding the tubercles of a sea urchin", + "Parturient", + "Capable of being congealed; capable of being converted into jelly", + "1", + "The act or art of dissecting the brain", + "Invincible", + "Having, or consisting of, three stigmas", + "Belonging to, or resembling, a family of plants, of which the dogbane (Apocynum) is the type", + "A fusty state or quality; moldiness; mustiness; an ill smell from moldiness", + "1", + "One who admits the existence of material beings only; a materialist", + "An alkaloid, C8H13N, obtained by the chemical dehydration of tropine, as an oily liquid having a coninelike odor", + "To treat or impregnate with iodine or its compounds; as, to iodize a plate for photography", + "In a spicy manner", + "One who conforms; one who complies with established forms or doctrines", + "A kind of militia in Poland, consisting of the gentry, which, in case of invasion, was summoned to the defense of the country", + "The act of remonetizing", + "The beginning of the day, or first appearance of light; the dawn; hence, the beginning", + "Situated under, or on the ventral side of, the intestine", + "Pertaining to the first in time of the three subdivisions into which the Tertiary formation is divided by geologists, and alluding to the approximation in its life to that of the present era; as, Eocene deposits", + "A state of greenness; verdancy", + "An alkaloid found in opium in small quantities, and extracted as a white crystalline substance", + "Pertaining to zoöchemistry", + "See Exigenter", + "One of several alkaloids found in the leaves of the oleander", + "1", + "To marry again", + "A machine for throwing water by hand power, as a garden engine, a fire extinguisher, etc", + "Pertaining to, or like, an areola; filled with interstices or areolæ", + "A trade market in the woolen districts", + "An order of sponges, having simple siliceous spicules and keratose fibers; -- called also Keratosilicoidea", + "One who implores", + "Not apprehensive; regardless; unconcerned", + "Sullen; displeased", + "A philosophaster; a philosopher", + "Characterized by violence and passion; unruly; rampant", + "(a) The Centaurea behen, or saw-leaved centaury", + "(a) A coniferous shrub (Juniperus Sabina) of Western Asia, occasionally found also in the northern parts of the United States and in British America", + "Having only one leaflet, as the leaves of the orange tree", + "That branch of science which treats of mountains and mountain systems; orology; as, the orography of Western Europe", + "Having no communion or intercourse with each other", + "1", + "1", + "1", + "A place where eggs are deposited (as by sea birds) or kept; a nest of eggs", + "Capable of being ascended; climbable", + "Passing or traveling about a country; going or preaching on a circuit; wandering; not settled; as, an itinerant preacher; an itinerant peddler", + "Pertining to, or of the same horizon as, certain Mesozoic strata of the Rhetian Alps", + "1", + "Humble condition or estate; humility", + "To develop excessively; specif", + "In a stooping or inclined position", + "See Ooze", + "An unknown land; unexplored country", + "A genus of shrubs or small trees, having the foliage covered with small silvery scales; oleaster", + "Of or pertaining to methodists, or to the Methodists", + "One who treats of, or collects, seeds", + "An apparatus for the determination of the amount of urea in urine, in which the nitrogen evolved by the action of certain reagents, on a given volume of urine, is collected and measured, and the urea calculated accordingly", + "Made of silver", + "Capable of being emulated", + "To remove across some space; to put in an opposite or another place", + "See Enchant", + "1", + "To enact again", + "The richest kind of stuff used in garments in the Middle Ages, the web being gold, and the woof silk, with embroidery : -- made originally at Bagdad", + "Of or pertaining to ornithotomy", + "The quality or state of being incontestable", + "1", + "A teat, pap, or nipple; -- formerly that of a human mother, now that of a cow or other beast", + "The state or quality of being heteromorphic", + "To alter or vary between; to change", + "Of or pertaining to the Homoptera", + "1", + "Want of vision or of the power of seeing", + "1", + "1", + "To entangle as in a cobweb; to mix confusedly", + "Full of game or games", + "Composed of leaves united by their edges (coalescent)", + "Having a bud or button, or a kind of trefoil, at the end; furnished with knobs or buttons", + "An alkaline salt of fluorescein, obtained as a brownish red substance, which is used as a dye; -- so called from the peculiar yellowish green fluorescence (resembling that of uranium glass) of its solutions", + "To represent by epigrams; to express by epigrams", + "Of or pertaining to neology; employing new words; of the nature of, or containing, new words or new doctrines", + "Usual; customary", + "The sensitiveness exhibited by small free-swimming organisms, as bacteria, zoöspores of algæ, etc", + "See Fluorescence", + "Zeal or party spirit in politics", + "1", + "A kind of reflecting microscope", + "The good humor or mirth indulged in upon festive occasions; a convivial spirit or humor; festivity", + "1", + "A passage, usually vertical, for admitting fresh air into a mine or a tunnel", + "Shafts, collectivelly; a system of connected shafts for communicating motion", + "A contrivance for effecting ventilation; especially, a contrivance or machine for drawing off or expelling foul or stagnant air from any place or apartment, or for introducing that which is fresh and pure", + "1", + "Bibliographer", + "Incapable of being supported or borne; unendurable; insufferable; intolerable; as, insupportable burdens; insupportable pain", + "Disembodied", + "Learning; especially, mathematics", + "A salt of persulphocyanic acid", + "1", + "Pertaining to the mutual intercourse or relations of persons in society; social", + "1", + "To frustrate or disappoint; to deceive or defraud, by nonfulfillment of engagement; to leave in the lurch; to give the slip to; as, to bilk a creditor", + "Of or pertaining to the Octandria; having eight distinct stamens", + "One who holds the doctrine of the immortality of the soul", + "A heavy weapon of the Australian aborigines with a sharp- pointed end, about nine inches in length, projecting at right angles from the main part", + "A nonmotile gamete, found in certain lower algæ", + "Any item of movable or immovable property except the freehold, or the things which are parcel of it", + "In a conjugal manner; matrimonially; connubially", + "A small instrument containing a minute particle of a radium compound mounted in front of a fluorescent screen and viewed with magnifying lenses", + "1", + "1", + "A slender, nearly leafless, American herb (Polygonum articulatum), with jointed spikes of small flowers", + "1", + "Protestant", + "See Garefowl", + "Bearing, or producing, nuts", + "The putting of one case for another", + "A fluophosphate of magnesia, occurring in yellowish crystals, and also in massive forms", + "Having the stamens and pistils in separate flowers", + "(a) = Dumbness", + "One who grows or produces; as, a grower of corn; also, that which grows or increases; as, a vine may be a rank or a slow grower", + "Of or pertaining to the city or university of Oxford, England", + "To deprive of sacramental character or efficacy; as, to unsacrament the rite of baptism", + "1", + "1", + "A uniting; union", + "To plunge; to implunge", + "The inner corona", + "The name of several kinds of apples; as, the blue pearmain, winter pearmain, and red pearmain", + "A signal telegraph; an apparatus for giving signals by the disposition of lanterns, flags, oscillating arms, etc", + "Any tree of the genus Platanus", + "1", + "Darkly; gloomily", + "The property of cutting at right angles", + "The act of asserting one's self, or one's own rights or claims; the quality of being self-asserting", + "1", + "See 1st Butt, 10", + "A composite plant of the genus Lactuca (L", + "Indulging in a vagrant or idle exercise of the imagination; roaming upon a fruitless quest; idly fanciful", + "Physiology", + "Prelacy; episcopacy", + "Lamarckism", + "Mosslike; resembling moss", + "To allure; to lay a bait for", + "The plural of this", + "Of, pertaining to, or derived from, the meadowsweet (Spiræa); formerly, designating an acid which is now called salicylic acid", + "A tribe of bivalve mollusks, characterized by the closed state of the mantle which envelops the body", + "A measure of capacity or volume in the metric system; one tenth of a liter, equal to 6", + "A very large seal (Macrorhinus proboscideus) of the Antarctic seas, much hunted for its oil", + "A medicine that promotes the menstrual discharge", + "1", + "In an unessential manner", + "Furnished with weapons, or arms; armed; equipped", + "Plain; undyed; -- applied to Indian silk", + "A subdivision at the base of the cretaceous formation in Western North America; -- so named from the region where the strata were first studied", + "The act of converting into forest or woodland", + "(a) Same as Benzole", + "Capable of being discovered, found out, or perceived; as, many minute animals are discoverable only by the help of the microscope; truths discoverable by human industry", + "A fine material for ladies' shawls, scarfs, handkerchiefs, etc", + "1", + "Characterized by concinnity; neat; elegant", + "Of or pertaining to pasigraphy", + "Practicing; professional", + "A marrying eight times", + "Mezzo-rilievo", + "To make, or talk in, enigmas; to deal in riddles", + "Unimaginable; inconceivable", + "A good angel", + "A minute and tedious discourse on trifling things", + "Lean; thin", + "1", + "Abounding in slush; characterized by soft mud or half-melted snow; as, the streets are slushy; the snow is slushy", + "A covering; -- applied especially to the bundles of longitudinal fibers in the upper part of the crura of the cerebrum", + "One of a set of photographs of a moving object, taken for the purpose of recording and exhibiting successive phases of the motion", + "Of or pertaining to the useful or mechanic arts, or to any science, business, or the like; specially appropriate to any art, science, or business; as, the words of an indictment must be technical", + "Injury; invasion of another's rights", + "A New Latin plural combining form or suffix from Gr", + "The state or condition of a cousin; also, the collective body of cousins; kinsfolk", + "By way of ornament", + "To train up; to educate", + "Having webbed feet; palmiped; as, a goose or a duck is a web- footed fowl", + "In an incorrigible manner", + "Hypochondriasis", + "The act of helping or aiding; help", + "Belonging to sex; having sex; distinctively male of female; as, the sexed condition", + "The man who manages the movable scenes in a theater", + "A genus of small beetles, several of which, in the larval state, are very destructive to woolen goods, fur, etc", + "Baptism", + "Accustomedness; habit; habitual use", + "1", + "1", + "To lean or incline upon anything", + "A policy in which the value of the goods, property, or interest insured is specified; -- opposed to open policy", + "A smith who makes jacks", + "Same as Trigonal", + "A light, loose dress or robe", + "1", + "Pertaining to ablution", + "See Index", + "To shiver; to have chills", + "Undefiled", + "Bloody; cruentate", + "1", + "The act of caressing; manifestation of tenderness", + "Tending to spoil; destructive; spoliative", + "The act of habituating, or accustoming; the state of being habituated", + "A hydrocarbon radical, C5H11, of the paraffine series found in amyl alcohol or fusel oil, etc", + "The starling", + "Ferforth", + "The belief or acknowledgment of the existence of a God, as opposed to atheism, pantheism, or polytheism", + "The Osage orange", + "One who imitates Pindar", + "One who holds the theory or catastrophism", + "Capable of being weighed; having appreciable weight", + "One who ferrets", + "Not adulterated; pure", + "Weak in intellect; half-witted; silly", + "Having a mistaken confidence; wrongly trusting", + "Go away; begone; away; -- chiefly used in driving off a cat", + "Pertaining to, or derived from, beeswax or Chinese wax; as, cerotic acid or alcohol", + "A sweetheart or mistress", + "One of the Ophidia; a snake or serpent", + "1", + "The characteristics or practices of a filibuster", + "Dreggy; waste; worthless", + "1", + "To cause to wheel or turn in an opposite direction", + "The morbid phenomena produced by dwelling among marshes; malarial disease or disposition", + "1", + "Of or pertaining to theurgy; magical", + "See Caterer", + "Orchestral", + "1", + "1", + "An apparatus for the separation of dry comminuted ore, by exposing it to intermittent puffs of air", + "Involuntary", + "Relating to encrinites; containing encrinites, as certain kinds of limestone", + "1", + "To annul the marriage of; to divorce", + "A separating; removal; also, an abscess", + "1", + "Same as Antaphrodisiac", + "A grimace", + "1", + "Bearing cirri, as many plants and animals", + "1", + "Pertaining to, or resembling, a comet", + "The act of kindling or the state of being kindled; ignition", + "See Account", + "The twelfth month of the Hebrew ecclesiastical year, and the sixth of the civil", + "The ruins of the fallen roof resulting from the removal of the pillars and stalls", + "Upside down", + "Exhibiting pseudo-symmetry", + "1", + "A medicine that relaxes; a laxative", + "Not accomplished or performed; unfinished; also, deficient in accomplishment; unrefined", + "1", + "One who, or that which, covers", + "1", + "A member of a university or a college who has not taken his first degree; a student in any school who has not completed his course", + "1", + "A member of a common form of truss, as a roof truss", + "A light, covered, four-wheeled pleasure carriage with two seats", + "1", + "A greenish or reddish crystalline substance, NaNH2, obtained by passing ammonia over heated sodium", + "1", + "1", + "Name", + "Same as Odontotormæ", + "See Tarsius", + "Lady; mistress; madam; -- a title of respect used in Spain, prefixed to the Christian name of a lady", + "Pertaining to, or desingating, an acid (called also valeric acid) derived from pentane", + "To write as a poet; to compose verse; to idealize", + "1", + "See Hegira", + "Hindered; obstructed", + "Minutely hispid", + "The act of impeaching, or the state of being impeached; as: (a) Hindrance; impediment; obstruction", + "Having a loud voice; noisy; clamorous", + "See Pretense, Pretenseful, Pretenseless", + "The part of the oviduct of certain trematode worms in which the ova are completed and furnished with a shell", + "The business of making hats; also, stuff for hats", + "Of or pertaining to the square root of the cube of a quantity", + "Quality of being salient; hence, vigor", + "1", + "Broad-headed", + "Situated on the ventral side of the notochord; as, the subnotochordal rod", + "Running under or beneath", + "1", + "Affected with thick wind", + "1", + "To deprive of the viscera, or entrails; to eviscerate; to disembowel", + "In an inseparable manner or condition; so as not to be separable", + "The large, hard-shelled nut of the cocoa palm", + "Feeding on animals", + "A plug introduced into a natural or artificial cavity of the body in order to arrest hemorrhage, or for the application of medicine", + "The upland plover", + "To form into a body; to invest with a body; to collect into a body, a united mass, or a whole; to incorporate; as, to embody one's ideas in a treatise", + "1", + "1", + "The quality or state of being versable", + "The Baltimore oriole (Icterus galbula); -- so called because its nest is suspended from the limb of a tree", + "(a) A male fox", + "1", + "Of, pertaining to, or designating, an acid obtained as a dark amorphous substance by the long-continued boiling of sucrose with very dilute sulphuric acid", + "Nevada; -- a nickname alluding to its silver mines", + "1", + "Not capable or susceptible of effervescence", + "An inventory; a record", + "To undo or overthrow by preaching", + "1", + "Indistinct; slurred over", + "The quality of being affectionate; fondness; affection", + "1", + "Capability of appeal", + "One of a sect of Adamites in the fifteenth century; -- so called from one Picard of Flanders", + "A declamatory strain or flight of censure or abuse; a rambling invective; an oration or harangue abounding in censorious and bitter language", + "To make dim; to obscure or darken", + "The quality or state of being sugary, or sweet", + "Of or pertaining to a synagogue", + "pl", + "The quality or state of being incalculable", + "To migrate together", + "One who has charge of the baggage at a railway station or upon a line of public travel", + "Of or pertaining to metrology", + "Pertaining to, or derived from, plants of the genus Veratrum", + "Pertaining to, or derived from, hexane; as, hexoic acid", + "In a hostile manner", + "3d pers", + "1", + "To wax or grow too rapindly or too much", + "Having little scales; squamellate; squamulate", + "A balsam of the Spanish West Indies", + "1", + "Having a thin, sharp face, like a weasel", + "A handsome breed of the common fowl, remarkable for the great courage and pugnacity of the males", + "To have in wrong estimation; to repute or estimate erroneously", + "A device for determining the refractive state of the eye by observing the movements of the retinal lights and shadows", + "To throb, as a pulse; to beat, as the heart", + "1", + "The quality or state of being subtle; subtlety", + "One who, or that which, unfolds", + "A prefix from Eng", + "A spore borne at the extremity of the cells of fructification in fungi", + "The act of undervaluing; a rate or value not equal to the real worth", + "(a) The California gray whale", + "A meteor appearing to radiate from a point in the constellation Andromeda, -- whence the name", + "1", + "Bifurcate", + "See Spoom", + "A small American hare or rabbit (Lepus aquaticus) found on or near the southern coasts of the United States; -- called also water rabbit, and swamp hare", + "1", + "Viewing all; taking a view of the whole", + "A halfround single-cut file or fioat, having one curved face and one straight face, -- used by comb makers", + "Description of fossils", + "1", + "A wind instrument whose sounding parts are reeds, consisting of a thin tongue of brass playing freely through a slot in a plate", + "To double the natural darkness of (a place)", + "One of a peculiar kind of internal buds, or germs, produced in the interior of certain Bryozoa and sponges, especially in the fresh- water species; -- also called winter buds", + "Unformed or ill-formed; deformed; shapeless", + "The act of suffocating, or the state of being suffocated; death caused by smothering or choking", + "1", + "1", + "A short caulis or stem, esp", + "The teledu", + "Any annelid resembling Nereis, or of the family Lycoridæ or allied families", + "The quality of being alimentary; nourishing quality", + "A soapy mixture obtained by treating an essential oil with an alkali; hence, any similar compound of an essential oil", + "Facing toward the axis of the flower, as in the introrse anthers of the water lily", + "A compound medicinal powder, used by the ancients to sprinkle on ulcers, to absorb perspiration, etc", + "Money paid for the maintenance of a beacon; also, beacons, collectively", + "In appearance; in show; in semblance; apparently; ostensibly", + "1", + "In various or different ways", + "1", + "1", + "The leather strap by which the shield of a knight was slung across the shoulder, or across the neck and shoulder", + "The science of motion; kinematics", + "Between fascicles or bundles; as, the interfascicular spaces of connective tissue", + "Pertaining to lewdness or fornication; lewd", + "An oxychloride of copper, used as a green pigment; also, a carbonate of copper similarly employed", + "Same as Serolin (b)", + "The ball or globe of the eye", + "1", + "To stammer", + "A week day, esp", + "To print wrong", + "Pertaining to, or derived from, a ferricyanide", + "A periodical sale of ore in the English mining districts; -- so called from the tickets upon which are written the bids of the buyers", + "Pertaining to petrous, oe periotic, portion of the skull and the hyoid arch; as, the petrohyoid muscles of the frog", + "A rounded mass of anything, esp", + "To place in huts; to live in huts; as, to hut troops in winter quarters", + "Imperfectly baked; hence, not brought to perfection; unfinished; also, of weak or dull understanding", + "Small cubes used in gaming or in determining by chance; also, the game played with dice", + "1", + "Slightly faint; somewhat faint", + "The quality of being triliteral; as, the triliterality of Hebrew roots", + "A variety of siliceous slate, of which hones are made; razor stone; Turkey stone; hone stone; whet slate", + "Of thee, or belonging to thee; the more common form of thine, possessive case of thou; -- used always attributively, and chiefly in the solemn or grave style, and in poetry", + "Equal weight; equiponderance", + "A fantastic grimace or contortion of the body", + "A Mongolian race, ancestors of the Finns", + "A fragment or particle rubbed off by the act of filing; as, iron filings", + "Antagonistic to one's country or nation, or to a national government", + "Shaped like an arrowhead; triangular, with the two basal angles prolonged downward", + "One who makes much use of proverbs in speech or writing; one who composes, collects, or studies proverbs", + "A plant (Veronica Beccabunga), with flowers, usually blue, in axillary racemes", + "Inalienable; as, unalienable rights", + "Entire; total", + "A small plane or surface, usually capable of adjustment but not of manipulation, for preserving lateral balance in an aëroplane or flying machine", + "imp", + "An ancient stringed instrument; -- so called because, in form, it resembled the Delphic tripod", + "1", + "Affording, or disposed to afford, accommodation; obliging; as an accommodating man, spirit, arrangement", + "1", + "Incontestable", + "A small chain", + "Not discerpible; inseparable", + "See Hostler", + "Pertaining to both larynx and trachea; as, the laryngotracheal cartilage in the frog", + "Having two principal ribs running longitudinally, as a leaf", + "One who threatens", + "Same as Epiglottic", + "A sphere of light; esp", + "1", + "1", + "Incapable of being ransomed; without ransom", + "A bully or braggadocio; a swaggering, boastful fellow; a swaggerer", + "1", + "1", + "Dotingly fond of, or servilely submissive to, a wife; uxorious; also, becoming a wife; pertaining to a wife", + "The harness of a drawloom", + "1", + "1", + "1", + "1", + "Of or pertaining to a dwarf tree; shrublike", + "A muscle which surrounds, and by its contraction tends to close, a natural opening; as, the sphincter of the bladder", + "1", + "Rascally; scandalous", + "1", + "The process of becoming, or the state of being, transparent like glass", + "1", + "That can not be changed; constant; as, a changeless purpose", + "A wage paid by the day, or some fixed period, on condition that a minimum task be performed", + "The deity who assigns to every man his lot", + "Same as Indican", + "Capable of being instructed; teachable; docible", + "A combining form (also used adjectively) designating certain double compounds of titanium with some other elements; as, titano- cyanide, titano-fluoride, titano-silicate, etc", + "Having the form of the tongue; tongue-shaped", + "A division of Lepidoptera, including the butterflies; -- so called because they fly only in the daytime", + "To utter a soliloquy; to talk to one's self", + "Pertaining to, affected with, or resembling, lethargy; morbidly drowsy; dull; heavy", + "To drug abundantly or excessively", + "Characteristic of a goat; goatlike", + "Pertaining to the Proboscidea", + "Chapped; cracked with cold; affected with chilblains; as kibed heels", + "Belonging to a certain number; counting as one of a collection or body", + "To pound", + "The system of teaching law in which the instruction is primarily a historical and inductive study of leading or selected cases, with or without the use of textbooks for reference and collateral reading", + "The saury pike; -- called also gofnick", + "See Phantom", + "An organic base, especially one of a class of substances occurring ready formed in the tissues of plants and the bodies of animals", + "The quality of being imposing", + "Of or pertaining to yesterday; relating to the day last past", + "An extinct genus of brachiopods, very characteristic of the Carboniferous rocks", + "Of or pertaining to orthodromy", + "1", + "A genus of extinct animals, so named from fossil footprints rudely resembling impressions of the human hand, and believed to have been made by labyrinthodont reptiles", + "Aptness to start", + "Not spilt or wasted; not shed", + "An inferior officer of justice in Spain; a warrant officer; a constable", + "One who disobeys the law; a criminal", + "Verisimilar", + "Destitute of a hive", + "A two-stroke cycle for an internal-combustion engine", + "1", + "1", + "Sportive; gamboling; frolicsome; indulging a sportive fancy; humorous; merry; as, a playful child; a playful writer", + "Having (such) a leaf or (so many) leaves; -- used in composition; as, broad-leafed; four-leafed", + "See Seize", + "1", + "An instrument turning on a center, for boring holes", + "A draught or model from which to build; especially, one of the full size of the work to be done; a detailed drawing", + "To incorporate", + "A valuable furniture wood from India and Ceylon, of a hazel- brown color, with black stripes, very hard in texture", + "Somewhat old", + "To talk or write as an egotist", + "To make clean by wiping; to wipe away; to cleanse; hence, to purge", + "1", + "In a grunting manner", + "An instrument for measuring sensations of pain due to pressure", + "A condition of the muscles induced by exposure to severe cold, in which the electrical action of the muscle is reversed", + "A mineral of a dark brown color, generally with a fibrous, massive structure", + "Same as Glycocoll", + "Cockfighting", + "1", + "Pertaining to adenography", + "To restore from folly, or from being a fool", + "Incapable of being limited or bounded; immeasurable; limitless; boundless; as, illimitable space", + "A high, stiff collar for the neck; also, a hem or band about the skirt of a garment, -- worn by men in the 17th century", + "Of or pertaining to rhinoplasty; as, a rhinoplastic operation", + "1", + "In very truth; beyond doubt or question; in fact; certainly", + "Having power to determine; limiting; shaping; directing; conclusive", + "The breeches; trousers", + "A long wooden pin used in fastening the planks of a vessel to the timbers or to each other", + "To tell beforehand; to signify by tokens; to predestine", + "Of or pertaining to delusions; as, delusional monomania", + "Obs", + "In a paramount manner", + "A fixed star of the first magnitude in the left foot of the constellation Orion", + "The Indian four-horned antelope; the chikara", + "Any one of numerous species of fresh-water mussels belonging to Unio and many allied genera", + "Full of venules, or small veins", + "A short timber running lengthwise of a ship, from one transverse desk beam to another; also, one of the cross timbers that strengthen a hath; -- usually in pl", + "1", + "The certificate issued to the purchaser of land at a tax sale certifying to the sale and the payment of the consideration thereof, and entitling the purchaser upon certain conditions and at a certain time thereafter to a deed or instrument of conveyance (called a tax deed) of the land, to be executed by the proper officer", + "The number nine or a group of nine", + "One who gives a negative vote; -- sometimes abridged into noncon", + "1", + "A genus of plants, mostly perennial, having succulent leaves and cymose flowers; orpine; stonecrop", + "One who adheres; an adherent", + "A small cannon supported by a swiveled rest on the back of a camel, whence it is fired, -- used in the East", + "See Electuary", + "A freckle on the skin, resembling the seed of fern", + "1", + "Same as Scorpiones", + "Having the form or structure of stalagmites", + "1", + "A form of fruit in the cycle of development of the Rusts or Brands, an order of fungi, formerly considered independent plants", + "The pollack", + "A European fish (Peristethus cataphractum), having the body covered with bony plates, and having three spines projecting in front of the nose; -- called also noble, pluck, pogge, sea poacher, and armed bullhead", + "A stake or post set in the ground, for guests at a wedding to dance round", + "A tribe of Indians who, when first known, lived on the Ottawa River", + "Quadrinomial", + "The quality or state of being speedy", + "A miscreant, or believer in a false religious doctrine", + "1", + "1", + "To kill off; to destroy", + "The Savior; the name of the Son of God as announced by the angel to his parents; the personal name of Our Lord, in distinction from Christ, his official appellation", + "A style of painting on plastered walls or stone, in which the colors are rendered permanent by sprinklings of water, in which is mixed a proportion of soluble glass (a silicate of soda)", + "As much as a tub will hold; enough to fill a tub", + "In an alarmed manner", + "See Yuen", + "1", + "A leper", + "A promotory or headland", + "1", + "Of, pertaining to, or obtained from, lichens", + "To lift up in front", + "The treatment of wounds or ulcers by the application of water; also, a dressing saturated with water only, for application to a wound or an ulcer", + "The brainpan", + "The Rocky Mountain sheep (Ovis or Caprovis montana)", + "A popular or jocular name for a drinking vessel", + "1", + "Of or pertaining to the cutaneous manifestations of syphilis", + "Something new-fashioned; a foolish innovation; a gewgaw; a trifling ornament", + "The person who first attacks or makes an aggression; he who begins hostility or a quarrel; an assailant", + "Pecuniarily embarrassed through owning much unprofitable land", + "1", + "One opposed to vivisection", + "A young or small child; an infant", + "1", + "1", + "An instrument for cutting into the bronchial tubes", + "A light lance; a short spear; a half pike; also, a demilancer", + "1", + "A wild or natural note, as of a forest bird", + "Pertaining to, or according to the rules of, counterpoint", + "Of or pertaining to paleography", + "1", + "In a suitable manner", + "1", + "Belonging to Hawaii or the Sandwich Islands, or to the people of Hawaii", + "A diarrhea or flux", + "1", + "1", + "Mineral coal retaining the texture of the wood from which it was formed, and burning with an empyreumatic odor", + "Producing light; yielding light; transmitting light; as, the luminiferous ether", + "An accumulation of liquid within the cavity of the cranium, especially within the ventricles of the brain; dropsy of the brain", + "A tunnel", + "To mew or coop up", + "A real being, whether in thought (as an ideal conception) or in fact; being; essence; existence", + "1", + "The buffel duck", + "A term used to denote a duty or charge laid upon goods, at a certain rate per cent upon their value, as stated in their invoice, - - in opposition to a specific sum upon a given quantity or number; as, an ad valorem duty of twenty per cent", + "An unmarried person, male or female, who has criminal intercourse with the other sex; one guilty of fornication", + "Pertaining to, or obtained from, apples; as, malic acid", + "One given to drinking alcoholic beverages too freely; a tippler; -- chiefly used in composition; as, winebibber", + "Relating to or resembling croup; especially, attended with the formation of a deposit or membrance like that found in membranous croup; as, croupous laryngitis", + "Destitute of a garland", + "To render (air or other gas) conducting by the passage of Röntgen rays", + "1", + "1", + "The act or art precipitating a metal electro-chemical action, by which a coating is deposited, on a prepared surface, as in electroplating and electrotyping; galvanoplasty", + "An alkaloid found in nux vomica, and extracted as a white crystalline substance", + "Good against convulsions", + "In an incogitant manner", + "To deprive of that which ennobles; to degrade", + "To strip off the bark; to peel", + "Power in arms", + "1", + "The edible fruit of the Gaultheria Shallon, an ericaceous shrub found from California northwards", + "1", + "Quick-sighted; catching a glance as one goes", + "Of or pertaining to calculi", + "The lading or freight of a ship or other vessel; the goods, merchandise, or whatever is conveyed in a vessel or boat; load; freight", + "Full of trouble; causing trouble", + "Having a good intention", + "The state of healty tension or partial contraction of muscle fibers while at rest; tone; tonus", + "The guelder-rose", + "1", + "A name anciently given to an itinerant minstrel or musician", + "Giving exhortation; advisory; exhortative", + "Inherent baseness or vileness of principle, words, or actions; shameful wickedness; depravity", + "1", + "A pillow block", + "Shaped like a gland; adenoid", + "The state or quality of being pleasant", + "To deprive of happiness like that of paradise; to render unhappy", + "1", + "1", + "One who besieges; -- opposed to the besieged", + "An alkaloid got from the bark of the bebeeru, or green heart of Guiana (Nectandra Rodioei)", + "Formerly, a part of the Roman chancery; now, a separate office from which are sent graces or favors, cognizable in foro externo, such as appointments to benefices", + "Of or pertaining to a spiracle", + "Unruliness", + "The red-breasted merganser", + "The smaller intestines of swine, etc", + "Account of what has taken place, and was not before known; news", + "One versed in electro-biology", + "A recalling to mind; recollection", + "Astride; with a part on each side; -- used specif", + "One who innovates", + "A small medal", + "Tending, or having power, to propel; driving on; urging", + "A kind of adoption in ancient Rome", + "Bearing or producing spores", + "The ursine seal", + "An automatic machine gun in which the mechanism is worked by the recoil, assisted by the pressure of gases from the muzzle, which expand in a gas chamber against a disk attached to the end of the barrel, thus moving the latter to the rear with increased recoil, and against the front wall of the gas chamber, checking the recoil of the system", + "One who, or that which, raises (in various senses of the verb)", + "Furnished with branchiæ; as, branchiate segments", + "Lascivious", + "Emitting sparks of fire when struck with steel; scintillating; as, ignescent stones", + "The whole; all that is to be", + "Foggy; misty", + "See Commandery", + "Energy wasted by hysteresis or eddy currents in the core of an armature, transformer, etc", + "A wheel, spindle, or the like; a trundle", + "1", + "The quality or state of being porous; -- opposed to density", + "Same as Colter", + "The quality of being flammable; inflammability", + "To illuminate; to light up; to adorn", + "Causing effects; producing results; that makes the effect to be what it is; actively operative; not inactive, slack, or incapable; characterized by energetic and useful activity; as, an efficient officer, power", + "To cross at an acute angle; to cut or divide in the form of X; to intersect; -- said of lines in geometrical figures, rays of light, nerves, etc", + "A protoplasmic granule of some other color than green; -- also called chromoleucite", + "To lay in a cradle", + "A black variety of spinel", + "Without fault; correctly", + "A miner's two-pointed pick", + "A euphorbiaceous shrub of the genus Pedilanthus (P", + "A white, crystalline, organic base, C3H4N2, produced by the action of ammonia on glyoxal, and forming the origin of a large class of derivatives hence, any one of the series of which glyoxaline is a type; -- called also oxaline", + "A nitrogenous base, CO", + "1", + "Of or pertaining to a doge", + "An unnatural smallness of the eyes, occurring as the result of disease or of imperfect development", + "Growing on the angles of a stem, as the leaves in some species of Selaginella", + "A cavern", + "A small rat", + "Historical narration on a small scale; a brief recital; a story", + "A colorless, volatile liquid, H2CO, resembling acetic or ethyl aldehyde, and chemically intermediate between methyl alcohol and formic acid", + "In a grudging manner", + "Same as Knop,2", + "imp", + "A substance (sometimes the product of a specific micro-organism and sometimes naturally present in the blood or tissues of an animal), capable of producing immunity from certain diseases, or of counteracting the poisonous effects of pathogenic bacteria", + "Mania; insanity", + "Like a Tarquin, a king of ancient Rome; proud; haughty; overbearing", + "1", + "Delight", + "An overhead rail forming a track on which a trolley runs to convey a load, as in a shop", + "Incomplete paralysis, affecting motion but not sensation", + "In the Socratic method", + "A pustular affection of the skin, due to changes in the sebaceous glands", + "The act of impregnating, or the state of being impregnated, in addition to a prior impregnation; superfetation", + "A follower of Priscillian, bishop of Avila in Spain, in the fourth century, who mixed various elements of Gnosticism and Manicheism with Christianity", + "A yellow acid substance formed by the action of hot nitric acid on albuminous or proteid matter", + "See 3d Yearn", + "A thin board; a billet of wood; a splinter", + "Exciting venereal desire; provocative to venery", + "Having a medium size; as, a medium-sized man", + "That may be tanned", + "Having a slightly undulating margin; -- said of leaves", + "A quip; a gibe", + "A complex; an aggregate of parts; a complication", + "A kind of wine made at Bacharach on the Rhine", + "The beam in the angle of a roof; hence, the roof itself", + "Pertaining to, having the nature of, or illustrating, an isocryme; as, an isocrymal line; an isocrymal chart", + "A fragrant variety of black tea having somewhat the flavor of green tea", + "1", + "A long, rolling swell of the sea", + "Disturbed; troubled; solicitous; as, to be much concerned for the safety of a friend", + "Mutual discourse or conversation; discussion; hence, an oral conference with an enemy, as with regard to a truce", + "1", + "Cloudy", + "One who plays on a lute", + "1", + "Quality of being scriptural", + "To separate, part, or open, as anything fastened with glue", + "That feigns; insincere; not genuine; false", + "Sharp-edged and pointed; shaped like a pruning knife, as the beak of certain birds", + "To restore", + "Held aloft", + "A woman concerned in public affairs", + "Of or pertaining to the breadfruit, or to the genus Artocarpus", + "Pertaining to conception", + "Below the orbit; as, the infraorbital foramen; the infraorbital nerve", + "The state of being pocky", + "To free from being hitched, or as if from being hitched; to unfasten; to loose; as, to unhitch a horse, or a trace", + "In a gliding manner", + "One who assists in lynching", + "In a half-raised position, as if about to spring on prey", + "A mild vesicatory", + "1", + "Given to, or characterized by, vagaries; capricious; whimsical; crochety", + "Having many names or terms", + "Extending beyond the reach of memory, record, or tradition; indefinitely ancient; as, existing from time immemorial", + "A fruit consisting of pulpy, coriaceous, or fibrous exocarp, without valves, containing a nut or stone with a kernel", + "See Carvel, and Caravel", + "Want or failure of intermission", + "One who performs the operation of cutting for stone in the bladder, or one who is skilled in the operation", + "An Australian insectivorous singing bird (Pachycephala gutturalis)", + "A French coin, the tenth part of a franc, equal to about two cents", + "1", + "A poisonous nitrogenous base (C6H10N2) obtained indirectly from oxamide as a thick transparent oil which has a strong narcotic odor, and a physiological action resembling that of atropine", + "1", + "To make bestial, or like a beast; to degrade; to brutalize", + "A venomous North American snake (Ancistrodon piscivorus) allied to the rattlesnake but destitute of a rattle", + "The chaffinch; -- so named from its call note", + "In an amiable manner", + "1", + "1", + "The act of one who stutters; -- restricted by some physiologists to defective speech due to inability to form the proper sounds, the breathing being normal, as distinguished from stammering", + "A perennial, creeping grass (Cynodon dactylon), highly prized, in Hindostan, as food for cattle, and acclimated in the United States", + "An associate or companion; a friend; a partner", + "A heavy silk with a dull finish; as, gros de Naples; gros de Tours", + "Octosyllabic", + "Not applicable; incapable of being applied; not adapted; not suitable; as, the argument is inapplicable to the case", + "Leather made from sheep and calf skins by mechanically forcing ooze through them; esp", + "1", + "The doctrine that all things are subject to fate, or that they take place by inevitable necessity", + "Rough; uneven; causing one to hobble; as a hobbly road", + "In a military manner", + "One who commences a personal action or suit to obtain a remedy for an injury to his rights; -- opposed to Ant: defendant", + "One who deals in words, or in mere words; a verbalist", + "A mineral occurring in emerald-green tabular crystals having a micaceous structure", + "1", + "1", + "Wearing a coarse gown or shaggy garment made of rug", + "1", + "Wet and soft; easily penetrated by the feet of cattle; -- said of land", + "To intimidate; to restrain or coerce by intimidation or violence; -- used originally of the intimidation of negro voters, in Louisiana", + "Having nearly the whole surface of the skin covered with down; dasypædic; -- said of the young of certain birds", + "Liberal in charity; disposed to give freely; generously liberal; munificent; beneficent; free in bestowing gifts; as, bounteous production", + "1", + "Made dense; condensed", + "Of or pertaining to bole or clay; partaking of the nature and qualities of bole; clayey", + "1", + "Tardiness", + "An abnormal dryness of the eyeball produced usually by long- continued inflammation and subsequent atrophy of the conjunctiva", + "Of the nature of a codicil", + "imp", + "Destitute of life, or deprived of life; not containing, or inhabited by, living beings or vegetation; dead, or apparently dead; spiritless; powerless; dull; as, a lifeless carcass; lifeless matter; a lifeless desert; a lifeless wine; a lifeless story", + "Having but one pair of leaflets; -- said of a pinnate leaf", + "A denominational or class spirit or policy; devotion to the interests of a sect or denomination", + "One who, or that which, extends or stretches anything", + "Any one of several species of small lemurs of the genus Stenops", + "A judicial process commanding a person to appear in court and bring with him some piece of evidence or other thing to be produced to the court", + "1", + "Formidable; dread", + "1", + "The art of healing; skill of a physician", + "Begone; away; -- an expression used in frightening away animals, especially fowls", + "In a dazzling manner", + "The metamorphism of limestone, that is, its conversion into marble", + "See Book scorpion, under Book", + "To give assurance to", + "He; the one", + "One who escapes", + "A rocking or balanced stone", + "An extensive order of insects, including the bees, ants, ichneumons, sawflies, etc", + "1", + "(a) A line used to fasten the upper corners of a sail to the yard or gaff; -- also called head earing", + "1", + "1", + "An American clupeoid fish (Clupea mediocris), similar to the shad in habits and appearance, but smaller and less esteemed for food; -- called also hickory shad, tailor shad, fall herring, and shad herring", + "Zinc sulphide; -- called also blende, black-jack, false galena, etc", + "A laborer", + "The dog-rose", + "Candidacy", + "1", + "Cartilage", + "An inciter or promoter of sedition", + "Taking root on, or above, the ground; rooting from the stem, as the trumpet creeper and the ivy", + "Like or pertaining to the Elapidæ, a family of poisonous serpents, including the cobras", + "A slightly sweetened raised cake or bisquit with a glazing of sugar and milk on the top crust", + "Pertaining to, derived from, or containing, methyl; specifically, designating methyl alcohol", + "Pertaining to the variation of tensile strength with the temperature", + "A Marconi wireless message", + "1", + "Dimetric", + "One of several lepidopterous insects which construct, in the larval state, a baglike case which they carry about for protection", + "The quality of being impressible; susceptibility", + "The state of being endless", + "Of or pertaining to the southeast; southeasterly", + "A man who makes and leaves a will, or testament, at death", + "1", + "A whirlpool", + "1", + "A strong caustic alkaline solution of potassium salts, obtained by leaching wood ashes", + "Not corresponding; disagreeing", + "A machine in which four pulleys act together", + "A white wax, made by bleaching and purifying ozocerite, and used as a substitute for beeswax", + "1", + "A large marine annelid (Arenicola marina) having a row of tufted gills along each side of the back", + "A bird of Celebes (megacephalon maleo), allied to the brush turkey", + "Of or pertaining to the understanding", + "A valley or low place; a tract of low, and usually wet, land; a moor; a fen", + "A rustling, esp", + "See Villous", + "A woman's light scarflike head covering, usually knit or crocheted of wool", + "A regulus consisting essentially of nickel, obtained as a residue in fusing cobalt and nickel ores with silica and sodium carbonate to make smalt", + "1", + "Same as Perigone", + "Between ungulæ; as, interungular glands", + "Not amovable or removable", + "1", + "One who engages in logrolling", + "In a reparable manner", + "1", + "To illumine; to enlighten", + "Having a dry and contracted hoof, which occasions pain and lameness", + "1", + "Warmth", + "Daily; every day", + "To cut off, as wool from sheep's tails; to lop or clip off", + "Wateriness", + "Relating to the Entomostraca", + "Dropped; prostrate; degraded; ruined; decreased; dead", + "To reckon; to ascribe; to impute", + "Full of dislike; disaffected; malign; disagreeable", + "The mark as an individual, or to distinguish from others by peculiar properties; to invest with individuality", + "Act of making a knot, or state of being knotted", + "A second subjection", + "Capable or susceptible of being investigated; admitting research", + "1", + "Want of locality or place", + "To disclose, or lay open; to unbosom", + "The state of being superannuated, or too old for office or business; the state of being disqualified by old age; decrepitude", + "Like the sun in form, appearance, or nature; resembling the sun", + "An apprentice", + "1", + "1", + "Having a sharp end, like the point of a spear; terminating in a hard point; as, a cuspidate leaf", + "A mote", + "Of or pertaining to the Solifugæ", + "Pertaining to, or characterized by, or living in, a state of symbiosis", + "The act or art of setting type", + "A metallic wire used for regulating the resistance of a circuit, or varying the strength of an electric current, by inserting a greater or less length of it in the circuit", + "A genus of cactaceous plants; the prickly pear, or Indian fig", + "Proneness to dispute", + "The office of a prolocutor", + "See Brakeman", + "1", + "A consecrateo place; esp", + "Containing supplication; humble; earnest", + "Silly talk; babbling", + "Anything which covers or conceals, as a roof, a screen, a wrapper, clothing, etc", + "See Shallot", + "A small beetle of the family Halticidæ, of many species", + "A cake, sweetmeat, or confectión made with almonds or other nuts", + "Obedient", + "See Cabala", + "An order of amphibians having the tail well developed and often long", + "To gain sight of; to discover at a distance, or in a state of concealment; to espy; to see", + "A tree or shrub bearing cones; one of the order Coniferae, which includes the pine, cypress, and (according to some) the yew", + "1", + "A magnificent assemblage of buildings at Rome, near the church of St", + "See Wadmol", + "A horn, or anything shaped like or resembling a horn", + "That which is evidently false; an assertion or statement the falsity of which is plainly apparent; -- opposed to truism", + "A term used for the Powder of Algaroth, a white powder which is a compound of trichloride and trioxide of antimony", + "An alkaloid found in the leaves of the walnut (Juglans regia)", + "Being or happening after the flood in Noah's days", + "The office, dignity, or position of a primate; primacy", + "An instrument, similar to the phenakistoscope, for presenting to view, or projecting upon a screen, images the natural motions of real objects", + "1", + "Neglect of, or failure in, punctuality", + "Started; leaped", + "One of a sect or party among the Jews, noted for a strict and formal observance of rites and ceremonies and of the traditions of the elders, and whose pretensions to superior sanctity led them to separate themselves from the other Jews", + "A long and open portico, for athletic exercises, as wrestling, running, etc", + "Quality of being articulate", + "A prefix used in the sense of not; un-; in-; as in nonattention, or non-attention, nonconformity, nonmetallic, nonsuit", + "Ordinary camphor; -- so called in allusion to the family name (Lauraceæ) of the camphor trees", + "Fierce", + "A secondary religion; a belief or principle held in a quasi religious veneration", + "To act or operate jointly with another or others; to concur in action, effort, or effect", + "See Meros", + "1", + "Repulsive; driving back", + "The young of any gull", + "See Scatch", + "Same as Proterogynous", + "A yellow amorphous substance obtained from lac", + "A rectangular figure", + "Innocuousness", + "A description of blood vessels and lymphatics", + "1", + "A mineral occurring in small six-sided tabular crystals of a green or yellow color", + "1", + "A genus of perennial, herbaceous, endogenous plants of great size, including the banana (Musa sapientum), the plantain (M", + "A composition for nine instruments, rarely for nine voices", + "One who makes, or manufactures, glass", + "1", + "Producing ivy; ivy-bearing", + "A large European dormouse (Myoxus glis)", + "1", + "A paronymous word", + "To go from place to place without any certain purpose or direction; to rove; to wander", + "Chrysophanic acid", + "One who suffers with another", + "Of or pertaining to strategy; effected by artifice", + "Wise in regard to things of this world", + "Having or existing in three different phases of color; having three distinct color varieties; -- said of certain birds and insects", + "That which is deserved; the reward or the punishment justly due; claim to recompense, usually in a good sense; right to reward; merit", + "Joyously; festively; mirthfully", + "A species of sturgeon", + "1", + "Them", + "1", + "To render atheistic or godless", + "To subject to thermolysis; to dissociate by heat", + "Having five angles or corners", + "A kind of double thrown silk of very fine texture, that is, silk twisted like a rope with different strands, so as to increase its strength", + "Gentle heat; moderate warmth; tepidness", + "One who approaches", + "1", + "A condition characterized by a tendency to profuse and uncontrollable hemorrhage from the slightest wounds", + "Pertaining to, or designating, an acid obtained from the urine of dogs", + "One skilled in simples, or medicinal plants; a simpler", + "Relating to the blood or blood vessels; pertaining to, situated in the region of, or on the side with, the heart and great blood vessels; -- opposed to neural", + "1", + "Carelessness; apathy; indifference", + "A small chamber or place of protection for a sentinel, usually in the form of a projecting turret, or the like", + "1", + "Monkish", + "On condition; by stipulation; with the understanding; if; -- usually followed by that; as, provided that nothing in this act shall prejudice the rights of any person whatever", + "A nightgown", + "Southerliness", + "To dispirit", + "One of the Brachiopoda, or its shell", + "1", + "Of or pertaining to a natural order of plants (Ranunculaceæ), of which the buttercup is the type, and which includes also the virgin's bower, the monkshood, larkspur, anemone, meadow rue, and peony", + "One who employs another; as, an employer of workmen", + "1", + "Crooked; tortuous; hence, perverse; unfair; dishonest", + "1", + "1", + "Strategic", + "One skilled in myology", + "1", + "Remuneration", + "Since; afterwards", + "1", + "The nut of the beech tree", + "A form of hydrometer, specially graduated, for finding the density of milk, and thus discovering whether it has been mixed with water or some of the cream has been removed", + "1", + "Having small clusters of minutely branched coral-like excrescences", + "One of the common people; a low person; also, the common people as a class or estate in a country", + "Having evil dispositions or intentions; disposed to mischief or sin; malicious; malignant; wicked", + "Of or pertaining to slang; of the nature of slang; disposed to use slang", + "An early, and now a poetic, name of Ireland", + "A pin, usually forked, or of bent wire, for fastening the hair in place, -- used by women", + "The art or practice of hunting, or the qualification of a hunter", + "1", + "Hypochondriasis", + "1", + "State of being illimitable; want of, or freedom from, limitation", + "Secreting nectar; -- said of blossoms or their parts", + "A fat herring with undeveloped roe", + "(a) The defendant in an appeal; -- opposed to appellant", + "(a) An apparatus for photographing or mapping a spectrum", + "Of the nature or color of verdigris, or the rust of copper", + "A receptacle which bears many ovaries", + "Covered with defensive plates of metal, as a ship of war; steel-clad", + "A plate the film of which retains its sensitiveness only while wet", + "An oily liquid alkaloid, C5H11N, having a hot, peppery, ammoniacal odor", + "One of several species of sea birds, of the family procellariidæ, allied to the albatrosses and petrels", + "A white mark on the foot of a horse, between the fetlock and the coffin", + "To demand back; to demand again", + "A marsupial of Australia (Dasyurus macrurus), about the size of a cat", + "Climbing", + "See Poy", + "See Sergeant, Sergeantcy, etc", + "1", + "Elfish", + "Left aground on the height of a spring tide, so that it will not float till the next spring tide; -- called also beneaped", + "Any sac or saclike cavity; especially, one of the synovial sacs, or small spaces, often lined with synovial membrane, interposed between tendons and bony prominences", + "Having a tapered tail, with the middle feathers longest; -- said of birds", + "To look steadfastly; to gaze", + "Of or pertaining to oreography", + "A crystalline, transparent, colorless substance found in the allantoic liquid of the fetal calf; -- formerly called allantoic acid and amniotic acid", + "Partaking of, or combining, both divinity and humanity", + "One who, or that which, revives", + "To abash; to disconcert or be disconcerted or put out of countenance", + "To dissolve covenant with", + "1", + "Munificent; liberal", + "imp", + "A genus of herbaceous plants, with racemes of two-spurred or heart-shaped flowers, including the Dutchman's breeches, and the more showy Bleeding heart (D", + "See Portague", + "The crest or line in which strata slope or dip in opposite directions", + "Capable of being indorsed; transferable; convertible", + "Having a mixture of seriousness and sport; serious and comical", + "Trimmed", + "Pertaining to, or discovered by, Regnier de Graaf, a Dutch physician", + "A place for storing wool", + "Of or pertaining to aërology", + "A kind of outer coat, or overcoat; -- said to be so named after a celebrated Italian family of professional dancers", + "Containing, or derived from, amidogen", + "Having the form of a disk, as those univalve shells which have the whorls in one plane, so as to form a disk, as the pearly nautilus", + "The quality of being genial", + "The doctrine that experience, either that ourselves or of others, is the test or criterion of general knowledge; -- opposed to intuitionists", + "The front of a building; esp", + "1", + "A tenet or proposition contrary to received opinion; an assertion or sentiment seemingly contradictory, or opposed to common sense; that which in appearance or terms is absurd, but yet may be true in fact", + "A icicle", + "One of the organs, as the brain, heart, or stomach, in the great cavities of the body of an animal; -- especially used in the plural, and applied to the organs contained in the abdomen", + "Chaparajos", + "The crab plover (Dromas ardeola), a peculiar North African bird, allied to the oyster catcher", + "One that grazes; a creature which feeds on growing grass or herbage", + "Same as 1st Quarrel", + "The practice of too frequently using the word I; hence, a speaking or writing overmuch of one's self; self-exaltation; self- praise; the act or practice of magnifying one's self or parading one's own doings", + "An amorphous huminlike substance resembling sacchulmic acid, and produced together with it", + "Cold; chilliness", + "1", + "A salt of santoninic acid", + "Tragical to excess", + "One versed in two languages", + "1", + "1", + "Shield money; commutation of service for a sum of money", + "1", + "The study of the chemical composition of, and of actual or possible chemical changes in, the crust of the earth", + "The quality or state of being tender (in any sense of the adjective)", + "(a) The offense of introducing foreign authority into England, the penalties for which were originally intended to depress the civil power of the pope in the kingdom", + "A coral island or islands, consisting of a belt of coral reef, partly submerged, surrounding a central lagoon or depression; a lagoon island", + "1", + "A board on which knives are cleaned or polished", + "The striped mullet of California (Mugil cephalus, or Mexicanus)", + "Confused, disturbed", + "Matter ejected; material thrown out; as, the ejecta of a volcano; the ejecta, or excreta, of the body", + "An apparatus for the determination of colors by comparison with arbitrary standards; a colorimeter", + "1", + "Consisting of fields", + "See Kinematics", + "One who meliorates", + "1", + "Not electric; conducting electricity", + "1", + "To lie in ambush for", + "One who affects, assumes, pretends, or strives after", + "To make antiseptic", + "1", + "In an auricular manner", + "An optical phenomenon sometimes seen on the summit of mountains (as on the Brocken) when the observer is between the sun and a mass of cloud", + "One who goes out or departs", + "According to rites and ceremonies; as, a person ceremonially unclean", + "See 5th Ruck, and Roke", + "Drawn outside of; -- used to designate a circle that touches one of the sides of a given triangle, and also the other two sides produced", + "Of, pertaining to, or designating, the period of time following the Jurassic and preceding the Eocene", + "1", + "One who advocates national unity and independence; one of a party favoring Irish independence", + "Growing in sandy places", + "Alternately answering", + "1", + "One of a series of complex nitrogenous substances regarded as containing two molecules of urea or their radicals, as uric acid or allantoin", + "Agreement; harmony; conformity", + "An earthy black oxide of copper, arising from the decomposition of other ores", + "Having the tail quills ending in sharp, naked tips", + "A twist or bend; a turn; a whimsey", + "Having a propensity to venery; lustful; lecherous", + "The carrion crow; -- called also gercrow", + "The fruit of the Viburnum obovatum, a shrub which grows from Virginia to Florida", + "That can not be suppressed or concealed; irrepressible", + "A silicified stem of tree fern, found in abundance in the Triassic sandstone", + "See Anacharis", + "Deficient; wanting; as, a destituent condition", + "One who fattens", + "1", + "An American market clam (Venus mercenaria)", + "A carrier pigeon remarkable for its ability to return home from a distance", + "A person of the Caucasian race (6 Fed", + "1", + "A woman who carries a canteen for soldiers; a vivandière", + "Of, pertaining to, or designating, nonyl or its compounds; as, nonylic acid", + "Appearing or blossoming later in the season than is customary with allied species", + "A European pike perch (Stizostedion lucioperca) allied to the wall-eye; -- called also sandari, sander, sannat, schill, and zant", + "A small piece or part; a small sum; a small quantity of money in making up a sum; as, the money was paid in dribblets", + "Tamableness", + "That which annoys or gives trouble and vexation; that which is offensive or noxious", + "A descendant of Israel, or Jacob; a Hebrew; a Jew", + "Of or pertaining to the prominent part of the palm of the hand above the base of the little finger, or a corresponding part in the forefoot of an animal; as, the hypothenar eminence", + "The madder of the Levant", + "The foundation framing or piece, by which the other parts are supported and held in place; the bed; -- called also baseplate and soleplate", + "A nestful; a brood; as, a nide of pheasants", + "Feigned; imaginary; not real; fabulous; counterfeit; false; not genuine; as, fictitious fame", + "1", + "1", + "1", + "In an oblique manner; not directly; indirectly", + "To look amorously or wantonly; to smirk", + "See Tagliacotian", + "See Lecturn", + "Made of velvet, or like velvet; soft; smooth; delicate", + "1", + "The act of arousing, or the state of being aroused", + "Of or pertaining to a moranie", + "A peculiar rounded granule of some mineral, usually enstatite or chrysolite, found imdedded more or less aboundantly in the mass of many meteoric stones, which are hence called chondrites", + "(a) A white waxy or fatty substance obtained from castor oil", + "To drive from a house or habitation; to dislodge; hence, to deprive of shelter", + "An instrument for determining the amount of polarization of light, or the proportion of polarized light, in a partially polarized ray", + "An herb (Pilea pumila) of the Nettle family, having a smooth, juicy, pellucid stem; -- called also clearweed", + "1", + "To apply carbonic acid to; to wash or treat with carbolic acid", + "See Inclandescence", + "A notional or groundless opinion", + "An early form of antimated-picture machine, devised in 1889 by Otto Anschütz of Berlin, in which the chronophotographs were mounted upon the periphery of a rotating wheel", + "In a palmate manner", + "The wipe, or lapwing", + "A female worshiper of idols", + "Somewhat raw", + "Cyanite or kyanite; -- so called in allusion to its unequal hardness in two different directions", + "To make a vassal of", + "A poem consisting of six verses or lines", + "The quality of being communicable; capability of being imparted", + "One of the primary, or first-formed, segments of an embryonic arthropod", + "1", + "The state or quality of being mediate", + "A town or village, or part of a town or village, assigned to a body of troops for quarters; temporary shelter or place of rest for an army; quarters", + "A hydrous sulphate of iron of a green color and vitreous luster; iron vitriol", + "Crinitory", + "A well or opening, through the successive floors of a warehouse or manufactory, through which goods are raised or lowered", + "The curve whose ordinates are proportional to the sines of the abscissas, the equation of the curve being y = a sin x", + "The kestrel; -- called also standgale, standgall, stanchel, stand hawk, stannel hawk, steingale, stonegall", + "1", + "A collection of small houses surrounded by a wall and occupied by a community of Beguines", + "Myself", + "1", + "Succeeding or following in order", + "The anterior part of the medulla oblongata", + "Of or pertaining to scurvy; of the nature of, or resembling, scurvy; diseased with scurvy; as, a scorbutic person; scorbutic complaints or symptoms", + "The habit of lurking about dwelling houses, and other places where persons meet fro private intercourse, secretly listening to what is said, and then tattling it abroad", + "The quality or state of being incondensable", + "1", + "Disputing or wrangling", + "1", + "Of or pertaining to a sinusoid; like a sinusoid", + "To shine forth", + "imp", + "An order of cephalopods which includes those with two gills, an apparatus for emitting an inky fluid, and either eight or ten cephalic arms bearing suckers or hooks, as the octopi and squids", + "A warm or spicy condiment or pickle made in India, compounded of various vegetable substances, sweets, acids, etc", + "A manufacturer of iron, or large dealer therein", + "To make liberal; to free from narrow views or prejudices", + "In a temperate manner", + "A knitted worsted jacket, worn over the waist of a woman's dress", + "An East Indian sapotaceous tree (Bassia latifolia, and also B", + "According to measure or proportion; proportionable; proportionate", + "Derived from, or dependent upon, vital processes; -- said of certain electric currents supposed by some physiologists to circulate in the nerves of animals", + "Quality of being alible", + "To remove from a box or boxes", + "Deprived of parents", + "A word derived from a derivative, and not directly from the root; as, friendliness is a subderivative, being derived from friendly, which is in turn a derivative from friend", + "1", + "One of the radial segments composing the body of one of the Coelenterata", + "A salt formed by the combination of boric acid with a base or positive radical", + "Of or pertaining to casuists or casuistry", + "Happening at the same instant", + "Fitted to cause loathing; exciting disgust; disgusting", + "The treatment of disease by acting on the mind, as by suggestion; mind cure; psychotherapy", + "An unfledged bird; hence, something immature or unfinished", + "The quality of being gray", + "Situated under the skin; hypodermic", + "Inhabiting the somewhat high slopes and summits of mountains, but considerably below the snow line", + "1", + "A merry-andrew; a buffoon", + "Shaped like an ascidian", + "Of or pertaining to the family of warblers (Sylvicolidæ)", + "1", + "1", + "One who whitewashes", + "Having unequal stamens; having stamens different in number from the petals", + "The quality of being injurious or hurtful; harmfulness; injury", + "A duck of the genus Fuligula", + "Formed of two plates, as the stigma of the Mimulus; also, having two elevated ridges, as in the lip of certain flowers", + "A division of Carnivora, including the dogs, wolves, and foxes", + "Of or pertaining to a plane", + "In a plucky manner", + "Heathy; abounding in heather; of the nature of heath", + "Coming from outward causes; superadded", + "1", + "A special substance contained in tuberculin, supposed to be the active agent of the latter freed from various impurities", + "One who, or that which, elates", + "Lusty; vigorous", + "A kind of ordnance, carrying a ball weighing from thirty to thirty-six pounds", + "A subordinate delegate, or one with inferior powers", + "(a) A figure composed of two equal triangles intersecting so that each side of one triangle is parallel to a side of the other, and the six points coincide with those of a hexagon", + "1", + "Serving for incubation", + "One who, or that which, mows; a mowing machine; as, a lawn mower", + "Pertaining to revivals", + "See Imbroglio", + "The office or jurisdiction of sheriff", + "1", + "A young male of the ox kind; especially, a common ox; a castrated taurine male from two to four years old", + "An obtaining; attainment", + "Pertaining to, or designating, an organic acid metameric with malic acid", + "Smoking tobacco", + "Rotten; fetid; stinking; base; worthless", + "A woman who advocates the right to vote for women; a woman suffragist", + "1", + "A female rascal", + "A chief magistrate of a free imperial city or canton of Switzerland", + "1", + "Rising to a point; conical; copped", + "The second segment of one of the Gregarinæ", + "An instrument for indicating changes of temperature without indicating the degree of heat by which it is affected; especially, an instrument contrived by Count Rumford which, as modified by Professor Leslie, was afterward called the differential thermometer", + "One to whom a legacy is bequeathed", + "Having single hoofs", + "One who describes fruits; one versed in carpology", + "(a) Formerly, a soldier armed with a fusil", + "To engage a second time or again", + "1", + "See Schorl, Schorlaceous", + "More than politic; above or exceeding policy", + "A shrub or tree supposed to be the tamarisk, or perhaps some kind of heath", + "To make tipsy", + "External appearance", + "1", + "Of, pertaining to, or characteristic of, Pompeii, an ancient city of Italy, buried by an eruption of Vesuvius in 79 a", + "1", + "Act of hearing, or the ability to hear, sounds not normally audible; -- usually claimed as a special faculty of spiritualistic mediums, or the like", + "An optical device for making an indicator diagram for high- speed engines", + "(a) Having the integument, or skin, hard, or covered with hard plates", + "1", + "In an apt or suitable manner; fitly; properly; pertinently; appropriately; readily", + "The production of offspring by the union of parents of different sexes; sexual reproduction; -- the opposite of agamogenesis", + "1", + "To use cabalistic language", + "A salt of vanadic acid", + "Shaped like a fin or feather", + "1", + "A freckly eruption on the skin; freckles", + "The quality or state of being sorry", + "One who conceives", + "1", + "A captain or commander of ten thousand men", + "One of the huge multinucleated cells found in the marrow of bone and occasionally in other parts; a giant cell", + "To cause to make a sharp twanging sound; to twang, or twangle", + "1", + "A disseizin by one who once before was adjudged to have dassezed the same person of the same lands, etc", + "Having the vertebral column evidently continued into the upper lobe of the tail, which is usually longer than the lower one, as in sharks", + "Barrel-shaped, or like a cask in form", + "Moldy; musty", + "To deprive of odor, especially of such as results from impurities", + "1", + "To bring forth young", + "A dungeon or dark cell in a prison; a military lock-up or guardroom; -- now commonly with allusion to the cell (the Black Hole) in a fort at Calcutta, into which 146 English prisoners were thrust by the nabob Suraja Dowla on the night of June 20, 17656, and in which 123 of the prisoners died before morning from lack of air", + "A chemical earth, the oxide of scandium", + "Not forming an angle", + "1", + "A freak; a trick; a lie", + "Having soft jaws without teeth, as certain fishes", + "A name given to the series of sandstones and schists overlying the true nummulitic formation in the Alps, and included in the Eocene Tertiary", + "To convert to a parchmentlike substance, esp", + "1", + "An edentate animal of tropical America (the Tamanoir), living on ants", + "Same as Cæsarean, Cæsarian", + "Apron", + "1", + "One who hugs or embraces", + "By confession; without denial", + "Represented as running; -- said of a beast borne in a coat of arms", + "Too long", + "(a) The croup", + "The quality or state of being pliable; flexibility; as, pliability of disposition", + "Pertaining to renunciation; containing or declaring a renunciation; as, renunciatory vows", + "See Arrish", + "Penetrated by worms; injured by worms; worm-eaten; as, wormed timber", + "One of the bones of the tarsus", + "Of or pertaining to pericardium; situated around the heart", + "Banishment", + "A lively dance of the Highlanders of Scotland; also, the music to the dance; -- often called Scotch reel", + "Of or pertaining to the Digynia; having two styles", + "Capable of assuming a desired position or condition with relation to other parts, under varying circumstances, without requiring to be adjusted by hand; -- said of a piece in machinery", + "1", + "A nitro derivative of methane obtained as a mobile liquid; -- called also nitrocarbol", + "The body of squires, collectively considered; squirarchy", + "To free from a gage or pledge; to disengage", + "The bindings of a hedge", + "Treasure", + "To stun; to astonish; to stupefy", + "1", + "Freedom from confusion; distinctness", + "Situated around the vitellus, or between the vitellus and zona pellucida of an ovum", + "An obsolete name for the cornet-à-piston", + "1", + "The act of dividing with an instrument having a sharp edge", + "1", + "The operation of making an opening into the windpipe", + "1", + "A transom", + "A weight, consisting of two spheres or spheroids, connected by a short bar for a handle; used (often in pairs) for gymnastic exercise", + "1", + "An old English gold coin, broader than a guinea, as a Carolus or Jacobus", + "1", + "Full of devices; inventive", + "(a) Recovery of strength after sickness", + "Composedly; coolly", + "Resplendent", + "Having a visible fiber embodied in the surface of; -- applied esp", + "Without a port or harbor", + "Full of heed; regarding with care; cautious; circumspect; attentive; vigilant", + "Vast plains in the central and southern part of the Argentine Republic in South America", + "1", + "Working in wool", + "1", + "1", + "To be deficient; to fail", + "Slope; inclination", + "1", + "To seize, and hold in possession, by force, or without right; as, to usurp a throne; to usurp the prerogatives of the crown; to usurp power; to usurp the right of a patron is to oust or dispossess him", + "Constructed of uncemented stone", + "To plunder; to waste in riot", + "An unsymmetrical, divalent, hydrocarbon radical, C2H4 metameric with ethylene but written thus, CH3", + "1", + "1", + "Imposture", + "1", + "An apparatus for the introduction of suppositories into the rectum", + "Of or pertaining to catoptrics; produced by reflection", + "Vocal music colored, as it were, by florid ornaments, runs, or rapid passages", + "A horseshoe to correct a narrow, hoofbound heel", + "Prophetic; oracular; pretending to foretell events", + "Having new vigor or strength; invigorated anew", + "Spurge", + "To oppose, as another plot, by plotting; to attempt to frustrate, as a stratagem, by stratagem", + "See Harrier", + "1", + "Serving to amplify or enlarge; amplificative", + "A muscle which produces the motion of supination", + "Contraction of Swollen, p", + "tropical; figurative; as, a translative sense", + "Of or relating to ancient Etruria, in Italy", + "Secret slander; detraction", + "To discharge", + "The quality of being prompt; quickness of decision and action when occasion demands; alacrity; as, promptitude in obedience", + "Serving to designate or indicate; pointing out", + "In an ample manner", + "1", + "Any one of numerous species of ciliated Infusoria belonging to Vorticella and many other genera of the family Vorticellidæ", + "A division of Mammalia in which the placenta is zonelike", + "See Sandix", + "Of or pertaining to schist; having the structure of a schist", + "A variety of amphibole or of pyroxene, occurring in long and delicate fibers, or in fibrous masses or seams, usually of a white, gray, or green-gray color", + "A Utopian community, in which all should rule equally, such as was devised by Coleridge, Lovell, and Southey, in their younger days", + "Dimness or abolition of sight, with a diminution of transparency, a bluish or greenish tinge of the refracting media of the eye, and a hard inelastic condition of the eyeball, with marked increase of tension within the eyeball", + "The quality of being divine; superhuman or supreme excellence", + "An unreal, delightful country such as in sometimes pictured in dreams; region of fancies; fairyland", + "A fine sieve; a searce", + "Of or relating to Damascus", + "State of being dual or twofold; a twofold division; any system which is founded on a double principle, or a twofold distinction; as: (a) (Philos", + "In fire-alarm telegraphy, a system so arranged that when one alarm is being transmitted, no other alarm, sent in from another point, will be transmitted until after the first alarm has been disposed of", + "An organ of the Ctenophora, supposed to be sensory", + "To subdue by wrestling", + "A genus of hydroids having large, naked, flowerlike hydranths at the summits of long, slender, usually simple, stems", + "Inordinately", + "(a) The plinth, or lowest member, of any pedestal, podium, water table, or the like", + "A material used for dyeing", + "Same as Garboard", + "According to the Bible", + "1", + "Damage; injury; harm", + "Without life or spirit", + "The European polecat; -- called also European ferret, and fitchew", + "A grandfather", + "1", + "The state of being bilious", + "A stiff wire brush for cleaning iron castings and other metal", + "1", + "Not recognizable", + "A Paracelsian", + "One of a sect in Africa (4th century), mentioned by St", + "A fold of the peritoneum connecting the liver with the dorsal wall of the abdominal cavity", + "The act of forming anew; a second forming in order; as, the reformation of a column of troops into a hollow square", + "One who splutters", + "The operation of suffumigating", + "Wood to which a tenant is entitled for making and repairing carts and other instruments of husbandry", + "The houseleek (Sempervivum tectorum)", + "1", + "A term used for lace of different kinds; most properly for a lace of large pattern and heavy material which has no ground or mesh, but has the pattern held together by connecting threads called bars or brides", + "1", + "1", + "Inheritance; heritage", + "A light carriage built for rapid motion; -- called also tim- whiskey", + "Together", + "Hardihood; boldness; courage; energetic action", + "An acid salt", + "Producing no effect; inoperative", + "A corporal's office", + "To utter in a shrill tone; to scream", + "Same as Foundry", + "Indecent", + "The quality or state of being unequal; inequality; unevenness", + "Covered, or bound round, with a kercher", + "Of or pertaining to peace; suited to make or restore peace; of a peaceful character; not warlike; not quarrelsome; conciliatory; as, pacific words or acts; a pacific nature or condition", + "A small suppurting inflamed spot on the gum", + "The male of the domestic fowl; a cock", + "The external branch of the appendages of Crustacea", + "Resembling marl; partaking of the qualities of marl", + "Tending to impair or damage; injurious; mischievous; occasioning loss or injury; as, hurtful words or conduct", + "1", + "One who piks or chooses; esp", + "1", + "Occurring in small portions scattered through some other substance", + "To clear from blame", + "1", + "To remove the plaits of; to smooth", + "1", + "A parasitic evergreen plant of Europe (Viscum album), bearing a glutinous fruit", + "Pertaining to, or written in, hemistichs; also, by, or according to, hemistichs; as, a hemistichal division of a verse", + "Incapable of being resuscitated or revived", + "The act of relieving, or the state of being relieved; relief; release", + "One who inquires or examines; questioner; investigator", + "In a strange, unearthly way", + "A writer of epitaphs", + "An ointment used in farriery", + "1", + "The middle one of the three principal basal cartilages in the fins of fishes", + "Excessively corpulent; fat; fleshy", + "Engaged in a quarrel; apt or disposed to quarrel; as, quarreling factions; a quarreling mood", + "1", + "Being or happening before birth", + "The letters signified by the signal ( ", + "1", + "(a) The orange filefish", + "Cautiously; timidly; fastidiously; daintily", + "Tending tu refute; refuting", + "The denial of one's self; forbearing to gratify one's own desires; self-sacrifice", + "1", + "1", + "1", + "Failure or lack of development", + "The breast of a bird", + "1", + "The process of becoming chitinous", + "Not moral nor immoral; having no connection with morals; not in the sphere of morals or ethics; not ethical", + "1", + "A genus of leguminous plants, containing many species, and including the sensitive plants (Mimosa sensitiva, and M", + "Having windows or openings", + "One who appoints, or executes a power of appointment", + "An inversion of the natural order of words; as, echoed the hills, for, the hills echoed", + "See Catechu", + "A very astringent shrub (Spiræa tomentosa), common in pastures", + "To inclose in a case; to inclose; to cover or surround with something solid", + "1", + "Absence or lack of manhood", + "The quality or state of being whimsical; freakishness; whimsical disposition", + "A two-masted Arab or Indian trading vessel, used in Indian Ocean", + "Needing care; weak; feeble; as, a reckling child", + "The act, process, or time of celebrating", + "Shutting; confining; drawing together; as, a claudent muscle", + "Guildhall", + "Supplied with rivers; as, a well rivered country", + "See Only", + "See Burden", + "The mutual pleas and replies of the plaintiff and defendant, or written statements of the parties in support of their claims, proceeding from the declaration of the plaintiff, until issue is joined, and the question made to rest on some single point", + "Pressed close to, or lying against, something for its whole length, as against a stem, Gray", + "Quadrinomial", + "The testing of a ledger to discover whether the debits and credits balance, by finding whether the sum of the personal credits increased by the difference between the debit and credit sums in the merchandise and other impersonal accounts equals the sum of personal debits", + "Between tubes or tubules; as, intertubular cells; intertubular substance", + "Having performed wonders; able to perform wonderful things", + "Twin; paired; -- said of various objects made or formed in pairs, as a binocular opera glass, a pair of gimmal rings, etc", + "A mineral of a white or gray color occurring massive and in isometric crystals; in composition it is a magnesium borate with magnesium chloride", + "The fruit of a trailing leguminous plant (Arachis hypogæa); also, the plant itself, which is widely cultivated for its fruit", + "Slow", + "1", + "1", + "A repetition at the end of a stanza", + "1", + "1", + "A rubbing together; friction", + "The lobe of the ear", + "1", + "A compound of the bichloride of mercury with another chloride", + "One who carries a wallet; a foot traveler; a tramping beggar", + "The finest kind of silk received from India", + "Indignation", + "The crop, or craw, of birds", + "1", + "Like, or pertaining to, the genus Eschara, or family Escharidæ", + "With a push or thrust", + "A transliteration of the four constants forming the Hebrew tetragrammaton or incommunicable name of the Supreme Being, which in latter Jewish tradition is not pronounced save with the vowels of adonai or elohim, so that the true pronunciation is lost", + "One who commits a solecism", + "The thirteenth, or intercalary, month of the Jewish ecclesiastical calendar, which is added about every third year", + "; sing Cayuga", + "To render illegitimate; to bastardize", + "Burning; ardent", + "The quality or state of being stanch", + "The deposit of slime at the mouth of a river; slime", + "Prominent; staring, as the eye", + "To trail; to draggle", + "1", + "A genus of fossil corals abundant in the Silurian and Devonian rocks, having polygonal cells with perforated walls", + "1", + "To breathe again", + "Of or pertaining to neuropathy; of the nature of, or suffering from, nervous disease", + "Having a visible fiber embodied in the surface of; -- applied esp", + "1", + "Closely resembling; being a counterpart", + "A men living in the forest in or beyond the new settlements, especially on the western frontiers of the older portions of the United States", + "A fight in which the combatants are mingled", + "The state or quality of being reluctant; repugnance; aversion of mind; unwillingness; -- often followed by an infinitive, or by to and a noun, formerly sometimes by against", + "A disease characterized by an irresistible desire to eat earth, observed in some parts of the southern United States, the West Indies, etc", + "1", + "1", + "A yard or inclosure for stacks of hay or grain", + "Pertaining to the sense of hearing, the organs of hearing, or the science of sounds; auditory", + "The outer extremity of the shoulder blade", + "A division of Foraminifera including those having a manychambered shell", + "A kind of small, portable, cooking apparatus for which heat is furnished by a spirit lamp", + "Not regular; not conforming to a law, method, or usage recognized as the general rule; not according to common form; not conformable to nature, to the rules of moral rectitude, or to established principles; not normal; unnatural; immethodical; unsymmetrical; erratic; no straight; not uniform; as, an irregular line; an irregular figure; an irregular verse; an irregular physician; an irregular proceeding; irregular motion; irregular conduct, etc", + "Any species of small burrowing snakes of the family Uropeltidæ, native of Ceylon and Southern Asia", + "See Lecanoric", + "In a moody manner", + "The act of mystifying, or the state of being mystied; also, something designed to, or that does, mystify", + "1", + "To wade or move about with splashing; to dabble; also, to potter; trifle; idle", + "One versed in the cabala, or the mysteries of Jewish traditions", + "The state of dwelling or residing; occupancy as a dwelling place", + "Growing well; recovering strength", + "1", + "Tongue", + "One skilled in, or given to, microscopy", + "A species of remora (Echeneis naucrates)", + "Insensible", + "Secreting water; -- applied to certain glands", + "To free from entailment", + "A government by many chiefs, princes, or rules", + "See Fa", + "A claw", + "A nævus", + "Having the appearance or color of iron rust; rusty-looking", + "The quality or state of being radical; specifically, the doctrines or principles of radicals in politics or social reform", + "Stone-producing; -- said of polyps which form coral", + "The science or art of hurling missile weapons by the use of an engine", + "1", + "The state or quality of being indispensable, or absolutely necessary", + "Visited by a dream; -- used in the phrase, To be adreamed, to dream", + "The doctrine of nutrition; a treatise on nutrition", + "In a ruling manner; so as to rule", + "1", + "1", + "One of a sect, in the ancient church, who maintained that the human and divine in Jesus Christ constituted but one composite nature", + "A long carriage, with a calash top, so constructed as to give space for reclining at night, when used on a journey", + "1", + "1", + "On the top of; upon; on", + "A genus of lizards, one of the few which feed upon vegetable substances; also, one of these lizards", + "The act of superintending; superintendence", + "1", + "In Japanese costume and decorative art, a small object carved in wood, ivory, bone, or horn, or wrought in metal, and pierced with holes for cords by which it is connected, for convenience, with the inro, the smoking pouch (tabako-ire), and similar objects carried in the girdle", + "See Orach", + "Illuminating power, as of a lamp, or gas flame, reckoned in terms of the light of a standard candle", + "An extensive suborder of fresh-water physostomous fishes having the anterior vertebræ united and much modified; the Eventognathi", + "1", + "Reasonably; justly", + "1", + "The liberty of being sworn in courts, as a juror or witness; one of the ancient privileges of a freeman; free and common law; -- an obsolete expression signifying substantially the same as the American expression civil rights", + "The page of a book which contains it title", + "1", + "Something used to give relish to food, and to gratify the taste; a pungment and appetizing substance, as pepper or mustard; seasoning", + "1", + "Like, or imitative of, anything archaic; pertaining to an archaism", + "1", + "Boiling up or over; hence, manifesting exhilaration or excitement, as of feeling; effervescing", + "Like supernaculum; first-rate; as, a supernacular wine", + "Same as Ventriloquism", + "Having a large face", + "(a) A keeping out by force or wrong; a wrongful withholding, as of lands or tenements, to which another has a right", + "To penetrate between or within; to penetrate mutually", + "Consisting of four; requiring four participants", + "Causing revulsion; revulsive", + "A concave molding used especially in classical architecture", + "1", + "The relation of a son to a father; sonship; -- the correlative of paternity", + "1", + "The capability of being placed or located", + "One who favors annexation", + "Relating to bryology; as, bryological studies", + "To nerve again; to give new vigor to; to reinvigorate", + "See Spathic", + "To use with tenderness; to fondle", + "Incapable of being described", + "Any one of numerous species of hymenopterous insects belonging to the family Tenthredinidæ", + "Of or pertaining to, or exhibiting the phenomena of, galvanism; employing or producing electrical currents", + "The buildings and yards necessary for the business of a farm; a homestead", + "The division of Siphonophora which includes the Physalia and allied genera; -- called also Pneumatophoræ", + "One who hands over or transmits; a conveyer in succession", + "A woman born in the state of villeinage; a female serf", + "More than is wanted or is sufficient; rendered unnecessary by superabundance; unnecessary; useless; excessive; as, a superfluous price", + "A small craft used in the West India Islands to take off sugars, rum, etc", + "One of the Dimera", + "In a connotative manner; expressing connotation", + "The act of lopping or cutting off", + "See Taboo", + "One skilled in, or who practices, cranioscopy", + "Sumptuous in cheer", + "1", + "A female defender", + "1", + "A preparation from the seeds of Paullinia sorbilis, a woody climber of Brazil, used in making an astringent drink, and also in the cure of headache", + "A walking abroad; a promenading", + "Glass with one side smooth and the other side formed into sharp-edged ridges so as to reflect the light that passes through, used at windows to throw the light into the interior", + "The quality or state of being rich (in any sense of the adjective)", + "To render other than Protestant; to cause to change from Protestantism to some other form of religion; to deprive of some Protestant feature or characteristic", + "1", + "The figures of two heads on a medal or coin, either side by side or joined", + "A very large lizard (Varanaus salvator) native of India", + "Like a doctor or learned man", + "A genus of epiphytic endogenous plants found in the Southern United States and in tropical America", + "Without a back", + "A wrong position", + "To bind up,as in a knot; to include", + "(a) The black grouper (Epinephelus nigritus) of the southern coasts of the United States", + "See under Yellow", + "Not blushing; shameless", + "An astrologer", + "1", + "Hazardous; risky; esp", + "A Russian copper coin", + "Circumscribing or tending to circumscribe; marcing the limits or form of", + "The quality of being courteous; politeness; courtesy", + "Having grooves or furrows broader than the intervening ridges; furrowed", + "1", + "A customhouse officer who watches the landing of goods from merchant vessels, in order to secure payment of duties", + "To renounce", + "A measure of certain commodities by number, usually ten or twelve, but sometimes twenty; as, a daker of hides consisted of ten skins; a daker of gloves of ten pairs", + "Mucin", + "Disavowal", + "To pamper excessively; to feed or dress too much", + "See Corroboree", + "Free from passion; dispassionate", + "A white waxy substance, resembling spermaceti, tasteless and odorless, and obtained from coal tar, wood tar, petroleum, etc", + "One skilled in strategy, or the science of directing great military movements", + "The rim which encompasses and fastens a jewel or other object, as the crystal of a watch, in the cavity in which it is set", + "1", + "Having the lower chap or jaw drooping, -- an indication of humiliation and dejection; crestfallen; discouraged", + "An adjustable diaphragm, suggesting the iris of the eye in its action, for regulating the aperture of a lens, consisting of a number of thin pieces fastened to a ring", + "Poultry", + "See Cocoa", + "Change; alteration, either in form or qualities", + "Of or pertaining to a congress, especially, to the Congress of the United States; as, congressional debates", + "A transverse bar or piece, as a bar across a door, or as the iron bar or stock which passes through the shank of an anchor to insure its turning fluke down", + "Same as Courtesy, an act of respect", + "1", + "1", + "The common gannet", + "A morbid state of the lung produced by inflammation, in which its tissue resembles that of the spleen", + "Implicitness", + "A ravenous appetite caused by disease; excessive and morbid hunger", + "1", + "Bearing only ligulate flowers; -- said of a large suborder of composite plants, such as the dandelion, hawkweed, etc", + "The art and principles of method", + "The act of looking out suddenly, as from behind a screen, so as to startle some one (as by children in play), or of looking out and drawing suddenly back, as if frightened", + "The act or practice of eating human flesh by mankind", + "1", + "Having a limit; limited in quantity, degree, or capacity; bounded; -- opposed to infinite; as, finite number; finite existence; a finite being; a finite mind; finite duration", + "1", + "See Neurocord", + "Involving large outlay or expense; costly; expensive; hence, luxurious; splendid; magnificient; as, a sumptuous house or table; sumptuous apparel", + "See Allelomorph", + "A menial attendant", + "Resembling a slattern; sluttish; negligent; dirty", + "Not lying in one plane; -- said of certain curves", + "A commercial traveler; one employed to solicit orders for manufacturers and tradesmen", + "Frolicsome; sportive", + "See Ventouse", + "Divination by the entrails of human being", + "A large music box imitating a variety of orchestral instruments", + "A screech", + "One who intercedes; an intercessor; a mediator", + "One of the grand divisions of the animal kingdom", + "1", + "Having, or subject to, erythrochroism", + "1", + "The wren", + "One who, or that which, baffles", + "Somewhat viscous", + "To grin or yawn", + "imp", + "The act of disfranchising, or the state disfranchised; deprivation of privileges of citizenship or of chartered immunities", + "1", + "See Uranographist", + "One who digs, as with a spade", + "Pertaining to, or connected with, a fetus; as, fetal circulation; fetal membranes", + "1", + "One who speaks in public; an haranguer; a preacher", + "The natural history of Mammalia", + "The condition or quality of being rank", + "Having the character of, or pertaining to, tetter", + "1", + "1", + "A grallatorial bird, of the genus Recurvirostra; the scooper", + "Having a very narrow stern; -- said of a vessel", + "An annual herb (Spergula arvensis) with whorled filiform leaves, sometimes grown in Europe for fodder", + "Caused by a morbifie virus implanted in the system; as, an enthetic disease like syphilis", + "A vessel for heating water", + "One of the placoids", + "The act of starving, or the state of being starved", + "Of equal value", + "The state of being accessary", + "A place lying east or southeast of Jerusalem, in the valley of Hinnom", + "A division of Gregarinæ including those that have two or more internal divisions of the body", + "Palsy of the lower half of the body on both sides, caused usually by disease of the spinal cord", + "A shoemaker's awl", + "A white, crystalline substance, C12H13NO3, obtained as a product of the decomposition of narcotine", + "Porous; as, pory stone", + "1", + "1", + "The act of leaping on anything", + "1", + "Flourishing, as in spring; vernal", + "The nest of a bird of prey, as of an eagle or hawk; also a brood of such birds; eyrie", + "Toward the southwest", + "imp", + "Of or relating to the elves; elflike; implike; weird; scarcely human; mischievous, as though caused by elves", + "A prefix of one or two unaccented syllables to a verse properly beginning with an accented syllable", + "Anything soever which; the thing or things of any kind; being this or that; of one nature or another; one thing or another; anything that may be; all that; the whole that; all particulars that; -- used both substantively and adjectively", + "In an impersonal manner", + "1", + "Of, pertaining to, or designating, a nitrogenous acid of osmium, H2N2Os2O5, forming a well-known series of yellow salts", + "Quality of being customary", + "Same as Hemadynamometer", + "A fuse used in blasting, consisting of a long cylinder of explosive material inclosed in a varnished wrapping of rope or hose", + "Having the power of second-sight", + "The hollow beneath the junction of the arm and shoulder; the axilla", + "A whoremaster; a lecher; a man who frequents the society of whores", + "Primordial", + "A group which includes the typical Isopoda", + "One of a class of soluble products formed in the digestion of proteids with gastric and pancreatic juice, and also by the hydrolytic action of boiling dilute acids on proteids", + "Displaced", + "A person who is supposed to bring good luck to the household to which he or she belongs; anything that brings good luck", + "1", + "A thorp", + "1", + "1", + "See Bridesmaid, Bridesman", + "A disease attended with inflammation and ulceration of the colon and rectum, and characterized by griping pains, constant desire to evacuate the bowels, and the discharge of mucus and blood", + "The state of being assured; certainty; full confidence", + "A leap or caper", + "A vicar", + "2d pers", + "Swart; swarthy", + "The act of weighing", + "Wrong or bad management; as, he failed through mismagement", + "Intoxicated, or partially so; intoxicating", + "One who rows with an oar", + "1", + "1", + "Having dry bones, or bones without flesh", + "Same as Phantasm", + "A period of four years, by which the ancient Greeks reckoned time, being the interval from one celebration of the Olympic games to another, beginning with the victory of Coroebus in the foot race, which took place in the year 776 b", + "Tyrannical; arbitrary; unjustly severe; despotic", + "To withstand; to resist", + "The art or process of calculating the atomic proportions, combining weights, and other numerical relations of chemical elements and their compounds", + "1", + "Dowry brought by a bride to her husband", + "Native iron protosulphide, FeS", + "The state of being blemished; blemish; disgrace; damage; impairment", + "A nematode worm (Trichocephalus dispar) often found parasitic in the human intestine", + "The visible regions of the air; the vault of heaven; the sky", + "Hearty; in good spirits", + "1", + "Of, pertaining to, or affected by, ascites; dropsical", + "In a sleepy manner; drowsily", + "The repetition of a word, or part of a sentence, for the sake of greater emphasis; as, The living, the living, he shall praise thee", + "Quality of being grotesque", + "Having branches in pairs, decussated, all nearly horizontal, and each pair at right angles with the next, as in the maple and lilac", + "1", + "1", + "1", + "1", + "The doctrine of Thomas Aquinas, esp", + "To commove; to disturb; to stir up", + "In an intentional manner; with intention; by design; of purpose", + "(a) Resembling the nipple or the breast; -- applied specifically to a process of the temporal bone behind the ear", + "Abounding with snow; snowy", + "During eternity; always; forever; for an indefinite period; at all times; -- often used substantively with for", + "(Chem", + "The operation of making a permanent opening into the stomach, for the introduction of food", + "In a tottering manner", + "A tube for drawing liquors from a cask by the bunghole", + "1", + "1", + "Purified; refined", + "1", + "1", + "A principle or mixture of principles derived from Euonymus atropurpureus, or spindle tree", + "The act or process of combining or of treating with oxygen; oxidation", + "In a medicinal manner", + "An aviary; a poultry house", + "A start in a hunt or a race", + "1", + "In a forlorn manner", + "A court held in Derbyshire, in England, for deciding controversies between miners", + "See Jackwood", + "Having a kind or gentle disposition", + "1", + "(a) The cutting made by the hewer at the side of the face", + "1", + "A genus of slender, transparent holothurians which have delicate calcareous anchors attached to the dermal plates", + "A sprightly but somewhat stately dance, now out of fashion", + "A reddish urinary pigment, considered as the substance which gives to the urine of rheumatism its characteristic color", + "1", + "Delirium", + "Causing no loss of light; -- applied to reflectors which throw back the rays of light without perceptible loss", + "1", + "The inspissated juice of a tree of the genus Artocarpus (A", + "1", + "Having the character of a whoremaster; lecherous; libidinous", + "Conditional", + "Dimness; cloudiness", + "The part of a tree which lies immediately under the bark; the alburnum or sapwood", + "The doctrine or belief of the Stercoranists", + "Of or pertaining to Austria, or to its inhabitants", + "Cheerful; lively; gay; bright; pleasant; as, a cheery person", + "A lemon-yellow phosphate of uranium and calcium occurring in tabular crystals with basal cleavage, and in micalike scales", + "To surpass, exceed, or outstrip in flying", + "An officer or seaman of a privateer", + "1", + "Of the nature of, or pertaining to, chorea; convulsive", + "1", + "1", + "One who retouches", + "In the state of, or having, an embryonal", + "Loose; light", + "The first milk given by a cow after calving", + "Bearing fruit twice a year", + "1", + "Certainly; really; indeed", + "The beneficiary of a concession or grant", + "A dam or mound to obstruct a water course, and raise the water to a height sufficient to turn a mill wheel", + "An order of worms parasitic in cephalopods", + "1", + "Containing a high percentage of silica; -- opposed to basic", + "In the proper position of an altar, that is, at the east of a church with its ends towards the north and south", + "An adherent of Neo-Kantianism", + "Eternal; everlasting", + "1", + "See Throse", + "That besieges; laying siege to", + "1", + "Behind; toward the stern from; as, abaft the wheelhouse", + "Sweepings; refuse; the lowest order of society", + "Imperfectly metallic; as, a submetallic luster", + "1", + "1", + "(a) (Gun", + "A kind of pessary of medicated wool or cotton, formerly used", + "The horselouse; an insect that deposits nits on horses", + "A chamber for a bed; an apartment form sleeping in", + "1", + "A pretender to philosophy", + "1", + "Excessively numerous; too many", + "Pertaining to, or by means of, metallography", + "To work sluggishly or slowly; to plod", + "One who, or that which, knits, joins, or unites; a knitting machine", + "Angular; having corners; hooked", + "A square cap worn by ecclesiastics of the Roman Catholic Church", + "One under the care and protection of another", + "A cassing or lining of staves; especially, one encircling a water wheel", + "Emerging from the light of the sun, or passing into it; rising or setting at the same, or nearly the same, time as the sun", + "One of numerous species of Heliconius, a genus of tropical American butterflies", + "Worthy of being approved; meritorious", + "1", + "A rate or tax for a supply of water", + "One who misrepresents", + "A genus of sea urchins, similar to Spatangus, abounding in the chalk formation; -- from the starlike disposal of the ambulacral furrows", + "The act of deterging or cleansing, as a sore", + "Capable of being exhausted, drained off, or expended", + "Esophageal", + "A tribe of North American Indians formerly living on the Neuse and Tar rivers in North Carolina", + "A bird whose beak bends upward, as the avocet", + "The office of a regent; regency", + "1", + "See Show", + "1", + "Under the protection of a husband; married", + "An apparatus for bringing artificial light down from a chandelier nearer to a table or desk; a pendant", + "Of or pertaining to pression; as, the precessional movement of the equinoxes", + "1", + "See Cirriferous", + "Boiled or stewed meat; beef boiled with vegetables in water from which its gravy is to be made; beef from which bouillon or soup has been made", + "Having no prospect", + "To indicate, as by a symptom, some method of treatment contrary to that which the general tenor of the case would seem to require", + "Having a title", + "Fixedly; steadly", + "A coal-black marble, usually emitting a fetid smell when rubbed; -- called also stinkstone and swinestone", + "The operation of supersaturating, or the state of being supersaturated", + "A foundation or sustaining wall of stones thrown together without order, as in deep water or on a soft bottom", + "Act of rising", + "Attainder; disgrace", + "A large African antelope (Alcelaphus tunata), similar to the hartbeest, but having its horns regularly curved", + "An edible European marine fish (Sparus dentex, or Dentex vulgaris) of the family Percidæ", + "To ride over or through", + "1", + "Pertaining to etymology, or the derivation of words", + "One who is zealous; a zealot; an enthusiast", + "See Quinate", + "1", + "The unicameral national assembly of Bulgaria, elected for a term of five years by universal suffrage of adult males", + "A genus of limicoline birds including many species of sandpipers", + "The aquatic larva of a gnat; -- called also, colloquially, wiggler", + "Same as Acanthus", + "(a) Sodium oxide or hydroxide", + "One who rebels; a rebel", + "1", + "To rant", + "See Emblazon", + "1", + "A little tooth, or like projection", + "Of or pertaining to a semimetal; possessing metallic properties in an inferior degree; resembling metal", + "1", + "A swallowing up as if in a gulf", + "Capable of being perpetrated", + "1", + "One who circumvents; one who gains his purpose by cunning", + "The state of being indocible; indocibleness; indocility", + "To singe", + "In a clinical manner", + "The quality of being ambitious; ambition; pretentiousness", + "Tending to, or caused by, prurigo; affected by, or of the nature of, prurigo", + "To blot out; to erase; to expunge; to dele; to omit", + "1", + "To spread", + "To hie", + "Blown down by the wind", + "The Tasmanian forty-spotted diamond bird (Pardalotus quadragintus)", + "Onanism; self-pollution", + "A made-up face; a grimace", + "f Shoe", + "1", + "Having two callosities or hard spots", + "Of or pertaining to a zone; having the form of a zone or zones", + "In a cheery manner", + "To appoint", + "A simpleton; a fool", + "Like a thread; consisting of threads or filaments", + "To begin", + "A sense organ found in certain sponges", + "1", + "1", + "An inflammatory disease of the skin, characterized by the presence of redness and itching, an eruption of small vesicles, and the discharge of a watery exudation, which often dries up, leaving the skin covered with crusts; -- called also tetter, milk crust, and salt rheum", + "1", + "Serving to in invest, or sheathe; sheathing", + "Pertaining to homology; having a structural affinity proceeding from, or base upon, that kind of relation termed homology", + "1", + "In a manner to show or point out; directly; absolutely; definitely", + "The person who weighs and proportions the materials to be made into glass, and who works and tempers them", + "(a) The pintail", + "Capable of being prorated, or divided proportionately", + "1", + "Bad, evil, or pernicious, in the highest degree, whether in a physical or moral sense", + "Situated outside of a joint", + "The principal which, drawing interest at a given rate, will amount to the given sum at the date on which this is to be paid; thus, interest being at 6%, the present value of $106 due one year hence is $100", + "Entreaty", + "1", + "Having breasts; of, pertaining to, or derived from, the Mammalia", + "1", + "A little shoot; a twig; a sucker", + "The system of religion, philosophy, and instruction, received and taught by the Druids; the rites and ceremonies of the Druids", + "Having the maxillo-palatine bones separate from each other and from the vomer, which is pointed in front, as in the gulls, snipes, grouse, and many other birds", + "Elastic", + "1", + "A form of cloud", + "To discolor by the production of an ecchymosis, or effusion of blood, beneath the skin; -- chiefly used in the passive form; as, the parts were much ecchymosed", + "Resembling, or pertaining to, the iguana", + "Barren land having only a thin coat of grass", + "Pertaining to the measurement of the intensity of the solar rays, either (a) heating, or (b) actinic", + "Without seed or seeds", + "Livelihood", + "1", + "1", + "A judge; an umpire", + "Fine bobbin lace made at Ypres in Belgium, usually exactly like Valenciennes lace", + "Esteem; opinion; reputation", + "1", + "Somebody; one unknown", + "1", + "1", + "Lying prone; low; debased", + "1", + "Same as Suctoria, 1", + "To link together; to unite closely or firmly, as by a chain", + "Of or pertaining to bronchitis; as, bronchitic inflammation", + "An alga of any kind that produces blackish spores, or seed dust", + "Affecting a whole people or a number of countries; everywhere epidemic", + "A combining form used in anatomy to indicate connection with, or relation to, the scapula or the shoulder; as, the scapulo- clavicular articulation, the articulation between the scapula and clavicle", + "1", + "A kind of metallic ware made in India", + "1", + "The principle of civil government", + "Of or pertaining to Chaldea", + "Causing sickness; specif", + "The office of a dean", + "See Color", + "To fight against; to attack; to be in conflict with; to oppose; to resist", + "In a relative manner; in relation or respect to something else; not absolutely", + "Any plant of the genus Verbascum", + "One of the maidens of Odin, represented as awful and beautiful, who presided over battle and marked out those who were to be slain, and who also ministered at the feasts of heroes in Valhalla", + "A lively dance (called also galliard), the steps of which were regulated by the number five", + "In a gentle manner", + "One who, or that which, echoes", + "Any species of a tribe of butterflies (Fugacia) including the common yellow species and the cabbage butterflies", + "To indulge", + "Act or state of swimming; suffusion", + "The dress prescribed by canon to be worn by a clergyman when oficiating", + "1", + "1", + "Having the jaws projecting beyond the upper part of the face; - - opposed to orthognathous", + "Incongruous; inconsistent", + "On shore or on land; on the land adjacent to water; to the shore; to the land; aground (when applied to a ship); -- sometimes opposed to aboard or afloat", + "Having large flews", + "Growing in Alpine regions", + "Pertaining to, or consisting of, excrement; of the nature of excrement", + "An ancient wormhole in sand, preserved in the rocks", + "Of or pertaining to epithelium; as, epithelial cells; epithelial cancer", + "The common sandpiper", + "One who advocates or practices nephalism", + "The state of being concupiscible", + "A secretary who is subordinate to the chief secretary; an assistant secretary; as, an undersecretary of the Treasury", + "A group of gastropod mollusks having a tubular shell", + "Capable of cleaving or being divided", + "A Hebrew measure of liquids, containing three quarts, one pint, one gill, English measure", + "Freed from a former connection or dependence; disconnected", + "Full of barm or froth; in a ferment", + "A priest who celebrates Mass", + "The side of a right-angled triangle that is opposite to the right angle", + "A weight of twelve grains; or, according to some, of ten grains, or half a scruple", + "Obovate", + "To talk much and idly; to prate; hence, to talk lightly and artlessly, like a child; to utter child's talk", + "An act or a bill conferring upon a chief executive, as a governor or mayor, large powers of appointment and removal of heads of departments or other subordinate officials", + "A girl or woman with a somewhat brown or dark complexion", + "Intermediate", + "A bladder", + "Imparting or communicating by its own powers", + "Wainscoting", + "1", + "The benevolent spirits of the dead, especially of dead ancestors, regarded as family deities and protectors", + "A province, prefecture, or territory, under the jurisdiction of an eparch or governor; esp", + "A plate heated by hot water contained in a double bottom or jacket", + "An instrument for measuring minute intervals of time; used in determining the velocity of projectiles, the duration of short-lived luminous phenomena, etc", + "Lame; disabled; in a crippled condition", + "Starvation", + "privately; secretly", + "Under way and moving as nearly as possible toward the direction from which the wind blows; -- said of a sailing vessel", + "Slightly acid; subacid", + "Resembling a monster; abnormal; of a pathological growth, exceedingly complex or highly organized", + "A hyacinth", + "1", + "1", + "To inoculate with the cowpox by means of a virus, called vaccine, taken either directly or indirectly from cows", + "The act or process of combining or impregnating with sulphur or its compounds; also, the state of being so combined or impregnated", + "Relating to a conjunction", + "gives a mortgage", + "The act of reassigning", + "(a) An oxide containing two atoms of oxygen in each molecule; binoxide", + "1", + "The act of furnishing, or of supplying furniture; also, furniture", + "1", + "1", + "The property of existing in two or more conditions which are distinct in their physical or chemical relations", + "In a mortifying manner", + "Biting; pinching; painful; destructive; as, a nipping frost; a nipping wind", + "Crazy; mentally unsound", + "A variety of early apple", + "To stoop by bending the knees; to crouch; to squat; hence, to quail; to sink through fear", + "1", + "Not separate; together; united", + "A frame mounted on the running gear of a wagon, and used in hauling hay, straw, sheaves, etc", + "The parallax of the sun, that is, the angle subtended at the sun by the semidiameter of the earth", + "1", + "A low stool to support the feet of one when sitting", + "To disorder; to make shapeless", + "One who supplies or fits out", + "A expression of gratitude; an acknowledgment expressive of a sense of favor or kindness received; obligation, claim, or desert, or gratitude; -- now generally used in the plural", + "Defedation", + "Wishing evil; disposed to injure others; rejoicing in another's misfortune", + "A plane figure having ten sides and ten angles; any figure having ten angles", + "1", + "The quality of being minute", + "Pervious to, or permitting the passage of, heat", + "Differing in kind; having unlike qualities; possessed of different characteristics; dissimilar; -- opposed to homogeneous, and said of two or more connected objects, or of a conglomerate mass, considered in respect to the parts of which it is made up", + "One who, or that which, puzzles or perplexes", + "Two-threaded; involving the use of two threads; as, bifilar suspension; a bifilar balance", + "1", + "1", + "A genus of endogenous plants found in tropical America, and some species also in India", + "A prolate spheroid", + "1", + "Same as Saker", + "pl", + "Any representation or suggestion of the genealogy of Christ, in decorative art; as: (a) A genealogical tree represented in stained glass", + "Inclosed or shut up as in a cavern", + "The act of biting or gnawing", + "A formal or systematic inquiry into, or discussion of, any subject; a full examination or investigation of a matter, with the arguments and facts bearing upon it; elaborate essay; dissertation", + "1", + "A writer of dactylic verse", + "To outgo; to move faster than; to leave behind", + "Of or pertaining to photochromy; produced by photochromy", + "To bring under municipal oversight or control; as, a municipalized industry", + "Blood poisoning", + "Terminating in a very fine, sharp point, as some leaves", + "To remove from one country or State to another, for the purpose of residence; to migrate from home", + "Hubbub", + "Having the character of a synonym; expressing the same thing; conveying the same, or approximately the same, idea", + "In a stout manner; lustily; boldly; obstinately; as, he stoutly defended himself", + "The act of conquering or subduing", + "A renewed alliance", + "Any crustacean of the genus Palinurus and allied genera, as the European spiny lobster (P", + "A double reading, or twofold interpretation, as of a Scripture text", + "Pertaining to the firmament; celestial; being of the upper regions", + "One of the descendants of Jonadab, the son of Rechab, all of whom by his injunction abstained from the use of intoxicating drinks and even from planting the vine", + "Same Hemostatic", + "A product of metabolism; a substance produced by metabolic action, as urea", + "Having no distinction of sex; sexless; neuter", + "(a) The common recoil escapement", + "Combining forms signifying all, every; as, panorama, pantheism, pantagraph, pantograph", + "A child's play, one child guessing in which closed hand the other holds some small object, winning the object if right and forfeiting an equivalent if wrong; hence, forfeit", + "To make wrong distinctions in or concerning", + "Excessively troubled", + "The act rendering alkaline by impregnating with an alkali; a conferring of alkaline qualities", + "Going before; preceding; hence, preventive", + "A subordinate agency", + "Same as Checker", + "The act or process of enlightening again", + "The quality or state of being roomy; spaciousness; as, the roominess of a hall", + "To infuse by breathing; to inspire", + "Spangled or studded with stars", + "Unknown; strange", + "To spell correctly or according to usage; to correct in regard to spelling", + "A device attached to a mowing machine for raising the uncut fallen grain and marking the limit of the swath", + "Persons supported by alms; almsmen", + "See Inquire", + "Milk sickness", + "A native or inhabitant of the west", + "To annex with something else", + "1", + "A bit; a morsel", + "A roving or going about in the night", + "The state of inhering; permanent existence in something; innateness; inseparable and essential connection", + "A token, mark, or explanation", + "A combining form from Gr", + "A rope to steady the peak of a gaff", + "Consisting of roses; rosy", + "Of or pertaining to vanadium; obtained from vanadium; -- said of an acid containing one equivalent of vanadium and two of oxygen", + "1", + "Of or pertaining to an escritoire", + "A marine food fish (Melanogrammus æglefinus), allied to the cod, inhabiting the northern coasts of Europe and America", + "1", + "1", + "Thyroid", + "With careful consideration, or deliberation; circumspectly; warily; not hastily or rashly; slowly; as, a purpose deliberately formed", + "The neck or throat", + "1", + "One who consults, or asks counsel or information", + "A callous tumor on the leg of a horse, below the hock", + "Hanging down at the side; limp; drooping; without firmness or shapeliness; moving in an ungainly manner", + "1", + "Moving or moved by cirri, or hairlike appendages", + "One who calls forth", + "A jet of steam issuing from a fissure in the earth", + "The act of unraveling, or the state of being unraveled", + "A solid bounded by twelve quadrilateral faces", + "An atomist", + "Pertaining to herpetology", + "To degrade to the state of a brute; to make brutal", + "To make part in schism; to make a breach of communion in the church", + "Of or pertaining to the Osci, a primitive people of Campania, a province of ancient Italy", + "imp", + "Having two horns; two-horned; crescentlike", + "Of or pertaining to palms; of the nature of, or resembling, palms", + "See Niding", + "Pertaining to the class Icosandria; having twenty or more stamens inserted in the calyx", + "Of or pertaining to the peritoneum", + "See Feldspathic", + "1", + "Wrong credulity or belief; misbelief", + "1", + "Situated under a zone, or zona; -- applied to a membrane between the zona radiata and the umbilical vesicle in the mammal embryo", + "See under Injector", + "The waist or bodice of a lady's dress; as", + "1", + "See Diarchy", + "A claylike mineral, occurring in soft, smooth, amorphous masses, of a whitish color", + "1", + "One who affirms", + "1", + "One who adheres to the philosophy of Plato; a follower of Plato", + "The study of ancient symbols; esp", + "A small drain", + "Not furnished with a revenue", + "Of or pertaining to forests; as, forestal rights", + "Having ribs, or the appearance of ribs; (Bot", + "Primarily", + "In a vehement manner", + "Sensuous perception", + "In a supple manner; softly; pliantly; mildly", + "To loose from pinions or manacles; to free from restraint", + "(a) An order of running birds including the ostrich, emu, and allies; the Ratitaæ", + "See Stichwort", + "1", + "An instrument shaped like a lute, but strung with wire and played with a quill or plectrum", + "1", + "The exact opposite", + "1", + "1", + "A splice formed by bending a rope's and back, and fastening it into the rope, forming a loop or eye", + "Coalescence; a growing into one with another word", + "Of or pertaining to the neck; as, the cervical vertebræ", + "1", + "See Arrhizal, Arrhizous, Arrhythmic, Arrhythmous", + "Running at the nose; sniveling pitiful; whining", + "The sway of pedants", + "To make unsuitable or incompetent; to deprive of the strength, skill, or proper qualities for anything; to disable; to incapacitate; to disqualify; as, sickness unfits a man for labor; sin unfits us for the society of holy beings", + "Of or pertaining to a parish; restricted to a parish; as, parochial duties", + "One who computes", + "See Mohammedan, Mohammedanism", + "Of or pertaining to an author", + "To speak through the nose; to breathe through the nose when it is obstructed, so as to make a broken sound", + "The act of tranquilizing, or the state of being tranquilized", + "A large two-handed sword used formerly by the Scottish Highlanders", + "1", + "1", + "Not complex; uncompounded; simple", + "1", + "1", + "The study of physiognomy; the art of discovering the character of persons by their features, or the lines of the face", + "Having a broad brim", + "(a) Carbon disulphide; -- so called from certain red compounds which it produces in combination with other substances", + "Frequently; many times; not seldom", + "See 3d Trone, 2", + "Epithelial mesoderm; a layer of cuboidal epithelium cells, formed from a portion of the mesoderm during the differetiation of the germ layers", + "Rising to a point or head; conical; pointed; crested", + "An umbelliferous plant (Foeniculum dulce) having a somewhat tuberous stem; sweet fennel", + "An instrument for noting or recording phenomena attendant on thunderstorms", + "Ware, or articles collectively, made of glass", + "An instrument for copying plans, maps, and other drawings, on the same, or on a reduced or an enlarged, scale", + "To make popular; to make suitable or acceptable to the common people; to make generally known; as, to popularize philosophy", + "Furnished with antlers", + "Formidableness", + "To misadvise", + "Uneasiness; inquietude", + "To drudge; to toil laboriously", + "Pertaining to an episode; by way of episode; episodic", + "Treatment or handling of a subject; discussion", + "The rytina; -- called also stellerine", + "Having water within; containing fluid drops; -- said of certain crystals", + "; fem", + "A series of limestone strata found in Ohio and farther west, presenting bluffs along the rivers and valleys, formerly supposed to be of one formation, but now known to be partly Silurian and partly Devonian", + "Without a guardian", + "A spy; a scout", + "Designating, or pertaining to, certain beds, chiefly limestone, characteristic of the latest period of the Silurian age", + "Careless; heedless; indifferent; unconcerned", + "One who uses a pistol", + "To unfold; to lay open; to explain", + "To make a dwarf of; to stunt or hinder the growth of; to dwarf", + "Same as Homotypal", + "A half-hardy, deep crimson rose of the remontant class; -- so named after General Jacqueminot, of France", + "Indefeasible", + "Such", + "Phanerogamous", + "The week last past; last week", + "One who furthers", + "Affixture", + "To woo", + "A landscape", + "A flowing towards; that which flows to; as, an afflux of blood to the head", + "An elephant goad with a sharp spike and hook, resembling a short-handled boat hook", + "An abnormal condition due to deficient aëration of the blood, as in balloon sickness, mountain sickness", + "Not eared, or plowed", + "The posterior horn of each lateral ventricle of the brain", + "1", + "1", + "The nickname of a crackbrained Italian who fancied himself an emperor", + "See Wryneck", + "One who on; one who sees or beholds; a beholder; one who is personally present at, and sees, any exhibition; as, the spectators at a show", + "Of or pertaining to the Triandria; having three distinct and equal stamens in the same flower", + "Situated beneath the esophagus", + "To wash; to bathe; as, to lave a bruise", + "Belonging to horometry", + "Having gills; branchiate; as, branchiferous gastropods", + "A commercial name for textile fabrics, cottons, woolens, linen, silks, laces, etc", + "A genus of birds including the African ostriches", + "A species of grouse (Tetrao uragallus) of large size and fine flavor, found in northern Europe and formerly in Scotland; -- called also cock of the woods", + "1", + "1", + "1", + "A father's or mother's father; an ancestor in the next degree above the father or mother in lineal ascent", + "An outlet", + "Reclaimed from savage life and manners; instructed in arts, learning, and civil manners; refined; cultivated", + "A sentinel, usually on horseback, stationed on the outpost of an army, to watch an enemy and give notice of danger; a vidette", + "Inflammation of the retina", + "The projection in rear of the breech of a cannon, usually a knob or breeching loop connected with the gun by a neck", + "The art or process of gilding copper, iron, etc", + "Not scrupulous; unprincipled", + "See Wornil", + "Capable of being employed by itself as a term; -- said of a word", + "One given to self-worship", + "The act of reforming anything; clearance", + "The Mexican name for turquoise", + "The power or act of discovering ships or land at considerable distances", + "1", + "To wander; to go astray; to err; to blunder; -- used of mental processes", + "Traversed by barrulets or small bars; -- said of the field", + "One versed in pantology; a writer of pantology", + "The state or quality of being English", + "To make or become enthusiastic", + "An invocation of, or address to, the Supreme Being", + "Colossal' of extraordinary height; gigantic", + "1", + "Reciprocal", + "1", + "A female patron or helper", + "Of or pertaining to both the rectum and the uterus", + "A soluble poison (ptomaine) present in putrid blood", + "Adorned with statues", + "Belonging to Alexandria; Alexandrian", + "imp", + "In a gnomic, didactic, or sententious manner", + "Destructive; murderous", + "Disinterestedness; impartiality; fairness", + "A votary", + "1", + "See Zinc", + "1", + "1", + "The state of being widowed or bereaved; loss; bereavement", + "Abounding with mines; like a mine", + "Pertaining to, derived from, or containing, pentyl; as, pentylic alcohol", + "Consisting of, or containing, a bog or bogs; of the nature of a bog; swampy; as, boggy land", + "See Substyle", + "One who favors protection", + "To multiply or increase too much; to repeat too often", + "An evergreen shrub or small tree (Ilex cassine) of the southern United States, bearing red drupes and having soft, white, close- grained wood; -- called also dahoon holly", + "Formed like a fistula; hollow; reedlike", + "One who possesses, or occupies, previously", + "The past participle of Be", + "See Relic", + "The act or process of testing, esp", + "To utter foolishly or excessively; to surpass in babbling", + "1", + "Without, or not developing, an allantois", + "Costive; constipated", + "Made by art, in distinction from what is produced by nature; artificial; sham; formed by, or adapted to, an artificial or conventional, in distinction from a natural, standard or rule; not natural; as, factitious cinnabar or jewels; a factitious taste", + "The distance, reckoned toward the west, between the two meridians passing through the extremities of a course, or portion of a ship's path; the departure of a course which lies to the west of north", + "A lawgiver; one who makes laws for a state or community; a member of a legislative body", + "One who favors innovation", + "A method of phonetic printing of the English language, as devised by Mr", + "In an ambiguous manner; with doubtful meaning", + "A passage for wind or air; a passage or pipe for ventilating apartments", + "1", + "Of or pertaining to the thigh or leg, or to any of the parts called crura; as, the crural arteries; crural arch; crural canal; crural ring", + "To concur; to agree", + "Like epidermis; pertaining to the epidermis", + "Lit", + "1", + "See Elenge, Elengeness", + "A female servant or maid who dresses provisions and assists the cook", + "One of several species of long-billed, wading birds of the genus Limosa, and family Tringidæ", + "Going at a gallop; progressing rapidly; as, a galloping horse", + "That deduces; inferential", + "A countryman; a rustic; especially, one of the lowest class of tillers of the soil in European countries", + "In a manner not exact or precise; inaccurately", + "A large, important class of parasitic or saprophytic fungi, the algal or algalike fungi", + "Not effective; ineffectual; futile; inefficient; useless; as, an ineffective appeal", + "Catarrhal", + "To degrade from the state of deity; to deprive of the character or qualities of a god; to deprive of the reverence due to a god", + "Consisting of twelves", + "A mineral of a white to yellowish, purplish, or emerald-green color, occuring in prismatic crystals, often of great size", + "To know or perceive; to recognize", + "One of the Ascii", + "Quality of being bilingual", + "To cancel, as what is written; to erase", + "Resembling or befitting a god or God; divine; hence, preeminently good; as, godlike virtue", + "Hebrew", + "A ruffian; one who hounds, or spies upon, another; app", + "An Asiatic leguminous herb (Glycine Soja) the seeds of which are used in preparing the sauce called soy", + "See Pluviometer", + "1", + "A leash", + "See Mole the animal", + "1", + "1", + "To exceed in lewdness", + "A discourse or treatise on trees; the natural history of trees", + "Having cirri along the margin of a part or organ", + "A cake made of oatmeal", + "A genus of highly ornate and brilliantly colored birds of Australia, allied to the birds of Paradise", + "Stiff and sharp; prickly", + "A cluster, usually nine in number, of small iron balls, put together by means of cast-iron circular plates at top and bottom, with two rings, and a central connecting rod, in order to be used as a charge for a cannon", + "A petty prince; a young prince", + "To excel in brightness or luster", + "Capable of being washed without damage to fabric or color", + "A hydrous phosphate of alumina containing a little copper; calaite", + "1", + "1", + "Having a large, protuberant belly, or one shaped like a tun; pot-bellied", + "Grinding", + "In an ignominious manner; disgracefully; shamefully; ingloriously", + "A plant of Sierra Leone which yields a wholesome, creamy juice", + "In a metallic manner; by metallic means", + "Capable of being granted", + "Curved; bent; as, compassing timbers", + "1", + "To breathe hard, and with an audible piping or whistling sound, as persons affected with asthma", + "Same as Questor", + "A segment in the hyoidean arch between the epihyal and tympanohyal", + "In an interjectional manner", + "Any one of numerous species of birds constituting the family Alcedinidæ", + "The relation of freedom from the interventionof a medium; immediateness", + "Containing no angle", + "Endemic", + "Between the sternal; -- said of certain membranes or parts of insects and crustaceans", + "Of or pertaining to the series Cryptogamia, or to plants of that series", + "A measure of weight, in the metric system, being the thousandth part of a gram, equal to the weight of a cubic millimeter of water, or ", + "Flagrancy", + "Deeper than the reach of the senses", + "A cavity formed by the invagination of the outer wall of the body, as the atrium of an amphioxus and possibly the body cavity of vertebrates", + "In a grave manner", + "Under the tail; -- applied to the bones which support the caudal fin rays in most fishes", + "1", + "A disease in which the white corpuscles of the blood are largely increased in number, and there is enlargement of the spleen, or the lymphatic glands; leuchæmia", + "The state or quality of being immature or not fully developed; unripeness; incompleteness", + "Syndactilous", + "A bract", + "A group of birds including the common fowl and the pheasants", + "a lynxlike animal of Asia and Africa (Lynx Lybicus)", + "A petty squire", + "The sorrel tree", + "A mixture of volatile hydrocarbons intermediate between gsolene and cymogene", + "Relating to the Ctenoidei", + "The native compound of iridium and osmium", + "1", + "A small South American deer (Furcifer Chilensis), with simple forked horns", + "The act of suffixing, or the state of being suffixed", + "A public room where coffee and other refreshments may be obtained", + "1", + "An oily, three-sided nut, the seed of the Bertholletia excelsa; the cream nut", + "A croft, or small field; a paddock", + "1", + "The state of the devil or of devils; doctrine of the devil or of devils", + "The most important salmon of Alaska (Oncorhinchus nerka), ascending in spring most rivers and lakes from Alaska to Oregon, Washington, and Idaho; --called also red salmon, redfish, blueback, and sawqui", + "Pigmental", + "1", + "Capable of being worked, or worth working; as, a workable mine; workable clay", + "In a studied manner", + "Without flavor; tasteless", + "Having or producing two or more phases; multiphase; as, a polyphase machine, a machine producing two or more pressure waves of electro-motive force, differing in phase; a polyphase current", + "A gust of wind and rain", + "Heated to whiteness; glowing with heat", + "The lowest square sail, or the lower yard of the mizzenmast", + "A ray or glimmer of light; a gleam", + "A repository for holding things; a hinding place", + "A bantam fowl", + "Somewhat dank", + "Thin; lank", + "The seventh month of the year, containing thirty-one days", + "Seventy pounds of lead", + "A Celt or the Celts of the Scotch Highlands or of Ireland; now esp", + "The state of being desirous", + "The state of being monstrous, or out of the common order of nature; that which is monstrous; a monster", + "Fixed; settled; steady; statary", + "Convex on botConvex, a", + "p", + "By imputation", + "a fringe of hair or curls worn about the forehead by women", + "A stone that becomes phosphoric by heat", + "1", + "To place under; to insert", + "Luxation; the dislocation of a joint", + "1", + "That branch of zoölogical science which relates to the crustaceans; -- called also carcinology", + "Readiness to believe on slight evidence; credulity", + "1", + "To deprive of a crown; to discrown", + "A little shepherd", + "1", + "Not forgettable; enduring in memory", + "A fabric of undyed silk from India and China", + "Relating to, or resembling, coma; drowsy; lethargic; as, comatose sleep; comatose fever", + "Same as Spoondrift", + "Somewhat distended in the middle; ventricular", + "A trade name for a brown dyestuff obtained from certain basic azo compounds of benzene; -- called also Bismarck brown, Manchester brown, etc", + "Use; practice; discipline; habit; custom", + "A tribe of Indians native of Arizona and the adjacent parts of Mexico and California", + "A system of prison discipline employing for consecutive periods cellular confinement, associated imprisonment under the mark system, restraint intermediate between imprisonment and freedom, and liberation on ticket of leave", + "Work adorned with frets; ornamental openwork or work in relief, esp", + "An order of Bryozoa of which Rhabdopleura is the type", + "A short blunt arrow for killing birds without piercing them", + "HAving ripple marks", + "1", + "To cause to become like the Scotch; to make Scottish", + "In conjunction or union; together", + "An epoch at the close of the Canadian period of the American Lower Silurian system; -- so named from a township in Clinton Co", + "Not capable of being done or accomplished; impracticable", + "The Hindoo god of wisdom or prudence", + "Any bird of the Old World genus Glareola, or family Glareolidæ, allied to the plovers", + "Of or pertaining to a mass of matter; -- said of the properties or motions of masses, as distinguished from those of molecules or atoms", + "Like or belonging to the cuckoos (Cuculidæ)", + "A bully", + "Good against spasms", + "A salpa", + "The lofty Brazil-nut tree", + "In a weighty manner", + "The science of nature, or of natural objects; that branch of science which treats of the laws and properties of matter, and the forces acting upon it; especially, that department of natural science which treats of the causes (as gravitation, heat, light, magnetism, electricity, etc", + "1", + "A kind of pleasure carriage; a coach", + "Manner of behaving, whether good or bad; mode of conducting one's self; conduct; deportment; carriage; -- used also of inanimate objects; as, the behavior of a ship in a storm; the behavior of the magnetic needle", + "Crabbed; difficult, or perplexing", + "The night in which a person is born; the anniversary of that night in succeeding years", + "1", + "The interpretation of dreams", + "Raised into a pile; collected into a crowd; heaped", + "1", + "Furnished with panicles; arranged in, or like, panicles; paniculate", + "Same as Equerry", + "Knowledge of one's self, or of one's own character, powers, limitations, etc", + "To dry up; to deprive or exhaust of moisture; to preserve by drying; as, to desiccate fish or fruit", + "An arrow", + "1", + "A black or greenish black mineral occurring in foliated flates, also in velvety bronze-colored incrustations", + "The external or outermost layer of a fructified or ripened ovary", + "In the form or manner of a specter", + "Suppliant; beseeching", + ", Without design or preparation; suddenly; without premeditation, unexpectedly", + "Stupidity", + "Pertaining to, or derived from, eugenol; as, eugetic acid", + "One of the Dinosauria", + "1", + "1", + "Producing fronds", + "To follow up step by step by patient inquiry or observation; to trace or track mentally; to search into; to inquire and examine into with care and accuracy; to find out by careful inquisition; as, to investigate the causes of natural phenomena", + "Reproduction by young or larval animals", + "A spermoblast", + "An instrument for ascertaining the strength of acids", + "Fuel", + "(a) Any herb of the cruciferous genus Lepidium, especially the garden peppergrass, or garden cress, Lepidium sativum; -- called also pepperwort", + "Capable of being proportioned, or made proportional; also, proportional; proportionate", + "A court of justice; judgment hall", + "A tough, horny animal substance entering into the composition of the skeleton of sponges, and other invertebrates; -- called also keratode", + "1", + "See Masoola boat", + "1", + "An ericaceous shrub (Leucothoë acuminata) of the southern United States, from the wood of which pipe bowls are made", + "The public bone", + "With flattery", + "Dantelike; Dantean", + "Fairness; beauty", + "1", + "A kind of pledge or mortgage", + "Provisional", + "One of the lower segments in the hyoid arch, often consolidated with the body of the hyoid bone and forming one of its great horns, as in man", + "1", + "Making blind or as if blind; depriving of sight or of understanding; obscuring; as, blinding tears; blinding snow", + "Of or pertaining to the interoperculum", + "1", + "Of or pertaining to a hospital; as, nosocomial atmosphere", + "Having two coverings, a calyx and in corolla", + "1", + "1", + "To repeat wrongly; to give a wrong version of", + "Of or pertaining to respiration; as, respirational difficulties", + "Of or pertaining to a sequestrum", + "An archduchy", + "Enticement; allurement", + "A Mohammedan church or place of religious worship", + "Wavy; waving [Obs", + "The native church of Egypt or church of Alexandria, which in general organization and doctrines resembles the Roman Catholic Church, except that it holds to the Monophysitic doctrine which was condemned (a", + "The quality of being emulous", + "In a representative manner; vicariously", + "One of a system of ordnance, including machine, quick-fire, coast, and field guns, of all calibers, manufactured by the combined firms of Vickers' Sons of Sheffield and Maxim of Birmingham and elsewhere, England", + "A Jew", + "Worthy of reward", + "1", + "1", + "Any bivalve mollusk which secretes a shelly tube around its siphon, as the watering-shell", + "Bent without angles; crooked; curved; as, a curve line; a curve surface", + "Balanced", + "One who receives or conceals, as stolen goods or criminal", + "One who plagiarizes; or purloins the words, writings, or ideas of another, and passes them off as his own; a literary thief; a plagiary", + "A poisonous glucoside found in several species of hellebore, and extracted as a white crystalline substance with a sharp tingling taste", + "One who pronounces an éloge", + "One who bereaves", + "A quantity or coefficient, or constant, which expresses the measure of some specified force, property, or quality, as of elasticity, strength, efficiency, etc", + "Designating, or pertaining to, a kind of glass inclosure for keeping ferns, mosses, etc", + "1", + "A hemispherical or rounded head to a rivet or bolt; also, a swaging tool with a cavity in its face for forming such a rounded head", + "The art or occupation of working upon wooden furniture requiring nice workmanship; also, such furniture", + "Uniform", + "(a) A book containing the words of an opera or extended piece of music", + "(a) Having more than one atom in the molecule; consisting of several atoms", + "Having the shape of a hook; being of a curved or hooked from; hooklike", + "A mineral having many varieties differing in color and in their constituents, but with the same crystallization (isometric), and conforming to the same general chemical formula", + "having acquired an unpleasant taste from the cork; as, a bottle of wine is corked", + "In a bashful manner", + "A coin, either of gold or silver, of several countries in Europe; originally, one struck in the dominions of a duke", + "Engaged in the field; encamped", + "Having a lawn; characterized by a lawn or by lawns; like a lawn", + "In a hungry manner; voraciously", + "An intensely radioactive metallic element found (combined) in minute quantities in pitchblende, and various other uranium minerals", + "1", + "A branch of the Mongolian race, now living in the northern parts of Norway, Sweden, and the adjacent parts of Russia", + "An inflammation of the large intestine, esp", + "To enliven", + "Doubtful; not of definite form", + "Same as Viscacha", + "One who, or that which, extinguishes; esp", + "See Kinesiatrics", + "Sanskrit", + "f or pertaining to the Trematodea", + "1", + "A flattish or convex flower cluster, of the centrifugal or determinate type, differing from a corymb chiefly in the order of the opening of the blossoms", + "1", + "Splendid", + "1", + "An officer of state in England who marshals and orders all great ceremonials, takes cognizance of matters relating to honor, arms, and pedigree, and directs the proclamation of peace and war", + "To sacrifice; to offer in sacrifice; to kill, as a sacrificial victim", + "1", + "A small tube of metal, wood, or India rubber, used for various purposes, esp", + "A feeling of weariness and disgust; dullness and languor of spirits, arising from satiety or want of interest; tedium", + "The ramus of the lower jaw of a bird as far as it is naked; -- commonly used in the plural", + "A conflict of the soul with the body", + "Any one of many species of long-legged dipterous insects belonging to Tipula and allied genera", + "1", + "One who prints; especially, one who prints books, newspapers, engravings, etc", + "Pertaining to diet, or to the rules of diet", + "(a) The European bass (Roccus, or Labrax, lupus); -- called also sea dace", + "Divided by internal partitions into cells, as the pith of the pokeweed", + "Crimson", + "1", + "A close garnment with straight sleeves, and skirts reaching to the ankles, and buttoned in front from top to bottom; especially, the black garment of this shape worn by the clergy in France and Italy as their daily dress; a cassock", + "Having the power of contracting into wrinkles", + "Any one of numerous species of small clamatorial birds belonging to Pipra and allied genera, of the family Pipridæ", + "Of or pertaining to revocation; tending to, or involving, a revocation; revoking; recalling", + "Harm; damage; injury; hurt; waste; misfortune", + "One who, or that which, stirs something; also, one who moves about, especially after sleep; as, an early stirrer", + "A punishment by beating with a stick or club; cudgeling", + "A mania or infatuation for icons, whether as objects of devotion, bric-a-brac, or curios", + "Working, or able to sail, close to the wind; as, a weatherly ship", + "To make (anything) by tatting; to work at tatting; as, tatted edging", + "The most northern of the English Kings-at-arms", + "The quality or state of being starched; stiffness in manners; formality", + "Miry; containing soft mud; resembling ooze; as, the oozy bed of a river", + "See Garfish (a)", + "1", + "To correct", + "A kind of long-winged hawk; -- called also bockerel, and bockeret", + "1", + "To marry, as a man; to take a wife", + "A division of the Arachnida, having the abdomen annulated, including the scorpions, harvestmen, etc", + "(a) The condition of being insolvent; the state or condition of a person who is insolvent; the condition of one who is unable to pay his debts as they fall due, or in the usual course of trade and business; as, a merchant's insolvency", + "A ridge or projecting edge on a shoulder piece to turn the blow of a lance or other weapon from the joint of the armor", + "To change by alchemy; to transmute", + "(a) A chaplain", + "1", + "One who procures abortion or miscarriage", + "Having no disk; appearing as a point and not expanded into a disk, as the image of a faint star in a telescope", + "1", + "1", + "A general name for organ stops in which the sound is caused by wind passing through a flue or fissure and striking an edge above; -- in distinction from reedwork", + "An adventitious whistling or snoring sound heard on auscultation of the chest when the air channels are partially obstructed", + "Arrived at full stature", + "Resembling a beast in nature or habit; marked by animal characteristics; as, theroid idiocy", + "To deprive of worship or due honor; to dishonor", + "Fitted for, or skilled in, detecting; employed in detecting crime or criminals; as, a detective officer", + "Any plant of the genus Polygonum", + "1", + "The wryneck; -- so called from its note", + "Resembling an insect", + "1", + "A disease frequently induced by remaining for some time in an atmosphere of high pressure, as in caissons, diving bells, etc", + "To utter suddenly a sharp, shrill sound; to screech; to creak, as a door or wheel", + "An anatomical description of, or treatise on, the skin", + "1", + "More than substantial; spiritual", + "A cockney", + "The essential radical, C16H33, of hecdecane", + "Hot-short; brittle when red-hot; -- said of certain kinds of iron", + "A city of Asia Minor (or Anatolia) which has given its name to a goat, a cat, etc", + "A tanning; the act, operation, or result of tanning", + "To annex again or anew; to reunite", + "1", + "1", + "1", + "of Bid", + "One of a family of beetles having the maxillary palpi terminating in a hatchet-shaped joint", + "See Presension", + "High flavor; strong scent", + "A spore borne by a basidium", + "(a) A follower of Theodore Roosevelt in the presidential campaign of 1912; -- a sense said to have originated from a remark made by Roosevelt on a certain occasion that he felt like a bull moose", + "A piece of any fabric worn around the neck", + "A suborder of Actinaria, including Zoanthus and allied genera, which are permanently attached by their bases", + "Curved like a hawk's bill; crooked", + "Being three times ten; consisting of one more than twenty-nine; twenty and ten; as, the month of June consists of thirty days", + "See Phoenician", + "Of or pertaining to a uvula", + "The sacred writings of the ancient Persian religion, attributed to Zoroaster, but chiefly of a later date", + "The act or process of irrigating, or the state of being irrigated; especially, the operation of causing water to flow over lands, for nourishing plants", + "Like or suited to an alderman", + "in a convulsive manner", + "Evil name; bad reputation; defamation", + "A deformity of the penis, in which the urethra opens upon its under surface", + "To make carnal; to debase to carnality", + "The practice of concubinage", + "To make lord or master; as, to impatronize one's self of a seigniory", + "Hooded; cowled", + "Breaking from the partitions; -- said of a method of dehiscence in which the valves of a pod break away from the partitions, and these remain attached to the common axis", + "The Bureau Veritas", + "The zebra", + "Separation by bounds", + "In drops", + "One who hoops casks or tubs; a cooper", + "Like pulp; consisting of pulp; soft; fleshy; succulent; as, the pulpy covering of a nut; the pulpy substance of a peach or a cherry", + "Jerked beef; beef cut into long strips and dried in the wind and sun", + "The dorsal portion of an arthromere or somite of an articulate animal", + "Wearied by traveling", + "Protestantism", + "See Caique", + "Waxen; like wax", + "The felonious seeking and invasion of a person in his dwelling house", + "In an apostolic manner", + "A sword with a broad and heavy blade, thick at the back, and usually more or less curved like a scimiter; a cavalry sword", + "Talkativeness", + "A practitioner", + "Same as Acaulescent", + "The wax secreted by bees, and of which their cells are constructed", + "Pertaining to a feast; festive", + "Same as Hypochondriac, 2", + "The fruit of the durio", + "To beat severely", + "Executive; acting; managing affairs", + "Easily breaking into pieces; not compact; loose of texture; brittle; as, shattery spar", + "Awry", + "One of the higher hydrocarbons of the paraffin series, C11H24, found as a constituent of petroleum", + "The act or process of making a joint; also, the joints thus produced", + "See Dacoit, Dacoity", + "Wise; knowing; skillful; sapient; erudite; prudent", + "Capable of being disintegrated, or reduced to fragments or powder", + "A notch, channel, or slit made in any material by cutting or sawing", + "Inflammation of the lining membrane of the middle ear", + "A crafty fox", + "A torch", + "A small calcareous concretion formed in a vein; a vein stone", + "imp", + "Having a form of gas; gaseous", + "One who is younger; an inferior in age; a junior", + "The Brazil nut", + "One who farms; as: (a) One who hires and cultivates a farm; a cultivator of leased ground; a tenant", + "1", + "a short, condensed fugue", + "A city of Saxony", + "Dividing the partitions; -- said of a method of dehiscence in which a pod splits through the partitions and is divided into its component carpels", + "A member of a Scottish sect, founded in the 18th century by John Glass, a minister of the Established Church of Scotland, who taught that justifying faith is no more than a simple assent to the divine testimone passively recived by the understanding", + "In a limping manner", + "About", + "Fitted to excite fear or terror; such as may astonish or terrify by its magnitude, force, or violence; terrible; dreadful; as, a tremendous wind; a tremendous shower; a tremendous shock or fall", + "A belt", + "Window blinds having movable slats, similar to Venetian blinds", + "1", + "1", + "See Smutch", + "Having thin, transparent, reticulated wings; as, the lace- winged flies", + "Wearing a phylactery", + "A division of boring Hymenoptera, including Tremex and allied genera", + "Ornament; decoration; embellishment", + "Horned; having horns; as, cornigerous animals", + "A suffix to names of persons or places, used to denote a collection of notable sayings, literary gossip, anecdotes, etc", + "A knot or coarse part in cloth", + "Producing fumes, or vapors", + "To undervalue; to underestimate", + "To move quickly up and down; to bob up and down, as a cork on rough water; also, to bubble", + "1", + "Acetic aldehyde", + "Of or pertaining to Shamanism", + "One who budges", + "In an oval form", + "1", + "An amorphous carbohydrate found in the vegetable kingdom, esp", + "Filled again; completely filled; full; charged; abounding", + "Strong; active; -- said especially of morbid states attended with excessive action of the heart and blood vessels, and characterized by strength and activity of the muscular and nervous system; as, a sthenic fever", + "1", + "Tending to increase the secretion and discharge of urine", + "(a) The halves of yarns in the unlaid end of a rope twisted for pointing or grafting", + "Having no respect; without regard; regardless", + "See Septfoil", + "To deprive of a franchise or chartered right; to dispossess of the rights of a citizen, or of a particular privilege, as of voting, holding office, etc", + "Pertaining to, or derived from, decane", + "A hypothetical radical derived from maleic acid", + "1", + "Of, pertaining to, or designating, a vanadic acid analogous to metaphosphoric acid", + "Any of various malt liquors (see Citation)", + "Pertaining to, or like, the spine of a herring; especially, characterized by an arrangement of work in rows of parallel lines, which in the alternate rows slope in different directions", + "Incapable of being oxidized; as, gold and platinum are inoxidizable in the air", + "1", + "Fit to be deputed; suitable to act as a deputy", + "Invulnerable", + "A brittle cake or other crisp pastry", + "1", + "Involving or expressing similitude", + "In a modest manner", + "See Maslin", + "1", + "In a solid manner; densely; compactly; firmly; truly", + "1", + "Same as Unheal, n", + "1", + "To trim again", + "Not to be stormed, or taken by assault; incapable of being subdued; able to resist attack; unconquerable; as, an impregnable fortress; impregnable virtue", + "In a scolding manner", + "1", + "One who takes exceptions", + "The state or quality of being inimical or hostile; hostility; unfriendliness", + "In the old German empire, the head forest keeper", + "A small silver coin and money of account of Germany, worth about two cents", + "One who holds the doctrines of the New Jerusalem church, as taught by Emanuel Swedenborg, a Swedish philosopher and religious writer, who was born a", + "Of or pertaining to Rhodes, an island of the Mediterranean", + "An accuser", + "1", + "1", + "A Portuguese gold coin of the value of eight dollars, named from the figure of King John which it bears;- often contracted into joe; as, a joe, or a half joe", + "Depending on, or derived from, prescription; proper to be prescribed", + "In an inconstant manner", + "1", + "Tending to save or secure safety", + "The running together of the matter of an ore into a mass, when the ore is only heated for calcination", + "One who travels; a traveler; a passenger", + "A punt made from the goal line by a player of the side which has made a touchdown to one of his own side for a fair catch, from which an attempt to kick a goal may be made", + "Easily startled; apt to start; startish; skittish; -- said especially of a hourse", + "Same as Hæmatolysis, Hæmatolytic", + "1", + "A workshop; a studio", + "Capable of being discerned by the eye or the understanding; as, a star is discernible by the eye; the identity of difference of ideas is discernible by the understanding", + "Very fiery", + "A large sturgeon (Acipenser huso) from the region of the Black Sea", + "The rump of beef; esp", + "To the death; mortally", + "1", + "To cite; to summon", + "The quality or state of being steadfast; firmness; fixedness; constancy", + "State or quality of being implicit", + "A club or association of persons interested in aëronautics", + "Granular; pertaining to, or having the granular structure characteristic of, the class of meteorites called chondrites", + "Reddish; of a yellowish red or brownish red color; tawny", + "1", + "Capable of being concealed", + "Full of moaning; expressing sorrow", + "Fixedness of purpose; firmness; resolution", + "One of the bones of the tarsus", + "Aware; wary", + "One versed in Assyriology; a student of Assyrian archæology", + "1", + "To insinuate; to offer indirectly", + "1", + "1", + "One versed in phytolithology; a paleobotanist", + "Mastery; superiority; art", + "One of a breed of dogs trained to accompany carriages; the Dalmatian dog", + "1", + "The capital city of Peru, in South America", + "Wailing over; lamenting", + "Any fish of the family Serranidæ, which includes the striped bass, the black sea bass, and many other food fishes", + "1", + "Something unimportant, incidental, or superfluous", + "One of the small green granulelike bodies found in the interior of certain stentors, hydras, and other invertebrates", + "Pilotage; skill of a pilot or loadsman", + "Ardent in temper; violent; rash; impetuous; as, hot-brained youth", + "To peep under", + "Forced feeding (as of poultry or infants) by means of a tube passed through the mouth down to the stomach", + "Same as Chopine, n", + "Producing by propagation, or by a process of growth", + "Like a pillow", + "1", + "In a successive manner", + "Correction or alteration by writing between the lines; interlineation", + "To range about in an irregular manner", + "The quality of being legible; legibleness", + "A setting down of the foot; a footstep; the sound of a footstep", + "A performer upon the viola di gamba", + "Not in the flesh; spiritual", + "The act of bathing", + "To curl; to adorn with curls", + "A farm with the building upon it; a homestead on a farm", + "(a) Pertaining to, or containing, endolymph; as, the endolymphatic duct", + "1", + "One who has a pension or allowance granted for support", + "Same as Jowl", + "Of or pertaining to Atella, in ancient Italy; as, Atellan plays; farcical; ribald", + "Proof against penetration or permeation by water; impervious to water; as, a waterproof garment; a waterproof roof", + "Embracery", + "(a) Any plant of several tropical American species of Smilax", + "Fig", + "1", + "1", + "Of or pertaining to the tarsus (either of the foot or eye)", + "A tribe of North American Indians belonging to the Creek confederation", + "See Hiccough", + "p", + "A sea eagle, esp", + "The most important tribe belonging to the Kaffir race", + "A Turkish or Persian monk, especially one who professes extreme poverty and leads an austere life", + "A straight line considered as drawn from a center to an indefinite distance in one direction, the complete ray being the whole line drawn to an indefinite distance in both directions", + "A curve whose contact with a given curve, at a given point, is of a higher order (or involves the equality of a greater number of successive differential coefficients of the ordinates of the curves taken at that point) than that of any other curve of the same kind", + "Such a number of the officers or members of any body as is competent by law or constitution to transact business; as, a quorum of the House of Representatives; a constitutional quorum was not present", + "A coat made of match-cloth", + "To expound erroneously", + "1", + "1", + "One to whom secrets, especially those relating to affairs of love, are confided or intrusted; a confidential or bosom friend", + "Tainted with, or full of, sin; wicked; iniquitous; criminal; unholy; as, sinful men; sinful thoughts", + "Formed in columns; having the form of a column or columns; like the shaft of a column", + "1", + "The wych-elm", + "An anarch; one who advocates anarchy of aims at the overthrow of civil government", + "An umbelliferous plant of the genus Chærophyllum (C", + "A West Indian lizard (Celestus occiduus), about a foot long, imagined by the natives to be venomous", + "Expressed by synecdoche; implying a synecdoche", + "1", + "p", + "One of a series of compounds that may be regarded as ammonia in which a part of the hydrogen has been replaced by basic, and another part by acid, atoms or radicals", + "One given to devotion, esp", + "1", + "A genus of hepatic mosses, now much circumscribed, but formerly comprising most plants of the order, which is sometimes therefore called Jungermanniaceæ", + "Popliteal", + "A lemur", + "To finger; as, to digitize a pen", + "That which is restless and uneasy", + "That may be requited", + "The bass (Tilia) or its wood; especially, T", + "Spread to a great distance; widely extended; extending far and wide; as, widespread wings; a widespread movement", + "To form or divide into syllables; to syllabify", + "In a thermal manner", + "In a fluent manner", + "See Ectosarc, and Ectoplasm", + "The country inhabited by the Mormons; the Mormon people", + "A nonsense verse; a rigmarole, with apparent meaning, which on further attention proves to be meaningless", + "Of or pertaining to Elasmobranchii", + "In a secret or concealed manner; invisibly", + "Unlawful sexual intercourse", + "See Perigee", + "Mutual action or influence; interaction; as, the interplay of affection", + "The basal joint of the legs of Crustacea", + "A Chinese household divinity; a Chinese idol", + "Remedial", + "A system or method of fishing by means of a number of hooks set on snoods all on one line; -- in North America, called trawl fishing, bultow, or bultow fishing, and long-line fishing", + "A large tub or vat in which goods are subjected to the action of hot lye or bleaching liquor; -- also called keeve", + "To measure", + "Those who live on the same parallel of latitude but on opposite meridians, so that it is noon in one place when it is midnight in the other", + "A writer of hymns", + "(a) An instrument for observing or exhibiting the motions or properties of sounding bodies; especially, an apparatus invented by König for testing the quality of musical strings", + "One among the Jews who adhered to the Talmud and the traditions of the rabbins, in opposition to the Karaites, who rejected the traditions", + "Such as can be magnified, or extolled", + "The god of the winds", + "Ambiguity of speech; equivocation", + "To convert into dolomite", + "Like a ribald", + "1", + "One whose occupation is to assist in navigating ships; a seaman or sailor", + "To combine again", + "1", + "Concerned both in sensation and volition; -- applied to those nerve fibers which pass to and from the cerebro-spinal axis, and are respectively concerned in sensation and volition", + "1", + "1", + "Distended; swelled", + "Separate; unconnected, or imperfectly connected; as, detached parcels", + "A trisulphide", + "1", + "Of or pertaining to biodynamics, or the doctrine of vital forces or energy", + "A plant that grows in water; an aquatic plant", + "Producing blood; as, sanguigenous food", + "Moving", + "In a running or hasty manner; carelessly", + "Stated; prescribed; ritual", + "A chief chamberlain; -- an officer of the old German empire, whose office was similar to that of the great chamberlain in England", + "Pertaining to the family Fringillidæ; characteristic of finches; sparrowlike", + "One who eats horseflesh", + "A crossbowman", + "Creative; formative", + "1", + "Of or pertaining to siderography; executed by engraved plates of steel; as, siderographic art; siderographic impressions", + "A small European fish, similar to the cod, but of inferior quality", + "Indecisive", + "Ourselves", + "A cloth with a cotton wart, and a woof of very fine wool, or wool and silk", + "The act of fastending the gige or leather strap to the shield", + "The art of making measurements among the stars, or of determining their relative magnitudes", + "Of or pertaining to Benjamin Franklin", + "See the Note under Quit, a", + "1", + "Double-faced; deceitful", + "A genus of minute living Foraminifera having a globular shell", + "Of a pertaining to ancient Carthage, a city of northern Africa", + "1", + "A small moth (Gelechia cerealella) which is very destructive to wheat and other grain", + "One who seals; especially, an officer whose duty it is to seal writs or instruments, to stamp weights and measures, or the like", + "1", + "A European bream (Abramis vimba)", + "1", + "Leaves, collectively; foliage", + "1", + "1", + "Of or pertaining to uplands; dwelling on high lands", + "1", + "(a) An instrument for measuring the direct heating power of the sun's rays", + "An albuminous body formed in small quantity by the peptic digestion of proteids", + "1", + "1", + "Between the ribs; pertaining to, or produced by, the parts between the ribs; as, intercostal respiration, in which the chest is alternately enlarged and contracted by the intercostal muscles", + "Serving or tending to abbreviate; shortening; abridging", + "Reproof; censure; blame; disapproval", + "1", + "A rhetorician; a careful writer", + "To disburse anew; to give, or pay, back", + "Those Gastropoda that breathe by branchiæ, including the Prosobranchiata and Opisthobranchiata", + "Suspicious; captious; disposed to take umbrage", + "Breathing or exhaling incense", + "A suffix denoting the agent (originally a woman), especially a person who does something with skill or as an occupation; as in spinster (originally, a woman who spins), songster, baxter (= bakester), youngster", + "Fourfold; having four similar parts, or two pairs of similar parts", + "1", + "1", + "One who illustrates", + "To make local; to fix in, or assign to, a definite place", + "Resembling myrtle or myrtle berries; having the form of a myrtle leaf", + "To begin [Obs", + "Producing acidity; converting into an acid", + "Water impregnated with lime; esp", + "Capable of being welded", + "Wild; giddy; volatile; heedless", + "A mixture of beer, spirit, etc", + "Four times twenty; eighty", + "See Olfactory, a", + "Having more than one axis; developing in more than a single line or plain; -- opposed to Ant: monoaxial", + "The act of nullifying; a rendering void and of no effect, or of no legal effect", + "An eyeglass for one eye", + "In a friendly manner", + "Perchance; by chance", + "Gradually accelerating the movement", + "One who seeks or asks; a seeker; an applicant", + "Ligneous", + "An assault", + "The typical pentadactyloid limb of the higher vertebrates", + "A female janitor", + "The anatomy or dissection of fishes", + "1", + "(a) A North American bird of the genus Seiurus, belonging to the Warbler family, especially the common species (S", + "Lying or being on the further side of the river Po with reference to Rome, that is, on the north side; -- opposed to cispadane", + "The common tissue which unites the various zooids of a bryozoan", + "One who keeps treasures in a coffer", + "Hearty; sincere", + "Formed of, or having, two laminæ, or thin plates", + "Full of nooks, angles, or corners", + "Sheltered in a haven", + "Having the embryo or ovule oblique or transverse to the funiculus; amphitropous", + "One of the Poecilopoda", + "Of or pertaining to zoömorphism", + "Vital statistics", + "Same as Macrura, Macrural, etc", + "A base fellow; a rogue; a cheat", + "1", + "1", + "1", + "A prefix in many words of Latin origin", + "Like gloss; specious", + "Production of decorative designs by scratching them through a surface of layer plaster, glazing, etc", + "Given to talking inanely; loquacious; garrulous", + "Provisions; food; viands; especially, luxurious food; delicacies; dainties", + "Having no steed; without a horse", + "That which tightens; specifically (Mach", + "One who, or that which, makes perfect", + "In a balmy manner", + "1", + "Of or belonging to Mercury's caduceus, or wand", + "Present in all places at the same time; ubiquitous; as, the omnipresent Jehovah", + "To liberate from prison", + "A doit; a small coin", + "To play the pedant; to use pedantic expressions", + "Wherefore; because", + "To squint", + "Situated below the poles", + "An imaginary tube within a rotating fluid, formed by drawing the vortex lines through all points of a closed curve", + "Divination by means of small bones or dice", + "In a dissident manner", + "same as Roister, Roisterer", + "1", + "A woman who fabricates", + "Wattles, or hurdles, made with stakes interwoven with osiers, to cover lodgments", + "1", + "See Have", + "To shun", + "One who eats earth, as dirt, clay, chalk, etc", + "Incapable of being recalled or revoked; unchangeable; irreversible; unalterable; as, an irrevocable promise or decree; irrevocable fate", + "Serving to resist", + "A carnivorous quadruped (Proteles Lalandii), of South Africa, resembling the fox and hyena", + "The science of the relations between climate and periodic biological phenomena, as the migrations and breeding of birds, the flowering and fruiting of plants, etc", + "1", + "1", + "The quality of being worthy to be worshiped", + "1", + "Same as Bas-relief", + "To construct", + "Promoting the skinning over or healing of sores; as, an epulotic ointment", + "See Cithara", + "1", + "The action of a horse, when he throws himself on his haunches two or three times, bending himself, as it were, in very quick curvets", + "Innate; inborn; inbred; inherent; native; ingenerate", + "Intemperate", + "Of a bright red or purple color", + "1", + "Sale; opportunity to sell; market", + "1", + "Same as Vinnewed", + "Supporting; sustaining; as, a sustentacular tissue", + "Wrong arrangement", + "Running through the entire length", + "Bronchial", + "Uttering few words; brief in speech", + "1", + "A compound of the binary type, in which hydrogen is united with some other element", + "To write one's name at the foot or end of, as a letter or any legal instrument", + "Liable to depredation", + "1", + "A genus of fossil ganoid fishes found in the old red sandstone or Devonian formation", + "See Sheik", + "Full of faults or sins", + "One who spends money profusely or improvidently; a prodigal; one who lavishes or wastes his estate", + "Cast down; afflicted; low-spirited; sad; as, a dejected look or countenance", + "A kind of tree (Osmanthus Americanus), allied to the European olive", + "A union, association, or society; -- used in names of German organizations", + "p", + "Resembling, or becoming to, a shepherd; pastoral; rustic", + "To rejuvenate", + "To carry through; to do; perform; to manage; as, to transact commercial business; to transact business by an agent", + "See Exsolution", + "The back part of the neck; the scruff", + "Thunderous; sonorous", + "An instrument for measuring the volume or the tension of any vapor; specifically, an instrument of this sort used as an alcoholometer in testing spirituous liquors", + "1", + "1", + "An instrument invented by Professor Wheatstone, consisting of a reflecting knob at the end of a vibrating rod or thin plate, for making visible, in the motion of a point of light reflected from the knob, the paths or curves corresponding with the musical notes produced by the vibrations", + "1", + "Dislike; dissatisfaction; discontent", + "An insect having many feet, as a myriapod", + "A joint of the cirri of the Crinoidea; a joint or segment of an arthropod appendage", + "The land-locked variety of the common salmon", + "1", + "A clinic in which diseases of many sorts are treated; especially, an institution in which clinical instruction is given in all kinds of disease", + "The act of disavowing, disclaiming, or disowning; rejection and denial", + "One of the fleshy legs found on the abdominal segments of the larvæ of Lepidoptera, sawflies, and some other insects", + "Consisting of one color, or presenting rays of light of one color only", + "See Hæmacyanin", + "1", + "See Skulk, Skulker", + "An assistant or deputy hangman", + "Destitute of charms", + "1", + "The corpus striatum", + "A small South American rodent (Octodon Cumingii), of the family Octodontidæ", + "Having the nature of a problem; not shown in fact; questionable; uncertain; unsettled; doubtful", + "One who studies, or is versed in, the nature and habits of humming birds, or the Trochilidæ", + "A kind of persimmon tree (Diospyros discolor) from the Philippine Islands, now introduced into the East and West Indies", + "An order of mandibulate insects including grasshoppers, locusts, cockroaches, etc", + "The entire clothing of a bird", + "1", + "1", + "The state of being insatiate", + "A gable", + "1", + "A division of Reptilia formerly established to include the Lacertilia, Crocodilia, Dinosauria, and other groups", + "Designating, or pertaining to, the process of telephotography", + "1", + "See Panslavic", + "A dried astringent fruit much resembling a prune", + "One who, or that which, haunts", + "Same as Theave", + "Operation", + "1", + "Inauspicious", + "Resembling a poltroon; cowardly", + "A silly clown", + "To lop; to snathe", + "That branch of physiology which treats of electric phenomena produced through physiological agencies", + "In manner to balk or frustrate", + "Wanting in courage; depressed by fear; easily discouraged or frightened; cowardly; timorous; dejected", + "(a) (Telegraphy) A species of switch for changing the current from one circuit to another, or for shortening a circuit", + "1", + "1", + "Espial", + "Of or pertaining to iatromathematicians or their doctrine", + "A prefix, from the Latin re and ad combined, coming to us through the French and Italian", + "1", + "A subdivision of Carnivora having plantigrade feet", + "A backward stroke", + "To range or place in a line; to bring into line; to align", + "an obs", + "1", + "The imaginary land or abode of fairies", + "Immutable", + "Of, pertaining to, or caused by, metastasis; as, a metastatic abscess; the metastatic processes of growth", + "The quality of being desultory or without order or method; unconnectedness", + "Quality of being fissile", + "See Grit, n", + "The stem of an aftershaft or hypoptilum", + "Confusedly; in a bustle", + "A name originally given (from its red acid) to the metal vanadium", + "A support for the back, attached to the seat of a carriage", + "Hard; indurated; sclerotic", + "The keeper of an eathing house or a restaurant", + "A thermometer filled with water instead of mercury, for ascertaining the precise temperature at which water attains its maximum density", + "1", + "1", + "False accusation of crime or offense, or a malicious and false representation of the words or actions of another, with a view to injure his good name", + "1", + "See Crowberry", + "A noun that has four cases only", + "Of or pertaining to a vestibule; like a vestibule", + "Having the shape of a sausage", + "One who, or that which, spools", + "1", + "A fop; a beau; a swell", + "A gatherer of nuts", + "A defect or malformation; esp", + "Pertaining to a rostellum", + "Full of nits", + "1", + "The state of being amazed, or confounded with fear, surprise, or wonder", + "1", + "The work belonging to housekeeping; especially, kitchen work, sweeping, scrubbing, bed making, and the like", + "A kind of castanet used by the Corybantes", + "Having no pastor", + "Marked with spots; as, a spotted garment or character", + "Outlawry", + "The seed of a Brazilian lauraceous tree (Nectandra Puchury) of a taste and smell between those of nutmeg and of sassafras, -- sometimes used medicinally", + "Amount or extent of deficiency, as determined by some requirement or standard; as, a shortage in money accounts", + "Lest that", + "The state of being uncivilized; want of civilization; barbarism", + "A flask in which gunpowder is carried, having a charging tube at the end", + "A carnivore (Viverricula Mallaccensis) allied to the civet but smaller, native of China and the East Indies", + "Having a swaying, rolling, or back-and-forth movement; used for rocking", + "Generally or popularly admitted or received", + "1", + "Same as Nemathelminthes", + "To exist within; to dwell within", + "Having the two main flexor tendons of the toes blended together", + "A woman who torments", + "Struck with wonder, admiration, or surprise", + "Public-spirited", + "Neat; feat", + "A small tufted monkey", + "One whose occupation is to manufacture utensils, ornaments, etc", + "The nostrils or nasal openings, -- the anterior nares being the external or proper nostrils, and the posterior nares, the openings of the nasal cavities into the mouth or pharynx", + "Situated or performed beneath the hyoid bone; as, subhyoidean laryngotomy", + "A title of courtesy prefixed to the name of a man or youth", + "To coin anew or again", + "To expose to loss or injury; to risk; to jeopard", + "In a glistering manner", + "1", + "The quality or state of being vivacious", + "Pedagogue", + "See under Lily", + "To warn beforehand; to give previous warning, admonition, information, or notice to; to caution in advance", + "The middle of the week", + "A sight covering; a scarf", + "Tubercled; tubercular", + "The quality or state of being liquescent", + "Strife; dispute; abusive or upbraiding talk, as in fliting; wrangling", + "A black substance formed by combustion, or disengaged from fuel in the process of combustion, which rises in fine particles, and adheres to the sides of the chimney or pipe conveying the smoke; strictly, the fine powder, consisting chiefly of carbon, which colors smoke, and which is the result of imperfect combustion", + "A summary", + "The quality or state of being rational; agreement with reason; possession of reason; due exercise of reason; reasonableness", + "1", + "A courier who conveys messages to another courier; a military courier sent from one part of an army to another", + "To lead astray as if blind; to persuade to something evil by deceptive arts or flattery; to entice; to insnare; to seduce; to wheedle", + "In an intent manner; as, the eyes intently fixed", + "1", + "1", + "1", + "Pertaining to Aphrodite or Venus", + "Sly; crafty; cunning; artful", + "Inclined to tolerate; favoring toleration; forbearing; ingulgent", + "That science, or class of sciences, which treats of the exact relations existing between quantities or magnitudes, and of the methods by which, in accordance with these relations, quantities sought are deducible from other quantities known or supposed; the science of spatial and quantitative relations", + "The platform about the head of the mainmast in square-rigged vessels", + "In an eager manner", + "1", + "A small sail sometimes set under a studding sail or under a driver boom, and reaching nearly to the water", + "To inclose completely, as in a membrane", + "In a premeditated manner", + "See Ache", + "A bench", + "Free from schism", + "Knowledge", + "The anterior region or head of insects and other arthropods", + "1", + "See Antihypochondriac", + "One versed or engaged in xylotomy", + "1", + "A print made by metallography", + "A slight contest; a skirmish", + "1", + "1", + "Pertaining to, or furnishing, a diagnosis; indicating the nature of a disease", + "See Mate, the leaf of the Brazilian holly", + "A light sword used for thrusting only; especially, the sword worn by civilians of rank in the eighteenth century", + "A bucket for removing mud from a bored hole; a sand pump", + "See Intercolumniation", + "Having long legs", + "1", + "1", + "Half oval", + "Cylindrical and slightly tapering; columnar, as some stems of plants", + "1", + "An aniline dye obtained as an amorphous substance having a green bronze surface color, which dissolves to a shade of red; also, the color; -- so called from Magenta, in Italy, in allusion to the battle fought there about the time the dye was discovered", + "The secretion of fetid sweat", + "Capable of being detected or found out; as, parties not detectable", + "The act or habit of quizzing", + "To beat with a stick; to thrash; to cudgel", + "1", + "To line with Babbitt metal", + "1", + "A large hand in writing; -- so called because it was the practice to write the text of a book in a large hand and the notes in a smaller hand", + "One who furnishes outfits for a voyage, a journey, or a business", + "The quality or state of being profound; depth of place, knowledge, feeling, etc", + "One who makes mischief; one who excites or instigates quarrels or enmity", + "Water; -- a word much used in pharmacy and the old chemistry, in various signification, determined by the word or words annexed", + "One who makes an appointment, or tryst; one who meets with another", + "The eyebrow, or the region of the eyebrows", + "Having three angles; triangular", + "To deliberate", + "Recrementitious", + "The act of blowing; a roaring wind; a blast", + "One more than nine; twice five", + "A spear armed with three or more prongs, for striking fish", + "The cormorant", + "1", + "The toy called cup and ball", + "One who hypnotizes", + "Having warm blood; -- applied especially to those animals, as birds and mammals, which have warm blood, or, more properly, the power of maintaining a nearly uniform temperature whatever the temperature of the surrounding air", + "Filled with white flakes; mothery; -- said vinegar when containing mother", + "To deprive of knighthood", + "1", + "To decorate with fringe or embroidery", + "Goodness; grace; goodliness", + "Poison spittle; poison ejected from the mouth", + "1", + "A species of sand grouse (Syrrghaptes Pallasii) found in Asia and rarely in southern Europe", + "1", + "1", + "1", + "1", + "The European yellow-hammer", + "1", + "Of or pelating to eurite", + "Of or pertaining to paleography", + "A part of the sacerdotal habit among Jews, being a covering for the back and breast, held together on the shoulders by two clasps or brooches of onyx stones set in gold, and fastened by a girdle of the same stuff as the ephod", + "To make a judicial decision; to decide; to determine", + "A young strumpet", + "1", + "The quality or state of being revealable; revealableness", + "An adherent crust; an incrustation", + "The act of ruining, or the state of being ruined", + "1", + "Acquainted", + "The practice of illustrating a particular book by engravings collected from other books", + "Scrupulous to excess", + "Want of discovery", + "The doctrine that matter possesses a species of life and sensation, or that matter and life are inseparable", + "1", + "One of the solid parts of a battlemented parapet; a battlement", + "Of or pertaining to the yolk of eggs; as, the vitelline membrane, a smooth, transparent membrane surrounding the vitellus", + "Having sides inclining inwards, as a ship; -- opposed to wall- sided", + "Pertaining to, derived from, or containing iron", + "1", + "1", + "1", + "1", + "Comprised in, or like, a point; exact", + "To send hastily", + "One who, or that which, weeds, or frees from anything noxious", + "The bright reflection of the moon's light on an expanse of water", + "Renewed enjoiment", + "The houseleek", + "One who grasps or seizes; one who catches or holds", + "State of being actually present", + "Valetudinarian", + "A binnacle", + "Same as Anbury", + "See PyÆmia", + "One who conceals", + "First formed or generated; original; primigenial", + "Coarse plain India muslins", + "The strong ligament of the back of the neck in quadrupeds", + "1", + "A division of mammals including the apes and monkeys", + "Lit", + "1", + "See Mawmetry", + "An affection of one or both eyes, in which the optic axes can not be directed to the same object, -- a defect due either to undue contraction or to undue relaxation of one or more of the muscles which move the eyeball; squinting; cross-eye", + "One of tree men united in public office or authority", + "To earn", + "Act of leaning upon something; incumbency", + "1", + "A wrong step; an error of conduct", + "Situated immediately above; as, superjacent rocks", + "Not possessing a mantle; -- said of certain gastropods", + "Serving or tending to relieve", + "Destructive of bacteria", + "The condition or quality of being immanent; inherence; an indwelling", + "A division of Hymenoptera comprising the sawflies", + "An alkaloid obtained as a yellow amorphous substance by the decomposition of veratrine", + "The connecting crook of a harrow", + "To recant or recall, as what has been said; to refract; to take back again; to make as if not said", + "The principles or measures of abolitionists", + "1", + "Inward; internal; intimate", + "The state or quality of being invisible; also, that which is invisible", + "Lying under or beneath; hence, fundamental; as, the underlying strata of a locality; underlying principles", + "1", + "The quality of being miscreant; adherence to a false religion; false faith", + "Oblique lateral deformity of the skull", + "One who boasts of his skill in medicines and salves, or of the efficacy of his prescriptions; a charlatan; a quack; a mountebank", + "See Pomage", + "Without columns or pilasters", + "A white amorphous substance, regarded as a polymeric modification of isocyanic acid", + "A title of respect given to gentlemen in Germany, equivalent to the English Mister", + "A piece of lively dance music, in two strains which are repeated; also, the dance", + "1", + "A situation or position beneath", + "Of or pertaining to Parma in Italy", + "1", + "Resembling the spleen; spleenlike", + "Same as Hæmatachometry", + "A short sleep taken about the middle of the day, or after dinner; a midday nap", + "The business of a mercer", + "Final; conclusive; ending", + "Serious injunction; solemn demand or entreaty", + "1", + "Arched; concave", + "1", + "A half brigade", + "A genus of trees, some species of which produce edible fruit; the mulberry", + "A releasing from thralldom or slavery; disenthrallment", + "1", + "An attempt to influence a court, jury, etc", + "Protuberant", + "To rave in violent, high-sounding, or extravagant language, without dignity of thought; to be noisy, boisterous, and bombastic in talk or declamation; as, a ranting preacher", + "The temperature at which dew begins to form", + "Situated under, or on the ventral side of, the body of the sphenoid bone", + "A grotesque misuse of a word; a word so used", + "Having the arris defined by a line beyond which the rock is cut away, so as to give nearly true edges; -- said of squared stones that are otherwise quarry-faced", + "A house in which distillation is carried on; a distillery", + "A fold or wrinkle", + "Mangy; scabby; hence, mean; paltry; troublesome", + "1", + "In France, an official government publication bound in yellow covers", + "To practice theosophy", + "Any plant of the composite genus Zinnia, Mexican herbs with opposite leaves and large gay-colored blossoms", + "One of the two ecclesiastics allowed to attend a cardinal in the conclave", + "1", + "1", + "An instrument for measuring the height of water in a river; a river gauge", + "The office or rank of an examiner", + "Any one of several species of cuckoos of the genus Eudynamys, found in India, the East Indies, and Australia", + "To munch", + "Made of cast iron", + "One who cries out or gives an alarm; specifically, a balker; a conder", + "The act of depriving of investiture", + "A polishing material made of potter's clay that has failed in baking", + "Any one of numerous species of small, fresh-water, chætopod annelids of the tribe Naidina", + "1", + "The people who lived in the Middle Ages", + "To write epistles", + "1", + "To deprive of a privilege or privileges", + "Of or pertaining to the enteron, or alimentary canal; intestinal", + "1", + "Of or pertaining to Satan; having the qualities of Satan; resembling Satan; extremely malicious or wicked; devilish; infernal", + "The person to whom goods are committed in trust, and who has a temporary possession and a qualified property in them, for the purposes of the trust", + "Not fertile; infertile; barren", + "The dauw", + "A storm, strong wind, or gale, coming from the northeast", + "Populace", + "1", + "A short poetical composition proper to be set to music or sung; a lyric poem; esp", + "Consisting of swamp; like a swamp; low, wet, and spongy; as, swampy land", + "Singing birds; a group of the Passeres, having numerous syringeal muscles, conferring musical ability", + "In a rational manner", + "The quality or state of being senior", + "The European crested titmouse", + "An instrument for signaling by reflecting the rays of the sun in different directions", + "Same as Hypoxanthin", + "One who, or that which, tarries", + "One who greets or salutes another", + "A fellow rival; a competitor; a rival; also, a companion", + "1", + "1", + "The act of invigorating, or the state of being invigorated", + "Denoting usual or customary action", + "1", + "1", + "The place or places adjoining or near; neighborhood; vicinity; as, a jury must be of the vicinage", + "The inspissated juice of ripe fruit, obtained by evaporation of the juice over a fire till it acquires the consistence of a sirup", + "Having many sides, as a solid body", + "A diagram or picture which represents objects in such a way as to give the impression of relief or solidity; also, a stereograph", + "The opening in the furnaces through which fuel is introduced", + "1", + "(a) A trivalent hydrocarbon radical, CH3", + "The state of being a lion", + "1", + "1", + "The wood of the shittah tree", + "Having phyllodia; relating to phyllodia", + "The doctrine of the Sabians; the Sabian religion; that species of idolatry which consists in worshiping the sun, moon, and stars; heliolatry", + "One belonging to the same clan with another", + "Mentioned or recited before", + "Same as Anthozoa", + "Heretical", + "1", + "A dweller in a woodland", + "The hippopotamus", + "Producing discordant sounds", + "To cause to become mechanical", + "The Muse who presided over the choral song and the dance, especially the latter", + "1", + "See Veda", + "Of or pertaining to the machinery of a poem; acting or used as a machine", + "1", + "To bend the knee, as in worship", + "pl", + "The yak", + "Consistent; agreeable; suitable; accordant to; harmonious; concurrent", + "One who holds to inspiration", + "of Leap", + "Quick of perception; alert; sharp", + "1", + "The state of being imperfect", + "Any one of numerous species of small white polished marine shells of the genus Olivella", + "Quite mad; -- raving crazy", + "To make proportional in its parts; to reduce to symmetry", + "A genus of evergreen trees, thickly branched, remarkable for the distichous arrangement of their branches, and having scalelike, closely imbricated, or compressed leaves", + "The quality or state of being safe; freedom from hazard, danger, harm, or loss; safety; security; as the safeness of an experiment, of a journey, or of a possession", + "A tube fixed below or near the water line through which a torpedo is fired, usually by a small charge of gunpowder", + "A man who has lost his wife by death, and has not married again", + "To deprive of the tongue", + "The act, practice, or art of catching turtles", + "1", + "A simple sugar; any of a number of sugars (including the trioses, tetroses, pentoses, hexoses, etc", + "1", + "A double fluoride of silicon and some other (usually basic) element or radical, regarded as a salt of fluosilicic acid; -- called also silicofluoride", + "A college servant; -- so called in Cambridge, England; at Oxford called a scout", + "Defending by words or arguments; said or written in defense, or by way of apology; regretfully excusing; as, an apologetic essay", + "Nourishing", + "Hexagonally", + "Of or pertaining to Beloochistan, or to its inhabitants", + "1", + "Operating jointly to the same end", + "Of or pertaining to theriac; medicinal", + "A mill", + "Covered or set with spherules; having one or more rows of spherules, or minute tubercles", + "A cornemuse", + "A bearing containing friction rollers", + "Profitably; with advantage", + "Pert", + "The fore part of a ship", + "One who has shaken off restraint; a prodigal", + "1", + "To acetify", + "1", + "Of, pertaining to, or denoting, those rays of light which produce chemical effects; actinic", + "1", + "See St", + "Pertaining to antiquity", + "To furnish (a vessel) with too long or too heavy a mast or masts", + "The state or quality of being miserable", + "Curved in two directions, like the letter S, or the Greek s", + "Pertaining to tidal movements dependent on the moon", + "To filter or sift in", + "See Mendinant", + "1", + "A leaf or division of the calyx", + "A fish", + "The science or art of signs", + "The state or quality of being renitent; resistance; reluctance", + "Same as Bikh", + "1", + "Supplying help; auxiliary; corroborative; explanatory; as, adminicular evidence", + "Between lammellæ or laminæ; as, interlamellar spaces", + "The quality or state of being inhuman; cruelty; barbarity", + "A small or low mountain", + "1", + "Pain; especially, pain of travail; throe", + "1", + "1", + "One who deals in wonders, or believes in them; a wonder worker", + "Formed of, or having, two laminæ, or thin plates", + "Tonic spasm; -- applied generically to denote any disease characterized by tonic spasms, as tetanus, trismus, etc", + "Having lantern jaws or long, thin jaws; as, a lantern-jawed person", + "A house where a stage regularly stops for passengers or a relay of horses", + "An order of extinct mesozoic reptiles, mostly of large size (whence the name)", + "1", + "The whole collection; the entire quantity or number; -- usually in the phrase the whole caboodle", + "Boiled Indian meal; hasty pudding; mush", + "The quality of being contradictory; opposition; inconsistency", + "Arranged in a raceme, or in racemes", + "1", + "The office or jurisdiction of a matriarch; a matriarchal form of government", + "See Lanthanum", + "One of a court of about one hundred judges chosen to try civil suits", + "Stretched beyond ordinary limits", + "Cleansing; purging", + "Wavy; waving [Obs", + "Having the inferior rays of the pectoral fins partially or entirely free, as in the gurnards", + "The quality or state of being potent; physical or moral power; inherent strength; energy; ability to effect a purpose; capability; efficacy; influence", + "1", + "one who contradicts", + "The quality of being arbitrary; despoticalness; tyranny", + "To form an image or likeness of", + "A genus of liliaceous plants, of which the crown-imperial (Fritillaria imperialis) is one species, and the Guinea-hen flower (F", + "To run or strike against each other; to encounter; to clash; to jostle", + "A man at draughts; a piece used in playing games at tables", + "A genus of herbaceous composite plants, having the achenes two- horned and remotely resembling some insect; tickseed", + "Demagogism", + "See Bargeboard", + "Of or pert", + "Capable of being relaxed", + "Resembling a serpent; having the shape or qualities of a serpent; subtle; winding or turning one way and the other, like a moving serpent; anfractuous; meandering; sinuous; zigzag; as, serpentine braid", + "Same as Substruction", + "A nephoscope registering by photography, commonly consisting of a pair of cameras used simultaneously", + "A kind or favorable reception or salutation", + "See Mongoose", + "1", + "A kind of thick, bibulous, unsized paper, used to absorb superfluous ink from freshly written manuscript, and thus prevent blots", + "Of or pertaining to tides; caused by tides; having tides; periodically rising and falling, or following and ebbing; as, tidal waters", + "Native silver chloride, a mineral of a white to pale yellow or gray color, darkening on exposure to the light", + "A presbytery; also, presbytership", + "Synthesis of organic compounds by energy derived from chemical changes or reactions", + "To take off a cloak from; to uncloak", + "Having five valves, as a pericarp", + "One of the writers of the Masora", + "Serious", + "1", + "A suffix composed of -able and the adverbial suffix -ly; as, favorably", + "See Crimson", + "A leopard; a panther", + "In a reverential manner", + "To make a, booby of one); to stupefy", + "A pantograph", + "Relating to pardon; having or exercising the right to pardon; willing to pardon; merciful; as, the pardoning power; a pardoning God", + "A small vessel of iron, copper, or other metal, with a handle, used for culinary purpose, as for stewing meat", + "A female disciple", + "Under the influence of Mars; courageous; bold", + "1", + "One living in the back or outlying districts of a community", + "A loft or garret", + "In a tidy manner", + "1", + "1", + "One whose manners or ideas are fantastic", + "One who believes that Christ was a mere man", + "1", + "removal of things from one place to another; substitution of one thing for another", + "Flying with sails; passing under full sail", + "A piece of a fallen wall; a ruin", + "One who, or that which, molds or forms into shape; specifically (Founding), one skilled in the art of making molds for castings", + "In a prone manner or position", + "A great talker", + "An Antinomian", + "An acid elevator, as a tube through which acid is forced to some height in a sulphuric acid manufactory", + "Quick; swift (to burn)", + "A genus of cycadaceous plants, having the appearance of low palms, but with exogenous wood", + "Want of equity; injustice; wrong", + "Dementia; loss of mental powers", + "1", + "A viverrine animal of Madagascar (Cryptoprocta ferox)", + "That transports; fig", + "See Hende", + "An animal, particularly a log, having an uncut tail", + "1", + "To blame; to impute guilt to; to accuse; to involve or implicate in guilt", + "1", + "Belonging to, or consisting of, allegory; of the nature of an allegory; describing by resemblances; figurative", + "Causing distress; painful; unpleasant", + "See Oast", + "One who deciphers", + "1", + "A rectangular rent made in cloth; -- called also winkle-hole", + "A kind of furnace used in refining, to separate the metal from cinders and other foreign matter", + "imp", + "Of or pertaining to medicaments or healing applications; having the qualities of medicaments", + "1", + "One who forges, makes, of forms; a fabricator; a falsifier", + "A support for the spear when couched for the attack", + "1", + "Bitterness", + "imp", + "1", + "One who makes, or holds to, progress; a progressionist", + "To intimate or signify beforehand; to presage", + "Same as Hæma-", + "Warm-blooded; homoiothermal", + "1", + "1", + "In a variable manner", + "To bend to excess", + "To bend; to cause to become curved; to make crooked; to deflect", + "Of or pertaining to the state of a widow; widowed", + "A This sweet intercourse Of looks and smiles", + "Inlaid work; work inlaid with pieces of wood, shells, ivory, and the like, of several colors", + "A long gown or surcoat (cut off in front), worn in the Middle Ages", + "1", + "1", + "1", + "The name of a group of minerals, usually of a green color and micaceous to granular in structure", + "Having a hundred leaves", + "See Warye", + "the nineteenth letter of the English alphabet, is a consonanat, and is often called a sibilant, in allusion to its hissing sound", + "Free from rust", + "A substance characterizing wood cells and differing from cellulose in its conduct with certain chemical reagents", + "False accusation of a crime or offense, maliciously made or reported, to the injury of another; malicious misrepresentation; slander; detraction", + "In or of the country", + "Relating to a climacteric; critical", + "imp", + "The principles or philosophy of the Nominalists", + "League; confederacy; esp", + "Arable; tillable", + "Shading, like a bower; full of bowers", + "A kind of full sleeveless cape, fitting closely about the neck", + "A flying out or up", + "Any gull living on the seacoast", + "In the classification of Cohn, one of the four tribes of Bacteria", + "A bat", + "One who suspects", + "See At one", + "Of or pertaining to an ambassador", + "1", + "Having three horns", + "Wrathfulness", + "See Larvalla", + "1", + "Supplemental; not inherent or original; adscititious; additional; assumed", + "Of or pertaining to a lover or to love making; amatory; as, amatorial verses", + "To sustain", + "One who makes, or deals in, hardware", + "1", + "One who putties; a glazier", + "A form of government in which the supreme power is vested in two persons", + "One who hinders progress; one who obstructs business, as in a legislative body", + "The fabled universal solvent of the alchemists; a menstruum capable of dissolving all bodies", + "An iron for smoothing clothes; a flatiron", + "1", + "The quality or state of being prosaic; a prosaic manner or style", + "A name given to a numerous family of brass wind instruments with valves, invented by Antoine Joseph Sax (known as Adolphe Sax), of Belgium and Paris, and much used in military bands and in orchestras", + "The state of being a low-churchman", + "Destitute of leaves, as the broom rape, certain euphorbiaceous plants, etc", + "The process of bringing, or of coming, to maturity; hence, specifically, the process of suppurating perfectly; the formation of pus or matter", + "Tightly; nimbly", + "Farthest toward the south; southernmost", + "1", + "1", + "An order of Crustacea including the barnacles", + "1", + "1", + "1", + "A revolving disk on which figures drawn in different relative attitudes are seen successively, so as to produce the appearance of an object in actual motion, as an animal leaping, etc", + "Capable of being opined or thought", + "To cast reproaches and sneering expressions; to rail; to utter taunting, sarcastic words; to flout; to fleer; to scoff", + "A species of ichneumon (Herpestes griseus), native of India", + "Having the power of giving life or spirit", + "Cap or bonnet strings made long to tie under the chin", + "Embroidered or decorated with gold", + "1", + "A shoemaker; a cobbler", + "Of or pertaining to photolithography; produced by photolithography", + "An extensive division of ruminants, including the antelopes, deer, and cattle", + "1", + "One who leads by the hand; a manuductor", + "(a) A witness", + "1", + "In a monstrous manner; unnaturally; extraordinarily; as, monstrously wicked", + "The operation of sewing up a laceration of the neck of the uterus", + "1", + "A name given by Prof", + "Same as Aby", + "1", + "1", + "A riding, or the act of riding, on horseback; horsemanship", + "Quality of being analogical", + "The broad-billed singing birds, such as the swallows, and their allies", + "A direct descending blow with the edge of a sword", + "One who excommunicates", + "1", + "A concretion, or calculus, formed in the gall bladder or biliary passages", + "Of or pertaining to Algiers or Algeria", + "Designating, or applied to the Era of man; as, the psychozoic era", + "The state of growing old; decay by time", + "A pillow", + "Without a rudder", + "Pertaining to the development of an embryo", + "1", + "A compound of the resinous materials, pigments, etc", + "1", + "1", + "A vocabulary, or book containing an alphabetical arrangement of the words in a language or of a considerable number of them, with the definition of each; a dictionary; especially, a dictionary of the Greek, Hebrew, or Latin language", + "Tumult; disturbance; disorder", + "(a) A game similar to whist, and the predecessor of it", + "Medicine taken by licking with the tongue", + "Ratifying; confirming by sealing", + "Designating, or pertaining to, an acid isomeric with cyanuric acid, and called also fulminuric acid", + "Composed of clumps; massive; shapeless", + "Destiny; fate", + "A suspicion; a suggestion; hence, a very small portion; a taste; as, coffee with a soupçon of brandy; a soupçon of coquetry", + "An apparatus for examining the interior of the mouth", + "See Acton", + "1", + "1", + "The pewee, or pewit", + "Of or pertaining to the Ptenoglossa", + "Of or pertaining to Mecca, in Arabia", + "The great extensor muscle of the knee, divided above into four parts which unite in a single tendon at the knee", + "To consider, represent, or embody (something unreal) as fact; to materialize", + "A Latin prefix meaning out, out of, from; also, without", + "Stuck", + "Inorganic", + "A proof for final revision", + "A lotion of linseed oil and lime water, used as an application to burns and scalds; -- first used at the Carron iron works in Scotland", + "1", + "An abbreviation of Ipecacuanha, and in more frequent use", + "See Releasee", + "A rending or tearing in pieces; dilaceration", + "In an ethereal manner", + "Of or pertaining to the gadflies", + "A feminine deserter", + "What is peculiarly one's own; peculiar qualification", + "One who disobliges", + "The quality or state of being oblate", + "Starting asunder; bursting and opening with an elastic force; dehiscing explosively; as, a dissilient pericarp", + "Pertaining to, containing, or making, anagram", + "A genus of crustaceans, containing the crawfish of fresh-water lobster of Europe, and allied species of western North America", + "1", + "To rate or chide vehemently; to scold", + "A kind of boat used in Canton", + "Good against gout", + "1", + "The act, or occupation, of one who launders; washing and ironing", + "Any sea snake of the genus Hydrophys and allied genera", + "The state or quality of being irreligious; ungodliness", + "(a) A sign of the zodiac which the sun enters about the 21st of August, marked thus [ (b) A constellation of the zodiac, now occupying chiefly the sign Libra, and containing the bright star Spica", + "Relating to gamogenesis", + "My darling; -- an Irish term of endearment for a girl or woman", + "1", + "To convert or reduce into a condition like that of the earth; to make earthy", + "In a facing manner or position", + "1", + "To free from enchantment; to deliver from the power of charms or spells; to free from fascination or delusion", + "A hydrocarbon radical, C6H4", + "Mineral t", + "Whisperingly", + "Too great haste", + "Of or pertaining to the Antinomians; opposed to the doctrine that the moral law is obligatory", + "1", + "A suffix indicating that the substance, in the name of which it appears, is a ketone; as, acetone", + "One of a series of anhydrides resembling the lactams, but of an imido type; as, isatine is a lactim", + "Resembling a fox in his characteristic qualities; cunning; artful; foxy", + "See Forlie", + "1", + "Connection; tie", + "Of or pertaining to landed property", + "Young; youthful", + "Breathing or exhaling incense", + "Said", + "To deprive of calcareous matter; thus, to decalcify bones is to remove the stony part, and leave only the gelatin", + "1", + "Not commiscible; not mixable", + "The removal of calcareous matter", + "A hairdresser", + "Holiness; devoutness; scrupulous austerity; sanctity; especially, outward or artificial saintliness; assumed or pretended holiness; hypocritical devoutness", + "In a destructive manner", + "Waving or wavy; -- applied to ordinaries, or division lines", + "A believer in the theory of biogenesis", + "A colorless liquid hydrocarbon, C7H14, of the ethylene series; also, any one of its isomers", + "Want of harmony", + "Disguised by dress so as to be ridiculous; travestied; -- applied to a book or shorter composition", + "1", + "To dislike", + "Of or pertaining to a particular place, or to a definite region or portion of space; restricted to one place or region; as, a local custom", + "The merganser", + "A sort of bread, made of unbolted rye, which forms the chief food of the Westphalian peasants", + "The quality or state of being negligent; lack of due diligence or care; omission of duty; habitual neglect; heedlessness", + "1", + "To become squeamish; to feel nausea; to turn away with disgust", + "In an imperious manner", + "(a) The golden oriole", + "1", + "A plantation of pine trees; esp", + "An implement for braying and spreading ink in hand printing", + "Relating to a crust", + "A gatepost or doorpost", + "A rootlike filament or hair growing from the stems of mosses or on lichens; a rhizoid", + "The dried tubers of various species of Orchis, and Eulophia", + "To link together; to unite in a series or chain, as things depending on one another", + "One who banishes", + "1", + "Greatness", + "An impure yellow sulphate of iron; yellow copperas or copiapite", + "One who describes animals, their forms and habits", + "1", + "Bearing or producing fruit", + "One skilled in ornithology; a student of ornithology; one who describes birds", + "Noisy; clamorous", + "To embrace", + "Some as Bas-relief", + "Reproduction by spontaneous fission", + "Capable of being diverted", + "The track of man or beast as followed by the scent", + "The hare kangaroo", + "To produce counter irritation in; to treat with one morbid process for the purpose of curing another", + "1", + "A hit or thrust", + "1", + "A hall for public meetings; a hall of judgment", + "See Aret", + "Designating, or pert", + "See Edentate, a", + "A female huckster", + "Palsy", + "That part of the alimentary canal between the pharynx and the stomach; the gullet", + "1", + "Relating to a type or types; belonging to types; serving as a type; typical", + "Discomfort", + "The monitor", + "Combustibility", + "Neglect or refusal to obey; violation of a command or prohibition", + "A sharp instrument used for opening veins, lancing gums, etc", + "Stocks or shares of the granger railroads", + "A humble inn or house of rest for travelers, where coffee is sold", + "The quality of being amorous; lovingness", + "1", + "One of a body of native Algerian tirailleurs in the French army, dressed as a Turk", + "See Persulphocyanogen", + "1", + "A saw (as a tenon saw) whose blade is stiffened by an added metallic back", + "A combining form denoting divination; as, aleuromancy, chiromancy, necromancy, etc", + "To strew or scatter over; to besprinkle", + "Having a surface dressed by cutting with a hammer the head of which consists of broad thin chisels clamped together", + "An East Indian falcon", + "See Packfong", + "A short, squat woman", + "Useful in healing wounds; adapted to the cure of external injuries; as, vulnerary plants or potions", + "The state of being scrimp", + "A yellowish crystalline substance, C6H5", + "The way in which a leaf is sometimes folded in the bud", + "Professing ignorance; involving no dogmatic; pertaining to or involving agnosticism", + "The science which treats of the structure and diseases of women", + "Sugar confectionery; a sugarplum; hence, any dainty", + "One of several species of sea birds of the genera Synthliboramphus and Brachyramphus, inhabiting the North Pacific", + "Short and ready; fleet; as, a tride pace; -- a term used by sportsmen", + "Of or pertaining to panspermy; as, the panspermic hypothesis", + "Compensation for a loss or injury; recompense; reparation", + "Day", + "To have the effect of a Gorgon upon; to turn into stone; to petrify", + "1", + "One who, or that which, demolishes; as, a demolisher of towns", + "The garfish or sea needle", + "In a lucid manner", + "Righteously", + "See 1st and 2d Teen", + "The play in whist where partners trump each a different suit, and lead to each other for that purpose; -- called also seesaw", + "1", + "Disorder", + "Same as Chlorpicrin", + "1", + "Any one of numerous species of long, slender Alcyonaria belonging to Virgularia and allied genera of the family Virgularidæ", + "Of or pertaining to the lungs and the stomach", + "1", + "Capable of being levigated", + "In a penetrating manner", + "A barbarous sport, of great antiquity, in which men torment, and fight with, a bull or bulls in an arena, for public amusement, -- still popular in Spain", + "One who snarls; a surly, growling animal; a grumbling, quarrelsome fellow", + "Native bismuth sulphide; -- sometimes called bismuthite", + "Of or pertaining to the pipras, or the family Pipridæ", + "Want of esteem; disrespect", + "A yellow crystalline substance allied to pyrrol, obtained by the distillation of gelatin", + "A system of control in which a separate manipulation, as of a rudder, may be effected by either of two movements, in different directions, of a single lever, etc", + "Frightened into madness; raving", + "A heroine", + "Foolish talk; silly discource; babbling", + "The practices of a boroughmonger", + "An earthen vessel wider at the top than at the bottom, -- used for holding milk and for various other purposes", + "Indeliberate", + "Having the shape of an urn; as, the urn-shaped capsules of some mosses", + "A bad state; as, the intemperament of an ulcerated part", + "1", + "1", + "To gaze upward", + "See Somersault, Somerset", + "Glum; sullen; sulky", + "Togated", + "A small coin and weight; 1-20th of a shekel", + "Going away; departing; of or pertaining to one who goes away", + "That allures; attracting; charming; tempting", + "A hollow smoothing iron containing a heater within", + "1", + "Situated in front of the sphenoid bone; of or pertaining to the anterior part of the sphenoid bone (i", + "1", + "Loathsome", + "Bent backward or outward", + "Having the nerves or veins arranged in a radiating manner; -- said of certain leaves, and of the winfs of some insects", + "An alligator", + "1", + "Same as Cacodylic acid", + "A collective name for the Indians of several tribes formerly living along the Klamath river, in California and Oregon, but now restricted to a reservation at Klamath Lake; -- called also Clamets and Hamati", + "Serving or tending to redeem; redeeming; as, the redemptive work of Christ", + "A coheir", + "(a) The coloring matter of Chinese yellow pods, the fruit of Gardenia grandiflora", + "A breviary", + "The European widgeon", + "A low perennial plant (Frankenia lævis) resembling heath, growing along the seashore in Europe", + "Quality or state of being volatile; disposition to evaporate; changeableness; fickleness", + "The act of putting to sleep, or the state of being put to sleep; sleep", + "Meat", + "One who abnegates, denies, or rejects anything", + "A small instrument with four strings, played with a bow; a fiddle", + "To mark with striaæ", + "See Gauntree", + "The act of stripping, as trees, of leaves or branches; a kind of pruning", + "The terminal lamina, or thin ventral part, of the anterior wall of the third ventricle of the brain", + "The state of a communty which permits promiseuous sexual intercourse among its members, as in certain societies practicing communism", + "A mineral, consisting of the sulphates of soda and lime", + "A bird one year old, or that has once molted", + "A kind of French hackney coach", + "The lesser third", + "A white crystalline nitrogenous substance, found in extract of meat, and related to xanthin", + "Pertaining to, or in the style of, Demosthenes, the Grecian orator", + "1", + "1", + "A person who holds the bonds of a public or private corporation for the payment of money at a certain time", + "A state of being bent or curved; incurvation; a bending inwards", + "Having a taill; having a termination like a tail", + "A prejectile used in the Whitworth gun", + "The science of representing spoken sounds by letters", + "See Sweet gum", + "A curve made use of in the quadrature of other curves; as the quadratrix, of Dinostratus, or of Tschirnhausen", + "Strategy", + "In a soulless manner", + "Having labiate flowers, as the snapdragon", + "Producing pearls", + "Knapweed", + "See Blowze", + "Situated under a serous membrane", + "Same as Preteritness", + "A sharper; a rogue", + "1", + "1", + "The power possessed by a substance to refract a ray; as, different substances have different refringencies", + "from Suffocate, v", + "A tale of sorrow, disappointment, or complaint; a doleful story; a dolorous tirade; -- generally used satirically", + "1", + "Wildness; savageness; fierceness", + "To sew up; to inclose by a seam; hence, to include; to contain", + "To take; to receive", + "In Europe, particularly in Belgium and Holland, and outdoor festival and fair; in the United States, generally an indoor entertainment and fair combined", + "See Misspell, Misspend, etc", + "A shaft that oscillates on its journals, instead of revolving, -- usually carrying levers by means of which it receives and communicates reciprocating motion, as in the valve gear of some steam engines; -- called also rocker, rocking shaft, and way shaft", + "A schemer", + "1", + "1", + "The quality or state of being like summer", + "Of or pertaining to Syria; Syriac", + "To goad, drive, hunt, throw, or pitch", + "(a) A neurosis caused by exposure to heat", + "A species of shark (Lamna cornubica), about eight feet long, having a pointed nose and a crescent-shaped tail; -- called also mackerel shark", + "1", + "A water fowl; the didapper", + "One who belongs to the ultramontane party in the Latin Church", + "(a) The space between two dentils", + "1", + "A rare element of the nitrogen-phosphorus group, found combined, in vanadates, in certain minerals, and reduced as an infusible, grayish-white metallic powder", + "1", + "Resembling the smell or taste of roast meat, or of corrupt animal matter", + "See Syenite", + "See Lanier", + "One who impounds", + "The science which treats of testaceans, or shellfish; the description of shellfish", + "Concerned in the development and formation of blood vessels and blood corpuscles; as, the vasoformative cells", + "Eager for novelties; desirous of changing", + "Same as Knapweed", + "1", + "Abounding in frogs", + "A highly volatile mixture of fluid hydrocarbons, obtained from petroleum, as also by the distillation of bituminous coal", + "Having three leaves or leaflets, as clover", + "A creel or osier basket", + "External; public; suitable to be imparted to the public; hence, capable of being readily or fully comprehended; -- opposed to esoteric, or secret", + "A keeper or a frequenter of a brothel", + "Previously arranged; agreed upon beforehand", + "Same as Holostomatous", + "To shelter; to cover", + "Same as Homoplast", + "Slackening; -- a direction to perform a passage with a gradual decrease in time and force; ritardando", + "A salt formed by the union of benzoic acid with any salifiable base", + "Wonderful", + "The fishhawk", + "The supposed origination of living organisms from lifeless matter; such genesis as does not involve the action of living parents; spontaneous generation; -- called also abiogeny, and opposed to biogenesis", + "To render turbid; to darken; to confuse", + "Of or pertaining to culture", + "An extinct genus of huge vertebrates, probably dinosaurs, known only from four-toed tracks in Triassic sandstones", + "Anything spilt, or freely poured out; slop; effusion", + "1", + "One who, or that which, disquiets, or makes uneasy; a disturber", + "The phallic symbol under which Siva is principally worshiped in his character of the creative and reproductive power", + "One who cheats at a horse race; one who bets, without a chance of being able to pay; one who receives money to back certain horses and absconds with it", + "1", + "A tube or duct for conducting heat; a caliduct", + "An order of small apterous insects having an elongated body, with three pairs of thoracic and about nine pairs of abdominal legs", + "A system by which the track is divided into short sections, as of three or four miles, and trains are so run by the guidance of electric, or combined electric and pneumatic, signals that no train enters a section or block until the preceding train has left it, as in absolute blocking, or that a train may be allowed to follow another into a block as long as it proceeds with excessive caution, as in permissive blocking", + "1", + "Situated upon, attached to, or growing out of, some part; -- said especially of the parts of the flower; as, the calyx, corolla, and stamens of many flowers are inserted upon the receptacle", + "An adjective, or attribute", + "To pick out", + "1", + "To hearken", + "Universal", + "Madeira mahogany; the coarse, dark-colored wood of the Persea Indica", + "Not current or free to circulate; not in use", + "1", + "Tending to disquiet", + "imp", + "The chief admiral of the Turkish fleet", + "Same as Ossicle", + "See Catcall", + "The common guillemot", + "The science of the distribution and management of land", + "Same as Centaur", + "A hydrocarbon of the paraffin series, a white waxy substance, C19H40; -- so called from the number of carbon atoms in the molecule", + "Of or pertaining to metallurgy", + "1", + "1", + "Of or pertaining to a parallax", + "1", + "Adorned with cowslips", + "Non-germinal", + "Having, or leading, two ways", + "Making a stroke without recoil; deadbeat", + "The prosencephalon", + "Heavy with sleep", + "Act of thinning a wood to let in light", + "To cover with some protecting substance, as with lute, a crust, coating, or plates", + "To concert or arrange beforehand; to settle by previous agreement", + "Almost quinquefid; nearly quinquefid", + "An order of marine mammals, including the whales", + "A chandelier arranged to burn gas", + "A kind of knitting in which a number of threads are interchained each with one or more contiguous threads on either side", + "Being or happening after the flood in Noah's days", + "1", + "The doctrine or mode of reasoning practiced by a sophist; hence, any fallacy designed to deceive", + "p", + "The chemical basis of sponge tissue, a nitrogenous, hornlike substance which on decomposition with sulphuric acid yields leucin and glycocoll", + ",n", + "An American fresh-water fish (Ictiobus, or Carpiodes, cyprinus); -- called also carp sucker, sailfish, spearfish, and skimback", + "The American black-throated bunting (Spiza Americana)", + "The act, practice, or gains of a freebooter; freebooting", + "The art or process of producing photolithographs", + "Of or pertaining to a tentacle or tentacles", + "Shaped like a plipper, as one petal of the lady's-slipper; calceolate", + "The body, or axis, of a vertebra", + "Circular; illogical", + "A conspiracy of distillers and government officials during the administration of President Grant to defraud the government of the excise taxes", + "To convert into, or cause to resemble, glass or a glassy substance, by heat and fusion", + "The country of one's ancestors; -- same as fatherland", + "A narrow piece of timber which holds together large pieces; a slat; as, the sloats of a cart", + "1", + "Quarrelsome", + "Pertaining to, or having the characteristics of, negroes, or of the Negritos, Papuans, and the Melanesian races; negritic", + "Good friend; dear friend", + "A zoölogist", + "A salt of suberic acid", + "1", + "Having a radiated form, like a sea anemone", + "Relating to Draco, the Athenian lawgiver; or to the constellation Draco; or to dragon's blood", + "The act of erasing; a rubbing out; obliteration", + "To bear down; to depress", + "1", + "In a contending manner", + "A kind of dried sausage", + "To fasten by a hatch; to latch, as a door", + "Removing; departing", + "1", + "To surname", + "1", + "The turtledove", + "1", + "A rough, hairy, perennial plant of several species, of the genus Symphytum", + "Internuncio", + "Having the longer axis vertical; -- said of erect stems", + "To howl", + "A coronet", + "Turning away from the sun; -- said of leaves, etc", + "A large American serpent, so called from the sound it makes", + "To cause to be like the Mexicans, or their country, esp", + "The quality or state of being sedulous; diligent and assiduous application; constant attention; unremitting industry; sedulousness", + "Intentionally", + "A collection of particles or bodies into one mass; a heap; an aggregation", + "State of being external; exteriority; (Metaph", + "Divination by the movements of mice", + "1", + "Formed or consisting of straw", + "See Saint Ignatius's bean, under Saint", + "Half ovate", + "Shadowy; vague", + "Of or pertaining to texture", + "1", + "Certain deities originally worshiped with mystical rites by the Pelasgians in Lemnos and Samothrace and afterwards throughout Greece; -- also called sons of Hephæstus (or Vulcan), as being masters of the art of working metals", + "1", + "See Supawn", + "A glass of fishes having a suckerlike mouth, without jaws, as the lamprey; the Marsipobranchii", + "To give additional security to or for", + "A large Australian bird, of two species (Dromaius Novæ- Hollandiæ and D", + "Covered with small spines", + "The principles of the Whigs", + "1", + "1", + "See Lute, a cement", + "1", + "Want of devotion; impiety; irreligion", + "1", + "A leguminous climbing plant of the genus Mucuna, having crooked pods covered with sharp hairs, which stick to the fingers, causing intolerable itching", + "1", + "A saddle for women, in which the rider sits with both feet on one side of the animal mounted", + "Containing or yielding bone", + "Soaking", + "1", + "Carried to the utmost extent or degree; of the highest quality; complete; perfect", + "Of or pertaining to an axiom; having the nature of an axiom; self-evident; characterized by axioms", + "A heavy conducting wire on which the trolley car runs and from which it receives the current", + "A genus of American perrenial herbs growing in bogs; the American pitcher plant", + "That may be revised", + "1", + "Not of; nor of", + "The distance measured toward the east between two meridians drawn through the extremities of a course; distance of departure eastward made by a vessel", + "Gross; lubberly", + "To turn into a proverb; to speak in proverbs", + "A larder", + "Exchange", + "Divination by means of laughter", + "The resolution or favorable termination of a disease, coming on gradually and not marked by abrupt change", + "1", + "Incapable of being sounded", + "Vastness; immensity", + "The sixth month of the Jewish year, by the sacred reckoning, or the twelfth, by the civil reckoning, corresponding nearly to the month of September", + "Twice pinnate", + "Full of truth; veracious; reliable", + "To make lethargic", + "The branch of science which treats of the formation of the earth", + "Belonging, or pertaining, to Megara, a city of ancient Greece", + "In a peccant manner", + "A Hindoo of the second, or royal and military, caste; a Kshatriya; especially, an inhabitant of the country of Rajpootana, in northern central India", + "That oscillates; vibrating; swinging", + "Foxlike", + "The quality or state of being temptable; lability to temptation", + "Peevishness; ill temper; anger", + "The act of imparting, or that which is imparted, communicated, or disclosed", + "1", + "Same as 1st Timber", + "In a trusty manner", + "To deprive of the claim of a pauper to public support; to deprive of the privilege of suing in forma pauperis", + "The state of being itchy", + "Formed in parquetry; inlaid with wood in small and differently colored figures", + "(a) Bending or curving gradually back from the perpendicular", + "1", + "See Defense", + "imp", + "One who snivels, esp", + "(a) One of the various general forms of argument employed in probable as distinguished from demonstrative reasoning, -- denominated by Aristotle to`poi (literally, places), as being the places or sources from which arguments may be derived, or to which they may be referred; also, a prepared form of argument, applicable to a great variety of cases, with a supply of which the ancient rhetoricians and orators provided themselves; a commonplace of argument or oratory", + "To read publicly, as a lecture or discourse", + "One who argues; a reasoner; a disputant", + "At discretion; according to one's discretion or judgment", + "The manager of a barge", + "To retire again to a couch; to lie down again", + "1", + "With confidence", + "A switching engine the running gear and driving gear of which are on a bogie, or truck", + "1", + "1", + "See Lepidosiren", + "To make melodious; to form into, or set to, melody", + "Squinting", + "1", + "1", + "Room or space at sea for a vessel to maneuver, drive, or scud, without peril of running ashore or aground", + "One of many textile fabrics having a pile like that of velvet", + "Three, at cards, dice, or dominoes; a card, die, or domino of three spots or pips", + "An instrument to measure the degree of sensation, by determining at how short a distance two impressions upon the skin can be distinguished, and thus to determine whether the condition of tactile sensibility is normal or altered", + "A system of toponyms; the use of toponyms", + "1", + "Of a red color with a slight mixture of gray", + "To undermine", + "1", + "That which is scoured off; hence, refuse; rejected matter; that which is vile or despised", + "Not perplexed; having a mind free from care", + "1", + "To oppose", + "Emitting no odor; wthout smell; scentless; odorless", + "of Nim", + "A shovel-like utensil for conveying away dust brushed from the floor", + "1", + "A projecting piece of timber or iron near the bow of vessel, to which the anchor is hoisted and secured", + "Having the properties of a parallelogram", + "Speaking with plain, unreserved sincerity; also, spoken sincerely; as, plain-spoken words", + "Any money, bullion, or the like, found in the earth, or otherwise hidden, the owner of which is not known", + "The state of being dusky", + "Design; contrivance; projection", + "A determining; as, in oyer and terminer", + "1", + "1", + "A flat or somewhat hollowed stone upon which grain or other food is ground, by means of a smaller stone or pestle", + "Resembling in form or structure a foraminiferous shell of the genus Nodosaria", + "An osier bed", + "Of or pertaining to the Zygobranchia", + "The quality or state of being irrelative; want of connection or relation", + "Unnatural; contrary to nature", + "One who uses his tongue; a talker; a story-teller; a gossip", + "1", + "See Hinderest", + "Caustic", + "The want of likelihood; improbability", + "of Mistake", + "1", + "Of or pertaining to Canada", + "To hike one's self; specif", + "A female mulatto", + "See Sleightful", + "One of several small, swift, elegantly formed species of antelope, of the genus Gazella, esp", + "Bearing catkins", + "Of or pertaining to the central nervous system consisting of the brain and spinal cord", + "The quality or state of being involuntary; unwillingness; automatism", + "A person who acquires", + "Having the side planks (af a boat) so arranged that the lower edge of each overlaps the upper edge of the plank next below it like clapboards on a house", + "1", + "Turned round like a crook, or bent to and fro", + "A salt of an octoic acid; a caprylate", + "1", + "A turn", + "The condition or quality of being muggy", + "One of a school of Lutheran divines which held that the body of Christ is present everywhere, and especially in the eucharist, in virtue of his omnipresence", + "An insane or greatly exaggerated dread of poisons", + "Rendered electro-polar by induction, or brought into the opposite electrical state by the influence of inductive bodies", + "A kind of cup or drinking vessel having a foot or standard, but without a handle", + "Unharmed", + "A female ancestor", + "One who prepares a play for production", + "Lying outside the visible spectrum at its violet end; -- said of rays more refrangible than the extreme violet rays of the spectrum", + "A small mammal (Hyrax Capensis), found in South Africa", + "Of or pertaining to Great Britain; British; as, her Britannic Majesty", + "A combining form or prefix signifying false, counterfeit, pretended, spurious; as, pseudo-apostle, a false apostle; pseudo- clergy, false or spurious clergy; pseudo-episcopacy, pseudo-form, pseudo-martyr, pseudo-philosopher", + "The act of conveying over", + "See Scum", + "Same as Cespitious", + "In an admirable manner", + "Shaped like a small fungus", + "Washington; -- a nickname alluding to the abundance of evergreen trees", + "1", + "A little ulcer", + "In the phrase on one's hunkers, in a squatting or crouching position", + "Disordered in the brain", + "See Melluc", + "The act or the process of electrolyzing", + "1", + "(a) A flying fish of California (Exocoetus Californicus): -- called also volator", + "Making an organic or organized structure; producing an organism; acting through, or resulting from, organs", + "One who, or that which, perturbs, or cause perturbation", + "Resembling granite in granular appearance; as, granitoid gneiss; a granitoid pavement", + "A division of serpents which have some of the posterior maxillary teeth grooved for fangs", + "See Matte", + "To cover with a bower; to shelter with trees", + "One whose possession of an estate is broken off, or discontinued; one whose estate is subject to discontinuance", + "The science or theory of church building and decoration", + "Mentioned or named before; aforesaid", + "Conquering; subduing", + "The quality or state of being viscid; also, that which is viscid; glutinous concretion; stickiness", + "1", + "To snatch up; transport; -- chiefly used in the p", + "A size of paper", + "The operation performed with an écraseur", + "See Nucleus, 3 (a)", + "Of or pertaining to dysentery; having dysentery; as, a dysenteric patient", + "To run about; to frisk; to whisk", + "1", + "One of the small hooklike processes on the barbules of feathers", + "The state of being a partisan, or adherent to a party; feelings or conduct appropriate to a partisan", + "The act of abalienating; alienation; estrangement", + "A kind of Persian wine; -- so called from the place whence it is brought", + "See Pickeerer", + "The quality or state of being timid; timorousness; timidness", + "Of or pertaining to the acromion", + "A person whose occupation is to construct ships and other vessels; a naval architect; a shipwright", + "United; joined; betrothed", + "The text of a book", + "1", + "An instrument of the saxhorn family, used exclusively in military music, often replacing the French horn", + "For a moment", + "Any inflammatory affection of the throat or faces, as the quinsy, malignant sore throat, croup, etc", + "See Leg, 7", + "Mutual dealings; intercourse", + "The quality or state of being orient or bright; splendor", + "Like the dartos; dartoic; as, dartoid tissue", + "One who defiles; one who corrupts or violates; that which pollutes", + "Fully rigged, as a vessel; with all sails set; set on end or set right", + "A hospital", + "A dram of spirits", + "A figure by which permission is either seriously or ironically granted to some one, to do what he proposes to do; e", + "A machine of great antiquity, used in Bengal for raising water to irrigate land", + "Club-shaped; having the form of a club; growing gradually thicker toward the top", + "See Buttonwood", + "A mystical word used as a charm and engraved on gems among the ancients; also, a gem stone thus engraved", + "(a) A small genus of tropical cucurbitaceous plants having white flowers, the staminate borne in racemes, and large fruits with a dry fibrous pericarp", + "Implying actual presence; present, immediate", + "1", + "A combination of auric acid with a base; as, aurate or potassium", + "1", + "A genus of marine fishes, including the wrasses of Europe", + "1", + "The first or anterior segment of the thorax in insects", + "A flowing off on all sides; fluidity", + "Incapable of being tamed; wild; untamed; untamable", + "One who beats with a cudgel", + "To hypothecate again", + "The time at or near All Saints, or November 1st", + "1", + "One of twe or more occupying the same room or rooms; one who shares the occupancy of a room or rooms; a chum", + "A large boom or spar, which projects over the stem of a ship or other vessel, to carry sail forward", + "Capable of being recognized", + "Any instrument by which electricity can be measured in coulombs", + "Without chyle", + "A turn of the cable about the end of the windlass, without the bits", + "1", + "Multiplied by millions; innumerable", + "A number of things tied or knit together; a bundle; a fagot", + "(a) Having a surbase, or molding above the base", + "A curve from which another curve, called the involute or evolvent, is described by the end of a thread gradually wound upon the former, or unwound from it", + "A keen, reproachful expression; a satirical remark uttered with some degree of scorn or contempt; a taunt; a gibe; a cutting jest", + "A fleecy cloud formation consisting of large whitish or grayish globular cloudlets with shaded portions, often grouped in flocks or rows", + "The art of printing from the surface of type, plates, or engravings in relief, by means of a press; the work so done", + "A slow unwieldy trading vessel", + "Peace; -- a word used in composition, especially in proper names; as, Alfred; Frederic", + "Having much beef; of the nature of beef; resembling beef; fleshy", + "One skilled in some trade or manual occupation; an artificer; a mechanic", + "The quality or state of being apocryphal; doubtfulness of credit or genuineness", + "Black as jet; deep black", + "A pyrotechnist", + "1", + "To show or exhibit beforehand; to give foreknowledge of; to prognosticate; to foretell", + "A guard or small body of troops at a distance from the main body of an army, to watch for the approach of an enemy; hence, anything for defense placed at a distance from the thing to be defended", + "Perfectly", + "Having no veins; as, a veinless leaf", + "Reach of the ear; distance at which words may be heard", + "Two", + "Belonging to the order Tetradynamia; having six stamens, four of which are uniformly longer than the others", + "Debauchedness", + "Of or pertaining to René Antoine Ferchault de Réaumur; conformed to the scale adopted by Réaumur in graduating the thermometer he invented", + "A salt of naphthalic acid; a phthalate", + "To make mammonish", + "The European smooth blenny (Blennius pholis)", + "Of or pertaining to the generation of electricity by means of solid bodies alone; as, a stereoelectric current is one obtained by means of solids, without any liquid", + "The curlew", + "A whoremonger", + "1", + "The state of being cloudy", + "To buy and sell at fairs or markets", + "Joyful; showy", + "In an irreversible manner", + "In a crisp manner", + "Money paid at fairs for leave to break ground for booths", + "Of, or pertaining to, or producing, resorcin; as, resorcylic acid", + "Alack the day; alas; -- an expression of sorrow, regret, dissatisfaction, or surprise", + "Capable of being obtained", + "One of the articular processes of a vertebra, of which there are usually four, two anterior and two posterior", + "A native or inhabitant of Ethiopia; also, in a general sense, a negro or black man", + "Capable of being borne or endured; tolerable", + "Applied to a line which is the sum of two lines commensurable only in power (as the side and diagonal of a square)", + "Rejuvenescence", + "Having the form of tussocks; full of, or covered with, tussocks, or tufts", + "The giving of evidence on the part of a plaintiff to destroy the effect of evidence introduced by the defendant in the same suit", + "See Climacteric, n", + "A white arc or circle in the sky attending frosty weather and formed by reflection of sunlight from ice crystals floating in the air; the parhelic circle whose center is at the zenith", + "1", + "One who is destitute of feeling", + "See Ouch", + "(a) Any ordinary market fish, exclusive of flounders, sole, halibut, and other flatfishes", + "A rare metallic element, of a silver white color, and low specific gravity (2", + "Any one of the spaces in the Milky Way which are very black, owing to the nearly complete absence of stars; esp", + "Failure to alienate; also, the state of not being alienated", + "A flood of water; an inundation", + "Noisy; obstreperous", + "Foreign; belonging to, or coming from, abroad", + "On my life; dearly", + "To elevate to the stars, or to the region of the stars; to etherealize", + "Laid a side; cast-off", + "Difficult; hard to manage; stubborn", + "Somewhat clever", + "Ambulatory; fitted for walking", + "Not impeachable; not to be called in question; exempt from liability to accusation; free from stain, guilt, or fault; irreproachable; blameless; as, an unimpeachable reputation; unimpeachable testimony", + "Fit to be mentioned", + "The quality or state of being fell or cruel; fierce barbarity", + "1", + "Chronic", + "To cover or coat with palladium", + "1", + "Situated over or above a trochlea or trochlear surface; -- applied esp", + "To trust or intrust", + "The mensuration of plane surfaces; -- distinguished from stereometry, or the mensuration of volumes", + "See Shearn", + "In a smoky manner", + "Any member like a step, as the raised back of an altar or the like; a set raised over another", + "An inflammatory affection of the fingers", + "Having, or characterized by, reliance; confident; trusting", + "Ocherous", + "A small assemblage of houses in the country, less than a town or city", + "A small silver coin of three times the value of a penny", + "A female improvvisatore", + "A freed convict", + "Consisting of, or resembling, fat or oil; oily; unctuous; oleaginous", + "Mendacious boasting; falcefood; humbug", + "Quality of being stringy", + "(a) The third rail used in the third-rail system", + "One sent in advance; an avant-courier; a precursor", + "The quality of being clusy", + "1", + "Unknowing; also, unknown; unmeaning", + "Same as Conferee", + "In a loyal manner; faithfully", + "Radicated", + "Repeatedly", + "An upstart", + "To scratch", + "A compound of mercaptan formed by replacing its sulphur hydrogen by a metal; as, potassium mercaptide, C2H5SK", + "The plant costmary, which was formerly much used for flavoring ale", + "Even; not odd; -- said of elementary substances and of radicals the valence of which is divisible by two without a remainder", + "Sharing; participating; having a share of part", + "To stimulate with, or subject to, faradic, or inducted, electric currents", + "; sing", + "Sparing; parsimonious", + "Any one of a series of complex basic sulphur compounds analogous to the sulphines", + "Incorrect", + "A female beholder or looker-on", + "In a punctual manner; promptly; exactly", + "The part of a candle wick charred by the flame, whether burning or not", + "The doctrines or tenets of the Semi-Pelagians", + "A hydrosulphide", + "Applied to the ovaries of insects when they secrete vitelligenous cells, as well as ova", + "Having many columns; -- said of a building, especially of an interior part or court; as, a polystyle hall", + "The science or description of mountains", + "Costly", + "One of the Dinosauria", + "1", + "A hydroid coral of the genus Millepora, especially M", + "Purchased; not obtained or produced at home", + "A herald", + "Of or pertaining to hearing; auditory", + "3d pers", + "Washed", + "1", + "The quality or state of being sober", + "A diminutive scale or bractlet, such as those found on the receptacle in many composite plants; a palea", + "Made fit or suitable; adapted; ready; as, prepared food; prepared questions", + "Volcanism", + "Of no legal or binding force or validity; of no efficacy; invalid; void; nugatory; useless", + "1", + "Electric by virtue of its own peculiar properties; capable of becoming electrified by friction; -- opposed to anelectric", + "A glucoside obtained from the Æsculus hippocastanum, or horse- chestnut, and characterized by its fine blue fluorescent solutions", + "To cut with reeding or fluting on the edge of, as coins, the heads of screws, etc", + "A degenerated or poisoned condition of the blood", + "1", + "Inflammation of a capsule, as that of the crystalline lens", + "The laws of organic formation", + "The science of spectrum analysis in any or all of its relations and applications", + "Same as Anthokyan", + "To flash as lightning", + "Profound debility of children due to lack of food and to unhygienic surroundings", + "A kind of antidote for poisons; a counter poison formerly in vogue", + "A dog with large jowls, as the beagle", + "A noxious or corroding care; solicitude; worry", + "In a regressive manner", + "A pointed implement used to make holes in the ground in which no set out plants or to plant seeds", + "To diversify aggain what is already diversified", + "An engagement between ships at sea; a naval battle", + "An authentic minute of an official act, or statement of facts", + "1", + "1", + "(a) The rope rigged below a yard, upon which men stand when reefing or furling; -- formerly called a horse", + "A flow or running from the ear, esp", + "To pull by the ears; to drag about", + "Pertaining to, or producing, science", + "1", + "Love; the god of love; -- by earlier writers represented as one of the first and creative gods, by later writers as the son of Aphrodite, equivalent to the Latin god Cupid", + "A division of sponges including those which have independent siliceous spicules", + "The keeper of a jail or prison", + "Any small moth of the genus Psyche and allied genera (family Psychidæ)", + "To make search after; to investigate or examine; to ensearch", + "1", + "Same as Hamele", + "Freed from impurities or alloy; purifed; polished; cultured; delicate; as; refined gold; refined language; refined sentiments", + "Having a crisped appearance; irregularly curled or twisted", + "A white, amorphous, deliquescent powder, (CO", + "By reduction; by consequence", + "See Holy Grail, under Grail", + "Formed unnaturally or illegitimately; deformed", + "A green micaceous mineral occurring in minute scales", + "1", + "1", + "1", + "A native or inhabitant of Jutland in Denmark", + "1", + "A Spartan institution which prohibited strangers from residing in Sparta without permission, its object probably being to preserve the national simplicity of manners", + "1", + "1", + "1", + "state or quality of being contrary; opposition; inconsistency; contrariety; perverseness; obstinancy", + "To flow or stream up", + "In an imperative manner", + "See Tarn", + "A five-pointed star, resembling five alphas joined at their bases; -- used as a symbol", + "One ho introduces new word Fitzed Hall", + "The bottom of the sea, esp", + "Same as Cross-spale", + "(a) Bearing a tendril or tendrils; as, a cirrose leaf", + "A genus of cucurbitaceous plants consisting of the single species Ecballium agreste (or Elaterium), the squirting cucumber", + "That which is written with one's own hand; an original manuscript; a person's own signature or handwriting", + "That which is washed off", + "Down; fur", + "The young of the sea trout", + "Material for strouds; a kind of coarse cloth used in trade with the North American Indians", + "A disk which surrounds the mouth and bears the tentacles of the Bryozoa", + "A spire; also, the tower and spire taken together; the whole of a structure if the roof is of spire form", + "Dress", + "See Digester", + "A source, spring, or fountain", + "Having a common beginning", + "1", + "Unreal; illusory", + "Of or pertaining to a chain of islands between Alaska and Kamtchatka; also, designating these islands", + "A kind of mineral coal, or brown lignite, burning with a weak flame, and generally a disagreeable odor; -- found at Bovey Tracey, Devonshire, England", + "In a prelatical manner; with reference to prelates", + "1", + "Tenebrific", + "A company of troops under one vexillum", + "1", + "Giving assent; of the nature of assent; complying", + "The art or process of producing or gauging a plane surface", + "An order of Nemertina, including the large leechlike worms (Malacobdella) often parasitic in clams", + "Curling or tending to curl; having curls; full of ripples; crinkled", + "A white, crystalline substance, having a bitter taste and a neutral reaction, and forming one of the essential ingredients of lactucarium", + "Shaped like the Greek letter lambda (as, the lambdoid suture between the occipital and parietal bones of the skull", + "Am assembly or session of the Welsh bards; an annual congress of bards, minstrels and literati of Wales, -- being a patriotic revival of the old custom", + "To form into pustules, or blisters", + "The act of falling, or coming short; as: (a) The failure of a crop, or the like", + "1", + "An orthoceras; also, any fossil shell allied to Orthoceras", + "1", + "Having the form of a ganglion", + "A method of teaching reading in which words are first taken as single ideograms and later analyzed into their phonetic and alphabetic elements; -- contrasted with the alphabet and sentence methods", + "A member or inhabitant of a colony", + "A term applied to certain nerve centers which govern or restrain subsidiary centers, from which motor impressions issue", + "Same as 3d Hesperian", + "One of the chief administrative divisions or provinces of the Ottoman Empire; -- formerly called eyalet", + "A female servant whose business is the care of the dairy", + "The green papery fronds of several seaweeds of the genus Ulva, sometimes used as food", + "One who, or that which, scratches; specifically (Zoöl", + "Applicable; also, compliant", + "1", + "1", + "The act of subrogating", + "Perishable goods", + "A cloth colored green by dye obtained from the woad-waxen, formerly used by Flemish weavers at Kendal, in Westmoreland, England", + "Words imitative of the notes of the owl", + "1", + "Suited to the object, occasion, purpose, or character; suitable; fit; becoming; comely; decorous", + "To make thick or thicker; to thicken; especially, in pharmacy, to thicken (a liquid) by the mixture of another substance, or by evaporating the thinner parts", + "A range of columns with their entablature, etc", + "1", + "Anything having three valves, especially a shell", + "Skilled in all kinds of work", + "To drink spirituous or strong liquors habitually; to indulge in the frequent and improper used of spirituous liquors; especially, to drink frequently in small quantities, but without absolute drunkeness", + "Inclined to much writing; -- correlative to talkative", + "A plowland; as much land as one team can plow in a year and a day; -- by some said to be about 100 acres", + "Having the property of fluorescence", + "That which shines", + "1", + "A genus of liguliflorous composite plants, including the fall dandelion (L", + "An auscultatory process, which consists in noting the tone of the observer's own voice, while he speaks, holding his head close to the patient's chest", + "A solid mass of cellular tissue, consisting of one or more layers, usually in the form of a flat stratum or expansion, but sometimes erect or pendulous, and elongated and branching, and forming the substance of the thallogens", + "The science of figures having equal perimeters or boundaries", + "An instrument for determining the amount of butter fat contained in a given sample of milk", + "1", + "Between the pubic bones or cartilages; as, the interpubic disk", + "1", + "Turn, that is, turn over the leaf", + "Of or pertaining to chemical action of light, or produced by it; as, the photochemical changes of the visual purple of the retina", + "The crime of destroying one's offspring, either in the womb or after birth", + "A place in which a collection of rare trees and shrubs is cultivated for scientific or educational purposes", + "The act of evincing or proving, or the state of being evinced", + "1", + "State or condition of being blind, literally or figuratively", + "A native or inhabitant of Poland; a Pole", + "A branch of a river that reënters, or anastomoses with, the main stream; also, less properly, a branch which loses itself in sandy soil", + "1", + "Devoid of ambition", + "Without moisture", + "Making a clang, or a ringing metallic sound", + "One who, or that which, heartens, animates, or stirs up", + "That which garnishes; ornamental appendage; embellishment; furniture; dress", + "Something offensive to the eye or sight; a blemish", + "Cabbage cut fine and allowed to ferment in a brine made of its own juice with salt, -- a German dish", + "In a safe manner; danger, injury, loss, or evil consequences", + "The emerald", + "State or quality of being conical", + "Of or pertaining to space", + "1", + "A species of civet (Viverra fossa) resembling the genet", + "Not closing or shutting", + "The brain and spinal cord; the cerebro-spinal axis; myelencephalon", + "To thwack", + "Trouble; anxiety; worry", + "An affection characterized by pain in or about a joint, not dependent upon structural disease", + "A, as a prefix to English words, is derived from various sources", + "Yoke-footed; having the toes disposed in pairs; -- applied to birds which have two toes before and two behind, as the parrot, cuckoo, woodpecker, etc", + "Frequency", + "A genus of herbs and shrubs (Aristolochia), reputed to have medicinal properties", + "Infralapsarianism", + "1", + "One of a warlike nomadic people of Northern Asia who, in the 5th century, under Atilla, invaded and conquered a great part of Europe", + "See Zenick", + "To release from restraint or bondage; to set at liberty; to free; to manumit; to disengage; as, to liberate a slave or prisoner; to liberate the mind from prejudice; to liberate gases", + "1", + "A plant, Globularia Alypum, a violent purgative, found in Africa", + "Feeding on milk", + "One who takes exceptions or makes objections", + "See Perpender", + "Same as Purpleheart", + "1", + "A kind of small black perch", + "Gradually; gingerly", + "Affected with frenzy; frantic; maddened", + "Forced out at the surface; as, extrusive rocks; -- contrasted with intrusive", + "1", + "On the Austrian side of the river Leitha; Austrian", + "Any abnormal condition of the refracting powers of the eye", + "A defiling; pollution; stain", + ", adv", + "One who tunes; especially, one whose occupation is to tune musical instruments", + "Having seen much; hence, accomplished; experienced", + "Having the form of tea", + "Producing twins", + "Spontaneous; voluntary", + "1", + "Work done as a task; also, work done by the job; piecework", + "Sweet; pleasant; delightful; gracious or agreeable in manner; bland", + "Bygone", + "1", + "The state of being ghastly; a deathlike look", + "1", + "A soldier belonging to the irregular troops of the Turkish army", + "A reasoning which is false in point of form, that is, which is contrary to logical rules or formulæ; a formal fallacy, or pseudo- syllogism, in which the conclusion does not follow from the premises", + "A woman", + "Relating to cannibalism or anthropophagy", + "Related to Euclid, or to the geometry of Euclid", + "A process, analogous to photolithography, for reproducing photographed impressions transferred to zinc plate", + "A cactaceous shrub (Cereus Pitajaya) of tropical America, which yields a delicious fruit", + "An ornamental evergreen shrub (Rhamnus alaternus) belonging to the buckthorns", + "Lovely", + "The Australian white-quilled honey eater (Entomyza albipennis)", + "See Cowpox", + "1", + "1", + "With coincidence", + "Tending to distribute or be distributed; that distributes; distributive", + "Relating to the endoblast; as, the endoblastic layer", + "Relying on experiment or experience", + "Beastliness", + "An aspect of the planets when distant from each other half of the quintile, or thirty-six degrees", + "1", + "1", + "See Gypsy", + "1", + "To invest or adorn with a robe; to attire", + "To fallow or till in winter", + "The act of interfusing, or the state of being interfused", + "A trental", + "A word employed in the phrase, To ride Skimmington; that is to ride on a horse with a woman, but behind her, facing backward, carrying a distaff, and accompanied by a procession of jeering neighbors making mock music; a cavalcade in ridicule of a henpecked man", + "1", + "A little sac; esp", + "The common crocodile (Crocodilus palustris) of India, the East Indies, etc", + "See Pythagorean, a", + "Having the shape of a gourd seed; -- said of certain small worms", + "The public lectures or published writings of Aristotle", + "1", + "A kind of blowgun for discharging arrows, -- used by the savages of Borneo and adjacent islands", + "Of or pertaining to a revelation, or, specifically, to the Revelation of St", + "One who interviews; especially, one who obtains an interview with another for the purpose of eliciting his opinions or obtaining information for publication", + "A small foxlike mammal (Cynalopex corsac), found in Central Asia", + "1", + "(a) The blueback salmon of the North Pacific; -- called also nerka", + "The saturation of defecated beet juice with carbonic acid gas", + "A lamellibranch which has three muscular scars on each valve", + "Applied to a line or verse in which each successive word has one more syllable than the preceding", + "A white, crystalline, poisonous substance, regarded as a glucoside, extracted from the lily of the valley (Convallaria Majalis)", + "A dazzling luster or brilliancy", + "The state or quality of being lengthy; prolixity", + "1", + "Bending", + "To make malleable", + "Recoil", + "The highest class in society; the upper ten", + "A seaport city in the west of England", + "According to wish; conformably to desire", + "Inwrought; woven in", + "The goddess of memory and the mother of the Muses", + "The history or description of the sacred writings or of sacred persons; a narrative of the lives of the saints; a catalogue of saints", + "Not opportunely; unseasonably; inconveniently", + "The blubber of whales or other marine mammals; also, the fat of the hippopotamus", + "of See", + "1", + "Anything used to destroy parasites", + "A furnace, esp", + "A valerate", + "One who proposes a paradox", + "1", + "Of, pertaining to, or attended with, desquamation", + "One who dives under water in search of something, as for pearls; a diver", + "Low; vulgar", + "To withdraw from concentration; to decentralize", + "1", + "1", + "The quality or state of being self-righteous; pharisaism", + "To render volatile; to cause to exhale or evaporate; to cause to pass off in vapor", + "Of the nature of dolerite; as, much lava is doleritic lava", + "The celebrated work of Ptolemy of Alexandria, which contains nearly all that is known of the astronomical observations and theories of the ancients", + "A genus of leafles trees or shrubs, with drooping branchlets of a rushlike appearance, mostly natives of Australia", + "Somnial; somniatory", + "Bloodshed", + "Growing together, or into union; uniting", + "To afflict with, or perish from, hunger", + "A collection of pus or purulent matter in any part of an animal body; an abscess", + "See Posthumous", + "1", + "Something that is inferior and of little worth", + "In a sore manner; grievously; painfully; as, to be sorely afflicted", + "The offense of killing a human being with malice prepense or aforethought, express or implied; intentional and unlawful homicide", + "The cutting and gathering of teasels; the use of teasels", + "A contrivance or apparatus to prevent the explosion of steam boilers", + "1", + "1", + "Of or pertaining to philosophy; versed in, or imbued with, the principles of philosophy; hence, characterizing a philosopher; rational; wise; temperate; calm; cool", + "The act or process of implantating", + "That which is obvious, public, or common", + "Tending to prevent", + "1", + "A beam or bar armed with iron spikes, and turning on a pivot; - - used to block up a passage", + "Insincerely; deceitfully", + "Tending to multiply; having the power to multiply, or incease numbers", + "Proof", + "See Dependent, Dependence, Dependency", + "1", + "1", + "1", + "1", + "Fitted for trail or test; experimental; tentative; treating of attempts", + "Definition; logical direction", + "Of the same kind or nature; having the same substance or essence; coessential", + "1", + "A Scripturist", + "Bringing or producing death; deadly; destructive; as, a mortiferous herb", + "Incorporating or tending to incorporate; as, the incorporative languages (as of the Basques, North American Indians, etc", + "With difficulty; scarcely", + "The more transparent cells, which finally become external, in many segmenting ova, as those of mammals", + "Positive; affirming confidently; affirmative; peremptory", + "A sheep in its second year; also, a doe in its second year", + "1", + "Language; speech; voice; cry", + "One who takes profiles", + "To make external; to manifest by outward form", + "1", + "Impishness; magic", + "The quality or state of being wealthy, or rich; richness; opulence", + "The quality of being wide; extent from side to side; breadth; wideness; as, the width of cloth; the width of a door", + "Admitting of argument", + "Contrarily; oppositely", + "1", + "A suffix used to from adjectives from nouns and from adjectives", + "(a) An encysted tumor containing curdy matter", + "Same as Ordeal by water", + "Ready; dexterous; eager; lively; quick to move", + "Half relief", + "Having the quality of associating; tending or leading to association; as, the associative faculty", + "1", + "Act of gilding", + "Inadvertence", + "Rosin", + "Any lophobranch fish of the genus Siphostoma, or Syngnathus, and allied genera, having a long and very slender angular body, covered with bony plates", + "To reduce", + "See Trundle", + "1", + "Like a maid; suiting a maid; maiden-like; gentle, modest, reserved", + "1", + "A district or local division, as of a province", + "Delirium", + "Capability of being exhausted", + "A flat muscle of the back of the neck", + "Unsteady; fickle", + "A white crystalline powder used as an intestinal antiseptic; beta-naphthol benzoate", + "Having characteristics that are partly Greek and partly Roman; as, Greco-Roman architecture", + "A weed that binds stalks of corn, as Convolvulus arvensis, Polygonum Convolvulus", + "Having eight sides and eight angles", + "Of or relating to heat and electricity; especially, relating to thermal effects produced by voltaic action", + "1", + "Pertaining to Hegelianism", + "1", + "One who ciphers", + "The condition of an ovule having but a single embryo", + "1", + "Of or pertaining to a consistory", + "1", + "Malconformation", + "Acuteness; cunning", + "Turning into many shapes; assuming many forms; protean", + "Of or pertaining to the pericranium", + "Same as Sebiferous", + "A suffix or terminal formative, used principally in biological terms, and signifying growth, formation; as, bioblast, epiblast, mesoblast, etc", + "To form an abscess; to swell and fill with pus", + "Any preternatural labor, in whiche the boly of the child lies across the pelvis of the mother, so that the shoulder, arm, or trunk is the part first presented at the mouth of the uterus", + "Three metrical feet taken together, or included in one measure", + "See Dinotherium", + "Any one of numerous species of lizards of the family Scincidæ or tribe Scincoidea", + "1", + "To whisper", + "Unfit to speak of; unmentionable; impious; execrable", + "In a peremptory manner; absolutely; positively", + "1", + "To unbend", + "Inflammation of the pericardium", + "Work aside from regular work; subordinate or secondary business", + "Obsequious; fawning; cringing", + "To contend in argument; to argue against something maintained, upheld, or claimed, by another; to discuss; to reason; to debate; to altercate; to wrangle", + "The name given to a hypothetical element, -- later discovered and called gallium", + "The holding by the fourth hand of the best and third best cards of a suit led; also, sometimes, the combination of best with third best card of a suit in any hand", + "A distilled liquor prepared in Mexico from a species of agave", + "One who overlooks", + "One of five commissioners appointed for some special object", + "One who is versed in pteridology", + "Somewhat bitter", + "A rare element of the vanadium group, first found in a variety of the mineral columbite occurring in Connecticut, probably at Haddam", + "A skillful hand; a dabster; an expert", + "A South American mammal (Auchenia vicunna) native of the elevated plains of the Andes, allied to the llama but smaller", + "pl", + "Sweet", + "Pattern of coloration", + "1", + "Silver coins or money of the nominal value of 1d", + "See Tapish", + "Disturbance", + "In a handfast or publicly pledged manner", + "A combining form from Gr", + "1", + "Firewood cut into billets of a certain length", + "Exposed to the air; wanting a roof; -- applied to a building or part of a building", + "imp", + "See Moebles", + "Somewhat spongy; spongelike; full of small cavities like sponge; as, spongious bones", + "A valuable kind of wood obtained on the shores of the Demerara River in South America, much used for timbers, rails, naves and fellies of wheels, and the like", + "Moving easily; hence, mild-tempered; ease-loving; inactive", + "A salmon (Salmo mykiss, syn", + "See Mataco", + "The state of being perspicacious; acuteness of sight or of intelligence; acute discernment", + "To make Aryan (a language, or in language)", + "The state or condition of being feathery", + "Dull; stupid", + "In a presumptuous manner; arrogantly", + "The quality of being impressionable", + "A woodpecker", + "An instrument, originally a series of bells on an iron rod, now a set of flat metal bars, diatonically tuned, giving a bell-like tone when played with a mallet; a carillon", + "A European bird of the genus Upupa (U", + "1", + "1", + "The science of health; hygiene", + "One who concludes", + "Having the marginal florets enlarged and radiating but not ligulate, as in the capitula or heads of the cornflower, Gray", + "Undulating", + "The hundredth part of a meter; a measure of length equal to rather more than thirty-nine hundredths (0", + "A young oyster", + "A modified kind of telescope adapted to taking photographs of the sun", + "To lean toward a thing; to be favorably inclined or disposed; to incline; to tend", + "A variety of tourmaline varying in color from a pale rose to a deep ruby, and containing lithium", + "To envelop as in clouds; to darken; to obscure", + "Having unequal petals", + "1", + "A water carrier, as to a household or a regiment", + "A martyrology", + "The game of shovelboard", + "To rise, or tend to rise, as if lighter than the surrounding medium; to become buoyant; -- opposed to gravitate", + "Same as Intertissued", + "That quality or property of anything which touches the feelings or excites emotions and passions, esp", + "See Tough-pitch (b)", + "An instrument for viewing the interior of the urethra", + "A seraphine", + "Pertaining to, or resembling, a decoction", + "A group of Pulmonifera having the eyes at the base of the tentacles, including the common pond snails", + "The act of leaping or starting asunder", + "Of or pertaining to the desires; hence, impelling to gratification; appetitive", + "An extravagant or absurd report or story; a fabricated sensational report or statement; esp", + "One of a series of artificial, organic bases, usually produced as thick viscous liquids by the action of ammonia on ethylene oxide", + "In a physical manner; according to the laws of nature or physics; by physical force; not morally", + "The formation of an aposteme; the process of suppuration", + "Having strong or large thews or muscles; muscular; sinewy; strong", + "1", + "Somewhat young", + "Spray blown from the tops waves during a gale at sea; also, snow driven in the wind at sea; -- written also spindrift", + "Margaric", + "1", + "In a lank manner", + "To join below or beneath; to subjoin", + "The one and the other; the two; the pair, without exception of either", + "To diminish the sensibility of; to debilitate", + "A small West Indian tree (Trophis Americana) of the Mulberry family, whose leaves and twigs are used as fodder for cattle", + "Troubled with bad digestion", + "1", + "Any large holothurian", + "To deliver from the form or nature of a beast", + "A catechumen", + "1", + "The European swift", + "1", + "1", + "Fantastically", + "Pertaining to sexual desire; sensual", + "Excessively logical; adhering too closely to the forms or rules of logic", + "Convincing", + "A metallic post attached to electrical apparatus for convenience in making connections", + "Doubly prismatic", + "The front of an army; the first line or leading column; also, the front line or foremost division of a fleet, either in sailing or in battle", + "Sunbeam", + "Urgent; exacting; importunate; as, a pressing necessity", + "Of the nature of aphthæ; resembling thrush", + "To release from a coffle", + "(a) The moonfish (Selene setipinnis)", + "To convert into stone or stony material; to petrify", + "Born together; produced at the same time", + "The so-called Twilight of the Gods (called in German Götterdämmerung), the final destruction of the world in the great conflict between the Æsir (gods) on the one hand, and on the other, the gaints and the powers of Hel under the leadership of Loki (who is escaped from bondage)", + "See Gyneocracy", + "A disposition to turn or incline towards the earth; the influence of gravity in determining the direction of growth of an organ", + "Resembling a raceme; growing in the form of a raceme; as, (Bot", + "Pertaining to, consisting of, or addicted to, anecdotes", + "A delegate or deputy; especially, the pope's nuncio or legate at Constantinople", + "Pertaining to, or designating, the phenol formerly called oxyphenic acid, and now oxyphenol and pyrocatechin", + "Thin-billed; -- applied to birds with a slender bill, as the humming birds", + "(a) The surf duck", + "To recline, as at table", + "A glucoside extracted from Persian berries as a yellow crystalline powder, used as a dyestuff", + "1", + "A kind of indigestion; a state of the stomach in which its functions are disturbed, without the presence of other diseases, or, if others are present, they are of minor importance", + "To make unreal; to idealize", + "The point of junction of the coronal and sagittal sutures of the skull", + "An inclosure or yard for grapevines; a plantation of vines producing grapes", + "Causing uneasiness", + "See Buzz", + "One who, or that which, obscures", + "1", + "To light or kindle anew", + "The ancient language of the Hindoos, long since obsolete in vernacular use, but preserved to the present day as the literary and sacred dialect of India", + "1", + "A process similar to etching, in which, by means of voltaic electricity, a raised copy of a drawing is made, so that it can be used to print from", + "Any small marine gastropod shell of the genus Littorina", + "The negative of self", + "A name given to several trees and shrubs of the genus Pyrus, as Pyrus domestica and P", + "A construction in which adherence to some element in the sense causes a departure from strict syntax, as in Philip went down to Samaria and preached Christ unto them", + "A fine or amercement paid as a composition for the shedding of blood; also, a riot wherein blood was spilled", + "1", + "A protuberance; a swelling; a knob; a button; hence, rising ground; a summit", + "Producing flowers", + "1", + "Wasted in strength; tired; exhausted", + "To separate, as substances in combination; to release from combination or union", + "1", + "March; walk; gait", + "Having the habit of catching insects on the wing", + "Having the quality of consolidating broken bones", + "A lurcher", + "Blindness", + "1", + "The region which is included within the outlet of the pelvis, and is traversed by the urinogenital canal and the rectum", + "A mason who builds rough stonework", + "One skilled in geometry; a geometer; a mathematician", + "A genus of leguminous trees of tropical America, the different species of which yield balsamic products, among which are balsam of Peru, and balsam of Tolu", + "A coil of small resistance and large inductance, used in an alternating-current circuit to impede or throttle the current, or to change its phase; --called also reactance coil or reactor, these terms being now preferred in engineering usage", + "1", + "To make light of; to treat with derision or contempt, as if by saying pooh! pooh! [Colloq", + "In a cleanly manner", + "Tending to exclude; causing exclusion; exclusive", + "1", + "Having but a single form; retaining the same form throughout the various stages of development; of the same or of an essentially similar type of structure; -- opposed to dimorphic, trimorphic, and polymorphic", + "A licensed lighter employed in the transportation of goods to and from vessels", + "A common mineral of a pale brass-yellow color and brilliant metallic luster, crystallizing in the isometric system; iron pyrites; iron disulphide", + "Same as Acaulescent", + "Destitute of pasture", + "To weaken; to enervate", + "Brittle when cold; as, cold-short iron", + "Done or recurring every ninth year", + "See Sleazy", + "To deny", + "1", + "An island; -- often used in the names of small islands off the coast of Scotland, as in Inchcolm, Inchkeith, etc", + "Originally, a paved way or road; a public highway; now commonly, a thoroughfare in a city or village, bordered by dwellings or business houses", + "One who believes in hedonism", + "Ingenuity; skill; cunning", + "One who dresses or cuts hair; a barber", + "1", + "Of or pertaining to a vulture; resembling a vulture in qualities or looks; as, the vulturine sea eagle (Gypohierax Angolensis); vulturine rapacity", + "1", + "The doctrine of philosophical necessity; necessitarianism", + "A Hebrew measure, the tenth of an ephah", + "1", + "Of or pertaining to a nymph or nymphs; nymphean", + "Contemplation", + "Isotrimorphous", + "Of or connected with nutrition; nitritional; nourishing; as, the so-called trophic nerves, which have a direct influence on nutrition", + "A sect of dissenters from the ecclesiastical system of the Roman Catholic Church, who in the 13th century were driven by persecution to the valleys of Piedmont, where the sect survives", + "1", + "In an inclement manner", + "To center again; to restore to the center", + "To go before in time or place; to precede; to surpass", + "To organize again or anew; as, to reorganize a society or an army", + "One versed in minerals; mineralogist", + "To pull or haul strongly and all together, as upon a rope, without the assistance of mechanical appliances", + "The production or condition of tetanus", + "See Somersault, Somerset", + "(a) Furnished with stamens; producing stamens", + "Time for play or diversion", + "1", + "Consisting of sweat", + "The front median plate of the labium in insects", + "Sweet and then bitter or bitter and then sweet; esp", + "Exhausted of moisture; parched with heat; dry; barren", + "A catching; discovery", + "In a circular manner", + "1" +}; diff --git a/examples/hashtable/uns_hashtable.c b/examples/hashtable/uns_hashtable.c new file mode 100644 index 0000000..a2a5f7b --- /dev/null +++ b/examples/hashtable/uns_hashtable.c @@ -0,0 +1,254 @@ +/* Copyright (c) 2024, Peter McGoron + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1) Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2) Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include +#include +#include "uns.h" +#include "uns_hashtable.h" + +enum { + HTBL_LEN_PTR, + HTBL_USED_PTR, + HTBL_HDR_LEN +}; + +static size_t get_size_t(struct uns_gc *gc, struct uns_ctr *root, size_t i) +{ + size_t r; + + void *p = gc->record_get_ptr(root->p, i); + memcpy(&r, p, sizeof(r)); + + return r; +} + +static void set_size_t(struct uns_gc *gc, struct uns_ctr *root, size_t i, size_t val) +{ + void *p = gc->record_get_ptr(root->p, i); + memcpy(p, &val, sizeof(val)); +} + +void uns_hashtable_alloc_into(struct uns_gc *gc, struct uns_ctr *r, size_t size) +{ + unsigned char *p; + size_t i; + r->p = gc->alloc_record(gc, size + HTBL_HDR_LEN); + + p = gc->alloc(gc, sizeof(size_t)); + gc->record_set_ptr(r->p, HTBL_LEN_PTR, p); + set_size_t(gc, r, HTBL_LEN_PTR, size); + + p = gc->alloc(gc, sizeof(size_t)); + gc->record_set_ptr(r->p, HTBL_USED_PTR, p); + set_size_t(gc, r, HTBL_USED_PTR, 0); + + /* Set entries to zero. */ + for (i = HTBL_HDR_LEN; i <= size; i++) + gc->record_set_ptr(r->p, i, NULL); +} + +size_t uns_hashtable_len(struct uns_gc *gc, struct uns_ctr *htbl) +{ + return get_size_t(gc, htbl, HTBL_LEN_PTR); +} + +size_t uns_hashtable_used(struct uns_gc *gc, struct uns_ctr *htbl) +{ + return get_size_t(gc, htbl, HTBL_USED_PTR); +} + +enum { + LENGTH, + STRING, + VALUE, + NEXT, + HTBL_ENTRY_LEN +}; + +static void alloc_holder(struct uns_gc *gc, struct uns_ctr *r, struct uns_ctr *string, + struct uns_ctr *value, size_t len) +{ + unsigned char *alloc_ptr; + r->p = gc->alloc_record(gc, HTBL_ENTRY_LEN); + + alloc_ptr = gc->alloc(gc, sizeof(size_t)); + memcpy(alloc_ptr, &len, sizeof(size_t)); + + gc->record_set_ptr(r->p, LENGTH, alloc_ptr); + gc->record_set_ptr(r->p, STRING, string->p); + gc->record_set_ptr(r->p, VALUE, value->p); + gc->record_set_ptr(r->p, NEXT, NULL); +} + +static unsigned long fnv(unsigned char *p, size_t len) +{ + unsigned long hash = 0x811c9dc5; + size_t i; + + for (i = 0; i < len; i++) { + hash ^= p[i]; + hash *= 16777619; + } + + return hash; +} + +static int search_container(struct uns_gc *gc, struct uns_ctr *cur_ctr, + unsigned char *str, size_t len) +{ + unsigned char *ctr_str = gc->record_get_ptr(cur_ctr->p, STRING); + size_t ctr_str_len = get_size_t(gc, cur_ctr, LENGTH); + void *next; + + if (ctr_str_len != len || memcmp(ctr_str, str, len) != 0) { + /* strings do not match */ + next = gc->record_get_ptr(cur_ctr->p, NEXT); + if (!next) + return 0; + cur_ctr->p = next; + return search_container(gc, cur_ctr, str, len); + } else { + return 1; + } +} + +static int search_for_container(struct uns_gc *gc, struct uns_ctr *htbl, + struct uns_ctr *container, + unsigned char *str, size_t len, size_t *hash_out) +{ + size_t htbl_len = uns_hashtable_len(gc, htbl); + size_t hash = fnv(str, len) % htbl_len; + if (hash_out) + *hash_out = hash; + + container->p = gc->record_get_ptr(htbl->p, hash + HTBL_HDR_LEN); + if (!container->p) + return 0; + return search_container(gc, container, str, len); +} + +void uns_hashtable_search(struct uns_gc *gc, struct uns_ctr *htbl, + unsigned char *str, size_t string_len, + struct uns_ctr *found) +{ + int r; + + r = search_for_container(gc, htbl, found, str, string_len, NULL); + if (r) + found->p = gc->record_get_ptr(found->p, VALUE); + else + found->p = NULL; +} + +void uns_hashtable_add(struct uns_gc *gc, struct uns_ctr *htbl, + struct uns_ctr *string, size_t string_len, + struct uns_ctr *value, struct uns_ctr *old_value) +{ + struct uns_ctr container = {0}; + struct uns_ctr next_container = {0}; + size_t hash; + + if (uns_hashtable_used(gc, htbl) >= uns_hashtable_len(gc, htbl)*7/10) + uns_hashtable_resize(gc, htbl, uns_hashtable_len(gc, htbl)*2); + + if (search_for_container(gc, htbl, &container, string->p, string_len, &hash)) { + old_value->p = gc->record_get_ptr(container.p, VALUE); + gc->record_set_ptr(container.p, VALUE, value->p); + return; + } + + set_size_t(gc, htbl, HTBL_USED_PTR, + uns_hashtable_used(gc, htbl) + 1); + old_value->p = NULL; + uns_root_add(gc, &container); + uns_root_add(gc, &next_container); + + alloc_holder(gc, &next_container, string, value, string_len); + + if (container.p) { + gc->record_set_ptr(container.p, NEXT, next_container.p); + } else { + gc->record_set_ptr(htbl->p, hash + HTBL_HDR_LEN, next_container.p); + } + + uns_root_remove(gc, &next_container); + uns_root_remove(gc, &container); +} + +/* TODO: add delete */ + +static void add_for_ent(struct uns_gc *gc, struct uns_ctr *htbl, void *ctrp) +{ + struct uns_ctr ctr = {0}; + struct uns_ctr str = {0}; + size_t str_len; + struct uns_ctr value = {0}; + struct uns_ctr old_value_should_never_happen = {0}; + + if (!ctrp) + return; + + ctr.p = ctrp; + uns_root_add(gc, &ctr); + uns_root_add(gc, &str); + uns_root_add(gc, &value); + uns_root_add(gc, &old_value_should_never_happen); + + str.p = gc->record_get_ptr(ctr.p, STRING); + value.p = gc->record_get_ptr(ctr.p, VALUE); + str_len = get_size_t(gc, &ctr, LENGTH); + + uns_hashtable_add(gc, htbl, &str, str_len, &value, + &old_value_should_never_happen); + assert(!old_value_should_never_happen.p); + + uns_root_remove(gc, &old_value_should_never_happen); + uns_root_remove(gc, &value); + uns_root_remove(gc, &str); + uns_root_remove(gc, &ctr); + + ctrp = gc->record_get_ptr(ctr.p, NEXT); + add_for_ent(gc, htbl, ctrp); +} + +void uns_hashtable_resize(struct uns_gc *gc, struct uns_ctr *htbl, size_t newsize) +{ + struct uns_ctr newtbl = {0}; + size_t i; + size_t oldlen = uns_hashtable_len(gc, htbl); + + uns_root_add(gc, &newtbl); + + uns_hashtable_alloc_into(gc, &newtbl, newsize); + set_size_t(gc, &newtbl, HTBL_USED_PTR, + uns_hashtable_used(gc, &newtbl)); + + for (i = 0; i < oldlen; i++) + add_for_ent(gc, &newtbl, gc->record_get_ptr(htbl->p, i + HTBL_HDR_LEN)); + + htbl->p = newtbl.p; + uns_root_remove(gc, &newtbl); +} diff --git a/examples/hashtable/uns_hashtable.h b/examples/hashtable/uns_hashtable.h new file mode 100644 index 0000000..d4bae24 --- /dev/null +++ b/examples/hashtable/uns_hashtable.h @@ -0,0 +1,62 @@ +#ifndef UNS_STRING_H +#define UNS_STRING_H + +/* Copyright (c) 2024, Peter McGoron + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1) Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2) Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include "uns.h" + +/* Imperative hash tables with internal chaining. + * + * Internal chaining is inefficient, but it is a good showcase of garbage + * collection. + * + * Hashtable: + * [size][used][pointers to entries] + * NULL or |/---------------------------------------------\ + * [pointer to length][pointer to string][pointer to next] / + * | NULL or / + * \-----------/ + */ + +void uns_hashtable_search(struct uns_gc *gc, struct uns_ctr *htbl, + unsigned char *str, size_t string_len, + struct uns_ctr *found); +size_t uns_hashtable_used(struct uns_gc *gc, struct uns_ctr *htbl); +size_t uns_hashtable_len(struct uns_gc *gc, struct uns_ctr *htbl); +/* +void uns_hashtable_del(struct uns_gc *gc, struct uns_ctr *htbl, + unsigned char *str, size_t string_len, + struct uns_ctr *old_value); +*/ + +/* The following functions may collect. */ +void uns_hashtable_alloc_into(struct uns_gc *gc, struct uns_ctr *r, size_t size); +void uns_hashtable_add(struct uns_gc *gc, struct uns_ctr *htbl, + struct uns_ctr *string, size_t string_len, + struct uns_ctr *value, struct uns_ctr *old_value); +void uns_hashtable_resize(struct uns_gc *gc, struct uns_ctr *htbl, size_t newsize); + +#endif diff --git a/examples/string/Makefile b/examples/string/Makefile index 25352a8..bf70827 100644 --- a/examples/string/Makefile +++ b/examples/string/Makefile @@ -1,6 +1,6 @@ .PHONY: test clean TESTS=test_small.test test_inefficient.test test_large.test -COMMON_OBJS=test_common.o uns_string.o +COMMON_OBJS=../test_common.o uns_string.o .SUFFIXES: .test CFLAGS=-Wall -Wno-overlength-strings -std=c89 -Werror -pedantic -fPIC -g -Iinclude diff --git a/examples/string/test_common.c b/examples/test_common.c similarity index 100% rename from examples/string/test_common.c rename to examples/test_common.c